/* ==========================================================================
   PRESTIGE COLLECTIVE — Residence & Estate Care
   Brand stylesheet
   --------------------------------------------------------------------------
   Palette, type scale and component styles all live here.
   To re-skin: change the five brand colours in :root, nothing else.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Palette — Prestige Collective brand board */
  --ivory:      #F7F5F0;
  --stone:      #E7E2DA;
  --champagne:  #CBB89A;
  --taupe:      #A89E92;
  --charcoal:   #2B2B2B;

  /* Derived from the five above. --champagne-deep is champagne darkened for
     type and hairline icons: #CBB89A on ivory is only ~1.9:1 and fails
     legibility at small sizes. It reads as the same colour, just readable. */
  --ivory-warm:   #F1EEE7;   /* alternating section tint */
  --champagne-deep: #A98F63;
  --champagne-soft: #DCCDB4;

  /* Ink */
  --ink:        var(--charcoal);
  --ink-soft:   #5C5852;
  --ink-mute:   var(--taupe);

  /* Lines */
  --rule:       #DED8CE;
  --rule-soft:  #EAE5DC;

  /* Type */
  --display: "Cormorant Garamond", "Cormorant", "Didot", "Times New Roman", serif;
  --sans:    "Jost", "Futura", "Avenir Next", "Helvetica Neue", Arial, sans-serif;

  /* Rhythm */
  --gutter: clamp(1.25rem, 5vw, 4.5rem);
  --section-y: clamp(4rem, 9vw, 8rem);
  --maxw: 1280px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 0.005em;
  margin: 0;
  text-wrap: balance;   /* even line lengths; ignored by older browsers */
}

p { margin: 0; }

::selection { background: var(--champagne-soft); color: var(--ink); }

/* Focus — visible, but on-brand */
:focus-visible {
  outline: 1px solid var(--champagne-deep);
  outline-offset: 3px;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   3. Shared type utilities
   -------------------------------------------------------------------------- */
.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink-mute);
}

/* Centred eyebrow with hairlines either side, as on the mock */
.eyebrow--ruled {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
  color: var(--ink-soft);
}
.eyebrow--ruled::before,
.eyebrow--ruled::after {
  content: "";
  height: 1px;
  width: clamp(2rem, 12vw, 9rem);
  background: var(--rule);
}

.lede {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  color: var(--ink-soft);
  max-width: 58ch;
}

.display-xl { font-size: clamp(2.6rem, 6.2vw, 4.6rem); }
.display-l  { font-size: clamp(2rem, 4.2vw, 3.1rem); }
.display-m  { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.05rem 2.1rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--taupe);
  cursor: pointer;
  transition: background .45s var(--ease), color .45s var(--ease),
              border-color .45s var(--ease);
}
.btn:hover { background: var(--ink); border-color: var(--ink); color: var(--ivory); }

.btn--solid {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--ivory);
}
.btn--solid:hover { background: var(--champagne-deep); border-color: var(--champagne-deep); color: #fff; }

.btn--light {
  background: rgba(255,255,255,.88);
  border-color: rgba(255,255,255,.9);
  backdrop-filter: blur(6px);
}
.btn--light:hover { background: var(--ink); border-color: var(--ink); color: var(--ivory); }

.btn--sm { padding: 0.85rem 1.5rem; font-size: 0.64rem; }

/* Text link with an underline that draws in */
.link-quiet {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-bottom: 3px;
  background-image: linear-gradient(var(--champagne-deep), var(--champagne-deep));
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size .5s var(--ease), color .35s var(--ease);
}
.link-quiet:hover { background-size: 100% 1px; color: var(--ink); }

/* --------------------------------------------------------------------------
   5. Logo lockup
   -------------------------------------------------------------------------- */
.lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.lockup__mark { width: 29px; height: auto; color: var(--champagne-deep); flex: none; }
.lockup__type { display: flex; flex-direction: column; line-height: 1; }
.lockup__name {
  font-family: var(--sans);          /* geometric sans, per the brand board */
  font-weight: 300;
  font-size: 1.02rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}
.lockup__tag {
  font-family: var(--sans);
  font-size: 0.44rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champagne-deep);
  margin-top: 0.5rem;
}

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  background: rgba(247, 245, 240, 0);
  transition: background .5s var(--ease), box-shadow .5s var(--ease),
              padding .5s var(--ease);
  padding-block: 1.5rem;
}
.site-header.is-stuck {
  background: rgba(247, 245, 240, .93);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--rule-soft);
  padding-block: 0.9rem;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.6vw, 2.4rem);
}
.nav a {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color .3s var(--ease);
}
.nav a:hover { color: var(--champagne-deep); }

