/* ============================================================
   CHROME + PER-SECTION STYLING  (the big file)
   Persistent chrome (nav, footer, button, brandmark) + every section's
   styling + responsive. STRUCTURAL / content-free — copy as-is; you re-skin
   via tokens.css, not here. Section styling is class-based, so a section keeps
   its look no matter how you reorder/rename it in index.html.
   ============================================================ */

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-size: var(--step--1); font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.95em 1.5em; border-radius: var(--radius);
  background: var(--terracotta); color: #fff;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.btn:hover { background: var(--terracotta-deep); transform: translateY(-1px); }
.btn--sm { padding: 0.7em 1.1em; }
.btn--ghost { background: transparent; color: inherit; box-shadow: inset 0 0 0 1px var(--hairline-strong); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.06); box-shadow: inset 0 0 0 1px var(--text-on-dark); }
.btn__arrow { transition: transform var(--dur-fast) var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ---- Brandmark (nav + footer ONLY) ---- */
.brandmark {
  display: inline-flex;
  align-items: center;
  flex: none;
  line-height: 1;
}
.brandmark img {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}
.brandmark--nav img {
  width: clamp(5.85rem, 7.35vw, 8.15rem);
  max-height: 4.45rem;
}
.brandmark--footer img {
  width: clamp(8.8rem, 14vw, 12.8rem);
  max-height: clamp(8.8rem, 14vw, 12.8rem);
}

/* ---- Nav ---- : REMOVED. The nav is authoritatively defined in base.css
   (the shared shell / persistent chrome). The Sharp starter's stale nav block
   lived here and, loading AFTER base.css at equal specificity, was overriding
   the Graveyard nav: link colour (→ steel-muted), z-index (→ 50), is-scrolled
   background, and — critically — `@media(max-width:760px){.nav__links{display:none}}`
   which broke the mobile overlay menu (display:none even when .is-open). Excised
   by the lead so base.css owns the nav cascade cleanly. */

/* Same-family neighbours (ink↔ink) blend into one continuous surface; cross-
   family seams read by colour alone — set each section's data-bg per the
   color-rhythm law. */

/* ════════════════════════════════════════════════════════════
   SECTION STYLING  (hero · trust · services · work · before/after ·
   statement-media · craft · cinematic · breath · statement-quote ·
   process · reviews · team · faq · contact · footer)
   ════════════════════════════════════════════════════════════ */

/* ---- Shared section head ---- */
.sec-head { max-width: 56ch; margin-bottom: var(--space-l); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head .eyebrow { display: block; margin-bottom: var(--space-s); }
.sec-head h2 { font-size: clamp(3rem, 1.7rem + 6vw, 6.75rem); line-height: 1.0; }
.sec-head__lede { margin-top: var(--space-s); font-size: var(--step-0); color: var(--text-on-dark-muted); max-width: 46ch; }
.sec-head--center .sec-head__lede { margin-inline: auto; }
[data-bg="marble"] .sec-head__lede,
[data-bg="cream"] .sec-head__lede { color: var(--text-on-light-muted); }

/* eyebrow tone shifts with the surface */
[data-bg="marble"] .eyebrow,
[data-bg="cream"] .eyebrow { color: var(--stone-500); }

/* inline arrow link (terracotta, grows on hover) */
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: var(--step--1); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--terracotta); padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: gap var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.link-arrow:hover { gap: 0.85em; border-color: var(--terracotta); }

/* ---- 01 · HERO ---- */
.hero {
  --hero-reveal: 56%;
  --hero-seam-angle: clamp(0.85rem, 1.7vw, 2.8rem);
  position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding-block: 0;
  background: var(--ink-900);
}
.js .hero { --hero-reveal: 8%; }
.is-solo .hero,
.is-reduced-motion .hero { --hero-reveal: 56%; }
@media (prefers-reduced-motion: reduce) {
  .js .hero { --hero-reveal: 56%; }
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media::after {
  content: '';
  position: absolute;
  top: -10%;
  bottom: -10%;
  left: calc(100% - var(--hero-reveal));
  width: 2px;
  z-index: 3;
  background: linear-gradient(180deg, transparent, rgba(226, 190, 156, 0.95) 18%, rgba(255, 255, 255, 0.72) 48%, rgba(226, 190, 156, 0.72) 76%, transparent);
  box-shadow: 0 0 2.3rem rgba(226, 190, 156, 0.42);
  opacity: 0.82;
  transform: translateX(-50%) rotate(6deg);
  transform-origin: 50% 50%;
  pointer-events: none;
}
.hero__layer { position: absolute; inset: 0; background-size: cover; background-position: 54% center; }
.hero__layer--sketch {
  background-image: url('../assets/scenes/hero-sketch.jpg');
  filter: saturate(0.96) contrast(1.04) brightness(0.96);
  opacity: 1;
}
.hero__layer--life {
  background-image: url('../assets/scenes/hero-photo.jpg');
  filter: saturate(0.94) contrast(1.04) brightness(0.98);
  clip-path: polygon(
    calc(100% - var(--hero-reveal) + var(--hero-seam-angle)) 0,
    100% 0,
    100% 100%,
    calc(100% - var(--hero-reveal) - var(--hero-seam-angle)) 100%
  );
  will-change: clip-path;
}
.hero__sketch-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url('../assets/scenes/hero-sketch.jpg');
  background-size: cover;
  background-position: 54% center;
  filter: saturate(0.96) contrast(1.08) brightness(0.92);
  clip-path: polygon(
    0 0,
    calc(100% - var(--hero-reveal) + var(--hero-seam-angle)) 0,
    calc(100% - var(--hero-reveal) - var(--hero-seam-angle)) 100%,
    0 100%
  );
  opacity: 0.36;
  mix-blend-mode: screen;
  pointer-events: none;
  will-change: clip-path;
}
.hero__scrim {
  position: absolute; inset: 0;
  z-index: 4;
  background:
    linear-gradient(180deg, rgba(9,9,10,0.42) 0%, rgba(9,9,10,0.04) 30%, rgba(9,9,10,0.3) 100%),
    linear-gradient(96deg, rgba(5,5,5,0.72) 0%, rgba(7,7,8,0.42) 18%, rgba(14,14,14,0.16) 43%, rgba(14,14,14,0.04) 76%, rgba(9,9,10,0.16) 100%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-block: calc(var(--nav-h) + var(--space-l)) var(--space-xl); }
.hero__content { max-width: 35rem; transform: translateY(1.4rem); }
.hero__eyebrow { display: flex; align-items: center; gap: 0.85em; color: var(--text-on-dark-muted); }
.hero__eyebrow::before { content: ''; width: 2.2rem; height: 1px; background: var(--terracotta); flex: none; }
.hero__title { font-size: clamp(4.7rem, 8vw, 8.05rem); margin: var(--space-s) 0 var(--space-m); max-width: 7.25ch; line-height: 0.94; letter-spacing: 0; }
.hero__lede { font-size: var(--step-1); color: var(--text-on-dark); opacity: 0.9; max-width: 36ch; margin-bottom: var(--space-l); text-shadow: 0 1px 1.5rem rgba(0,0,0,0.34); }
.hero__cta { display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-s); }
.hero__cta .btn { min-width: min(24.5rem, 100%); justify-content: space-between; }
.hero__scroll {
  position: absolute; left: 50%; bottom: var(--space-m); transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.7em;
  font-size: var(--step--1); letter-spacing: var(--tracking-label); text-transform: uppercase;
  color: var(--text-on-dark-muted);
}
.hero__scroll i { width: 1px; height: 2.4rem; background: linear-gradient(var(--terracotta), transparent); transform-origin: top; animation: scrollcue 2.4s var(--ease-inout) infinite; }
@keyframes scrollcue { 0% { transform: scaleY(0); } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---- 02 · TRUST BAR (scope rail + proof stats) ---- */
.trust {
  padding-block: clamp(1.65rem, 2.65vw, 2.75rem) clamp(2.2rem, 3.1vw, 3.25rem);
  overflow: hidden;
  background:
    linear-gradient(rgba(18,18,19,0.42), rgba(18,18,19,0.42)),
    url('../assets/textures/bg-dark.jpg') center / cover,
    var(--ink-900);
}
.scope-rail {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  overflow: hidden;
  border-block: 1px solid rgba(236,233,227,0.13);
}
.scope-rail::before,
.scope-rail::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(18vw, 16rem);
  pointer-events: none;
}
.scope-rail::before {
  left: 0;
  background: linear-gradient(90deg, var(--ink-900), rgba(26,26,27,0));
}
.scope-rail::after {
  right: 0;
  background: linear-gradient(270deg, var(--ink-900), rgba(26,26,27,0));
}
.scope-rail__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: clamp(2.1rem, 3.4vw, 3.8rem);
  padding-block: clamp(0.82rem, 1.25vw, 1.15rem);
  padding-inline: min(4vw, 3.5rem);
  animation: scope-marquee 38s linear infinite;
  will-change: transform;
}
.scope-rail:hover .scope-rail__track {
  animation-play-state: paused;
}
.scope-rail__track span {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 2.45rem);
  font-weight: 420;
  line-height: 1;
  color: rgba(236,233,227,0.93);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  white-space: nowrap;
}
.scope-rail__track i {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--terracotta-soft);
  flex: none;
}
.trust__proofs {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(1.2rem, 2vw, 1.95rem);
  border: 1px solid rgba(236,233,227,0.13);
  background: rgba(11,11,11,0.24);
}
.trust__proofs li {
  display: grid;
  gap: 0.12rem;
  min-height: clamp(5.4rem, 6.8vw, 6.8rem);
  place-items: center;
  padding: clamp(0.95rem, 1.45vw, 1.45rem);
  text-align: center;
}
.trust__proofs li + li {
  border-left: 1px solid rgba(236,233,227,0.13);
}
.trust__proofs strong {
  color: rgba(236,233,227,0.95);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.85vw, 1.95rem);
  font-weight: 420;
  line-height: 1.04;
  text-wrap: balance;
}
.trust__proofs span {
  color: var(--text-on-dark-muted);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
@keyframes scope-marquee {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .scope-rail__track { animation: none; }
}

/* ---- 03 · SERVICES — "Everything, under one roof" (text-forward offerings) ----
   A marble breath between the dark trust bar and the dark Selected Work. NO
   project photos here (those live in #work) so the two stop competing. Clean
   even 3-col grid of text cards in Elu's voice — fits the viewport, nothing
   cut off. Cards keep .svc-tile + .svc-tile__name as hooks (global hover-pop). */
.services {
  overflow: hidden;
  padding-block: clamp(3.6rem, 5.4vw, 5.6rem) clamp(3.4rem, 5vw, 5.2rem);
  background:
    linear-gradient(rgba(245,242,236,0.82), rgba(245,242,236,0.82)),
    url('../assets/textures/bg-light.jpg') center / cover,
    var(--marble-50);
}
.services__head {
  max-width: 56rem;
  margin-bottom: clamp(2.4rem, 3.6vw, 3.8rem);
  text-align: center;
}
.services__head .eyebrow {
  color: var(--terracotta);
  letter-spacing: 0.34em;
  margin-bottom: clamp(0.85rem, 1.2vw, 1.15rem);
}
.services__head h2 {
  font-size: clamp(3.4rem, 5.6vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.018em;
  text-wrap: balance;
}
.services__head .sec-head__lede {
  max-width: 50rem;
  margin-top: clamp(0.9rem, 1.2vw, 1.25rem);
  font-size: clamp(1.02rem, 1.18vw, 1.22rem);
  line-height: 1.6;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.95rem, 1.3vw, 1.5rem);
}
.svc-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(1.85rem, 2.5vw, 2.7rem) clamp(1.7rem, 2.3vw, 2.5rem) clamp(2rem, 2.7vw, 2.85rem);
  border: 1px solid rgba(68, 64, 58, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(250, 247, 241, 0.95), rgba(240, 235, 225, 0.92)),
    var(--marble-50);
  box-shadow: 0 18px 42px -28px rgba(31, 25, 20, 0.34);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
/* a hairline terracotta edge wakes up on hover (transform-free so it never
   fights the motion lane's global scale-pop, which owns transform) */
.svc-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px transparent, inset 0 3px 0 -1px transparent;
  transition: box-shadow var(--dur) var(--ease-out);
  pointer-events: none;
}
.svc-tile:hover {
  border-color: rgba(192, 97, 61, 0.4);
  box-shadow: 0 26px 54px -26px rgba(31, 25, 20, 0.42);
}
.svc-tile:hover::before {
  box-shadow: inset 0 3px 0 0 var(--terracotta), inset 0 0 0 1px rgba(192, 97, 61, 0.22);
}
.svc-tile__meta {
  display: block;
  font-size: clamp(0.66rem, 0.78vw, 0.76rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
}
.svc-tile__name {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.15vw, 2.15rem);
  font-weight: 400;
  line-height: 1.05;
  color: #1c1916;
  margin-top: clamp(0.7rem, 1vw, 1rem);
}
/* terracotta rule sits directly under the (single-line) name, so it lands on a
   consistent baseline across the whole grid (meta + name heights are uniform) */
