/* ============================================================================
   Tracey Lane Russo — v3 stylesheet
   v2's layout & polish, repainted in the warm v1 palette: cream background,
   deep sage-green for anchor sections, warm clay as the accent.
   To change words/pictures, edit content.js. To recolor, edit :root below.
============================================================================ */

:root {
  /* ---- Palette (hex; easy to change) -------------------------------- */
  --deep:    #2f3a34;   /* deep sage-green (hero / booking / footer)   */
  --deep-2:  #3b4a40;   /* lighter green for layering                  */
  --teal:    #4a5b50;   /* mid sage — small accents                    */
  --sage:    #6f8475;   /* muted sage — photo gradient                 */
  --dawn:    #d8a87f;   /* warm clay — the accent / CTA                */
  --dawn-2:  #c08457;   /* deeper clay — CTA hover, dots               */

  --bg:      #faf6f0;   /* cream page background                       */
  --surface: #fffdfa;   /* card surface                               */
  --tint:    #ece6da;   /* soft sand panel (approach band)            */
  --ink:     #2c2a27;   /* primary text   (12:1 on --bg)             */
  --ink-soft:#5d574f;   /* secondary text (5.6:1 on --bg)            */
  --line:    #ece4d8;   /* hairline borders                          */

  --on-deep:     #f5f1ea;  /* cream text on green (11:1)             */
  --on-deep-soft:#cdd2c9;  /* muted cream on green (7:1)             */

  /* ---- Type --------------------------------------------------------- */
  --display: "Spectral", Georgia, "Times New Roman", serif;
  --sans: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* ---- Shape & depth ------------------------------------------------ */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(44,42,39,.05), 0 4px 14px rgba(44,42,39,.05);
  --shadow: 0 18px 50px rgba(44,42,39,.12);
  --shadow-lg: 0 30px 80px rgba(44,42,39,.20);
  --maxw: 1160px;

  /* ---- Motion ------------------------------------------------------- */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);

  /* ---- z-index scale ------------------------------------------------ */
  --z-sticky: 50;
  --z-nav: 100;
  --z-overlay: 200;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--sans); font-size: 1.0625rem; line-height: 1.65;
  color: var(--ink); background: var(--bg);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: var(--display); font-weight: 400; line-height: 1.1;
  letter-spacing: -0.02em; color: var(--ink); margin: 0; text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: clamp(20px, 5vw, 40px); }
.section { padding-block: clamp(64px, 10vw, 130px); }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-soft); max-width: 60ch; }
.shead { max-width: 30ch; }
.shead.center { margin-inline: auto; text-align: center; max-width: 26ch; }
h2.title { font-size: clamp(1.9rem, 4vw, 3rem); }

