/* =====================================================================
   THE REAUX COLLECTIVE — Design System
   Tokens are closed. 2 typefaces, 5 type sizes, 6 colour roles,
   1 radius, 1 shadow, 1 spacing scale, 2 button tiers.
   ===================================================================== */

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 300 400;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-italic-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("../fonts/montserrat-latin.woff2") format("woff2");
}

:root {
  /* --- colour roles (6) --- */
  --bg:        #FDFBF8;   /* warm white field */
  --surface:   #F2ECE4;   /* soft ivory, warmed */
  --ink:       #1C1A18;   /* soft near-black */
  --muted:     #6E6259;   /* warm taupe-brown, passes 5.6:1 on --bg */
  --accent:    #B07A4F;   /* camel leather — means "you can act here" */
  --dark:      #1C1A18;   /* dark chapter-break field */

  /* structural derivatives (not new hues) */
  --dark-2:    #262320;
  --gold:      #D7C0A3;   /* hairline + rule on dark surfaces only */
  --line:      rgba(28, 26, 24, .16);
  --line-dark: rgba(215, 192, 163, .28);
  --cream:     #F4EFE9;

  /* --- type --- */
  --display-face: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --body-face:    "Montserrat", "Helvetica Neue", Arial, sans-serif;

  --fs-eyebrow: .75rem;                         /* 12px */
  --fs-body:    1.0625rem;                      /* 17px */
  --fs-lead:    1.25rem;                        /* 20px */
  --fs-h3:      1.5rem;                         /* 24px */
  --fs-h2:      clamp(2.25rem, 4.4vw, 3.5rem);
  --fs-display: clamp(3rem, 7.6vw, 6.5rem);

  /* --- spacing scale (no arbitrary values anywhere) --- */
  --s1: 4px;  --s2: 8px;  --s3: 16px; --s4: 24px;
  --s5: 40px; --s6: 64px; --s7: 104px; --s8: 168px;

  --radius: 2px;
  --shadow: 0 18px 44px rgba(28, 26, 24, .12);

  --ease: cubic-bezier(.2, .7, .3, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body-face);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0 0 var(--s4); }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--accent); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip {
  position: absolute; left: var(--s3); top: -100px; z-index: 200;
  background: var(--ink); color: var(--cream);
  padding: var(--s3) var(--s4); border-radius: var(--radius);
  text-decoration: none; font-size: var(--fs-eyebrow);
  letter-spacing: .14em; text-transform: uppercase;
  transition: top .2s var(--ease);
}
.skip:focus { top: var(--s3); }

/* ---------- layout ---------- */
.wrap { width: min(100% - var(--s5), 1280px); margin-inline: auto; }
.wrap-mid { width: min(100% - var(--s5), 1040px); margin-inline: auto; }
.wrap-narrow { width: min(100% - var(--s5), 680px); margin-inline: auto; }

.section { padding-block: var(--s7); }
.section--tall { padding-block: var(--s8); }
.section--tight { padding-block: var(--s6); }
.section--surface { background: var(--surface); }

@media (max-width: 760px) {
  .section { padding-block: var(--s6); }
  .section--tall { padding-block: var(--s7); }
  .wrap, .wrap-mid, .wrap-narrow { width: calc(100% - var(--s5)); }
}

/* ---------- typography ---------- */
.eyebrow {
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 var(--s4);
  display: block;
}
.eyebrow--rule { display: flex; align-items: center; gap: var(--s3); }
.eyebrow--rule::before, .eyebrow--rule::after {
  content: ""; height: 1px; flex: 1; background: var(--line); max-width: 64px;
}
.eyebrow--center { justify-content: center; }

.display {
  font-family: var(--display-face);
  font-size: var(--fs-display);
  line-height: 1.02;
  letter-spacing: -.015em;
  font-weight: 300;
}
.h2 {
  text-wrap: balance;
  font-family: var(--display-face);
  font-size: var(--fs-h2);
  line-height: 1.08;
  letter-spacing: -.01em;
  font-weight: 300;
  margin: 0 0 var(--s4);
}
.h3 {
  font-family: var(--display-face);
  font-size: var(--fs-h3);
  line-height: 1.25;
  font-weight: 500;
}
.lead {
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--muted);
}
.prose p { max-width: 68ch; }
.measure { max-width: 62ch; }
.center { text-align: center; }
.center .eyebrow { margin-inline: auto; }
.center .measure { margin-inline: auto; }

