.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 251, 246, 0.94);
  border-bottom: 1px solid rgba(210, 194, 181, 0.65);
  backdrop-filter: blur(12px);
}

.site-header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  flex-shrink: 0;
  text-decoration: none;
}

.site-brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
}

.site-brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.site-brand-kicker {
  font-size: 0.74em;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: #9a785f;
}

.site-brand-name {
  font-size: 1.2em;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #231a16;
  white-space: nowrap;
}

.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.site-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: #4a3b32;
  font-size: 0.95em;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav-link:hover,
.site-nav-link.current {
  background: #f3e5d7;
  color: #9d4c1f;
  transform: translateY(-1px);
}

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: #231a16;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(35, 26, 22, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-header-cta:hover {
  background: #9d4c1f;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(157, 76, 31, 0.2);
}

.site-nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #f6e8da;
  color: #231a16;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}

.site-nav-toggle span {
  position: absolute;
  left: 14px;
  width: 20px;
  height: 2px;
  background: #231a16;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav-toggle span:nth-child(1) {
  top: 17px;
}

.site-nav-toggle span:nth-child(2) {
  top: 23px;
}

.site-nav-toggle span:nth-child(3) {
  top: 29px;
}

.site-nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.site-nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media screen and (max-width: 1080px) {
  .site-header-inner {
    padding: 18px 20px;
    gap: 16px;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 4;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(210, 194, 181, 0.65);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav-link {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    justify-content: flex-start;
    border-radius: 14px;
  }

  .site-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .site-header-actions {
    margin-left: auto;
  }
}

@media screen and (max-width: 720px) {
  .site-header-inner {
    padding: 16px 16px;
  }

  .site-brand {
    gap: 12px;
  }

  .site-brand-logo {
    width: 60px;
    height: 60px;
  }

  .site-brand-kicker {
    font-size: 0.66em;
    letter-spacing: 0.16em;
  }

  .site-brand-name {
    font-size: 1em;
    line-height: 1.3;
    white-space: normal;
  }

  .site-header-actions {
    width: 100%;
    order: 3;
  }

  .site-header-cta {
    width: 100%;
  }

  .site-nav-toggle {
    order: 2;
  }
}