.svc-tile__name::after {
  content: "";
  display: block;
  width: 2.7rem;
  height: 2px;
  margin-top: clamp(0.95rem, 1.3vw, 1.3rem);
  background: var(--terracotta);
}
/* blurb is pushed to the card bottom so the body copy bottom-aligns across a row
   regardless of length — keeps the internal rhythm tidy on equal-height cards */
.svc-tile__blurb {
  margin-top: auto;
  padding-top: clamp(1rem, 1.4vw, 1.4rem);
  color: rgba(68, 64, 58, 0.82);
  font-size: clamp(1rem, 1.06vw, 1.12rem);
  line-height: 1.66;
}

@media (max-width: 900px) {
  .services__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .services { padding-block: var(--space-xl); }
  .services__head h2 {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }
  .services__grid {
    grid-template-columns: 1fr;
  }
}

/* ---- 04 · SELECTED WORK — "One client, every surface" ---- */
.work {
  padding-block: clamp(2.7rem, 3.55vw, 3.95rem) clamp(2.2rem, 3vw, 3.2rem);
  background:
    linear-gradient(to bottom, rgba(16,16,17,0.08), rgba(16,16,17,0.17) 72%, rgba(16,16,17,0.3)),
    url('../assets/textures/bg-dark.jpg') center top / cover no-repeat,
    var(--ink-900);
}
.work .wrap--wide {
  max-width: none;
  padding-inline: clamp(3rem, 5.6vw, 6.75rem);
}
.work__head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.72fr);
  align-items: center;
  gap: clamp(2.35rem, 4.25vw, 5rem);
  margin-bottom: clamp(1.35rem, 2.05vw, 1.95rem);
}
.work__head h2 { font-size: clamp(3.4rem, 4.75vw, 5.55rem); line-height: 0.98; margin-top: 0.22em; max-width: 14ch; text-wrap: balance; }
.work__head > p {
  color: rgba(236,233,227,0.82);
  font-size: clamp(1rem, 1.12vw, 1.2rem);
  line-height: 1.7;
  padding-left: clamp(2rem, 3.75vw, 4rem);
  border-left: 1px solid var(--hairline-strong);
}
.work__mosaic {
  display: grid;
  grid-template-columns: 1fr 1.42fr 0.9fr 0.9fr;
  grid-template-rows: clamp(18rem, 25.2vw, 23rem) clamp(14rem, 18.7vw, 17.5rem) clamp(15rem, 20vw, 19rem);
  gap: clamp(0.8rem, 1.05vw, 1.05rem);
}
.work-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border-radius: 4px;
  background: var(--ink-800);
  box-shadow: inset 0 0 0 1px var(--hairline);
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.03) brightness(1.03);
  transition: transform var(--dur-slow) var(--ease-out);
}
.work-card:hover img { transform: scale(1.04); }
.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,9,10,0.8), rgba(9,9,10,0.22) 34%, rgba(9,9,10,0.04) 66%);
}
.work-card > span {
  position: absolute;
  left: clamp(1.15rem, 1.6vw, 1.7rem);
  right: 1.15rem;
  bottom: clamp(1.45rem, 2.05vw, 2.1rem);
  z-index: 1;
  display: grid;
  gap: 0.28rem;
}
.work-card strong {
  font-size: clamp(0.78rem, 0.9vw, 0.92rem);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.work-card em {
  font-style: normal;
  font-size: clamp(0.7rem, 0.8vw, 0.82rem);
  letter-spacing: 0.05em;
  color: rgba(236,233,227,0.7);
}
.work-card--bath { grid-column: 1; grid-row: 1; }
.work-card--kitchen { grid-column: 1; grid-row: 2; }
.work-card--feature { grid-column: 2; grid-row: 1 / span 2; display: grid; grid-template-rows: 1fr 0.98fr; }
.work-card--feature::after { display: none; }
.work-card--feature img { min-height: 0; object-position: 50% 52%; }
.work-card__story {
  padding: clamp(1.3rem, 1.85vw, 1.95rem);
  background: rgba(13,13,13,0.95);
  box-shadow: inset 0 0 0 1px var(--hairline);
}
.work-card__story p:first-child {
  color: var(--terracotta-soft);
  font-size: var(--step--1);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.work-card__story h3 { font-size: clamp(2.15rem, 3.4vw, 3.85rem); line-height: 1; }
.work-card__story i {
  display: block;
  width: 3.2rem;
  height: 2px;
  background: var(--terracotta-soft);
  margin: clamp(1rem, 1.5vw, 1.45rem) 0;
}
.work-card__story p:not(:first-child) { color: rgba(236,233,227,0.72); max-width: 34ch; }
.work-card--penthouse { grid-column: 3; grid-row: 1; }
.work-card--green { grid-column: 4; grid-row: 1; }
.work-card--modern { grid-column: 3 / span 2; grid-row: 2; }
/* third row — wide landscape lead + two near-square cards */
.work-card--powder { grid-column: 1 / span 2; grid-row: 3; }
.work-card--spa { grid-column: 3; grid-row: 3; }
.work-card--detail { grid-column: 4; grid-row: 3; }
/* per-slot framing — portrait images sit in narrow slots, landscapes fill the wide ones */
.work-card--green img { object-position: 50% 38%; }  /* powder-room portrait: keep vanity/mirror in frame */
.work-card--powder img { object-position: 50% 50%; }
.work-card--spa img { object-position: 50% 58%; }     /* kitchen landscape in near-square: hold the island */
.work-card--detail img { object-position: 50% 50%; }

/* ---- 05 · BEFORE / AFTER (draggable reveal) ---- */
.ba {
  padding-block: clamp(2.35rem, 3.25vw, 3.95rem) clamp(3.25rem, 4.6vw, 5.1rem);
  background:
    radial-gradient(circle at 17% 22%, rgba(192,97,61,0.08), transparent 24rem),
    linear-gradient(rgba(12,12,12,0.26), rgba(12,12,12,0.42)),
    url('../assets/textures/bg-dark.jpg') center bottom / cover no-repeat,
    var(--ink-900);
}
.ba__layout {
  display: grid;
  grid-template-columns: minmax(19rem, 0.78fr) minmax(0, 1.68fr);
  align-items: center; /* center the (now-shorter 4:3) stage against the copy */
  gap: clamp(2.4rem, 3.7vw, 4.4rem);
}
.ba__copy { padding-top: clamp(1rem, 1.55vw, 1.8rem); }
.ba__copy h2 { font-size: clamp(3.75rem, 5vw, 6rem); line-height: 0.98; margin-top: var(--space-s); text-wrap: balance; }
.ba__copy i { display: block; width: 5.2rem; height: 2px; background: var(--terracotta-soft); margin: clamp(1.45rem, 2vw, 2.1rem) 0; }
.ba__copy p:not(.eyebrow) { color: rgba(236,233,227,0.78); max-width: 32ch; font-size: clamp(1.02rem, 1.12vw, 1.18rem); line-height: 1.76; }
.ba__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 2vw, 2.3rem);
  margin-top: clamp(2.2rem, 3.1vw, 3.55rem);
}
.ba__actions .btn {
  min-width: min(22.5rem, 100%);
  min-height: 5rem;
  justify-content: center;
  letter-spacing: 0.09em;
}
.ba__actions .link-arrow { margin-top: 0; }
.ba__stage { max-width: 54rem; justify-self: end; width: 100%; }
.ba__pairs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 1.6vw, 1.6rem);
}
.ba__pair { margin: 0; }
.ba__caption {
  margin-top: clamp(0.75rem, 1vw, 1rem);
  color: rgba(236,233,227,0.74);
  font-size: var(--step--1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ba__slider {
  /* FULL UNCROPPED: real masters are 1448×1086 (4:3 horizontal). The container
     AR is locked to the image AR so object-fit: cover shows the WHOLE image with
     zero pixels cut. Both pairs share identical-dimension files → identical AR. */
  position: relative; width: 100%; margin: 0;
  aspect-ratio: 1448 / 1086; overflow: hidden; border-radius: 10px;
  touch-action: pan-y; user-select: none; cursor: ew-resize; --pos: 50%;
  box-shadow: 0 30px 60px -34px rgba(0,0,0,0.7);
}
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; pointer-events: none; }
.ba__img--after { object-position: 50% 50%; }
.ba__before .ba__img { object-position: 50% 50%; }
.ba__before { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba__handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; background: rgba(255,255,255,0.9); transform: translateX(-50%); pointer-events: none; }
.ba__grip { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 3.4rem; height: 3.4rem; border-radius: 50%; background: rgba(245,242,236,0.96); color: #121419; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0,0,0,0.34); }
.ba__grip svg { width: 0.95rem; height: 0.95rem; }
.ba__tag { position: absolute; top: var(--space-s); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.42em 0.72em; border-radius: 6px; background: rgba(16,16,16,0.74); backdrop-filter: blur(6px); color: #fff; pointer-events: none; }
.ba__tag--before { left: var(--space-s); }
.ba__tag--after { right: var(--space-s); background: var(--terracotta); }
.ba__range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; pointer-events: none; }
.ba__slider:focus-within .ba__grip { outline: 2px solid #fff; outline-offset: 3px; }
.ba__hint {
  margin-top: 1.25rem;
  text-align: center;
  color: rgba(236,233,227,0.82);
  font-size: var(--step--1);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.ba__hint::before {
  content: "";
  display: block;
  width: 4.2rem;
  height: 2px;
  margin: 0 auto 0.85rem;
  background: var(--terracotta-soft);
}

/* ---- 06 · STATEMENT MEDIA — frame-sequence scroll-scrub (.tilestone) ----
   A 16:9 media card on the plain accent field. It enters SMALL, the section
   pins at center, and over the pinned scroll the card GROWS small->large while
   the <canvas> scrubs a frame sequence on the same beat (motion.js). The grow is
   driven by the --ts-w width var; it stops short of full-bleed so rounded corners
   + a little margin survive at max (the Beanro pin-grow). */
/* No overflow clip + no fixed min-height here: ScrollTrigger pins .tilestone__inner
   and owns the section height via its pin-spacer; clipping a pinned child's spacer
   causes jumps. The card is centered and <=92vw, so nothing overflows the field. */
.tilestone { position: relative; padding-block: 0; }
.tilestone__inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  /* This is a .wrap, but the card grows to 92vw -- wider than the wrap's
     max-width/gutters, which would push it off-center. Span the full viewport
     so place-items:center centers the stage on the TRUE viewport center. */
  max-width: none;
  width: 100%;
  padding-inline: 0;
}
.tilestone__stage {
  position: relative;
  width: var(--ts-w, min(46vw, 560px)); /* motion.js animates --ts-w; this is the static/fallback small size */
  max-width: 92vw;
  will-change: width;
}
.tilestone__card {
  position: relative;
  margin: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: clamp(14px, 1.6vw, 26px);
  overflow: hidden;
  /* Poster as the card's base layer: shows before frames paint, and is the real
     still for reduced-motion / no-canvas users. The <canvas> paints over it. */
  background: var(--terracotta-deep) url('../assets/signature-frames/poster.jpg') center / cover no-repeat;
  box-shadow: 0 2.4rem 6.5rem rgba(53, 15, 8, 0.46);
}
.tilestone__video,
.tilestone__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}
.tilestone__video { z-index: 1; transition: opacity 500ms var(--ease-out); }
.tilestone__canvas { display: none; z-index: 2; }
.tilestone__video.is-fallback { opacity: 0; }
.tilestone__side {
  position: absolute;
  z-index: 3;
  top: -2.55rem;
  color: rgba(255, 245, 238, 0.95);
  letter-spacing: 0.22em;
  text-shadow: 0 1px 16px rgba(40, 12, 4, 0.5);
  white-space: nowrap;
}
.tilestone__side--left { left: 0.15rem; }
.tilestone__side--right { right: 0.15rem; }
.tilestone__side--left::before,
.tilestone__side--right::after {
  content: "";
  display: inline-block;
  width: 2.45rem;
  height: 1px;
  vertical-align: middle;
  background: rgba(255, 245, 238, 0.55);
}
.tilestone__side--left::before { margin-right: 1.1rem; }
.tilestone__side--right::after { margin-left: 1.1rem; }
.tilestone__tag {
  position: absolute;
  z-index: 3;
  top: calc(100% + 2.6rem);
  left: 0;
  right: 0;
  margin-inline: auto; /* center WITHOUT transform — data-reveal's gsap owns transform */
  width: min(92vw, 32rem);
  text-align: center;
  color: rgba(255, 245, 238, 0.9);
  font-size: clamp(1.04rem, 1.18vw, 1.22rem);
  line-height: 1.55;
  letter-spacing: 0.05em;
}
@media (prefers-reduced-motion: reduce) {
  .tilestone__video { opacity: 1; }
  .tilestone__canvas { display: none; }
}

/* ---- 07 · CRAFT DETAILS ---- */
.craft {
  display: grid;
  grid-template-columns: minmax(0, 51.25%) minmax(0, 48.75%);
  min-height: clamp(46rem, 100svh, 58.5rem);
  padding-block: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 96% 16%, rgba(89, 89, 89, 0.18), transparent 29rem),
    var(--ink-900);
}
.craft__media {
  position: relative;
  min-height: clamp(46rem, 100svh, 58.5rem);
  overflow: hidden;
  background: #0d0f12;
}
.craft__media img {
  width: 100%;
  height: 100%;
  min-height: clamp(46rem, 100svh, 58.5rem);
  object-fit: cover;
  object-position: 67% 52%;
  /* undimmed (Jun 19): full-brightness craft photo */
  filter: saturate(1.0) contrast(1.04) brightness(1.04);
  transform: scale(1.04);
}
.craft__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9,9,10,0.04), rgba(9,9,10,0) 38%, rgba(26,26,27,0.28) 100%);
  pointer-events: none;
}
.craft__panel {
  position: relative;
  display: flex;
  align-items: center;
  padding: clamp(4.75rem, 8.2vw, 8.25rem) var(--gutter);
  background:
    linear-gradient(rgba(16,16,17,0.34), rgba(16,16,17,0.34)),
    url('../assets/textures/bg-dark.jpg') center / cover,
    linear-gradient(115deg, rgba(255,255,255,0.03), rgba(255,255,255,0) 34%),
    radial-gradient(circle at 88% 10%, rgba(120, 120, 120, 0.12), transparent 23rem),
    var(--ink-900);
}
.craft__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background:
    linear-gradient(34deg, transparent 0 46%, rgba(255,255,255,0.12) 46.2% 46.4%, transparent 46.6%),
    linear-gradient(145deg, transparent 0 64%, rgba(255,255,255,0.08) 64.2% 64.35%, transparent 64.6%);
  pointer-events: none;
}
.craft__copy {
  position: relative;
  z-index: 1;
  width: min(100%, 40.75rem);
  margin-left: clamp(2.6rem, 6vw, 6.8rem);
  color: var(--text-on-dark);
}
.craft__eyebrow {
  color: var(--terracotta-soft);
  letter-spacing: 0.34em;
  margin-bottom: clamp(2rem, 3.2vw, 2.85rem);
}
.craft__eyebrow::after {
  content: "";
  display: block;
  width: 3.1rem;
  height: 2px;
  margin-top: clamp(1.08rem, 1.55vw, 1.42rem);
  background: var(--terracotta-soft);
}
.craft h2 {
  font-size: clamp(3.25rem, 3.85vw, 4.7rem);
  line-height: 1.04;
  letter-spacing: -0.016em;
  color: #f0eee9;
  text-wrap: balance;
}
.craft__lede {
  max-width: 36.5rem;
  margin-top: clamp(1.55rem, 2vw, 2.05rem);
  color: rgba(236, 233, 227, 0.66);
  font-size: clamp(0.98rem, 0.96vw, 1.12rem);
  line-height: 1.82;
}
.craft__checks {
  list-style: none;
  display: grid;
  gap: clamp(1.35rem, 1.8vw, 1.9rem);
  margin-top: clamp(2.45rem, 3.6vw, 3.8rem);
}
.craft__checks li {
  display: grid;
  grid-template-columns: clamp(4rem, 4.85vw, 5.35rem) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.35rem, 1.9vw, 2rem);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.22vw, 1.34rem);
  letter-spacing: 0.22em;
  line-height: 1.25;
  text-transform: uppercase;
  color: rgba(236, 233, 227, 0.9);
}
.craft__checks li::before {
  content: "";
  height: 2px;
  background: var(--terracotta-soft);
  opacity: 0.9;
}