/* ---------- buttons: exactly two tiers ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px;
  padding: var(--s3) var(--s5);
  font-size: var(--fs-eyebrow);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .18s var(--ease), color .18s var(--ease),
              border-color .18s var(--ease), transform .18s var(--ease);
}
.btn--primary { background: var(--accent); color: var(--ink); }
.btn--primary:hover { background: #9C6B44; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.on-dark .btn--ghost { color: var(--cream); border-color: rgba(244, 239, 233, .45); }
.on-dark .btn--ghost:hover { background: var(--cream); color: var(--ink); }
.btn[data-reaux-button-color] {
  background: var(--reaux-button-bg);
  color: var(--reaux-button-fg);
  border-color: var(--reaux-button-bg);
}
.btn[data-reaux-button-color]:hover {
  background: color-mix(in srgb, var(--reaux-button-bg) 86%, var(--reaux-button-fg));
  color: var(--reaux-button-fg);
  border-color: var(--reaux-button-bg);
  transform: translateY(-2px);
}

.btn-row { display: flex; flex-wrap: wrap; gap: var(--s3); }
.center .btn-row { justify-content: center; }

/* one door out of every section */
.arrow {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-size: var(--fs-eyebrow); text-transform: uppercase;
  letter-spacing: .16em; font-weight: 600; text-decoration: none;
  padding-block: var(--s2);
  border-bottom: 1px solid var(--accent);
  transition: gap .18s var(--ease), color .18s var(--ease);
}
.arrow::after { content: "\2192"; transition: transform .18s var(--ease); }
.arrow:hover { color: var(--accent); }
.arrow:hover::after { transform: translateX(4px); }
.on-dark .arrow { color: var(--cream); border-bottom-color: var(--gold); }
.on-dark .arrow:hover { color: var(--gold); }
.arrow--feature {
  margin-top: var(--s2);
  padding: 12px var(--s3) 10px;
  background: rgba(176, 122, 79, .1);
  border-bottom-width: 2px;
  font-size: .8125rem;
  color: var(--ink);
}
.arrow--feature:hover {
  background: rgba(176, 122, 79, .18);
  color: var(--ink);
}

/* every logo lockup keeps its own aspect; the width/height attributes
   on the <img> must never be allowed to set the box */
.brand img, .drawer__top img, .footer__top img { display: block; max-width: 100%; }

/* ---------- header (solid background, sticky) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s4);
  padding-block: var(--s3);
}
.brand { display: inline-flex; align-items: center; }
.brand img { height: 54px; width: auto; }

.nav { display: flex; align-items: center; gap: var(--s5); }
.nav__list { display: flex; align-items: center; gap: var(--s4); }
.nav__link {
  position: relative;
  font-size: var(--fs-eyebrow);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  padding-block: var(--s2);
  white-space: nowrap;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--accent);
  transition: right .22s var(--ease);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { right: 0; }

.has-sub { position: relative; }
.subnav {
  position: absolute; top: 100%; left: -12px; min-width: 220px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: var(--s2) 0;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
  box-shadow: var(--shadow);
}
.has-sub:hover .subnav, .has-sub:focus-within .subnav {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.subnav a {
  display: block; padding: var(--s2) var(--s4);
  font-size: var(--fs-eyebrow); letter-spacing: .12em;
  text-transform: uppercase; text-decoration: none;
}
.subnav a:hover { background: var(--surface); color: var(--accent); }

.menu-toggle {
  display: none; align-items: center; gap: var(--s2);
  background: none; border: 0; cursor: pointer;
  min-height: 44px; padding: 0 var(--s2);
  font-size: var(--fs-eyebrow); letter-spacing: .16em; text-transform: uppercase;
}
.menu-toggle span { width: 22px; height: 1px; background: var(--ink); display: block; }
.menu-toggle i { display: grid; gap: 5px; }

/* full-screen drawer */
.drawer {
  position: fixed; inset: 0; z-index: 120;
  background: var(--dark); color: var(--cream);
  display: grid; grid-template-rows: auto 1fr auto;
  padding: var(--s4) 0 var(--s6);
  transform: translateY(-100%);
  transition: transform .38s var(--ease);
  overflow-y: auto;
}
.drawer[data-open="true"] { transform: translateY(0); }
.drawer__top { display: flex; align-items: center; justify-content: space-between; }
.drawer__top img { height: 44px; width: auto; }
.drawer__close {
  background: none; border: 0; cursor: pointer; color: var(--cream);
  font-size: var(--fs-eyebrow); letter-spacing: .16em; text-transform: uppercase;
  min-height: 44px; padding-inline: var(--s2);
}
.drawer__list { display: grid; gap: var(--s3); align-content: center; padding-block: var(--s5); }
.drawer__list a {
  font-family: var(--display-face); font-size: 2rem; line-height: 1.15;
  text-decoration: none; min-height: 44px; display: block;
}
.drawer__list .sub a { font-size: 1.15rem; font-family: var(--body-face); color: var(--gold); }
.drawer__list .sub { display: grid; gap: var(--s2); padding-left: var(--s4); margin-top: var(--s2); }
.drawer__foot { display: grid; gap: var(--s3); }
.drawer__foot .meta { font-size: var(--fs-eyebrow); letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }

@media (max-width: 1080px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
}

/* ---------- hero ---------- */
.hero { position: relative; isolation: isolate; color: var(--cream); }
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to bottom, rgba(20,18,16,.70) 0%, rgba(20,18,16,.56) 40%, rgba(20,18,16,.90) 100%);
}
.hero__inner {
  min-height: min(88vh, 860px);
  display: flex; flex-direction: column; justify-content: center;
  padding-block: var(--s7) var(--s6);
  text-align: center;
}
.hero .eyebrow { color: var(--gold); }
.hero .eyebrow--rule::before, .hero .eyebrow--rule::after { background: var(--line-dark); }
.hero__title { max-width: 18ch; margin-inline: auto; font-size: clamp(2.6rem, 5.4vw, 4.75rem); text-wrap: balance; }
.hero__support {
  margin: var(--s5) auto 0; max-width: 56ch;
  font-size: var(--fs-lead); color: rgba(244, 239, 233, .88);
}
.hero .btn-row { margin-top: var(--s5); }

.hero__strip {
  border-top: 1px solid var(--line-dark);
  margin-top: var(--s6);
  padding-top: var(--s4);
  display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s3) var(--s5);
  font-size: var(--fs-eyebrow); letter-spacing: .18em; text-transform: uppercase;
  color: rgba(244, 239, 233, .78);
}
.scroll-cue {
  margin-top: var(--s5); display: inline-flex; flex-direction: column;
  align-items: center; gap: var(--s2); align-self: center;
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(244, 239, 233, .6); text-decoration: none;
}
.scroll-cue i { display: block; width: 1px; height: 40px; background: var(--line-dark); position: relative; overflow: hidden; }
.scroll-cue i::after {
  content: ""; position: absolute; inset: 0; background: var(--gold);
  animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue { 0% { transform: translateY(-100%); } 60%,100% { transform: translateY(100%); } }

/* page hero (interior pages) */
.pagehero { position: relative; isolation: isolate; color: var(--cream); }
.pagehero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.pagehero__media img { width: 100%; height: 100%; object-fit: cover; }
.pagehero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(20,18,16,.72), rgba(20,18,16,.82));
}
.pagehero__inner { padding-block: var(--s7); text-align: center; }
.pagehero .eyebrow { color: var(--gold); }
.pagehero .eyebrow--rule::before, .pagehero .eyebrow--rule::after { background: var(--line-dark); }
.pagehero h1 { font-family: var(--display-face); font-size: var(--fs-h2); line-height: 1.06; font-weight: 300; max-width: 20ch; margin-inline: auto; }
.pagehero p { margin: var(--s4) auto 0; max-width: 58ch; color: rgba(244, 239, 233, .84); }

/* ---------- editorial statement ---------- */
.statement { text-align: center; }
.statement .h2 { max-width: 22ch; margin-inline: auto; }
.statement .lead { max-width: 62ch; margin-inline: auto; }
.statement .keywords {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: var(--s3) var(--s5); margin-top: var(--s6);
  font-size: var(--fs-eyebrow); letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
}
.contact-actions {
  width: min(100%, 21rem);
  margin-inline: auto;
  display: grid;
  gap: var(--s2);
  text-align: center;
}
.contact-actions li {
  padding: .2rem 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}