/* ---- Buttons ------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--sans); font-size: 1rem; font-weight: 600; letter-spacing: -0.01em;
  padding: 0.85em 1.5em; border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  transition: transform 200ms var(--ease), box-shadow 260ms var(--ease),
    background-color 200ms var(--ease), border-color 200ms var(--ease);
}
.btn:active { transform: scale(0.97); }
.btn:focus-visible { outline: 2px solid var(--dawn-2); outline-offset: 3px; }
.btn-primary { background: var(--dawn); color: var(--deep); box-shadow: 0 6px 20px rgba(192,132,87,.35); }
.btn-secondary { background: transparent; color: currentColor;
  border-color: color-mix(in srgb, currentColor 28%, transparent); }
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { background: var(--dawn-2); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(192,132,87,.45); }
  .btn-secondary:hover { border-color: color-mix(in srgb, currentColor 55%, transparent);
    background: color-mix(in srgb, currentColor 8%, transparent); }
}
.arrow { transition: transform 240ms var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---- Nav ----------------------------------------------------------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: var(--z-nav);
  transition: background-color 350ms var(--ease), box-shadow 350ms var(--ease), backdrop-filter 350ms var(--ease); }
.nav-row { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: 0.7em; color: var(--on-deep);
  font-family: var(--display); font-size: 1.2rem; letter-spacing: -0.01em; transition: color 350ms var(--ease); }
.brand-badge { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(150deg, var(--dawn), var(--dawn-2)); color: var(--deep);
  font-family: var(--display); font-size: 0.95rem; box-shadow: var(--shadow-sm); }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 36px); }
.nav-links a:not(.btn) { font-size: 0.98rem; font-weight: 500; color: var(--on-deep-soft);
  position: relative; transition: color 220ms var(--ease); }
.nav-links a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: -5px; height: 2px; width: 100%;
  background: var(--dawn); transform: scaleX(0); transform-origin: left; transition: transform 280ms var(--ease); }
@media (hover: hover) and (pointer: fine) {
  .nav-links a:not(.btn):hover { color: var(--on-deep); }
  .nav-links a:not(.btn):hover::after { transform: scaleX(1); }
}
.nav-cta { padding: 0.6em 1.2em; font-size: 0.95rem; }
.nav.scrolled { background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(140%) blur(14px); -webkit-backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 var(--line); }
.nav.scrolled .brand { color: var(--ink); }
.nav.scrolled .nav-links a:not(.btn) { color: var(--ink-soft); }
.nav.scrolled .nav-links a:not(.btn):hover { color: var(--ink); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; color: var(--on-deep); width: 44px; height: 44px; }
.nav.scrolled .nav-toggle { color: var(--ink); }

/* ---- Hero ---------------------------------------------------------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  padding-block: 150px 90px;
  background:
    radial-gradient(120% 80% at 80% 110%, rgba(216,168,127,.50), transparent 55%),
    radial-gradient(90% 60% at 88% 96%, rgba(192,132,87,.40), transparent 50%),
    linear-gradient(178deg, var(--deep) 0%, var(--deep-2) 62%, #46584d 100%);
  color: var(--on-deep); overflow: hidden; isolation: isolate;
}
.hero::before { content: ""; position: absolute; inset: -20%; z-index: -1;
  background: radial-gradient(40% 36% at 82% 88%, rgba(224,180,130,.32), transparent 60%);
  animation: dawn-drift 24s var(--ease-soft) infinite alternate; }
@keyframes dawn-drift { from { transform: translate3d(0,0,0) scale(1); opacity: .85; }
  to { transform: translate3d(-3%,-4%,0) scale(1.12); opacity: 1; } }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 14%; height: 1px; z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(224,180,130,.5), transparent); }

.hero-inner { max-width: 100%; }
.status { display: inline-flex; align-items: center; gap: 0.6em; font-size: 0.86rem; font-weight: 500;
  color: var(--on-deep); background: rgba(245,241,234,.10); border: 1px solid rgba(245,241,234,.20);
  padding: 0.5em 1em; border-radius: 999px; backdrop-filter: blur(4px); }
.status .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--dawn); box-shadow: 0 0 0 4px rgba(216,168,127,.25); }
.hero h1 { margin-top: 28px; font-size: clamp(2.6rem, 8vw, 6.2rem); font-weight: 300; line-height: 1.02;
  letter-spacing: -0.025em; color: var(--on-deep); max-width: 16ch; }
.hero-sub { margin-top: 28px; font-size: clamp(1.1rem, 1.7vw, 1.35rem); color: var(--on-deep-soft); max-width: 52ch; }
.hero-actions { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions .btn-secondary { color: var(--on-deep); }

.hero-inner > * { opacity: 0; transform: translateY(18px); animation: rise 900ms var(--ease) forwards; }
.hero-inner > :nth-child(1) { animation-delay: 90ms; }
.hero-inner > :nth-child(2) { animation-delay: 200ms; }
.hero-inner > :nth-child(3) { animation-delay: 310ms; }
.hero-inner > :nth-child(4) { animation-delay: 420ms; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---- Mission ------------------------------------------------------- */
.mission-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.mission h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); font-weight: 400; }
.mission-body p { font-size: 1.15rem; color: var(--ink-soft); }
.mission-body p + p { margin-top: 20px; }
.mission-rule { width: 56px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--dawn), var(--dawn-2)); margin-bottom: 26px; }

