:root {
  --bg: #f6f2ec;
  --surface: #fcfaf6;
  --surface-strong: #ffffff;
  --line: #e7ddd3;
  --line-strong: #dacdc0;
  --text: #171412;
  --text-soft: #5f564f;
  --text-muted: #8a7c70;
  --accent: #b98952;
  --accent-soft: #d0aa7a;
  --dark: #171412;
  --text-on-dark: #cfc5ba;
  --container: 1180px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 34px;
  --section-space: clamp(4.8rem, 8vw, 7rem);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
p { margin: 0; color: var(--text-soft); line-height: 1.68; font-size: 1.04rem; }
h1, h2, h3 { margin: 0; color: var(--text); letter-spacing: -0.03em; }
h1, h2 { font-family: Fraunces, Georgia, serif; font-weight: 500; }
h3 { font-family: Cormorant Garamond, Georgia, serif; font-weight: 600; font-size: 1.45rem; }
h1 { font-size: clamp(3rem, 7vw, 4.9rem); line-height: 1.04; max-width: none; }
h2 { font-size: clamp(2.4rem, 5vw, 3.5rem); line-height: 1.14; max-width: 12ch; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 242, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-shell {
  width: min(calc(100% - 24px), 1320px);
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex: 0 0 auto;
}
.brand-logo { width: clamp(220px, 16vw, 250px); max-width: 100%; }
.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
  gap: clamp(12px, 1.4vw, 22px);
  color: var(--text-soft);
  font-size: clamp(0.88rem, 0.82rem + 0.16vw, 0.98rem);
}
.nav-mobile-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  padding: 10px 14px;
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}
.nav-mobile-toggle-box {
  display: inline-grid;
  gap: 4px;
}
.nav-mobile-toggle-box span {
  display: block;
  width: 16px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-mobile-toggle-label {
  line-height: 1;
}
.site-header.nav-open .nav-mobile-toggle-box span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
.site-header.nav-open .nav-mobile-toggle-box span:nth-child(2) {
  opacity: 0;
}
.site-header.nav-open .nav-mobile-toggle-box span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}
.site-nav a,
.nav-dropdown-label,
.nav-cta {
  white-space: nowrap;
}
.site-nav a:hover { color: var(--text); }
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown-label {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.nav-dropdown-label::after {
  content: "▾";
  margin-left: 6px;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 240px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 20px 42px rgba(23, 20, 18, 0.08);
  display: none;
  gap: 8px;
}
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: grid;
}
.nav-dropdown-menu a {
  padding: 8px 10px;
  border-radius: 12px;
}
.nav-dropdown-menu a:hover {
  background: var(--surface);
}
.nav-cta, .button-primary {
  background: var(--accent);
  color: #fffaf4;
}
.nav-cta {
  padding: 10px 14px;
  border-radius: var(--radius-md);
}
.claude-section { padding: var(--section-space) 0; }
.claude-section-light { background: var(--bg); }
.claude-section-dark { background: var(--dark); }
.claude-section-dark h2,
.claude-section-dark h3 { color: #faf6f1; }
.claude-section-dark p,
.claude-section-dark .eyebrow,
.claude-section-dark .statement-kicker { color: var(--text-on-dark); }
.claude-hero { padding-top: clamp(5rem, 10vw, 8rem); }
.claude-hero-grid,
.claude-split,
.claude-heading-row,
.claude-card-grid {
  display: grid;
  gap: 26px;
}
.claude-hero-grid { grid-template-columns: minmax(0, 1.65fr) minmax(220px, 0.35fr); align-items: end; }
.claude-split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: start; }
.claude-heading-row { grid-template-columns: minmax(0, 1fr); }
.claude-card-grid.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.claude-card-grid.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.claude-card-grid.four-up { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.claude-card-grid.one-up { grid-template-columns: 1fr; }
.hero-kicker { color: var(--text-muted); }
.eyebrow {
  margin-bottom: 16px;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-title-motion {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.08em;
  width: 100%;
  max-width: 100%;
  margin: 10px 0 18px;
}
.hero-title-chunk-wrap,
.hero-title-rotator {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.14em;
}
.hero-title-chunk { display: inline-block; }
.hero-title-rotator {
  position: relative;
  display: block;
  min-height: 1.16em;
  width: min(100%, 26ch);
  max-width: 100%;
  white-space: nowrap;
  padding-top: 2px;
}
.hero-rotating-text {
  display: inline-block;
  color: var(--accent);
  white-space: nowrap;
  line-height: 1.16;
}
.hero-rotating-text::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 0.92em;
  margin-left: 0.08em;
  vertical-align: -0.08em;
  background: currentColor;
  animation: caretBlink 0.9s step-end infinite;
}
.lede { max-width: 48rem; font-size: 1.16rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
}
.button-secondary {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: transparent;
}
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--accent);
  font-weight: 600;
}
.inline-link:hover {
  color: #9d6f3e;
}
.inline-link::after {
  content: "→";
}
.claude-hero-note,
.claude-card,
.schedule-panel,
.services-hero-note {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.62);
  padding: 24px;
  box-shadow: 0 16px 40px rgba(23, 20, 18, 0.04);
}
.claude-section-dark .claude-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
}
.hero-note-lower {
  align-self: end;
  margin-top: 7rem;
}