.contact-actions--feature {
  width: 100vw;
  margin: var(--s7) 0 calc(-1 * var(--s8));
  margin-left: calc(50% - 50vw);
  padding: calc(var(--s6) + 10px) max(var(--s5), calc((100vw - 1280px) / 2));
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  background: #262320;
  color: var(--cream);
  text-align: center;
}
.contact-actions--feature::before {
  content: "Find your place";
  grid-column: 1 / -1;
  margin-bottom: var(--s5);
  color: var(--gold);
  font-family: var(--body-face);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}
.contact-actions--feature li {
  min-height: 5.5rem;
  padding: var(--s3) var(--s4);
  display: grid;
  place-items: center;
  color: var(--cream);
  font-family: var(--display-face);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
  text-wrap: balance;
}
.contact-actions--feature li + li { border-left: 1px solid var(--line-dark); }
.contact-intro__lead { margin-top: var(--s5); }
@media (max-width: 900px) {
  .contact-actions--feature {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-inline: var(--s5);
  }
  .contact-actions--feature::before { grid-column: 1 / -1; }
  .contact-actions--feature li { border-top: 1px solid var(--line-dark); }
  .contact-actions--feature li + li { border-left: 0; }
  .contact-actions--feature li:nth-child(even) { border-left: 1px solid var(--line-dark); }
  .contact-actions--feature li:last-child { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .contact-actions--feature {
    grid-template-columns: 1fr;
    padding: var(--s5);
  }
  .contact-actions--feature li,
  .contact-actions--feature li:nth-child(even),
  .contact-actions--feature li:last-child { grid-column: 1; border-left: 0; }
  .contact-actions--feature li { min-height: 4.5rem; }
}
@media (max-width: 760px) {
  .contact-actions--feature { margin-bottom: calc(-1 * var(--s7)); }
}
.rule-mark {
  width: 1px; height: 56px; background: var(--line);
  margin: 0 auto var(--s5);
}

/* ---------- alternating feature rows (signature: bleeding numerals) ---------- */
.rows { display: grid; gap: var(--s6); }
@media (max-width: 900px) { .rows { gap: var(--s6); } }

.row {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: var(--s4); align-items: center;
  position: relative;
}
.row__media { grid-column: 1 / span 7; position: relative; }
.row__body  { grid-column: 9 / span 4; }
.row--flip .row__media { grid-column: 6 / span 7; grid-row: 1; }
.row--flip .row__body  { grid-column: 1 / span 4; grid-row: 1; }

.row__media img {
  width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius);
}

.row__body .h2 { margin-bottom: var(--s4); }
.row__body p { color: var(--muted); }
.row__body .arrow { margin-top: var(--s3); }

@media (max-width: 900px) {
  .row { grid-template-columns: 1fr; }
  .row__media, .row__body,
  .row--flip .row__media, .row--flip .row__body { grid-column: 1 / -1; grid-row: auto; }
  .row__body { margin-top: var(--s4); }
}

/* ---------- marquee (the single ambient motion element) ---------- */
.marquee {
  background: var(--dark); color: var(--gold);
  border-block: 1px solid var(--line-dark);
  overflow: hidden; padding-block: var(--s3);
}
.marquee__track { display: flex; width: max-content; animation: slide 42s linear infinite; }
.marquee__track span {
  font-size: var(--fs-eyebrow); letter-spacing: .28em; text-transform: uppercase;
  padding-inline: var(--s5); white-space: nowrap;
}
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- dark chapter break ---------- */
.band--dark { background: var(--dark-2); color: var(--cream); }
.band--dark .eyebrow { color: var(--gold); }
.band--dark .lead { color: rgba(244, 239, 233, .8); }
.band--dark .eyebrow--rule::before, .band--dark .eyebrow--rule::after { background: var(--line-dark); }
.band--dark .h2 { color: var(--cream); }

/* ---------- offering cards (one anatomy, everywhere) ---------- */
.cards {
  display: grid; gap: var(--s4);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.cards--two { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); max-width: 860px; }