/* ---- 08 · DESIGN & PLANNING ---- */
.design-planning {
  min-height: clamp(52rem, 100svh, 61rem);
  overflow: hidden;
  padding-block: clamp(5rem, 7vw, 7.5rem) clamp(4rem, 6vw, 6rem);
  background:
    linear-gradient(90deg, rgba(9,9,10,0.68) 0%, rgba(23,23,23,0.9) 35%, rgba(23,23,23,0.62) 100%),
    url('../assets/textures/bg-dark.jpg') center / cover,
    var(--ink-900);
}
.design-planning::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(255,255,255,0.08) 12.1% 12.18%, transparent 12.3%),
    linear-gradient(0deg, transparent 0 28%, rgba(255,255,255,0.06) 28.08% 28.16%, transparent 28.25%),
    linear-gradient(32deg, transparent 0 54%, rgba(255,255,255,0.08) 54.08% 54.18%, transparent 54.28%);
  pointer-events: none;
}
.design-planning__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(19rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}
.design-planning__copy {
  max-width: 37rem;
  padding-top: clamp(1rem, 4vw, 4rem);
}
.design-planning__eyebrow,
.exterior__eyebrow {
  color: var(--terracotta);
  margin-bottom: clamp(1.2rem, 2vw, 1.8rem);
}
.design-planning__eyebrow::after,
.exterior__eyebrow::after {
  content: "";
  display: block;
  width: 3.35rem;
  height: 2px;
  margin-top: clamp(1rem, 1.4vw, 1.25rem);
  background: currentColor;
}
.design-planning__title {
  margin-left: clamp(-0.35rem, -0.5vw, -0.1rem);
  font-size: clamp(3.3rem, 4.9vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
  color: rgba(246,243,237,0.96);
  text-wrap: balance;
}
.design-planning__lede {
  max-width: 31rem;
  margin-top: clamp(1.5rem, 2vw, 2rem);
  color: rgba(236,233,227,0.72);
  line-height: 1.78;
}
.design-planning__stage {
  position: relative;
  min-height: clamp(30rem, 58vw, 49rem);
  isolation: isolate;
}
.design-planning__photo,
.design-planning__sketch {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 2.2rem 5rem rgba(0,0,0,0.42);
}
.design-planning__photo {
  inset: 12% 0 2% 31%;
  width: 68%;
  height: 86%;
  filter: saturate(0.96) brightness(1.0) contrast(1.02);
}
.design-planning__sketch {
  inset: 4% 22% 16% 7%;
  width: 60%;
  height: 72%;
  clip-path: inset(0 24% 0 0);
  filter: grayscale(1) brightness(1.08) contrast(0.92);
  transform: rotate(-4deg);
  background: var(--marble-50);
}
.design-planning__cad {
  position: absolute;
  inset: 18% 43% 5% 0;
  z-index: -1;
  opacity: 0.26;
  background:
    linear-gradient(90deg, rgba(236,233,227,0.28) 1px, transparent 1px) 0 0 / 4.5rem 4.5rem,
    linear-gradient(0deg, rgba(236,233,227,0.2) 1px, transparent 1px) 0 0 / 4.5rem 4.5rem;
}
.design-planning__rail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(7, max-content);
  justify-content: space-between;
  align-items: center;
  gap: clamp(0.8rem, 3vw, 3.8rem);
  margin-top: clamp(3rem, 4.6vw, 5rem);
  padding: clamp(1.25rem, 2vw, 1.8rem) var(--gutter) 0;
  border-top: 1px solid rgba(236,233,227,0.14);
  color: rgba(236,233,227,0.62);
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.42em;
}
.design-planning__rail i {
  width: 0.28rem;
  height: 0.28rem;
  background: var(--terracotta);
}