/* ---- Services: editorial list -------------------------------------- */
.services .shead { margin-bottom: 12px; }
.services .lede { margin-bottom: 30px; }
.svc-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(28px, 5vw, 64px); border-top: 1px solid var(--line); }
.svc { display: block; color: inherit; padding: 28px 0; border-bottom: 1px solid var(--line); transition: padding-left 320ms var(--ease); }
.svc-arrow { color: var(--dawn-2); margin-left: 0.4em; display: inline-block; transition: transform 320ms var(--ease); }
@media (hover: hover) and (pointer: fine) { .svc:hover .svc-arrow { transform: translateX(5px); } }
.svc h3 { font-size: 1.3rem; font-weight: 500; margin-bottom: 6px; display: flex; align-items: center; gap: 0.55em; }
.svc h3::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--dawn-2); flex: none;
  transition: transform 320ms var(--ease); }
.svc p { color: var(--ink-soft); font-size: 1rem; }
@media (hover: hover) and (pointer: fine) {
  .svc:hover { padding-left: 12px; }
  .svc:hover h3::before { transform: scale(1.5); }
}

/* ---- Approach: sand band ------------------------------------------- */
.approach { background: var(--tint); }
.approach-grid { display: grid; grid-template-columns: 0.9fr 1.4fr; gap: clamp(32px, 6vw, 72px); align-items: start; }
.approach h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 400; }
.values { display: grid; gap: 4px; }
.value { padding: 24px 0; border-top: 1px solid var(--line); }
.value:first-child { border-top: 0; }
.value h3 { font-size: 1.25rem; font-weight: 500; margin-bottom: 6px; display: flex; align-items: baseline; gap: 0.6em; }
.value h3::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--dawn-2); flex: none; transform: translateY(-1px); }
.value p { color: var(--ink-soft); }

/* ---- About --------------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.about-photo { position: relative; aspect-ratio: 4 / 5; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow); background: linear-gradient(160deg, var(--sage), var(--teal)); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.about h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 400; }
.about-role { color: var(--dawn-2); font-weight: 600; margin: 6px 0 22px; }
.about-bio p { color: var(--ink-soft); font-size: 1.08rem; }
.about-bio p + p { margin-top: 16px; }
.creds { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; }
.creds li { display: flex; align-items: center; gap: 12px; font-size: 1rem; }
.creds svg { color: var(--teal); flex: none; }

/* ---- Reviews ------------------------------------------------------- */
.reviews-head { display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap; margin-bottom: 44px; }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 44px); }
.quote { position: relative; }
.quote .stars { color: var(--dawn-2); letter-spacing: 2px; font-size: 1rem; margin-bottom: 12px; }
.quote .stars .dim { color: var(--line); }
.quote p { font-size: 1.1rem; color: var(--ink); line-height: 1.55; }
.quote .who { margin-top: 14px; font-size: 0.92rem; color: var(--ink-soft); }
.quote .pending { display: inline-block; margin-left: 8px; font-size: 0.72rem; font-weight: 600;
  color: var(--dawn-2); border: 1px solid var(--dawn); border-radius: 999px; padding: 1px 8px; }

/* review popup */
.review-modal {
  border: none; border-radius: var(--r-lg); padding: 0; max-width: 460px; width: calc(100% - 40px);
  background: var(--surface); color: var(--ink); box-shadow: var(--shadow-lg);
  opacity: 0; transform: scale(0.96) translateY(8px);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease), overlay 220ms allow-discrete, display 220ms allow-discrete;
}
.review-modal[open] { opacity: 1; transform: none; }
@starting-style { .review-modal[open] { opacity: 0; transform: scale(0.96) translateY(8px); } }
.review-modal::backdrop { background: rgba(24,28,24,.45); opacity: 0; transition: opacity 220ms var(--ease), overlay 220ms allow-discrete, display 220ms allow-discrete; }
.review-modal[open]::backdrop { opacity: 1; }
@starting-style { .review-modal[open]::backdrop { opacity: 0; } }
#reviewForm { padding: clamp(24px, 4vw, 34px); position: relative; }
#reviewForm h3 { font-size: 1.6rem; font-weight: 400; margin-bottom: 6px; }
.review-intro { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 22px; }
.review-close { position: absolute; top: 14px; right: 16px; background: none; border: 0; cursor: pointer;
  font-size: 1.8rem; line-height: 1; color: var(--ink-soft); transition: color 160ms var(--ease), transform 160ms var(--ease); }