.card {
  position: relative;
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: var(--s5) var(--s4) var(--s4);
  display: flex; flex-direction: column;
}
.section--surface .card { background: var(--surface); }
.cards > .card:nth-child(1) { background: color-mix(in srgb, var(--surface) 68%, var(--bg)); }
.cards > .card:nth-child(2) { background: color-mix(in srgb, var(--surface) 45%, var(--bg)); }
.cards > .card:nth-child(3) { background: color-mix(in srgb, var(--surface) 22%, var(--bg)); }
.cards > .card:nth-child(4),
.cards > .card:last-child { background: var(--bg); }
.cards--mailbox > .card:first-child { background: var(--bg); }
.cards--mailbox > .card:last-child { background: color-mix(in srgb, var(--surface) 45%, var(--bg)); }
.card__img {
  width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover;
  border-radius: var(--radius); margin-bottom: var(--s4);
}
.card__price {
  font-family: var(--display-face); font-size: 2.75rem; line-height: 1;
  font-weight: 300; display: flex; align-items: baseline; gap: var(--s2);
}
.card__price small { font-family: var(--body-face); font-size: var(--fs-eyebrow); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.card__promo {
  margin-top: var(--s2);
  font-size: var(--fs-eyebrow); letter-spacing: .1em; color: var(--muted);
}
.card__promo s { color: var(--muted); opacity: .75; }
.card__title { margin: var(--s4) 0 var(--s2); font-family: var(--display-face); font-size: var(--fs-h3); font-weight: 500; line-height: 1.2; }
.card__desc { color: var(--muted); font-size: .95rem; margin-bottom: var(--s4); }
.card__facts { margin-top: auto; border-top: 1px solid var(--line); padding-top: var(--s3); display: grid; gap: var(--s1); }
.card__facts li { font-size: var(--fs-eyebrow); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.card--featured { background: var(--surface); }
.card--badged::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent);
}
.card__badge {
  position: absolute; top: 3px; left: 0;
  background: var(--accent); color: var(--ink);
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  padding: var(--s1) var(--s2);
}
.section--surface .card--featured {
  border-top-color: var(--accent);
  box-shadow: inset 0 3px 0 var(--accent);
}

/* ---------- split feature (image + panel) ---------- */
.split { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--s5); align-items: center; }
.split__media { grid-column: 1 / span 7; }
.split__media img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; border-radius: var(--radius); }
.split__media img.portrait { aspect-ratio: 2 / 3; }
.split__body { grid-column: 9 / span 4; }
.service-intro { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(var(--s5), 5vw, var(--s7)); }
.service-intro .split__media,
.service-intro .split__body { grid-column: auto; }
.service-intro .split__body { width: 100%; max-width: 38rem; }
.service-intro .h2 { max-width: 18ch; text-wrap: pretty; }
.split--flip .split__media { grid-column: 6 / span 7; grid-row: 1; }
/* portrait variant: a face never gets the same width as a room */
.split--portrait .split__media { grid-column: 1 / span 5; }
.split--portrait .split__body  { grid-column: 7 / span 5; }
@media (max-width: 900px) {
  .split--portrait .split__media,
  .split--portrait .split__body { grid-column: 1 / -1; }
  .split--portrait .split__media { max-width: 360px; }
}
.split--flip .split__body { grid-column: 1 / span 4; grid-row: 1; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: var(--s4); }
  .split__media, .split__body,
  .split--flip .split__media, .split--flip .split__body { grid-column: 1 / -1; grid-row: auto; }
  .service-intro { grid-template-columns: 1fr; }
  .service-intro .split__body { width: min(100%, 42rem); max-width: none; }
}
@media (max-width: 760px) {
  .service-intro .h2 {
    max-width: 19ch;
    font-size: clamp(1.875rem, 8vw, 2.125rem);
    line-height: 1.06;
    text-wrap: pretty;
  }
}

/* ---------- list of details ---------- */
.detail-list { display: grid; gap: var(--s3); }
.detail-list li {
  display: grid; grid-template-columns: 18px 1fr; gap: var(--s3);
  color: var(--muted); font-size: .98rem;
}
.detail-list li::before { content: ""; height: 1px; background: var(--accent); margin-top: .78em; }
.on-dark .detail-list li::before { background: var(--gold); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: var(--s4);
  padding: var(--s4) 0; min-height: 56px;
  text-align: left; font-family: var(--display-face); font-size: 1.375rem; font-weight: 500;
}
.faq__q i { flex: none; width: 14px; height: 14px; position: relative; }
.faq__q i::before, .faq__q i::after {
  content: ""; position: absolute; background: var(--accent);
  left: 0; top: 50%; width: 14px; height: 1px; transition: transform .22s var(--ease);
}
.faq__q i::after { transform: rotate(90deg); }
.faq__q[aria-expanded="true"] i::after { transform: rotate(0deg); }
.faq__a { display: none; padding: 0 0 var(--s4); color: var(--muted); max-width: 66ch; }
.faq__q[aria-expanded="true"] + .faq__a { display: block; }