.statement-kicker {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.process-grid { list-style: none; padding: 0; margin: 28px 0 0; }
.schedule-panel {
  max-width: 880px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.66));
}

.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(252,250,246,0.92), rgba(244,238,231,0.98));
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 26px 0 34px;
}

.footer-brand-block,
.footer-meta {
  display: grid;
  gap: 10px;
}

.footer-mark {
  color: var(--text);
  font-family: Fraunces, Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
}

.footer-copy {
  max-width: 30rem;
  font-size: 0.96rem;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  padding-top: 2px;
}

.footer-nav a,
.footer-top-link,
.footer-powered-link {
  color: var(--text);
  font-weight: 600;
}

.footer-nav a:hover,
.footer-top-link:hover,
.footer-powered-link:hover {
  color: var(--accent);
}

.footer-meta {
  justify-items: end;
  text-align: right;
}

.footer-meta p {
  font-size: 0.94rem;
}

.footer-top-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-top-link::after {
  content: "↑";
}

.footer-legal-wrap {
  padding-bottom: 24px;
}

.footer-legal-disclaimer {
  margin: 0;
  font-size: 0.62rem;
  line-height: 1.45;
  letter-spacing: 0.06em;
  color: rgba(71, 71, 81, 0.72);
  text-align: center;
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 32px;
  align-items: start;
}

.faq-intro p:last-child {
  max-width: 28rem;
  margin-top: 14px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.72);
  padding: 0;
  box-shadow: 0 14px 34px rgba(23, 20, 18, 0.04);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-family: Cormorant Garamond, Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text);
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-family: Inter, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 22px 22px;
}

.service-preview-grid {
  margin-top: 6px;
}

.service-preview-card {
  position: relative;
  overflow: hidden;
}

.service-preview-icon {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 68px;
  height: 68px;
  border-radius: 18px;
  border: 1px solid rgba(79, 58, 39, 0.08);
  background: rgba(248, 243, 236, 0.82);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(70, 54, 40, 0.9);
}

.service-preview-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.claude-section-dark .service-preview-icon {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  color: rgba(250, 246, 241, 0.92);
}

.premium-service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.featured-service-preview {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(252,247,241,0.82));
  border-color: #d9c5ab;
}

.service-preview-price {
  margin-top: 18px;
  color: var(--text);
  font-family: Fraunces, Georgia, serif;
  font-size: 1.7rem;
  line-height: 1;
  padding-right: 88px;
}

.services-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.55fr);
  gap: 24px;
  align-items: end;
}

.services-hero-note {
  background: rgba(255,255,255,0.7);
}