/* ---- 09 · BREATH — the light "breath" + signature-moment host ----
   A pause/release between dark sections: a light textured wall + one huge
   centered line. No CTA, no body — big type because we slow down at big type.
   .breath__canvas is the (empty) mount for the ONE bespoke signature moment per
   site; it sits behind the text and ahead of the static .breath__bg floor. */
.breath {
  position: relative;
  min-height: clamp(40rem, 82svh, 52rem);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding-block: clamp(6rem, 11vw, 11rem);
  text-align: center;
  color: var(--stone-700);
  background: var(--marble-50);
}
.breath__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    url('../assets/textures/bg-light.jpg') center / cover no-repeat,
    var(--marble-50);
}
/* the faintest warm wash so the centered line stays legible over the tiles
   without dimming the creamy bg (full-brightness imagery per the global rule) */
.breath__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 64% 56% at 50% 50%, rgba(245,242,236,0.46) 0%, rgba(245,242,236,0.10) 54%, transparent 80%),
    linear-gradient(0deg, rgba(245,242,236,0.16), rgba(245,242,236,0) 28% 72%, rgba(245,242,236,0.16));
}
/* interactive canvas mount — layers above the static bg, below the text.
   The <canvas> injected here (js/breath/herringbone.js) needs pointer events so
   sweep/click register; the host div is the positioning context for it. When
   WebGL/reduced-motion gates fail, this stays empty and the static bg shows. */
.breath__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: auto;
  /* tap = bloom + sweep, but the browser keeps vertical scroll so a finger-drag
     that starts on the full-bleed canvas can still scroll past the section (no
     mobile scroll-trap). The injected <canvas> sets this inline too. */
  touch-action: pan-y;
}
/* text sits above the live surface but must never eat the sweep/click meant for
   the canvas (the eyebrow/headline carry no links, so this is safe & keeps the
   whole field interactive). */
.breath__inner {
  position: relative;
  z-index: 2;
  pointer-events: none;
  display: grid;
  justify-items: center;
  gap: clamp(1.4rem, 2.4vw, 2.3rem);
}
.breath__eyebrow {
  color: var(--terracotta-deep);
  letter-spacing: 0.42em;
}
.breath__eyebrow::after {
  content: "";
  display: block;
  width: 3.1rem;
  height: 2px;
  margin: clamp(1rem, 1.4vw, 1.3rem) auto 0;
  background: var(--terracotta);
}
.breath__line {
  max-width: 18ch;
  font-size: clamp(3.6rem, 8.4vw, 9rem);
  line-height: 0.98;
  letter-spacing: -0.012em;
  color: #1c1916;
  text-wrap: balance;
}
.breath__line .em {
  color: var(--terracotta);
}

/* ---- 10 · EXTERIOR DESIGN ---- */
.exterior {
  min-height: clamp(50rem, 96svh, 59rem);
  overflow: hidden;
  padding: 0;
  display: grid;
  align-items: stretch;
  background: var(--ink-900);
}
.exterior__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.exterior__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 32% 46%;
  /* undimmed (Jun 19): full-brightness photo; the right-side legibility scrim
     in ::after carries text contrast, so the image itself stays bright. */
  filter: saturate(1.0) brightness(1.02) contrast(1.03);
  transform: scale(1.04);
}
/* right-weighted: darken the RIGHT side (where the copy sits) — breaks the
   left-text repetition of Design&Planning / Custom Solutions above it. */
.exterior__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(270deg, rgba(16,16,17,0.92) 0%, rgba(18,18,19,0.66) 28%, rgba(18,18,19,0.12) 60%, transparent 100%),
    linear-gradient(0deg, rgba(16,16,17,0.62) 0%, transparent 30%);
}
.exterior__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: clamp(39rem, 77svh, 48rem);
  padding-block: clamp(5rem, 8vw, 8rem) clamp(7rem, 10vw, 9rem);
}
.exterior__copy {
  width: min(100%, 36rem);
  text-align: right;
}
.exterior__title {
  font-size: clamp(3.6rem, 5.8vw, 6.9rem);
  line-height: 0.98;
  letter-spacing: 0;
  color: rgba(246,243,237,0.96);
  text-wrap: balance;
}
.exterior__copy p:not(.eyebrow) {
  max-width: 33rem;
  margin-top: clamp(1.6rem, 2vw, 2.1rem);
  margin-left: auto;
  color: rgba(236,233,227,0.76);
  line-height: 1.82;
}
.exterior__eyebrow::after { margin-left: auto; margin-right: 0; }
.exterior__scope {
  position: absolute;
  z-index: 2;
  left: var(--gutter);
  right: var(--gutter);
  bottom: clamp(1.4rem, 2.4vw, 2.4rem);
  display: grid;
  grid-template-columns: repeat(7, max-content);
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 3vw, 4.5rem);
  padding-top: clamp(1.25rem, 2vw, 1.8rem);
  border-top: 1px solid rgba(236,233,227,0.2);
  color: rgba(236,233,227,0.76);
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.34em;
}
.exterior__scope i {
  width: 1px;
  height: 2.4rem;
  background: rgba(236,233,227,0.2);
}

/* ---- 11 · VALUES / STATEMENT BREATH ---- */
.statement {
  min-height: clamp(48rem, 90svh, 58rem);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-block: clamp(5rem, 8vw, 8rem);
  color: #161411;
  background: #f5f1ea;
}
.statement__stone {
  position: absolute;
  inset: -8%;
  background:
    url('../assets/textures/bg-light.jpg') center / cover,
    #f4f0e9;
  filter: invert(1) grayscale(1) brightness(1.54) contrast(0.7);
  opacity: 0.5;
}
.statement__stone::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(245,242,236,0.96) 0%, rgba(245,242,236,0.72) 52%, rgba(245,242,236,0.18) 100%);
}
.statement__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(20rem, 0.78fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 7.5rem);
  align-items: center;
}
.statement__portrait {
  position: relative;
  min-height: clamp(31rem, 58vw, 43rem);
  overflow: hidden;
  background: var(--stone-200);
  box-shadow: 0 2rem 5rem rgba(40,35,29,0.18);
}
.statement__portrait img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 50% 30%; /* frames both faces (him + wife, seated) */
  filter: saturate(0.94) brightness(1.02) contrast(1.0);
}
.statement__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20,18,16,0.16), transparent 48%);
}
.statement__quote {
  max-width: 56rem;
}
.statement__eyebrow {
  color: var(--terracotta-deep);
  margin-bottom: clamp(1.2rem, 2vw, 1.7rem);
}
.statement__eyebrow::after {
  content: "";
  display: block;
  width: 3.2rem;
  height: 2px;
  margin-top: clamp(0.95rem, 1.4vw, 1.2rem);
  background: currentColor;
}
.statement blockquote {
  margin: 0;
}
.statement blockquote > p {
  max-width: 18ch;
  font-size: clamp(3rem, 4.75vw, 5.7rem);
  line-height: 1.02;
  letter-spacing: 0;
  color: #171512;
  text-wrap: balance;
}
.statement__cite {
  display: grid;
  gap: 0.25rem;
  margin-top: clamp(1.7rem, 2.4vw, 2.35rem);
  padding-top: clamp(1.1rem, 1.5vw, 1.4rem);
  border-top: 2px solid var(--terracotta-deep);
  width: min(100%, 21rem);
  text-transform: uppercase;
  letter-spacing: 0.22em;
}
.statement__cite strong {
  color: #171512;
  font-size: var(--step--1);
}
.statement__cite span {
  color: var(--stone-500);
  font-size: 0.72rem;
}