/* ---------- closing CTA ---------- */
.closing { text-align: center; }
.closing .btn-row { justify-content: center; }
.closing .display { font-size: clamp(2.5rem, 5.4vw, 4.25rem); max-width: 18ch; margin-inline: auto; }
.contact-closing .closing .display { max-width: 21ch; }
.closing .office-day-headline { max-width: 24ch; white-space: nowrap; }
@media (max-width: 640px) {
  .closing .office-day-headline { white-space: normal; }
}
.closing .lead { max-width: 54ch; margin: var(--s4) auto 0; }

/* ---------- forms ---------- */
.form { display: grid; gap: var(--s4); }
.form-trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.field { display: grid; gap: var(--s2); }
.field label, .fieldset legend {
  font-size: var(--fs-eyebrow); letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600; color: var(--muted);
}
.field input, .field textarea, .field select {
  font: inherit; font-size: 1rem;
  background: var(--bg); color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--s3); min-height: 52px; width: 100%;
  transition: border-color .18s var(--ease);
}
.field textarea { min-height: 148px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--accent); }
.field-row { display: grid; gap: var(--s4); grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; } }

.fieldset { border: 0; padding: 0; margin: 0; display: grid; gap: var(--s3); }
.checks { display: grid; gap: var(--s2); grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.check {
  display: flex; align-items: center; gap: var(--s3);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--s3); min-height: 52px; cursor: pointer;
  background: var(--bg); font-size: .95rem;
  transition: border-color .18s var(--ease), background .18s var(--ease);
}
.check:hover { border-color: var(--accent); }
.check input { width: 18px; height: 18px; accent-color: var(--accent); flex: none; }
.check:has(input:checked) { border-color: var(--accent); background: var(--surface); }

.conditional { display: none; border-left: 1px solid var(--accent); padding-left: var(--s4); gap: var(--s4); }
.conditional[data-open="true"] { display: grid; }
.date-rows { display: grid; gap: var(--s3); }
.date-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: var(--s3); align-items: end; }
@media (max-width: 640px) { .date-row { grid-template-columns: 1fr; } }
.linkbtn {
  background: none; border: 0; cursor: pointer; padding: var(--s2) 0; min-height: 44px;
  font-size: var(--fs-eyebrow); letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600; border-bottom: 1px solid var(--accent); justify-self: start;
}
.required-note { font-size: var(--fs-eyebrow); letter-spacing: .1em; color: var(--muted); }
.contact-success {
  display: none;
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding-block: var(--s5);
  scroll-margin-top: 82px;
}
.contact-success[data-show="true"] { display: block; }
.contact-success p { font-size: clamp(1.05rem, 1.7vw, 1.25rem); }
.contact-success strong { font-family: var(--display-face); font-size: 1.35em; font-weight: 400; }
.error-text { color: #8C3B22; font-size: .875rem; }

/* ---------- footer (background, never transparent) ---------- */
.site-footer { background: #15130F; border-top: 1px solid var(--line-dark); color: var(--cream); padding-block: var(--s6) var(--s5); }
.site-footer a { text-decoration: none; }
.footer__top {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: var(--s6);
  padding-bottom: var(--s5); border-bottom: 1px solid var(--line-dark);
}
.footer__top img { height: 56px; width: auto; }
.footer__blurb { color: rgba(244, 239, 233, .72); font-size: .95rem; margin-top: var(--s4); max-width: 34ch; }
.footer__col h2 {
  font-size: var(--fs-eyebrow); letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--s4);
}
.footer__col li { margin-bottom: var(--s2); }
.footer__col a:hover { color: var(--gold); }
.footer__col p { color: rgba(244, 239, 233, .72); font-size: .95rem; }

.footer__bar {
  padding-top: var(--s4);
  display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: var(--s4);
  font-size: var(--fs-eyebrow); letter-spacing: .12em; text-transform: uppercase;
  color: rgba(244, 239, 233, .72);
}
.footer__bar .socials { display: flex; gap: var(--s2); }
.social-link {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: rgba(244, 239, 233, .82);
  border-radius: 50%;
  transition: color .18s var(--ease), background .18s var(--ease), transform .18s var(--ease);
}
.social-link:hover,
.social-link:focus-visible {
  color: var(--gold);
  background: rgba(215, 192, 163, .1);
  transform: translateY(-1px);
}
.social-icon { display: block; width: 20px; height: 20px; fill: currentColor; }
.social-icon--instagram { fill: none; stroke: currentColor; stroke-width: 1.8; }
.social-icon--instagram .social-icon__dot { fill: currentColor; stroke: none; }
.footer__bar a:hover { color: var(--gold); }
.footer__bar .addr { text-align: center; font-style: normal; }
.footer__bar .phone { text-align: right; }
.footer__legal { margin-top: var(--s5); font-size: 11px; letter-spacing: .1em; color: rgba(244, 239, 233, .45); text-align: center; }

@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr; gap: var(--s5); }
  .footer__bar { grid-template-columns: 1fr; text-align: center; gap: var(--s3); }
  .footer__bar .socials { justify-content: center; }
  .footer__bar .addr, .footer__bar .phone { text-align: center; }
}