.review-close:hover { color: var(--ink); transform: scale(1.1); }
#reviewForm .btn-primary { width: 100%; justify-content: center; margin-top: 4px; }

/* star rating input (row-reverse so it fills left→right) */
.stars-input { display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; font-size: 2rem; }
.stars-input input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.stars-input label { color: var(--line); cursor: pointer; transition: color 120ms ease, transform 120ms var(--ease); }
.stars-input label:active { transform: scale(1.18); }
@media (hover: hover) and (pointer: fine) {
  .stars-input label:hover, .stars-input label:hover ~ label { color: var(--dawn); }
}
.stars-input input:checked ~ label { color: var(--dawn-2); }
.stars-input input:focus-visible ~ label { outline: 2px solid var(--dawn-2); outline-offset: 2px; }

/* ---- Subpage header (FAQ page, etc.) ------------------------------- */
.page-head { padding: 150px 0 10px; text-align: center; }
.page-head .kicker { display: inline-block; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--dawn-2); margin-bottom: 14px; }
.page-head h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); font-weight: 400; }
.page-head p { margin: 16px auto 0; color: var(--ink-soft); max-width: 52ch; font-size: 1.1rem; }
.wrap.narrow { max-width: 760px; }
.service-body p { color: var(--ink-soft); font-size: 1.12rem; }
.service-body > [data-page-body] p + p { margin-top: 16px; }
.service-list-title { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 400; margin: 40px 0 20px; }
.service-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.service-points li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-size: 1.08rem; }
.service-points li svg { color: var(--teal); flex: none; margin-top: 3px; }
.service-closing { margin-top: 34px; font-family: var(--display); font-size: clamp(1.3rem, 2.4vw, 1.6rem); color: var(--ink); }

.faq-cta { text-align: center; padding: 10px 0 clamp(70px, 10vw, 120px); }
.faq-cta p { color: var(--ink-soft); margin-bottom: 18px; }

/* ---- FAQ accordion ------------------------------------------------- */
.faq-list { max-width: 800px; margin: 44px auto 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center;
  justify-content: space-between; gap: 24px; padding: 24px 4px;
  font-family: var(--display); font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 400; color: var(--ink);
  transition: color 180ms var(--ease); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { flex: none; font-family: var(--sans); font-size: 1.6rem; line-height: 1; color: var(--dawn-2);
  transition: transform 260ms var(--ease); }
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-a { padding: 0 4px 24px; }
.faq-a p { color: var(--ink-soft); max-width: 68ch; font-size: 1.05rem; }
@media (hover: hover) and (pointer: fine) { .faq-item summary:hover { color: var(--dawn-2); } }

/* ---- Booking: green drench + form card ----------------------------- */
.booking {
  background:
    radial-gradient(80% 70% at 12% 8%, rgba(216,168,127,.20), transparent 55%),
    linear-gradient(168deg, var(--deep) 0%, var(--deep-2) 100%);
  color: var(--on-deep);
}
.booking-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.booking h2 { color: var(--on-deep); font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 400; }
.booking-sub { color: var(--on-deep-soft); margin-top: 18px; font-size: 1.12rem; max-width: 42ch; }
.booking-contact { margin-top: 32px; display: grid; gap: 14px; }
.booking-contact a, .booking-contact div { display: flex; align-items: center; gap: 13px; color: var(--on-deep); font-size: 1.02rem; }
.booking-contact svg { color: var(--dawn); flex: none; }
.form-card { background: var(--surface); color: var(--ink); border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 38px); box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea { width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--bg);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), background-color 180ms var(--ease); }
.field textarea { resize: vertical; min-height: 108px; }
.field input::placeholder, .field textarea::placeholder { color: #a8a195; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sage);
  background: var(--surface); box-shadow: 0 0 0 4px rgba(111,132,117,.18); }
/* tap-to-choose chips (date/time made easy) */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.chip { display: inline-flex; align-items: center; padding: 10px 16px; border: 1px solid var(--line);
  border-radius: 999px; cursor: pointer; font-size: 0.95rem; color: var(--ink); background: var(--bg);
  user-select: none; transition: background-color 180ms var(--ease), color 180ms var(--ease),
  border-color 180ms var(--ease), transform 140ms var(--ease); }