/* ---- 09 · PROCESS ---- */
.process {
  overflow: hidden;
  padding-block: clamp(3.9rem, 6.1vw, 5.6rem) clamp(2.6rem, 4vw, 3.7rem);
  background:
    linear-gradient(rgba(9,9,10,0.46), rgba(9,9,10,0.46)),
    url('../assets/textures/bg-light.jpg') center / cover,
    var(--ink-900);
}
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(192,97,61,0.08), transparent 21rem),
    radial-gradient(circle at 82% 22%, rgba(101,101,101,0.08), transparent 28rem);
  pointer-events: none;
}
.process__inner {
  position: relative;
  z-index: 1;
}
.process__head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: clamp(3rem, 10vw, 10rem);
  align-items: end;
}
.process__eyebrow {
  color: var(--terracotta);
  letter-spacing: 0.32em;
  margin-bottom: clamp(1.3rem, 2vw, 1.9rem);
}
.process__title {
  font-size: clamp(4.2rem, 6.1vw, 7.1rem);
  line-height: 1.0;
  color: rgba(245,242,236,0.94);
  text-wrap: balance;
}
.process__lede {
  max-width: 31rem;
  margin-bottom: clamp(0.2rem, 1vw, 0.7rem);
  color: rgba(236,233,227,0.72);
  font-size: clamp(1.05rem, 1.3vw, 1.32rem);
  line-height: 1.82;
}
.process__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(3.1rem, 4.6vw, 4.25rem);
}
.process__step {
  position: relative;
  min-height: 22.8rem;
  padding: 0 clamp(1.2rem, 2vw, 2rem) 0 clamp(1.1rem, 1.7vw, 1.6rem);
}
.process__step + .process__step {
  border-left: 1px solid rgba(236,233,227,0.15);
}
.process__num {
  display: block;
  margin-bottom: 1.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.3vw, 2.55rem);
  line-height: 1;
  color: var(--terracotta);
}
.process__rail {
  position: absolute;
  top: 3.4rem;
  right: 1.65rem;
  width: clamp(5.4rem, 7.4vw, 8rem);
  border-top: 2px dotted rgba(192,97,61,0.58);
}
.process__rail::after {
  content: "";
  position: absolute;
  right: -0.46rem;
  top: -0.37rem;
  width: 0.72rem;
  height: 0.72rem;
  border: 2px solid var(--terracotta);
  border-radius: 50%;
  background: var(--ink-900);
}
.process__step:last-child .process__rail {
  display: none;
}
.process__glyph {
  position: relative;
  display: block;
  width: 4.6rem;
  height: 4.6rem;
  margin: 0 0 clamp(1.75rem, 2.5vw, 2.35rem);
  color: rgba(236,233,227,0.62);
}
.process__glyph::before,
.process__glyph::after {
  content: "";
  position: absolute;
  border: 2px solid currentColor;
}
.process__glyph--consult::before {
  left: 0.25rem;
  bottom: 0.8rem;
  width: 1.45rem;
  height: 2.1rem;
  border-radius: 48% 48% 0.4rem 0.4rem;
  border-right-width: 0;
}
.process__glyph--consult::after {
  right: 0.15rem;
  bottom: 0.8rem;
  width: 1.45rem;
  height: 2.1rem;
  border-radius: 48% 48% 0.4rem 0.4rem;
  border-left-width: 0;
}
.process__glyph--scope::before {
  inset: 0.25rem 1.15rem 0.35rem 0.3rem;
  border-radius: 0.15rem;
}
.process__glyph--scope::after {
  right: 0.2rem;
  bottom: 0.15rem;
  width: 0.4rem;
  height: 3.15rem;
  transform: rotate(36deg);
  border-radius: 999px;
}
.process__glyph--materials::before {
  left: 0.25rem;
  bottom: 0.3rem;
  width: 2.2rem;
  height: 2.7rem;
  border-radius: 0.15rem;
}
.process__glyph--materials::after {
  right: 0.25rem;
  bottom: 0.3rem;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 0.15rem;
}
.process__glyph--build::before {
  left: 1.85rem;
  top: 0.4rem;
  width: 0.58rem;
  height: 4rem;
  border-radius: 999px;
  transform: rotate(42deg);
}
.process__glyph--build::after {
  left: 0.62rem;
  top: 0.48rem;
  width: 2.2rem;
  height: 1.1rem;
  border-radius: 999px 999px 0.18rem 0.18rem;
  transform: rotate(18deg);
}
.process__glyph--walkthrough::before {
  inset: 0.25rem 0.65rem 0.25rem 0.65rem;
  border-radius: 0.18rem;
}
.process__glyph--walkthrough::after {
  left: 1.35rem;
  top: -0.18rem;
  width: 1.8rem;
  height: 0.8rem;
  border-radius: 0.4rem 0.4rem 0 0;
}
.process__step h3 {
  margin-bottom: clamp(1.15rem, 1.7vw, 1.55rem);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.25vw, 2.5rem);
  font-weight: 400;
  line-height: 1.08;
  color: rgba(245,242,236,0.94);
}
.process__step h3::after {
  content: "";
  display: block;
  width: 2.7rem;
  height: 2px;
  margin-top: clamp(1.1rem, 1.55vw, 1.45rem);
  background: var(--terracotta);
}
.process__step p {
  max-width: 14.5rem;
  color: rgba(236,233,227,0.66);
  line-height: 1.92;
}
.process__cta {
  display: grid;
  grid-template-columns: auto auto minmax(18rem, 1fr) minmax(19rem, 34.8rem);
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.4rem);
  margin-top: clamp(1.9rem, 3.3vw, 3.25rem);
  padding: clamp(1.8rem, 2.45vw, 2.5rem) clamp(2rem, 4.3vw, 5rem);
  border: 1px solid rgba(236,233,227,0.22);
  background: rgba(7,7,8,0.08);
}
.process__cta-icon {
  position: relative;
  width: 4.6rem;
  height: 4.6rem;
  border: 2px solid var(--terracotta);
  border-radius: 0.45rem;
}
.process__cta-icon::before,
.process__cta-icon::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  height: 2px;
  background: var(--terracotta);
}
.process__cta-icon::before { top: 1.45rem; box-shadow: 0 0.9rem 0 var(--terracotta), 0 1.8rem 0 var(--terracotta); }
.process__cta-icon::after { top: -0.65rem; left: 1.1rem; right: 1.1rem; height: 1.3rem; background: transparent; border-inline: 2px solid var(--terracotta); }
.process__cta-rule {
  width: 1px;
  height: 4.6rem;
  background: rgba(236,233,227,0.24);
}
.process__cta-copy {
  display: grid;
  gap: 0.35rem;
}
.process__cta-copy strong {
  font-size: clamp(2rem, 2.65vw, 3rem);
  font-weight: 400;
  color: rgba(245,242,236,0.95);
}
.process__cta-copy span {
  color: rgba(236,233,227,0.68);
  font-size: clamp(1rem, 1.12vw, 1.18rem);
}
.process__cta-button {
  min-height: 5.5rem;
  justify-content: center;
  gap: clamp(1.4rem, 2.4vw, 2.2rem);
  font-size: clamp(0.8rem, 0.95vw, 0.98rem);
  letter-spacing: 0.2em;
}

/* ---- 10 · REVIEWS ---- */
/* bottom padding tightened (Round 2): the .reviews__trust stat bar was deleted,
   so the marquee rail is now the closing element — it sits closer to the
   dark→marble seam into #team so there's no dead gap. */
.reviews {
  overflow: hidden;
  padding-block: clamp(5.8rem, 8vw, 8.6rem) clamp(3.6rem, 5vw, 5.3rem);
  background:
    radial-gradient(circle at 83% 8%, rgba(192,97,61,0.08), transparent 30rem),
    linear-gradient(rgba(7,7,8,0.68), rgba(7,7,8,0.66)),
    url('../assets/textures/bg-dark.jpg') center top / cover,
    var(--ink-900);
}
.reviews__inner {
  max-width: 1540px;
}
.reviews__head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 0.62fr);
  align-items: end;
  gap: clamp(2rem, 4.4vw, 5.2rem);
  margin-bottom: clamp(2.4rem, 4vw, 4.1rem);
}
.reviews__eyebrow {
  grid-column: 1 / -1;
  color: var(--terracotta);
  letter-spacing: 0.32em;
  margin-bottom: 0;
}
.reviews__title {
  max-width: 14ch;
  font-size: var(--step-5);
  line-height: 0.96;
  color: rgba(245,242,236,0.94);
  text-wrap: balance;
}
.reviews__lede {
  max-width: 38rem;
  color: rgba(236,233,227,0.78);
  font-size: var(--step-1);
  line-height: 1.7;
}
.reviews__rail {
  position: relative;
  margin-inline: calc(var(--gutter) * -1);
  padding-block: 0.5rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, #000 0%, #000 96%, transparent);
}
.reviews__track {
  display: flex;
  align-items: stretch;
  width: max-content;
  gap: clamp(1rem, 1.5vw, 1.45rem);
  padding-inline: var(--gutter);
  animation: reviews-marquee 74s linear infinite;
}
/* When JS takes over the scroll (transform driven), the CSS keyframe is off. */
.reviews__rail.is-js .reviews__track { animation: none; }
.reviews__rail:hover .reviews__track,
.reviews__rail:focus-within .reviews__track {
  animation-play-state: paused;
}
.reviews__rail.is-static {
  overflow: visible;
  -webkit-mask-image: none;
  mask-image: none;
}
.reviews__rail.is-static .reviews__track {
  flex-wrap: wrap;
  width: auto;
  animation: none;
}
@keyframes reviews-marquee {
  to { transform: translate3d(-50%, 0, 0); }
}
/* masonry / Tetris columns: each column stacks 1–2 cards; the tall column sets
   the row height, paired short cards distribute to fill it (no uniform heights). */