/* ---------- mobile sticky conversion bar (thumb zone) ---------- */
.mobilebar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 100;
  display: none; grid-template-columns: 1fr 1fr;
  background: var(--dark); border-top: 1px solid var(--line-dark);
}
.mobilebar a {
  min-height: 56px; display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: var(--fs-eyebrow); letter-spacing: .14em;
  text-transform: uppercase; font-weight: 600; color: var(--cream);
}
.mobilebar a.is-primary { background: var(--accent); color: var(--ink); }
@media (max-width: 760px) {
  .mobilebar { display: grid; }
  body { padding-bottom: 56px; }
}

/* ---------- misc ---------- */
.portrait { border-radius: var(--radius); width: 100%; height: auto; aspect-ratio: 2/3; object-fit: cover; }
.portrait-placeholder {
  width: 100%; aspect-ratio: 4/5; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
  display: grid; place-content: center; gap: var(--s2); text-align: center;
  color: var(--muted); font-size: var(--fs-eyebrow); letter-spacing: .16em; text-transform: uppercase;
}
.portrait-placeholder span:first-child { font-family: var(--display-face); font-size: 3rem; letter-spacing: 0; text-transform: none; color: var(--ink); }
.signature { font-family: var(--display-face); font-size: 1.5rem; margin-top: var(--s5); display: block; }
.note { font-size: .95rem; color: var(--muted); }
.hours { display: grid; gap: var(--s2); }
.hours div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: var(--s4); border-bottom: 1px solid var(--line); padding-bottom: var(--s2); font-size: .95rem; }
.hours span:first-child { color: var(--muted); }
.hours span:last-child { text-align: right; }
.hours small { display: inline-block; min-width: 6.5rem; margin-right: var(--s2); color: var(--muted); font: inherit; text-align: left; }
.hours--schedule { gap: var(--s5); }
.hours--schedule .hours__group { display: grid; gap: var(--s2); }
.hours--schedule h4 {
  margin: 0 0 var(--s1);
  color: var(--muted);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hours--schedule .hours__row {
  grid-template-columns: minmax(10rem, 1fr) minmax(7rem, .65fr);
  align-items: baseline;
  gap: var(--s4);
  padding-bottom: var(--s2);
}
.hours--schedule .hours__row span { color: var(--ink); text-align: left; }
.hours--schedule .hours__row strong { color: var(--muted); font-weight: 400; text-align: left; }
@media (max-width: 520px) {
  .hours div { grid-template-columns: 1fr; gap: var(--s2); }
  .hours span:last-child { text-align: left; }
  .hours--schedule .hours__row { grid-template-columns: minmax(9rem, 1fr) minmax(6.5rem, .65fr); }
}

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

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

/* The authenticated editor marks selectable content only inside its preview. */
.is-editor-preview [data-edit-key] {
  cursor: pointer;
  outline: 1px dashed transparent;
  outline-offset: 5px;
  transition: outline-color .18s var(--ease), background-color .18s var(--ease);
}
.is-editor-preview [data-edit-key]:hover,
.is-editor-preview [data-edit-key]:focus {
  outline-color: var(--accent);
  background-color: rgba(176, 122, 79, .10);
}