.nav-toggle {
  display: none;
  flex: none;              /* never let the wordmark squeeze it off-screen */
  margin-right: -10px;     /* optically align the bars to the page gutter */
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: none; border: 0; cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block; position: relative;
  width: 22px; height: 1px; background: var(--ink);
  transition: background .3s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 22px; height: 1px; background: var(--ink);
  transition: transform .4s var(--ease), top .3s var(--ease);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after  { top: 0; transform: rotate(-45deg); }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(640px, 92vh, 900px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ivory);
}

/* Photos are passed in from the HTML as --img, e.g. style="--img:url('/images/hero.jpg')".
   Those paths must start with a slash: a relative URL inside a custom property
   resolves against THIS stylesheet (css/), not the page, and would 404.
   The gradient underneath shows through whenever a photo is missing. */

/* Photo sits right; a wide ivory scrim keeps the headline legible */
.hero__media {
  position: absolute;
  inset: 0 0 0 32%;
  background-image: var(--img), linear-gradient(120deg, var(--stone), var(--taupe));
  background-size: cover;
  background-position: center;
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
              var(--ivory) 0%,
              rgba(247,245,240,.92) 22%,
              rgba(247,245,240,.35) 52%,
              rgba(247,245,240,0) 78%);
}

/* Keeps the navigation legible where the photo runs up behind the header */
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 180px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(247,245,240,.95) 0%,
                                      rgba(247,245,240,.72) 45%,
                                      rgba(247,245,240,0) 100%);
}

.hero__inner { position: relative; z-index: 2; width: 100%; padding-top: 6rem; }
.hero__copy { max-width: 48ch; }
/* The <br> in the headline sets the line breaks — don't let the box wrap it early */
.hero h1 { margin-bottom: 1.4rem; width: max-content; max-width: 100%; }
.hero__tag {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 2.4rem;
}

/* --------------------------------------------------------------------------
   8. Sections
   -------------------------------------------------------------------------- */
.section { padding-block: var(--section-y); }
.section--tint { background: var(--ivory-warm); }
.section--line { border-top: 1px solid var(--rule-soft); }

.section__head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__head h2 { margin-top: 1.6rem; }
.section__head p  { margin: 1.2rem auto 0; }

/* --------------------------------------------------------------------------
   9. Services grid
   -------------------------------------------------------------------------- */
/* Six services want an even 3 × 2 — auto-fit would leave two cards orphaned */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
}
@media (max-width: 1000px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .services { grid-template-columns: 1fr; } }

.service {
  position: relative;
  background: #fff;
  border: 1px solid var(--rule-soft);
  padding: 1rem 1rem 2rem;
  text-align: center;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease),
              border-color .6s var(--ease);
}
.service:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -30px rgba(46,43,38,.35);
  border-color: var(--taupe);
}
.service__photo {
  aspect-ratio: 4 / 3;
  background-image: var(--img), linear-gradient(140deg, var(--stone), var(--taupe));
  background-size: cover;
  background-position: center;
  margin-bottom: 1.5rem;
}
.service h3 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.service p { font-size: 0.92rem; color: var(--ink-soft); padding-inline: 1rem; }

/* "View Service" stretches over the whole card, so the entire tile is clickable */
.service__more {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--champagne-deep);
  transition: color .35s var(--ease);
}
.service__more::after { content: ""; position: absolute; inset: 0; }
.service:hover .service__more { color: var(--ink); }

/* --------------------------------------------------------------------------
   9b. Detail gallery — tall photos, captions beneath
   -------------------------------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
}
.gallery__item { margin: 0; }
.gallery__photo {
  aspect-ratio: 3 / 4;
  background-image: var(--img), linear-gradient(150deg, var(--stone), var(--taupe));
  background-size: cover;
  background-position: center;
  margin-bottom: 1.25rem;
  transition: filter .6s var(--ease);
}
.gallery__item:hover .gallery__photo { filter: brightness(1.04); }
.gallery__item figcaption {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding-bottom: 0.85rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid var(--rule-soft);
}
.gallery__item p { font-size: 0.88rem; color: var(--ink-soft); }

@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   10. Standard row (icons)
   -------------------------------------------------------------------------- */