.reviews__col {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.45rem);
  flex: 0 0 min(31rem, calc(100vw - (var(--gutter) * 2)));
}
.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: clamp(1.85rem, 2.5vw, 2.65rem);
  border: 1px solid rgba(236,233,227,0.28);
  background:
    linear-gradient(140deg, rgba(250,246,239,0.94), rgba(236,230,219,0.91)),
    url('../assets/textures/bg-light.jpg') center / cover,
    var(--marble-50);
  color: var(--text-on-light);
  box-shadow: 0 22px 46px -38px rgba(0,0,0,0.68);
}
/* a column with a single tall card fills the row height */
.reviews__col:has(> .review-card--tall:only-child) .review-card--tall { flex: 1 1 auto; }
.review-card--wide {
  flex-basis: min(43rem, calc(100vw - (var(--gutter) * 2)));
}
.review-card__stars {
  margin-bottom: clamp(1.25rem, 1.9vw, 1.8rem);
  color: var(--terracotta-deep);
  font-size: var(--step--1);
  font-weight: 800;
  letter-spacing: 0.2em;
}
.review-card__quote {
  margin-top: clamp(1rem, 1.4vw, 1.5rem);
  color: rgba(38,35,30,0.86);
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.15vw, 1.28rem);
  line-height: 1.5;
}
.review-card--tall .review-card__quote {
  font-size: var(--step-1);
}
.review-card__name {
  margin-top: auto;
  padding-top: clamp(1.15rem, 1.8vw, 1.9rem);
  color: #171512;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media (prefers-reduced-motion: reduce) {
  .reviews__rail {
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .reviews__track {
    flex-wrap: wrap;
    width: auto;
    animation: none;
  }
}

/* ---- 11 · TEAM / ABOUT ---- */
.team {
  overflow: hidden;
  padding-block: clamp(4.4rem, 6.4vw, 6.2rem) clamp(4.2rem, 6.2vw, 6.35rem);
  background: var(--marble-50);
}
.team__stone {
  position: absolute;
  inset: -6%;
  background:
    linear-gradient(rgba(245,242,236,0.73), rgba(245,242,236,0.83)),
    url('../assets/textures/bg-light.jpg') center / cover,
    var(--marble-50);
  opacity: 0.86;
  filter: saturate(0.65) brightness(1.08);
}
.team__inner {
  position: relative;
  z-index: 1;
  max-width: 1540px;
}
.team__head {
  display: grid;
  grid-template-columns: minmax(42rem, 0.95fr) minmax(28rem, 0.72fr);
  align-items: end;
  gap: clamp(2.2rem, 4.2vw, 4.8rem);
  margin-bottom: clamp(2.1rem, 3vw, 3.05rem);
}
.team__eyebrow {
  color: var(--terracotta-deep);
  letter-spacing: 0.34em;
  margin-bottom: clamp(1.2rem, 1.8vw, 1.7rem);
}
.team__title {
  color: #171512;
  font-size: var(--step-4);
  line-height: 1.0;
}
.team__pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid rgba(68,64,58,0.14);
}
.team__pillars article {
  min-width: 0;
  padding: clamp(1rem, 1.65vw, 1.55rem) clamp(0.9rem, 1.45vw, 1.35rem);
}
.team__pillars article + article {
  border-left: 1px solid rgba(68,64,58,0.14);
}
.team__pillars span {
  color: #171512;
  font-family: var(--font-display);
  font-size: var(--step-1);
  line-height: 1.12;
}
.team__pillars p {
  margin-top: 0.45rem;
  color: rgba(68,64,58,0.7);
  font-size: var(--step--1);
  line-height: 1.45;
}
.team__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.15rem, 3.35vw, 3.2rem);
}
.team-card {
  display: grid;
  grid-template-rows: auto auto;
  background: rgba(247,243,235,0.82);
  border: 1px solid rgba(68,64,58,0.08);
  box-shadow: 0 22px 42px -34px rgba(39,34,27,0.46);
}
.team-card__portrait {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #ddd6ca;
}
.team-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: none;
  transform: none;
}
.team-card__portrait--founder img {
  object-position: center center;
}
.team-card__portrait--foreman img {
  object-position: center center;
}
.team-card__portrait::after {
  display: none;
}
.team-card__body {
  padding: clamp(1.35rem, 1.85vw, 1.85rem) clamp(2rem, 3.25vw, 3.1rem) clamp(1.4rem, 2vw, 2rem);
}
.team-card h3 {
  color: #171512;
  font-size: var(--step-3);
  line-height: 1.05;
}
.team-card__role {
  margin-top: 0.42rem;
  color: var(--terracotta-deep);
  font-size: clamp(0.78rem, 0.9vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.team-card__body p:not(.team-card__role) {
  max-width: 43rem;
  margin-top: clamp(0.7rem, 0.95vw, 0.95rem);
  color: rgba(68,64,58,0.76);
  font-size: clamp(1rem, 1.08vw, 1.14rem);
  line-height: 1.52;
}
.team-card__body i {
  display: block;
  width: 4.1rem;
  height: 2px;
  margin-top: clamp(0.95rem, 1.25vw, 1.25rem);
  background: var(--terracotta-deep);
}
.team__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(1.35rem, 2.2vw, 2.2rem);
  border: 1px solid rgba(68,64,58,0.12);
  background: rgba(247,243,235,0.62);
}
.team__facts article {
  min-width: 0;
  padding: clamp(1.1rem, 1.65vw, 1.55rem);
}
.team__facts article + article {
  border-left: 1px solid rgba(68,64,58,0.12);
}
.team__facts strong {
  display: block;
  color: var(--terracotta-deep);
  font-size: var(--step--1);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.team__facts span {
  display: block;
  margin-top: 0.55rem;
  color: rgba(68,64,58,0.74);
  font-size: var(--step--1);
  line-height: 1.48;
}

/* ---- 12 · FAQ ---- */
.faq {
  overflow: hidden;
  padding-block: clamp(4.7rem, 6.6vw, 6.45rem) clamp(2.2rem, 3.2vw, 3.2rem);
  background:
    linear-gradient(rgba(240,233,221,0.88), rgba(240,233,221,0.92)),
    url('../assets/textures/bg-light.jpg') center / cover,
    var(--cream);
}
.faq__inner {
  display: grid;
  grid-template-columns: minmax(22rem, 0.72fr) minmax(0, 1.24fr);
  gap: clamp(4rem, 7.2vw, 8.1rem);
  align-items: start;
}
.faq__intro {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
  padding-top: clamp(5.9rem, 8vw, 7.45rem);
}
.faq__eyebrow {
  color: var(--terracotta-deep);
  letter-spacing: 0.38em;
  margin-bottom: clamp(2.15rem, 3.2vw, 3.15rem);
}
.faq__title {
  color: #171512;
  font-size: var(--step-5);
  line-height: 0.98;
}
.faq__intro i {
  display: block;
  width: 4.5rem;
  height: 2px;
  margin: clamp(2.25rem, 3.25vw, 3.25rem) 0 clamp(1.65rem, 2.35vw, 2.35rem);
  background: var(--terracotta-deep);
}
.faq__intro > p {
  max-width: 38rem;
  color: rgba(68,64,58,0.78);
  font-size: clamp(1.05rem, 1.22vw, 1.28rem);
  line-height: 1.82;
}
.faq__call {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  margin-top: clamp(3.25rem, 4.75vw, 4.75rem);
  padding-top: clamp(1.6rem, 2.35vw, 2.35rem);
  border-top: 1px solid rgba(68,64,58,0.16);
  color: rgba(38,35,30,0.88);
}
.faq__call span {
  position: relative;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid var(--terracotta-deep);
  border-radius: 50%;
}
.faq__call span::before {
  content: "";
  position: absolute;
  left: 0.88rem;
  top: 0.72rem;
  width: 0.82rem;
  height: 1.22rem;
  border: 2px solid var(--terracotta-deep);
  border-top: 0;
  border-right-width: 3px;
  border-radius: 0 0 0.55rem 0.55rem;
  transform: rotate(-42deg);
}
.faq__call strong {
  font-weight: 500;
  line-height: 1.45;
}
.faq__call u {
  color: var(--terracotta-deep);
  text-underline-offset: 0.22em;
}
.faq__list {
  border-top: 1px solid rgba(68,64,58,0.18);
}
.faq-item {
  position: relative;
  border-bottom: 1px solid rgba(68,64,58,0.18);
}
.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2.4rem;
  align-items: center;
  gap: 1.25rem;
  padding: clamp(1.45rem, 2.15vw, 2.15rem) 0;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary span {
  color: #171512;
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 400;
  line-height: 1.15;
}
.faq-item summary i {
  position: relative;
  width: 2.3rem;
  height: 2.3rem;
  border: 1px solid rgba(164,78,47,0.42);
  border-radius: 50%;
}
.faq-item summary i::before,
.faq-item summary i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.9rem;
  height: 1px;
  background: var(--terracotta-deep);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}
.faq-item summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item[open] summary i::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq-item p {
  max-width: 58rem;
  margin: -0.7rem 4rem clamp(1.55rem, 2.2vw, 2.25rem) 0;
  color: rgba(38,35,30,0.76);
  font-size: clamp(0.98rem, 1.06vw, 1.12rem);
  line-height: 1.64;
}

/* ---- 13 · CONTACT ---- */
.contact {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  padding-block: clamp(4.1rem, 5.8vw, 5.6rem) clamp(3.7rem, 5.2vw, 5.35rem);
  background:
    radial-gradient(circle at 84% 5%, rgba(255,231,209,0.12), transparent 31rem),
    linear-gradient(105deg, rgba(135,47,23,0.28), rgba(135,47,23,0.06) 48%, rgba(72,22,11,0.18)),
    var(--terracotta);
}
.contact::before {
  content: "";
  position: absolute;
  left: -2vw;
  bottom: -1vw;
  width: min(45rem, 48vw);
  aspect-ratio: 1.38 / 1;
  opacity: 0.13;
  background:
    linear-gradient(33deg, transparent 0 18%, rgba(255,248,239,0.25) 18.15% 18.35%, transparent 18.5%),
    linear-gradient(24deg, transparent 0 39%, rgba(255,248,239,0.22) 39.1% 39.3%, transparent 39.45%),
    linear-gradient(90deg, transparent 0 17%, rgba(255,248,239,0.2) 17.1% 17.3%, transparent 17.45%),
    linear-gradient(90deg, transparent 0 58%, rgba(255,248,239,0.18) 58.1% 58.3%, transparent 58.45%),
    linear-gradient(0deg, transparent 0 28%, rgba(255,248,239,0.18) 28.1% 28.3%, transparent 28.45%),
    linear-gradient(0deg, transparent 0 64%, rgba(255,248,239,0.17) 64.1% 64.3%, transparent 64.45%);
  pointer-events: none;
}
.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 5rem 5rem;
  opacity: 0.16;
  pointer-events: none;
}
.contact__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(20rem, 0.72fr) minmax(34rem, 1fr);
  gap: clamp(4rem, 8vw, 9.2rem);
  align-items: start;
}
.contact__copy {
  padding-top: clamp(0.45rem, 1.1vw, 1.4rem);
}
.contact__eyebrow {
  color: rgba(255,248,239,0.82);
  letter-spacing: 0.24em;
}
.contact__title {
  max-width: 8.35ch;
  margin-top: clamp(1.35rem, 1.8vw, 1.9rem);
  color: rgba(255,248,239,0.92);
  font-size: clamp(4.2rem, 6.6vw, 6.95rem);
  line-height: 0.94;
  letter-spacing: -0.018em;
}
.contact__title em {
  display: block;
  font-style: italic;
  color: inherit;
}
.contact__lede {
  max-width: 29rem;
  margin-top: clamp(1.65rem, 2.25vw, 2.45rem);
  color: rgba(255,248,239,0.78);
  font-size: clamp(1.1rem, 1.35vw, 1.35rem);
  line-height: 1.72;
}
.contact__copy > i {
  display: block;
  width: 4.3rem;
  height: 2px;
  margin: clamp(2.15rem, 3vw, 3.05rem) 0;
  background: rgba(255,248,239,0.64);
}
.contact__phone,
.contact__service {
  display: grid;
  grid-template-columns: 4.9rem minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.1rem, 1.7vw, 1.8rem);
  color: rgba(255,248,239,0.88);
}
.contact__phone span,
.contact__service span {
  position: relative;
  width: 4.25rem;
  height: 4.25rem;
  border: 1px solid rgba(255,248,239,0.72);
  border-radius: 50%;
}
.contact__phone span::before {
  content: "";
  position: absolute;
  left: 1.36rem;
  top: 1.1rem;
  width: 1rem;
  height: 1.55rem;
  border: 2px solid rgba(255,248,239,0.9);
  border-top: 0;
  border-right-width: 3px;
  border-radius: 0 0 0.62rem 0.62rem;
  transform: rotate(-38deg);
}
.contact__phone strong {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 3.05vw, 3.25rem);
  font-weight: 400;
  line-height: 1;
}
.contact__service {
  margin-top: clamp(1.45rem, 2vw, 1.95rem);
  color: rgba(255,248,239,0.72);
  font-size: clamp(1.05rem, 1.32vw, 1.3rem);
  line-height: 1.55;
}
.contact__service span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.9rem;
  width: 1.15rem;
  height: 1.15rem;
  border: 2px solid rgba(255,248,239,0.88);
  border-radius: 50% 50% 50% 0;
  transform: translateX(-50%) rotate(-45deg);
}
.contact__service span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 1.26rem;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: rgba(255,248,239,0.88);
  transform: translateX(-50%);
}
.contact__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.1rem, 1.45vw, 1.45rem) clamp(1.45rem, 2vw, 2rem);
}
.contact__field {
  display: grid;
  gap: 0.78rem;
  grid-column: 1 / -1;
}
.contact__field--half {
  grid-column: auto;
}
.contact__field label,
.contact__upload b {
  color: rgba(255,248,239,0.9);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.48vw, 1.6rem);
  font-weight: 450;
  line-height: 1;
}
.contact__field input,
.contact__field select,
.contact__field textarea {
  width: 100%;
  min-height: 3.9rem;
  border: 1px solid rgba(255,248,239,0.42);
  border-radius: 2px;
  background: rgba(133,48,24,0.28);
  color: #fffaf3;
  padding: 0 1.1rem;
  font: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,248,239,0.06);
}
.contact__field textarea {
  min-height: clamp(7.3rem, 10.7vw, 9.7rem);
  padding-block: 1rem;
  resize: vertical;
}
.contact__field select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, rgba(255,248,239,0.9) 50%) calc(100% - 1.55rem) 50% / 0.48rem 0.48rem no-repeat,
    linear-gradient(135deg, rgba(255,248,239,0.9) 50%, transparent 50%) calc(100% - 1.18rem) 50% / 0.48rem 0.48rem no-repeat,
    rgba(133,48,24,0.28);
}
.contact__field option {
  background: var(--ink-900);
  color: var(--text-on-dark);
}
.contact__upload {
  position: relative;
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  align-items: center;
  gap: 1.15rem 1.8rem;
  grid-column: 1 / -1;
  min-height: clamp(6.45rem, 8.4vw, 7.65rem);
  padding: 1.45rem clamp(1.5rem, 2.7vw, 2.8rem);
  border: 1px dashed rgba(255,248,239,0.48);
  background: rgba(133,48,24,0.16);
  cursor: pointer;
}
.contact__upload > span {
  position: relative;
  grid-row: 1 / span 2;
  width: 4.1rem;
  height: 4.1rem;
}
.contact__upload > span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.3rem;
  width: 1.9rem;
  height: 1.9rem;
  border-left: 2px solid rgba(255,248,239,0.92);
  border-top: 2px solid rgba(255,248,239,0.92);
  transform: translateX(-50%) rotate(45deg);
}
.contact__upload > span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.42rem;
  width: 2.95rem;
  height: 1.35rem;
  border: 3px solid rgba(255,248,239,0.92);
  border-top: 0;
  transform: translateX(-50%);
}
.contact__upload small {
  color: rgba(255,248,239,0.64);
  font-size: clamp(0.96rem, 1.08vw, 1.12rem);
  line-height: 1.45;
}
.contact__upload input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.contact__talk {
  grid-column: 1 / -1;
  color: rgba(255,248,239,0.78);
  font-size: var(--step--1);
}
.contact__talk a {
  color: #fffaf3;
  text-decoration: underline;
  text-underline-offset: 0.24em;
}
.contact__submit {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: clamp(4.65rem, 5.45vw, 5.25rem);
  padding: 0 clamp(1.65rem, 2.45vw, 2.4rem);
  border-radius: 2px;
  background: var(--marble-50);
  color: #1b1714;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.contact__submit:hover {
  transform: translateY(-1px);
  background: #fffaf3;
}
.contact__submit span:last-child {
  font-size: 2.2rem;
  line-height: 1;
}