@keyframes caretBlink { 50% { opacity: 0; } }
@media (max-width: 980px) {
  .claude-hero-grid,
  .claude-split,
  .faq-shell,
  .claude-card-grid.three-up,
  .claude-card-grid.two-up,
  .claude-card-grid.four-up,
  .faq-grid,
  .services-hero-shell {
    grid-template-columns: 1fr;
  }
  .site-nav {
    gap: 14px;
    font-size: 0.92rem;
  }
  .nav-dropdown-menu {
    left: auto;
    right: 0;
  }

  .hero-title-rotator {
    width: min(100%, 20ch);
  }

  .hero-note-lower {
    margin-top: 0;
  }
}
.compact-hero {
  padding-top: clamp(4rem, 7vw, 5.5rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.section-stack {
  display: grid;
  gap: 28px;
}

.section-head-block {
  display: grid;
  gap: 10px;
  max-width: 52rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.pricing-grid + .pricing-grid {
  margin-top: 20px;
}

.pricing-grid-personal {
  align-items: start;
}

.two-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.single-highlight-grid {
  grid-template-columns: minmax(0, 1fr);
}

.pricing-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.72);
  padding: 24px;
  box-shadow: 0 16px 40px rgba(23, 20, 18, 0.04);
  display: flex;
  flex-direction: column;
}


.featured-pricing-card {
  border-color: #d9c5ab;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(252,247,241,0.82));
}

.dark-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}

.dark-card h3,
.dark-card .pricing-price,
.dark-schedule-panel h2 {
  color: #faf6f1;
}

.dark-card p,
.dark-card li,
.dark-schedule-panel p {
  color: var(--text-on-dark);
}

.pricing-meta {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.pricing-price {
  margin: 12px 0 14px;
  color: var(--text);
  font-family: Fraunces, Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.pricing-card ul {
  margin: 18px 0 22px;
  padding-left: 1.1rem;
  color: var(--text-soft);
  line-height: 1.65;
}

.pricing-card li + li {
  margin-top: 8px;
}

.pricing-card .button {
  margin-top: auto;
}

.pricing-note-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(247,241,233,0.78));
}

.dark-schedule-panel {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
}

#business-services .pricing-card,
#retainers .pricing-card {
  min-height: 100%;
}

.schedule-path-grid {
  align-items: stretch;
}

.schedule-path-card {
  min-height: 100%;
}

.schedule-note-panel {
  max-width: none;
}

.family-tier-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.family-tier-wide {
  grid-column: span 2;
}

@media (max-width: 980px) {
  .pricing-grid,
  .two-card-grid,
  .premium-service-grid,
  .family-tier-grid {
    grid-template-columns: 1fr;
  }

  .family-tier-wide {
    grid-column: auto;
  }

}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.intake-form {
  display: grid;
  gap: 18px;
}

.intake-form label {
  display: grid;
  gap: 8px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.field-note {
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.intake-form input,
.intake-form select,
.intake-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.86);
  color: var(--text);
  font: inherit;
}

.intake-form textarea {
  resize: vertical;
}

.intake-form input[type="file"] {
  padding: 12px 14px;
  background: rgba(255,255,255,0.72);
}

.upload-dropzone {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 132px;
  padding: 18px;
  border: 1px dashed rgba(138, 116, 90, 0.42);
  border-radius: 18px;
  background: rgba(255,255,255,0.6);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.upload-dropzone:hover,
.upload-dropzone.is-dragover {
  border-color: rgba(157, 111, 62, 0.9);
  background: rgba(255,255,255,0.88);
}

.upload-dropzone.is-dragover {
  transform: translateY(-1px);
}

.upload-dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-dropzone-copy {
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
  pointer-events: none;
}

.upload-dropzone-copy strong {
  color: var(--text);
  font-size: 0.98rem;
}

.upload-dropzone-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.upload-file-list {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.upload-file-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(244, 238, 231, 0.95);
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.4;
}

.contact-shell {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
}

.contact-form-panel {
  max-width: none;
}

.contact-form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-status {
  min-height: 1.4em;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.booking-shell {
  display: grid;
  gap: 20px;
}

.booking-embed-frame {
  width: 100%;
  min-height: 780px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.72);
  overflow: hidden;
}

.booking-inline-shell {
  position: relative;
}

#booking-inline {
  display: none;
}

.booking-frame-fallback {
  display: block;
  width: 100%;
  min-height: 780px;
  border: 0;
  background: transparent;
}

.booking-inline-shell.booking-loaded #booking-inline {
  display: none;
}

.booking-inline-shell.booking-loaded .booking-frame-fallback {
  display: block;
}

.thank-you-panel {
  max-width: 820px;
  padding: 34px clamp(22px, 4vw, 40px);
}

.thank-you-intro {
  display: grid;
  gap: 12px;
}