.chip:active { transform: scale(0.96); }
@media (hover: hover) and (pointer: fine) { .chip:hover { border-color: var(--sage); } }
.chips input:checked + .chip { background: var(--deep); color: var(--on-deep); border-color: var(--deep); }
.chips input:focus-visible + .chip { outline: 2px solid var(--dawn-2); outline-offset: 2px; }

.form-card .btn-primary { width: 100%; justify-content: center; margin-top: 6px; }
.btn .btn-label { display: inline-flex; align-items: center; gap: 0.6em; transition: filter 220ms var(--ease), opacity 220ms var(--ease); }
.btn.loading .btn-label { filter: blur(3px); opacity: 0.6; }
.form-note { font-size: 0.85rem; color: var(--ink-soft); text-align: center; margin-top: 14px; }
.form-done { position: absolute; inset: 0; background: var(--surface); display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; gap: 8px; padding: 40px;
  opacity: 0; transform: scale(0.97); pointer-events: none; transition: opacity 360ms var(--ease), transform 360ms var(--ease); }
.form-done.show { opacity: 1; transform: none; pointer-events: auto; }
.form-done .check { width: 62px; height: 62px; border-radius: 50%; background: var(--tint); color: var(--teal);
  display: grid; place-items: center; margin-bottom: 6px; }
.form-done h3 { font-size: 1.5rem; font-weight: 400; }
.form-done p { color: var(--ink-soft); max-width: 32ch; }

/* ---- Footer -------------------------------------------------------- */
.footer { background: var(--deep); color: var(--on-deep-soft); padding-block: 64px 36px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 38px;
  border-bottom: 1px solid rgba(245,241,234,.14); }
.footer .brand { color: var(--on-deep); margin-bottom: 14px; }
.footer-tag { max-width: 34ch; }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px;
  color: var(--on-deep-soft); border: 1px solid rgba(245,241,234,.18);
  transition: color 180ms var(--ease), background-color 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease); }
@media (hover: hover) and (pointer: fine) {
  .socials a:hover { color: var(--deep); background: var(--dawn); border-color: var(--dawn); transform: translateY(-2px); }
}
.footer h4 { color: var(--on-deep); font-family: var(--sans); font-size: 0.95rem; font-weight: 600; margin: 0 0 14px; }
.footer-col a, .footer-col p { display: block; margin-bottom: 9px; font-size: 0.96rem; }
@media (hover: hover) and (pointer: fine) { .footer-col a:hover { color: var(--on-deep); } }
.footer-bottom { margin-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.84rem; color: rgba(205,210,201,.65); }
.footer-bottom .disc { max-width: 62ch; }

/* ---- Scroll reveal ------------------------------------------------- */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 750ms var(--ease), transform 750ms var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.js .stagger.in > * { animation: rise 700ms var(--ease) backwards; }
.js .stagger.in > :nth-child(2) { animation-delay: 70ms; }
.js .stagger.in > :nth-child(3) { animation-delay: 140ms; }

/* ---- Responsive ---------------------------------------------------- */
@media (max-width: 900px) {
  .mission-grid, .approach-grid, .about-grid, .booking-grid { grid-template-columns: 1fr; }
  .svc-list { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-photo { max-width: 420px; }
}
@media (max-width: 600px) {
  .nav-links { position: fixed; inset: 78px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 0; background: color-mix(in srgb, var(--bg) 97%, transparent); backdrop-filter: blur(14px);
    box-shadow: var(--shadow); transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: opacity 240ms var(--ease), transform 240ms var(--ease); }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a:not(.btn) { color: var(--ink-soft); padding: 14px 24px; }
  .nav-links a:not(.btn)::after { display: none; }
  .nav-cta { margin: 8px 24px 12px; justify-content: center; }
  .nav-toggle { display: grid; place-items: center; }
  .frow { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}

/* ---- Reduced motion ------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero::before { animation: none; }
  .hero-inner > *, .js .stagger.in > * { animation: none; opacity: 1; transform: none; }
  .js .reveal { opacity: 1; transform: none; transition: opacity 200ms ease; }
  .btn:active { transform: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.12s !important; }
}