/* ---- 14 · FOOTER ---- */
.footer {
  overflow: hidden;
  padding-block: 0;
  background:
    linear-gradient(rgba(11,11,11,0.67), rgba(11,11,11,0.67)),
    url('../assets/textures/bg-dark.jpg') center top / cover no-repeat,
    var(--ink-900);
}
.footer__statement {
  display: grid;
  place-items: center;
  min-height: clamp(16rem, 24vw, 21.5rem);
  text-align: center;
  background:
    radial-gradient(circle at 18% 10%, rgba(192,97,61,0.14), transparent 24rem),
    linear-gradient(rgba(0,0,0,0.24), rgba(0,0,0,0.34));
}
.footer__statement p {
  max-width: 16.6ch;
  margin-inline: auto;
  color: rgba(236,233,227,0.92);
  font-size: clamp(3.25rem, 4.5vw, 5.15rem);
  line-height: 0.98;
}
.footer__statement i {
  display: block;
  width: 7.25rem;
  height: 2px;
  margin: clamp(1.6rem, 2.5vw, 2.45rem) auto 0;
  background: var(--terracotta);
}
.footer__inner {
  display: grid;
  grid-template-columns: minmax(22rem, 1.35fr) minmax(13rem, 0.78fr) minmax(13rem, 0.78fr);
  gap: clamp(2.2rem, 4.3vw, 5.1rem);
  padding-block: clamp(3.6rem, 4.85vw, 4.95rem) clamp(3rem, 4vw, 4.2rem);
}
.footer__brand,
.footer__nav {
  min-width: 0;
}
.footer__brand {
  padding-right: clamp(1rem, 2.5vw, 3rem);
}
.footer__brand .brandmark {
  margin-bottom: clamp(1rem, 1.6vw, 1.55rem);
}
.footer__brand i {
  display: block;
  width: 4.9rem;
  height: 1px;
  margin: 0 0 clamp(1.35rem, 2.2vw, 2.2rem);
  background: var(--terracotta);
}
.footer__brand p {
  max-width: 24rem;
  color: rgba(236,233,227,0.74);
  font-size: clamp(1rem, 1.18vw, 1.18rem);
  line-height: 1.84;
}
.footer__brand-contact {
  margin-top: clamp(1.3rem, 2vw, 2rem);
  color: rgba(236,233,227,0.58) !important;
  font-size: clamp(0.92rem, 1.02vw, 1.04rem) !important;
  line-height: 1.7 !important;
}
.footer__brand-contact a {
  color: rgba(236,233,227,0.78);
}
.footer__brand em {
  color: rgba(236,233,227,0.92);
  font-style: italic;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.78rem;
  padding-left: clamp(1.8rem, 3vw, 3.1rem);
  border-left: 1px solid rgba(236,233,227,0.13);
}
.footer h2 {
  margin-bottom: clamp(0.85rem, 1.2vw, 1.2rem);
  color: var(--terracotta-soft);
  font-family: var(--font-sans);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.footer__nav a,
.footer__bottom {
  color: rgba(236,233,227,0.68);
}
.footer__nav a,
.footer__brand-contact,
.footer__brand-contact a {
  font-size: clamp(1rem, 1.18vw, 1.2rem);
  line-height: 1.5;
}
.footer__nav a,
.footer__brand-contact a,
.footer__bottom a {
  transition: color var(--dur-fast) var(--ease-out);
}
.footer__nav a:hover,
.footer__brand-contact a:hover,
.footer__bottom a:hover {
  color: var(--text-on-dark);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: var(--space-m);
  padding-block: clamp(1.6rem, 2.5vw, 2.4rem);
  border-top: 1px solid rgba(192,97,61,0.38);
  font-size: var(--step--1);
}
.footer__bottom div {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
}
.footer__bottom span {
  color: var(--terracotta-soft);
}

/* ---- Responsive (batch 1/2) ---- */
@media (max-width: 900px) {
  .work__feature { grid-template-columns: 1fr; }
  .trust__proofs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust__proofs li:nth-child(3) { border-left: 0; border-top: 1px solid rgba(236,233,227,0.13); }
  .trust__proofs li:nth-child(4) { border-top: 1px solid rgba(236,233,227,0.13); }
  .work__head,
  .ba__layout { grid-template-columns: 1fr; }
  .work__head > p { padding-left: 0; border-left: 0; }
  .work__mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(7, minmax(14rem, auto)); }
  .work-card--bath { grid-column: 1; grid-row: 1; }
  .work-card--kitchen { grid-column: 2; grid-row: 1; }
  .work-card--feature { grid-column: 1 / span 2; grid-row: 2 / span 2; }
  .work-card--penthouse { grid-column: 1; grid-row: 4; }
  .work-card--green { grid-column: 2; grid-row: 4; }
  .work-card--modern { grid-column: 1 / span 2; grid-row: 5; }
  .work-card--powder { grid-column: 1 / span 2; grid-row: 6; }
  .work-card--spa { grid-column: 1; grid-row: 7; }
  .work-card--detail { grid-column: 2; grid-row: 7; }
  .craft { grid-template-columns: 1fr; }
  .craft__media { min-height: 48svh; }
  .craft__media img { min-height: 48svh; object-position: 50% 52%; }
  .craft__panel { min-height: 52svh; padding-block: var(--space-xl); }
  .craft__copy { margin-left: 0; }
  .design-planning__inner,
  .statement__inner { grid-template-columns: 1fr; }
  .design-planning__copy { max-width: 44rem; padding-top: 0; }
  .design-planning__stage { min-height: clamp(28rem, 74vw, 40rem); }
  .breath { min-height: clamp(34rem, 70svh, 44rem); }
  .exterior__media img { object-position: 42% 45%; }
  .exterior__inner { justify-content: flex-start; }
  .exterior__copy { text-align: left; }
  .exterior__copy p:not(.eyebrow) { margin-left: 0; }
  .exterior__eyebrow::after { margin-left: 0; }
  .exterior__media::after {
    background:
      linear-gradient(90deg, rgba(16,16,17,0.92) 0%, rgba(18,18,19,0.66) 28%, rgba(18,18,19,0.12) 60%, transparent 100%),
      linear-gradient(0deg, rgba(16,16,17,0.62) 0%, transparent 30%);
  }
  .exterior__scope,
  .design-planning__rail {
    overflow-x: auto;
    justify-content: start;
    padding-bottom: 0.35rem;
  }
  .statement { min-height: 0; }
  .statement__portrait {
    width: min(100%, 35rem);
    min-height: clamp(28rem, 68vw, 38rem);
  }
  .statement blockquote > p {
    max-width: 18ch;
    font-size: clamp(3.35rem, 9vw, 5.9rem);
  }
  .process__head,
  .process__steps,
  .process__cta { grid-template-columns: 1fr; }
  .process__head { gap: var(--space-l); align-items: start; }
  .process__steps { gap: var(--space-l); }
  .process__step {
    min-height: auto;
    padding: 0 0 0 4.2rem;
    border-left: 1px solid rgba(236,233,227,0.15);
  }
  .process__step + .process__step { border-left: 1px solid rgba(236,233,227,0.15); }
  .process__num {
    position: absolute;
    left: 0;
    top: 0;
  }
  .process__rail { display: none; }
  .process__glyph { margin-top: 0.25rem; }
  .process__step p { max-width: 38rem; }
  .process__cta {
    gap: var(--space-m);
    padding: var(--space-l);
  }
  .process__cta-rule { display: none; }
  .reviews__head,
  .team__head,
  .faq__inner { grid-template-columns: 1fr; }
  .reviews__title { max-width: none; }
  .team__pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  /* 3 short fact cards stay 3-up at this band so the 3rd never orphans on a second row */
  .team__facts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .team__pillars article:nth-child(3) { border-left: 0; border-top: 1px solid rgba(68,64,58,0.12); }
  .faq__intro {
    position: relative;
    top: auto;
    padding-top: 0;
  }
  .contact {
    min-height: 0;
    padding-block: var(--space-xl);
  }
  .contact__inner,
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .contact__title {
    max-width: 9ch;
    font-size: clamp(4rem, 13vw, 6.7rem);
  }
  .contact__form {
    grid-template-columns: 1fr;
  }
  .contact__field--half {
    grid-column: 1 / -1;
  }
  .footer__statement p {
    font-size: clamp(3rem, 9vw, 4.8rem);
  }
  .footer__nav {
    padding-left: 0;
    border-left: 0;
  }
}
@media (max-width: 600px) {
  .hero {
    --hero-seam-angle: clamp(1rem, 8vw, 2.6rem);
    min-height: 92svh;
  }
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(9,9,10,0.72) 0%, rgba(9,9,10,0.24) 34%, rgba(9,9,10,0.86) 100%),
      linear-gradient(94deg, rgba(5,5,5,0.9) 0%, rgba(7,7,8,0.78) 54%, rgba(14,14,14,0.2) 100%);
  }
  .hero__layer,
  .hero__sketch-lines { background-position: 50% center; }
  .hero__media::after { opacity: 0.68; }
  .hero__scroll { display: none; }
  .trust__proofs { grid-template-columns: 1fr; }
  .trust__proofs li + li,
  .trust__proofs li:nth-child(3),
  .trust__proofs li:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(236,233,227,0.13);
  }
  .ba__grip { width: 2.4rem; height: 2.4rem; }
  .ba__pairs { grid-template-columns: 1fr; }
  /* keep full-uncropped AR on mobile too — stacked, never re-cropped */
  .work__mosaic { grid-template-columns: 1fr; grid-template-rows: none; }
  .work-card,
  .work-card--bath,
  .work-card--kitchen,
  .work-card--feature,
  .work-card--penthouse,
  .work-card--green,
  .work-card--modern,
  .work-card--powder,
  .work-card--spa,
  .work-card--detail { grid-column: auto; grid-row: auto; min-height: 18rem; }
  .work-card--feature { grid-template-rows: 16rem auto; }
  .tilestone__stage {
    /* JS animates --ts-w (46vw -> 92vw) here too; this is the static fallback. */
    width: var(--ts-w, 62vw);
    max-width: 92vw;
  }
  .tilestone__side {
    top: -2.05rem;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
  }
  .tilestone__side--left::before,
  .tilestone__side--right::after {
    width: 1.4rem;
  }
  .tilestone__side--left::before { margin-right: 0.6rem; }
  .tilestone__side--right::after { margin-left: 0.6rem; }
  .tilestone__tag {
    top: calc(100% + 1.7rem);
    width: 88vw;
    font-size: clamp(0.92rem, 3.35vw, 1.02rem);
    line-height: 1.52;
    letter-spacing: 0.03em;
  }
  .craft h2 { font-size: clamp(3.3rem, 15vw, 4.8rem); }
  .design-planning,
  .exterior,
  .statement {
    padding-block: var(--space-xl);
  }
  .breath { padding-block: clamp(4.5rem, 16vw, 7rem); }
  .design-planning__title,
  .exterior__title {
    font-size: clamp(3.2rem, 14vw, 4.8rem);
  }
  .breath__line { font-size: clamp(3.1rem, 15vw, 5.2rem); }
  .design-planning__stage {
    min-height: 30rem;
    margin-inline: calc(var(--gutter) * -1);
  }
  .design-planning__photo {
    inset: 16% 0 0 22%;
    width: 78%;
    height: 78%;
  }
  .design-planning__sketch {
    inset: 4% 22% 22% 0;
    width: 76%;
    height: 68%;
  }
  .design-planning__rail,
  .exterior__scope {
    grid-template-columns: repeat(7, max-content);
    font-size: 0.72rem;
    letter-spacing: 0.24em;
  }
  .exterior__copy p:not(.eyebrow),
  .design-planning__lede {
    font-size: 0.98rem;
  }
  .exterior {
    min-height: 48rem;
  }
  .exterior__inner {
    align-items: start;
    min-height: 42rem;
  }
  .exterior__media img {
    object-position: 62% 50%;
  }
  .statement__inner {
    gap: var(--space-l);
  }
  .statement__portrait {
    min-height: 26rem;
  }
  .statement blockquote > p {
    font-size: clamp(2.55rem, 12vw, 4.25rem);
  }
  .statement__cite {
    letter-spacing: 0.16em;
  }
  .process {
    padding-block: var(--space-xl);
  }
  .process__title {
    font-size: clamp(3.15rem, 14vw, 4.8rem);
  }
  .process__lede {
    font-size: 1rem;
  }
  .process__step {
    padding-left: 3.5rem;
  }
  .process__cta {
    padding: var(--space-m);
  }
  .process__cta-button {
    width: 100%;
    min-height: 4.5rem;
    letter-spacing: 0.13em;
  }
  .craft__checks li {
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: 1rem;
    font-size: 0.95rem;
    letter-spacing: 0.16em;
  }
  .reviews,
  .team,
  .faq { padding-block: var(--space-xl); }
  .reviews__title,
  .team__title,
  .faq__title {
    font-size: clamp(3.2rem, 14vw, 4.6rem);
  }
  .reviews__rail {
    margin-inline: 0;
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .reviews__track {
    flex-direction: column;
    width: auto;
    padding-inline: 0;
    animation: none;
  }
  .review-card,
  .review-card--wide {
    flex-basis: auto;
    min-height: 0;
  }
  .team__cards,
  .team__pillars,
  .team__facts {
    grid-template-columns: 1fr;
  }
  .team__pillars article + article,
  .team__pillars article:nth-child(3),
  .team__facts article + article,
  .team__facts article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(68,64,58,0.12);
  }
  .team-card h3 {
    font-size: clamp(2.25rem, 11vw, 3.1rem);
  }
  .faq-item summary span {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }
  .faq-item p { margin-right: 0; }
  .contact::before {
    width: 35rem;
    max-width: 100vw;
    opacity: 0.06;
  }
  .contact__phone,
  .contact__service {
    grid-template-columns: 3.65rem minmax(0, 1fr);
    gap: 0.9rem;
  }
  .contact__phone span,
  .contact__service span {
    width: 3.35rem;
    height: 3.35rem;
  }
  .contact__phone span::before {
    left: 1.06rem;
    top: 0.82rem;
  }
  .contact__phone strong {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }
  .contact__title {
    font-size: clamp(3.55rem, 14vw, 4rem);
  }
  .contact__title em {
    font-size: 0.88em;
  }
  .contact__upload {
    grid-template-columns: 1fr;
  }
  .contact__upload > span {
    grid-row: auto;
  }
  .contact__submit {
    gap: 1rem;
    letter-spacing: 0.1em;
    font-size: 0.82rem;
  }
  .footer__statement {
    min-height: 18rem;
  }
  .footer__statement p {
    font-size: clamp(2.6rem, 12vw, 3.8rem);
  }
  .footer__bottom {
    flex-direction: column;
  }
}