.thank-you-panel h1 {
  max-width: 16ch;
  font-size: clamp(2.2rem, 4.6vw, 3.2rem);
  line-height: 1.04;
}

.thank-you-panel .lede {
  max-width: 44rem;
  font-size: 1.02rem;
  line-height: 1.65;
}

.booking-summary {
  display: grid;
  gap: 0;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(138, 116, 90, 0.16);
}

.booking-summary-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(138, 116, 90, 0.12);
}

.booking-summary-label,
.booking-summary-value {
  margin: 0;
}

.booking-summary-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.booking-summary-value {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text);
}

.payment-panel {
  margin-top: 28px;
  max-width: none;
}

.payment-panel-prominent {
  max-width: none;
  margin-top: 28px;
  padding: 0 0 24px;
  border-bottom: 1px solid rgba(138, 116, 90, 0.16);
  background: transparent;
  box-shadow: none;
}

.payment-panel-prominent h2 {
  max-width: 18ch;
  margin-top: 6px;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  line-height: 1.08;
}

.payment-panel-prominent p:not(.eyebrow):not(.payment-warning):not(.payment-email-note) {
  max-width: 42rem;
  font-size: 0.98rem;
  line-height: 1.65;
}

.payment-actions {
  margin-top: 14px;
}

.payment-button {
  min-width: 220px;
  min-height: 54px;
  font-size: 1rem;
}

.payment-warning {
  margin-top: 10px;
  color: #8d3f2d;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.thank-you-actions {
  margin-top: 26px;
}

.privacy-shell {
  max-width: 980px;
}

.privacy-intro {
  max-width: 52rem;
}

.privacy-updated {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.privacy-card-stack {
  display: grid;
  gap: 24px;
  max-width: 900px;
}

.privacy-block {
  display: grid;
  gap: 10px;
}

.privacy-block h2 {
  max-width: none;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.visually-hidden-anchor {
  position: relative;
  top: -96px;
  height: 0;
  visibility: hidden;
}

@media (max-width: 760px) {
  .site-header.nav-open {
    background: rgba(246, 242, 236, 0.98);
  }
  .nav-shell {
    min-height: 74px;
    display: grid;
    align-items: stretch;
    padding: 12px 0 14px;
    gap: 10px;
  }
  .nav-topbar {
    width: 100%;
    gap: 12px;
  }
  .nav-mobile-toggle {
    display: inline-flex;
    justify-self: end;
  }
  .site-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    padding: 14px 0 4px;
    border-top: 1px solid rgba(138, 124, 112, 0.16);
  }
  .site-header.nav-open .site-nav {
    display: flex;
  }
  .site-nav > a,
  .nav-dropdown-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 46px;
    padding: 0 2px;
    color: var(--text);
  }
  .site-nav > a {
    border-bottom: 1px solid rgba(138, 124, 112, 0.1);
  }
  .nav-dropdown {
    width: 100%;
    display: grid;
    gap: 8px;
  }
  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    padding: 8px 0 0 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    gap: 2px;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    display: grid;
  }
  .nav-dropdown-menu a {
    padding: 8px 0;
    border-radius: 0;
    color: var(--text-soft);
  }
  .nav-dropdown-menu a:hover {
    background: transparent;
    color: var(--text);
  }
  .nav-cta {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
    padding: 14px 16px;
  }
  .brand-logo { width: 220px; }
  h1 { font-size: clamp(2.5rem, 12vw, 3.6rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .container, .nav-shell { width: min(calc(100% - 24px), var(--container)); }
  .hero-title-rotator {
    width: 100%;
    min-height: 0;
    white-space: normal;
  }
  .hero-rotating-text {
    white-space: normal;
  }
  .hero-actions { flex-direction: column; width: 100%; }
  .button { width: 100%; max-width: 100%; }
  .form-grid.two-up,
  .contact-shell { grid-template-columns: 1fr; }
  .contact-form-actions { flex-direction: column; }
  .booking-summary-row { grid-template-columns: 1fr; gap: 6px; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .footer-nav {
    justify-content: flex-start;
  }
  .footer-meta {
    justify-items: start;
    text-align: left;
  }

  .footer-legal-wrap {
    padding-top: 0;
  }
}