.standard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
  text-align: center;
}
.standard__item svg {
  width: 34px; height: 34px;
  color: var(--champagne-deep);
  margin: 0 auto 1.4rem;
}
.standard__item h3 {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.standard__item p { font-size: 0.88rem; color: var(--ink-soft); }

/* Row label to the left, as on the mock */
.standard-block {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.standard-block > .eyebrow { padding-top: .25rem; }

/* --------------------------------------------------------------------------
   11. Split feature (care & wellness / about)
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
}
.split__media {
  aspect-ratio: 4 / 5;
  background-image: var(--img), linear-gradient(160deg, var(--stone), var(--taupe));
  background-size: cover;
  background-position: center;
}
.split--flip .split__media { order: 2; }
.split h2 { margin: 1.4rem 0 1.5rem; }

.accent-mark {
  width: 30px; height: 30px;
  color: var(--champagne-deep);
  margin-bottom: 1.4rem;
}

.checklist { list-style: none; margin: 2rem 0 0; padding: 0; }
.checklist li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--rule-soft);
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.checklist li:last-child { border-bottom: 1px solid var(--rule-soft); }
.checklist strong {
  display: block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.checklist svg { width: 16px; height: 16px; color: var(--champagne-deep); flex: none; margin-top: 5px; }

/* --------------------------------------------------------------------------
   12. Process
   -------------------------------------------------------------------------- */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  counter-reset: step;
}
.process__step { border-top: 1px solid var(--rule); padding-top: 1.6rem; }
.process__step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--champagne-deep);
  margin-bottom: 0.8rem;
}
.process__step h3 {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.process__step p { font-size: 0.9rem; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   13. Quote
   -------------------------------------------------------------------------- */
.quote { text-align: center; max-width: 46rem; margin-inline: auto; }
.quote blockquote {
  margin: 1.5rem 0 1.75rem;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.45;
}
.quote figcaption {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* --------------------------------------------------------------------------
   14. CTA band
   -------------------------------------------------------------------------- */
.cta {
  position: relative;
  text-align: center;
  background: var(--ivory-warm);
  border-block: 1px solid var(--rule-soft);
  overflow: hidden;
}
.cta__watermark {
  /* The whole arch sits inside the band, its baseline resting on the band's
     bottom edge, so it reads as placed rather than accidentally cropped. */
  position: absolute;
  right: 2%;
  bottom: 0;
  width: clamp(120px, 14vw, 200px);
  color: var(--champagne-deep);
  opacity: .16;
  pointer-events: none;
}
/* Below this width the centered headline reaches the mark; it's decorative, so drop it */
@media (max-width: 1100px) { .cta__watermark { display: none; } }
.cta__inner { position: relative; z-index: 2; }
.cta h2 { margin-bottom: 2rem; }

/* --------------------------------------------------------------------------
   15. Contact
   -------------------------------------------------------------------------- */
.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
}
.contact__detail { margin-top: 2.5rem; }
.contact__detail dt {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.4rem;
}
.contact__detail dd { margin: 0 0 1.75rem; font-size: 0.98rem; color: var(--ink-soft); }
.contact__detail a:hover { color: var(--champagne-deep); }

/* Small clarifying line under a contact detail, e.g. "Call or text" */
.muted-note {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.site-footer .muted-note { color: rgba(247,245,240,.45); }

.form { display: grid; gap: 1.5rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.field { display: grid; gap: 0.5rem; }
.field label {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 0.65rem 0;
  border-radius: 0;
  transition: border-color .4s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--champagne-deep);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%238A8177'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 12px;
}
.form__status {
  font-size: 0.85rem;
  color: var(--champagne-deep);
  min-height: 1.2em;
}
.honey { position: absolute; left: -9999px; }

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: var(--ivory-warm);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.site-footer .lockup__mark { color: var(--champagne-soft); }
.site-footer .lockup__tag { color: rgba(247,245,240,.55); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(247,245,240,.14);
}
.footer-grid h4 {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(247,245,240,.5);
  margin-bottom: 1.2rem;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 0.65rem; font-size: 0.92rem; color: rgba(247,245,240,.8); }
.footer-grid a:hover { color: var(--champagne-soft); }
/* Instagram link in the footer contact column */
.social {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.6rem;
  font-size: 0.88rem;
  color: rgba(247,245,240,.8);
  transition: color .35s var(--ease);
}
.social svg { width: 19px; height: 19px; flex: none; }
.social:hover { color: var(--champagne); }

.footer-blurb { font-size: 0.92rem; color: rgba(247,245,240,.7); max-width: 34ch; margin-top: 1.5rem; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,245,240,.45);
}

/* --------------------------------------------------------------------------
   17. Reveal on scroll
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   18. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .split, .contact { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
  .split__media { aspect-ratio: 4 / 3; }
  .standard-block { grid-template-columns: 1fr; }
  .standard-block > .eyebrow { text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  html { scroll-padding-top: 80px; }

  .nav-toggle { display: inline-flex; }

  /* Scale the lockup down so it shares the row with the menu button */
  .site-header__inner { gap: 1rem; }
  .site-header .lockup__mark { width: 24px; }
  .site-header .lockup__name { font-size: 0.8rem; letter-spacing: 0.16em; }
  .site-header .lockup__tag  { font-size: 0.4rem; letter-spacing: 0.24em; }

  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: var(--ivory);
    transform: translateX(100%);
    transition: transform .5s var(--ease);
    z-index: 55;
  }
  body.nav-open .nav { transform: none; }
  .nav a { font-size: 0.8rem; letter-spacing: 0.26em; }

  /* No backdrop-filter on mobile. A filtered element becomes the containing
     block for its fixed-position children, which would trap the full-screen
     menu inside this header bar. The near-opaque background reads the same. */
  .site-header,
  .site-header.is-stuck {
    background: rgba(247,245,240,.97);
    backdrop-filter: none;
  }
  .site-header__inner { position: relative; z-index: 60; }

  /* The menu panel is a sibling of these, so lift them above it —
     otherwise the logo and the close button vanish under the overlay. */
  .site-header .lockup,
  .nav-toggle { position: relative; z-index: 60; }

  .hero { min-height: 88vh; }
  .hero__media { inset: 0; }
  .hero__media::after {
    background: linear-gradient(180deg,
                rgba(247,245,240,.96) 0%,
                rgba(247,245,240,.82) 46%,
                rgba(247,245,240,.35) 100%);
  }
  .hero__inner { padding-top: 5rem; }
  .hero__copy { max-width: none; }

  .form__row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* Print — a tidy one-pager if a client prints the page */
@media print {
  .site-header, .cta, .nav-toggle, .hero__media { display: none !important; }
  body { background: #fff; }
  .section { padding-block: 1.5rem; }
}

/* --------------------------------------------------------------------------
   19. Service detail pages
   -------------------------------------------------------------------------- */
.page-hero {
  padding-block: clamp(7rem, 12vw, 10rem) clamp(3rem, 6vw, 5rem);
  background: var(--ivory);
}
.crumbs {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.crumbs a { transition: color .3s var(--ease); }
.crumbs a:hover { color: var(--champagne-deep); }
.crumbs span:last-child { color: var(--ink-soft); }

.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.page-hero h1 { margin: 1.4rem 0 1.5rem; }
.page-hero__media {
  aspect-ratio: 4 / 3;
  background-image: var(--img), linear-gradient(150deg, var(--stone), var(--taupe));
  background-size: cover;
  background-position: center;
}

/* Long-form copy — held to a readable measure */
.prose { max-width: 68ch; }
.prose h2 { margin: 1.4rem 0 1.5rem; }
.prose p {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.06rem);
  margin-bottom: 1.1rem;
}
.prose p:last-child { margin-bottom: 0; }

/* Two-column inclusion lists */
.includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.includes h3 {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 0.5rem;
}
.includes ul { list-style: none; margin: 0; padding: 0; }
.includes li {
  display: flex;
  gap: 0.9rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.includes svg { width: 15px; height: 15px; color: var(--champagne-deep); flex: none; margin-top: 6px; }

/* FAQ */
.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem) clamp(2rem, 6vw, 5rem);
  max-width: 1060px;
  margin-inline: auto;
}
.faq__item { border-top: 1px solid var(--rule); padding-top: 1.5rem; }
.faq__item h3 {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  margin-bottom: 0.85rem;
}
.faq__item p { font-size: 0.94rem; color: var(--ink-soft); }

@media (max-width: 900px) {
  .page-hero__grid,
  .includes,
  .faq { grid-template-columns: 1fr; }
  .page-hero__media { aspect-ratio: 16 / 10; }
}
