.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(251, 249, 245, 0.94);
  border-bottom: 1px solid rgba(217, 210, 197, 0.72);
  box-shadow: 0 4px 16px rgba(9, 21, 46, 0.05);
  backdrop-filter: blur(14px);
}

.site-header-inner {
  width: min(1200px, 100%);
  height: 80px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-brand,
.site-footer-logo {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
  color: #09152e;
  text-decoration: none;
  white-space: nowrap;
}

.site-desktop-nav,
.site-header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header-actions {
  gap: 12px;
}

.site-nav-link,
.site-mobile-link,
.site-footer-links a {
  color: #4f515a;
  text-decoration: none;
}

.site-nav-link {
  padding: 29px 0 25px;
  border-bottom: 2px solid transparent;
  font-size: 15px;
  line-height: 24px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav-link:hover,
.site-nav-link.is-active,
.site-mobile-link:hover,
.site-mobile-link.is-active {
  color: #735b25;
}

.site-nav-link.is-active {
  border-bottom-color: #735b25;
  font-weight: 700;
}

.site-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.site-button-outline {
  color: #09152e;
  border: 1px solid #735b25;
  background: transparent;
}

.site-button-solid {
  color: #fffdf8;
  background: #09152e;
}

.site-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #09152e;
}

.site-mobile-panel {
  border-top: 1px solid rgba(217, 210, 197, 0.9);
  background: #fbf9f5;
  box-shadow: 0 18px 40px rgba(9, 21, 46, 0.08);
}

.site-mobile-nav {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 18px 24px 22px;
  display: grid;
  gap: 14px;
}

.site-mobile-link {
  min-height: 36px;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
}

.site-mobile-link.is-active {
  font-weight: 700;
}

.site-header + main {
  padding-top: 96px;
}

.site-footer {
  background: #101909;
  color: #dae7cc;
  padding: 44px 24px;
}

.site-footer-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.site-footer-logo {
  color: #fffdf8;
}

.site-footer-brand p {
  max-width: 520px;
  margin: 12px 0 0;
  color: #cbd8bd;
  font-size: 15px;
  line-height: 1.65;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
}

.site-footer-links a {
  color: #dae7cc;
  font-size: 15px;
}

.shared-cta {
  width: min(1200px, calc(100% - 48px));
  margin: 48px auto;
  border-radius: 12px;
  padding: 48px 28px;
  text-align: center;
  overflow: hidden;
}

.shared-cta-dark {
  background: #09152e;
  color: #fffdf8;
}

.shared-cta-light {
  background: #fffdf8;
  color: #09152e;
  border: 1px solid rgba(115, 91, 37, 0.18);
  box-shadow: 0 14px 36px rgba(9, 21, 46, 0.06);
}

.shared-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.shared-cta-eyebrow {
  margin: 0 0 10px;
  color: #c8a96b;
  font-size: 13px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shared-cta h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.12;
  font-weight: 700;
}

.shared-cta p:not(.shared-cta-eyebrow) {
  margin: 16px auto 0;
  max-width: 660px;
  color: inherit;
  font-size: 18px;
  line-height: 1.65;
  opacity: 0.86;
}

.shared-cta-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.shared-cta-primary,
.shared-cta-secondary {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.shared-cta-primary-light {
  background: #fffdf8;
  color: #09152e;
}

.shared-cta-primary-dark {
  background: #09152e;
  color: #fffdf8;
}

.shared-cta-secondary-dark,
.shared-cta-secondary-light {
  border: 1px solid #c8a96b;
}

.shared-cta-secondary-dark {
  color: #fffdf8;
}

.shared-cta-secondary-light {
  color: #09152e;
}

@media (max-width: 767.98px) {
  .site-header-inner {
    padding: 0 18px;
    gap: 12px;
  }

  .site-brand {
    font-size: 21px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-desktop-nav,
  .site-header-actions {
    display: none !important;
  }

  .site-menu-button {
    display: inline-flex;
  }

  .site-footer-inner {
    display: grid;
    gap: 24px;
  }

  .site-footer-links {
    justify-content: flex-start;
    display: grid;
    gap: 12px;
  }

  .shared-cta {
    width: calc(100% - 32px);
    margin: 36px auto;
    padding: 36px 20px;
  }

  .shared-cta-actions {
    display: grid;
  }
}