/* ============================================================
   R87 · DETAIL PAGE REBUILD — additive overrides (fence: sections.css)
   Eyebrow/label collision fix · rail-seated numbers · video wall
   ============================================================ */

/* Label + eyebrow must never share a y-band (David collision at 390/1440).
   Force a single vertical stack; kill any absolute drift from older idioms. */
.detail-panel__label {
  position: relative;
  display: flex;
  width: 100%;
  margin-bottom: 0.55rem;
  z-index: 1;
}
.detail-panel > .detail-sec-head {
  position: relative;
  clear: both;
  margin-top: 0;
  z-index: 0;
}
.detail-panel > .detail-sec-head .detail-sec-head__eyebrow {
  position: static;
}

/* Overview without the playlist card — awards plate fills the aside */
.detail-overview__aside > .detail-lede__award {
  margin-top: 0;
}

/* Spec plate dialed to the method rail width */
.proc__rail .spec-plate--rail {
  /* R87b (David): the numbers live at the TOP of the rail, filling the square
     between the section head and step 01 — sized like a table, not a whisper. */
  margin-top: 0;
  margin-bottom: var(--space-l);
  width: 100%;
  max-width: none;
}
.proc__rail .spec-plate--rail .spec-plate__key,
.proc__rail .spec-plate--rail .spec-plate__val {
  font-size: 0.86rem;
  padding: 0.6em 0.75em;
}
.proc__rail .spec-plate--rail .spec-plate__head {
  font-size: 0.68rem;
  padding: 0.55em 0.65em;
}

/* Real-thumbnail video wall */
.build-wall {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.build-wall--3x3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.build-wall--2x3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.build-wall--2x4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.build-wall__tile {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--ink-700);
  background: var(--ink-850, #1c1c1c);
  min-width: 0;
  transition: border-color 0.2s ease;
}
.build-wall__tile:hover {
  border-color: var(--accent);
}
.build-wall__thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}
.build-wall__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.build-wall__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}
.build-wall__play::after {
  content: "";
  position: absolute;
  left: 52%;
  top: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 0.45rem 0 0.45rem 0.75rem;
  border-color: transparent transparent transparent #fff;
}
.build-wall__title {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.02em;
  color: var(--slate-400);
  padding: 0 0.55rem 0.55rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.build-wall__count {
  margin-top: var(--space-m);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-400);
}
.build-wall__count b {
  color: var(--accent);
  font-weight: 500;
}
.build-wall__cta {
  margin-top: 0.55rem;
}
.build-wall__note {
  margin-top: var(--space-m);
  font-size: var(--step--1);
  color: var(--slate-400);
  max-width: 48ch;
}

@media (max-width: 900px) {
  .build-wall--3x3,
  .build-wall--2x4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .build-wall--3x3,
  .build-wall--2x3,
  .build-wall--2x4 {
    grid-template-columns: 1fr;
  }
}
