/* ==========================================================================
   Dynasty Exteriors — site.css
   Palette pulled from the logo: black + cream, with a deep chestnut/amber
   wood-tone accent used sparingly. No bright or saturated colour anywhere.
   All contrast pairings below meet WCAG AA at their intended size.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Core palette */
  --ink:        #12100D;   /* near-black from the logo                       */
  --ink-2:      #1E1A15;   /* raised dark surface                            */
  --ink-3:      #2C2620;   /* hairlines on dark                              */
  --cream:      #F5F0E6;   /* primary cream                                  */
  --cream-2:    #EDE6D8;   /* alternate section band                         */
  --cream-3:    #DFD6C3;   /* borders / muted fills on cream                 */

  /* Wood-tone accent — used sparingly */
  --chestnut:   #8A4A21;   /* 5.9:1 on cream — safe for body-size text/links */
  --chestnut-d: #6F3A18;   /* hover                                          */
  --amber:      #C07C33;   /* 5.6:1 on ink — accents + text on dark only     */

  /* Text roles */
  --text:        var(--ink);
  --text-muted:  #564E42;  /* 7.3:1 on cream                                 */
  --text-on-dark:        var(--cream);
  --text-on-dark-muted:  #B9AF9C;  /* 8.4:1 on ink                           */

  /* Lines & surfaces */
  --line:        rgba(18, 16, 13, 0.14);
  --line-strong: rgba(18, 16, 13, 0.28);
  --line-dark:   rgba(245, 240, 230, 0.16);

  /* Type */
  --font-display: 'Fraunces', 'Georgia', 'Times New Roman', serif;
  --font-sans:    'Barlow', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-cond:    'Barlow Condensed', 'Barlow', system-ui, sans-serif;

  /* Rhythm */
  --wrap: 1180px;
  --wrap-narrow: 760px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);

  --radius: 2px;      /* restrained — this brand is not a rounded brand */
  --radius-lg: 4px;

  --shadow-sm: 0 1px 2px rgba(18, 16, 13, .06), 0 4px 14px rgba(18, 16, 13, .05);
  --shadow-md: 0 2px 6px rgba(18, 16, 13, .08), 0 16px 40px rgba(18, 16, 13, .10);
  --shadow-lg: 0 8px 24px rgba(18, 16, 13, .14), 0 30px 80px rgba(18, 16, 13, .18);

  --ease: cubic-bezier(.22, .61, .36, 1);

  --header-h: 94px;
  --stickybar-h: 0px;
}

@media (max-width: 860px) {
  :root { --header-h: 68px; --stickybar-h: 68px; }
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

/* [hidden] must beat any component display rule (.btn is inline-flex, etc.) */
[hidden] { display: none !important; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  padding-bottom: var(--stickybar-h);
}
body.is-locked { overflow: hidden; }

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--chestnut); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--chestnut-d); }
button, input, select, textarea { font: inherit; color: inherit; }

/* Phone numbers never break across lines (handled here rather than with
   &nbsp; entities so the placeholder number stays easy to find-and-replace) */
a[href^="tel:"], .site-footer__phone, .info-list__v { white-space: nowrap; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 0 0 .5em;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 6.4vw, 4.6rem); }
h2 { font-size: clamp(1.95rem, 4.1vw, 3.05rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); line-height: 1.15; }
h4 { font-size: 1.1rem; line-height: 1.25; }
p  { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

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

:focus-visible {
  outline: 3px solid var(--chestnut);
  outline-offset: 3px;
  border-radius: 1px;
}
.on-dark :focus-visible, .site-footer :focus-visible, .site-header :focus-visible {
  outline-color: var(--amber);
}
/* Headings and panels we move focus to programmatically (step changes,
   confirmation screens) are not interactive — no focus ring on them. */
[tabindex="-1"]:focus, [tabindex="-1"]:focus-visible { outline: none; }

.skip-link {
  position: absolute; left: 12px; top: -100px;
  z-index: 200; background: var(--ink); color: var(--cream);
  padding: .7rem 1.1rem; border-radius: var(--radius);
  font-family: var(--font-cond); text-transform: uppercase;
  letter-spacing: .08em; text-decoration: none;
  transition: top .18s var(--ease);
}
.skip-link:focus { top: 12px; color: var(--cream); }

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

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--wrap-narrow); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(3rem, 6vw, 4.75rem); }
.section--cream-2 { background: var(--cream-2); }
.section--ink { background: var(--ink); color: var(--text-on-dark); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--cream); }
.section--ink p { color: var(--text-on-dark-muted); }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

.stack > * + * { margin-top: 1.15em; }
.center { text-align: center; }
.measure { max-width: 62ch; }
.measure-sm { max-width: 48ch; }

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); } }

/* --------------------------------------------------------------------------
   4. Type utilities
   -------------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .82rem;
  color: var(--chestnut);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::after {
  content: ''; flex: 1 1 auto; height: 1px;
  background: var(--line-strong); max-width: 90px;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::before {
  content: ''; flex: 1 1 auto; height: 1px;
  background: var(--line-strong); max-width: 90px;
}
.on-dark .eyebrow, .section--ink .eyebrow { color: var(--amber); }
.on-dark .eyebrow::after, .on-dark .eyebrow::before,
.section--ink .eyebrow::after, .section--ink .eyebrow::before { background: var(--line-dark); }

.lede { font-size: clamp(1.1rem, 1.7vw, 1.3rem); line-height: 1.55; color: var(--text-muted); }
.section--ink .lede { color: var(--text-on-dark-muted); }

.section-head { max-width: 66ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .6rem;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: .95rem 1.6rem;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background-color .18s var(--ease), color .18s var(--ease),
              border-color .18s var(--ease), transform .18s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--chestnut); color: var(--cream); }
.btn--primary:hover { background: var(--chestnut-d); color: var(--cream); }

.btn--ink { background: var(--ink); color: var(--cream); }
.btn--ink:hover { background: var(--ink-2); color: var(--cream); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.btn--ghost-light { background: transparent; color: var(--cream); border-color: var(--line-dark); }
.btn--ghost-light:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

.btn--sm { padding: .6rem 1.05rem; min-height: 40px; font-size: .92rem; }
.btn--block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .45; pointer-events: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }
.btn-row--center { justify-content: center; }

.link-arrow {
  font-family: var(--font-cond);
  font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  font-size: .92rem; text-decoration: none;
  display: inline-flex; align-items: center; gap: .5rem;
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
}
.link-arrow span { transition: transform .18s var(--ease); }
.link-arrow:hover span { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   6. Header / nav
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--ink);
  color: var(--cream);
  border-bottom: 1px solid var(--ink-3);
}
.site-header__inner {
  height: var(--header-h);
  display: flex; align-items: center; gap: 1.5rem;
  max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter);
}

/* --- LOGO SLOT A + B live here (see markup comments) --- */
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; flex: 0 0 auto; }
.brand__mark { width: 46px; height: 46px; flex: 0 0 auto; }
.brand__lockup { height: 64px; width: auto; display: none; }
@media (min-width: 861px) {
  .brand__lockup { display: block; }
  .brand__mark { display: none; }
}
.brand__fallback {
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  color: var(--cream); letter-spacing: -.01em; line-height: 1;
}

.site-nav { margin-left: auto; }
.site-nav__list {
  display: flex; align-items: center; gap: clamp(.9rem, 1.9vw, 1.85rem);
  list-style: none; margin: 0; padding: 0;
}
.site-nav__link {
  font-family: var(--font-cond); font-weight: 500;
  text-transform: uppercase; letter-spacing: .1em; font-size: .95rem;
  color: var(--cream); text-decoration: none;
  padding: .4rem 0; position: relative; white-space: nowrap;
}
.site-nav__link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--amber);
  transform: scaleX(0); transform-origin: left;
  transition: transform .2s var(--ease);
}
.site-nav__link:hover { color: var(--cream); }
.site-nav__link:hover::after, .site-nav__link[aria-current="page"]::after { transform: scaleX(1); }
.site-nav__link[aria-current="page"] { color: var(--amber); }

.header-cta { margin-left: 1.25rem; }
/* The quote button inside the nav panel is for the mobile menu only; the
   desktop one lives outside the <nav>. */
.site-nav > .btn { display: none; }
@media (max-width: 1080px) {
  .header-cta { display: none; }
  .site-nav > .btn { display: inline-flex; }
}

.nav-toggle {
  display: none; margin-left: auto;
  background: transparent; border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  width: 46px; height: 42px;
  align-items: center; justify-content: center;
  cursor: pointer; color: var(--cream);
}
.nav-toggle__bars { display: block; width: 20px; height: 12px; position: relative; }
.nav-toggle__bars::before, .nav-toggle__bars::after, .nav-toggle__bars span {
  content: ''; position: absolute; left: 0; right: 0; height: 1.5px;
  background: var(--cream); transition: transform .22s var(--ease), opacity .16s var(--ease);
}
.nav-toggle__bars::before { top: 0; }
.nav-toggle__bars span { top: 5px; }
.nav-toggle__bars::after { top: 10px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed; inset: var(--header-h) 0 0 0;
    background: var(--ink);
    padding: 2rem var(--gutter) 3rem;
    overflow-y: auto;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .2s var(--ease), transform .2s var(--ease);
    margin-left: 0;
  }
  .site-nav[data-open="true"] { opacity: 1; transform: none; pointer-events: auto; }
  .site-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav__list li { border-bottom: 1px solid var(--ink-3); }
  .site-nav__link {
    display: block; padding: 1.1rem 0;
    font-size: 1.35rem; letter-spacing: .06em;
  }
  .site-nav__link::after { display: none; }
  .site-nav .btn { margin-top: 1.75rem; width: 100%; }
}

/* Mobile sticky action bar */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: 1px;
  background: var(--ink-3);
  border-top: 1px solid var(--ink-3);
  padding-bottom: env(safe-area-inset-bottom);
}
.sticky-bar a {
  flex: 1 1 50%;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 68px;
  font-family: var(--font-cond); font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em; font-size: 1rem;
  text-decoration: none;
}
.sticky-bar__call { background: var(--ink); color: var(--cream); }
.sticky-bar__call:hover { color: var(--cream); }
.sticky-bar__quote { background: var(--chestnut); color: var(--cream); }
.sticky-bar__quote:hover { color: var(--cream); }
.sticky-bar svg { width: 18px; height: 18px; }
@media (max-width: 860px) { .sticky-bar { display: flex; } }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; background: var(--ink); color: var(--cream); overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
/* Portrait hero photography: bias the crop downward so the floor — the part
   that actually changed — stays in frame instead of the porch ceiling. */
.hero__media--tall img { object-position: center 64%; }
@media (max-width: 760px) { .hero__media--tall img { object-position: center 58%; } }
.hero__media .ba { height: 100%; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(18,16,13,.88) 0%, rgba(18,16,13,.66) 44%, rgba(18,16,13,.22) 72%, rgba(18,16,13,.12) 100%),
    linear-gradient(to top, rgba(18,16,13,.85) 0%, rgba(18,16,13,0) 55%);
}
@media (max-width: 760px) {
  .hero__scrim { background: linear-gradient(to top, rgba(18,16,13,.93) 20%, rgba(18,16,13,.5) 62%, rgba(18,16,13,.32) 100%); }
}
.hero__inner {
  position: relative;
  max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter);
  padding-block: clamp(5rem, 13vw, 9.5rem);
  min-height: clamp(560px, 82vh, 780px);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero__content { max-width: 640px; }
.hero h1 { max-width: 13ch; }
.hero h1 { color: var(--cream); margin-bottom: .35em; }
.hero__sub {
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  color: var(--cream);
  opacity: .9;
  max-width: 44ch;
  margin-bottom: 2rem;
}
/* Solid hero — no photograph behind the headline. Shorter than the photo
   version because a tall block of flat colour just reads as empty space. */
.hero--solid { background: var(--ink); border-bottom: 1px solid var(--ink-3); }
.hero--solid .hero__inner {
  min-height: 0;
  padding-block: clamp(4rem, 9vw, 7rem);
  justify-content: center;
}
.hero--solid .hero__sub { opacity: 1; color: var(--text-on-dark-muted); }
/* Without a photo competing for width the headline can breathe over two
   lines instead of three. */
.hero--solid h1 { max-width: 20ch; }
/* Chestnut is a cream-background colour — only 2.8:1 on ink. On the solid
   hero the eyebrow needs the on-dark accent instead. (The photo hero hid this:
   contrast checkers cannot measure text sitting over an image.) */
.hero .eyebrow { color: var(--amber); }
.hero--solid .hero__content { max-width: 720px; }

.hero__tag {
  position: absolute; right: var(--gutter); bottom: 1.5rem;
  font-family: var(--font-cond); text-transform: uppercase;
  letter-spacing: .14em; font-size: .74rem; color: var(--text-on-dark-muted);
}
@media (max-width: 900px) { .hero__tag { display: none; } }

/* Page hero (interior pages) */
.page-hero { background: var(--ink); color: var(--cream); padding-block: clamp(3.5rem, 8vw, 6rem); }
.page-hero h1 { color: var(--cream); }
.page-hero__inner { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.page-hero .lede { color: var(--text-on-dark-muted); max-width: 58ch; }

.breadcrumbs {
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .12em;
  font-size: .78rem; color: var(--text-on-dark-muted); margin-bottom: 1.5rem;
}
.breadcrumbs a { color: var(--text-on-dark-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--amber); }
.breadcrumbs span { margin-inline: .5rem; opacity: .5; }

/* --------------------------------------------------------------------------
   8. Trust bar
   -------------------------------------------------------------------------- */
.trustbar { background: var(--cream-2); border-bottom: 1px solid var(--line); }
.trustbar__list {
  display: grid; grid-template-columns: repeat(4, 1fr);
  list-style: none; margin: 0 auto; padding: 0;
  max-width: var(--wrap);
}
.trustbar__list li {
  display: flex; align-items: center; justify-content: center; gap: .65rem;
  padding: 1.15rem 1rem; text-align: center;
  font-family: var(--font-cond); font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em; font-size: .88rem;
  border-left: 1px solid var(--line);
}
.trustbar__list li:first-child { border-left: 0; }
.trustbar__list svg { width: 17px; height: 17px; flex: 0 0 auto; color: var(--chestnut); }
@media (max-width: 780px) {
  .trustbar__list { grid-template-columns: repeat(2, 1fr); }
  .trustbar__list li:nth-child(odd) { border-left: 0; }
  .trustbar__list li:nth-child(n+3) { border-top: 1px solid var(--line); }
  .trustbar__list li { font-size: .8rem; padding: .95rem .75rem; }
}

/* --------------------------------------------------------------------------
   9. Cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.card__media { position: relative; aspect-ratio: 4 / 3; background: var(--ink-2); overflow: hidden; }
/* Placeholder tile for a service with no photos yet — deliberately a branded
   panel rather than a stand-in image, so it reads as a design choice. */
.card__media--pending { display: grid; place-items: center; background: var(--ink); }
.card__pending {
  display: grid; justify-items: center; gap: .85rem; color: var(--amber);
  font-family: var(--font-cond); font-weight: 600;
  text-transform: uppercase; letter-spacing: .18em; font-size: .74rem;
}
.card__pending svg { width: 46px; height: 46px; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card__body { padding: clamp(1.35rem, 2.4vw, 1.9rem); display: flex; flex-direction: column; flex: 1; gap: .85rem; }
.card__body h3 { margin: 0; }
.card__body p { color: var(--text-muted); margin: 0; }
.card__foot { margin-top: auto; padding-top: .35rem; }
.card--link:hover { border-color: var(--line-strong); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card--link:hover .card__media img { transform: scale(1.04); }
.card--link a::after { content: ''; position: absolute; inset: 0; }
.card--link { position: relative; }

.card__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.card__list li { position: relative; padding-left: 1.4rem; color: var(--text-muted); font-size: .98rem; }
.card__list li::before {
  content: ''; position: absolute; left: 0; top: .62em;
  width: 7px; height: 7px; background: var(--chestnut); border-radius: 50%;
}

/* --------------------------------------------------------------------------
   10. Process timeline
   -------------------------------------------------------------------------- */
.process {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0; list-style: none; margin: 0; padding: 0;
}
.process__step {
  position: relative;
  padding: 0 clamp(1rem, 2vw, 1.75rem);
  border-left: 1px solid var(--line-dark);
}
.section--ink .process__step { border-left-color: var(--line-dark); }
.process__step:first-child { border-left: 0; padding-left: 0; }
.process__step:last-child { padding-right: 0; }
.process__media {
  aspect-ratio: 4 / 3; overflow: hidden; margin-bottom: 1.5rem;
  background: var(--ink-2); border-radius: var(--radius);
}
.process__media img { width: 100%; height: 100%; object-fit: cover; }
.process__num {
  font-family: var(--font-cond); font-weight: 700;
  font-size: .82rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--amber); display: flex; align-items: center; gap: .65rem;
  margin-bottom: .9rem;
}
.process__icon {
  width: 34px; height: 34px; color: var(--amber);
  flex: 0 0 auto;
}
.process__step h3 { font-size: clamp(1.1rem, 1.5vw, 1.3rem); margin-bottom: .5rem; }
.process__step p { font-size: .94rem; }

/* --- Lean variant: no photos, so the step carries its own weight ------------
   Used while there are no process photos. Drop a .process__media block back
   into each <li> and swap the class to plain .process to restore them. */
.process--lean .process__step {
  border-left: 0;
  border-top: 1px solid var(--line-dark);
  padding: 2.1rem clamp(1rem, 2.2vw, 2rem) 0 0;
  position: relative;
}
.process--lean .process__step::before {
  content: ''; position: absolute; top: -5px; left: 0;
  width: 10px; height: 10px; background: var(--amber);
}
.process--lean .process__step:last-child { padding-right: 0; }
.process--lean .process__icon {
  display: block; width: 40px; height: 40px;
  color: var(--amber); margin-bottom: 1.15rem;
}
.process--lean .process__num {
  display: block; margin-bottom: .55rem;
  font-size: .78rem; letter-spacing: .22em;
}
.process--lean .process__step h3 { margin-bottom: .55rem; }
@media (max-width: 1080px) {
  .process--lean .process__step { padding-left: 0; padding-right: clamp(1rem, 2.2vw, 2rem); }
  .process--lean .process__step:nth-child(3n) { padding-right: 0; }
}
@media (max-width: 760px) {
  .process--lean .process__step:nth-child(3n) { padding-right: clamp(1rem, 2.2vw, 2rem); }
  .process--lean .process__step:nth-child(2n) { padding-right: 0; }
}
@media (max-width: 600px) {
  .process--lean .process__step { padding: 1.75rem 0 0; }
}
/* A cream-background variant, in case the section is ever moved */
.section:not(.section--ink) .process--lean .process__step { border-top-color: var(--line); }
.section:not(.section--ink) .process--lean .process__icon,
.section:not(.section--ink) .process--lean .process__step::before { color: var(--chestnut); }
.section:not(.section--ink) .process--lean .process__step::before { background: var(--chestnut); }
@media (max-width: 1080px) {
  .process { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2.75rem 0; }
}
@media (max-width: 760px) {
  .process { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.5rem 0; }
}
@media (max-width: 600px) {
  .process { grid-template-columns: 1fr; gap: 2.5rem; }
  .process__step { border-left: 0; padding: 0; }
}

/* --------------------------------------------------------------------------
   11. Before / after slider
   -------------------------------------------------------------------------- */
.ba {
  position: relative; overflow: hidden;
  background: var(--ink-2); border-radius: var(--radius);
  aspect-ratio: 3 / 2;
  touch-action: pan-y;
  user-select: none;
  cursor: ew-resize;
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%);
  width: 2px; background: var(--cream);
  transform: translateX(-1px);
  box-shadow: 0 0 0 1px rgba(18,16,13,.25);
  pointer-events: none;
}
.ba__grip {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--cream); color: var(--ink);
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
}
.ba__grip svg { width: 20px; height: 20px; }
.ba__range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; margin: 0; cursor: ew-resize;
}
.ba__range:focus-visible + .ba__handle .ba__grip { outline: 3px solid var(--amber); outline-offset: 3px; }
.ba__label {
  position: absolute; bottom: .85rem;
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .14em;
  font-size: .72rem; font-weight: 600;
  background: rgba(18,16,13,.82); color: var(--cream);
  border: 1px solid rgba(245,240,230,.24);
  padding: .32rem .7rem; border-radius: var(--radius);
  pointer-events: none;
  backdrop-filter: blur(4px);
}
.ba__label--before { left: .85rem; }
.ba__label--after  { right: .85rem; }

/* Portrait pair (the front porch shots) — taller box so the whole frame shows */
.ba--tall { aspect-ratio: 3 / 4; }
@media (max-width: 860px) { .ba--tall { aspect-ratio: 4 / 5; } }

/* Match a plain <img> to the height of a slider sitting beside it */
.media-3x2 { aspect-ratio: 3 / 2; border-radius: var(--radius); overflow: hidden; }
.media-3x2 img { width: 100%; height: 100%; object-fit: cover; }

/* Full-width feature image */
.feature-media { border-radius: var(--radius); overflow: hidden; }
.feature-media img { width: 100%; display: block; }

/* Static (non-interactive) variant used behind the homepage hero */
.ba--static { cursor: default; aspect-ratio: auto; height: 100%; border-radius: 0; }
.ba--static .ba__label { bottom: auto; top: 2.1rem; }
@media (max-width: 760px) { .ba--static .ba__label { display: none; } }

.ba-project { display: grid; gap: 1rem; }
.ba-project__meta {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .6rem 1rem;
}
.ba-project__meta h3 { margin: 0; font-size: 1.25rem; }
.ba-project__city {
  font-family: var(--font-cond); text-transform: uppercase;
  letter-spacing: .12em; font-size: .8rem; color: var(--text-muted);
}
.section--ink .ba-project__city { color: var(--text-on-dark-muted); }

/* --------------------------------------------------------------------------
   12. Reviews
   -------------------------------------------------------------------------- */
.stars { display: inline-flex; gap: 2px; color: var(--chestnut); }
.on-dark .stars, .section--ink .stars { color: var(--amber); }
.stars svg { width: 17px; height: 17px; }
.stars--lg svg { width: 24px; height: 24px; }
.stars .star--empty { opacity: .26; }

.rating-summary {
  display: flex; flex-wrap: wrap; align-items: center; gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--cream-2);
}
.rating-summary__score {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3rem, 7vw, 4.4rem); line-height: .9;
  letter-spacing: -.03em;
}
.rating-summary__meta { display: grid; gap: .45rem; }
.rating-summary__meta p { margin: 0; }
.rating-summary__count { color: var(--text-muted); font-size: .95rem; }

.review-card {
  background: var(--cream);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
  display: flex; flex-direction: column; gap: .9rem;
  break-inside: avoid;
}
.section--ink .review-card { background: var(--ink-2); border-color: var(--ink-3); }
.review-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.review-card__who { display: grid; gap: .2rem; }
.review-card__name { font-family: var(--font-cond); font-weight: 600; font-size: 1.12rem; letter-spacing: .03em; text-transform: uppercase; }
.review-card__date { font-size: .85rem; color: var(--text-muted); }
.section--ink .review-card__date { color: var(--text-on-dark-muted); }
.review-card__text { margin: 0; }
.section--ink .review-card__text { color: var(--cream); opacity: .92; }
.badge-google {
  display: inline-flex; align-items: center; gap: .38rem;
  font-family: var(--font-cond); text-transform: uppercase;
  letter-spacing: .1em; font-size: .7rem; font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--line); border-radius: 999px;
  padding: .22rem .6rem; white-space: nowrap;
}
.section--ink .badge-google { color: var(--text-on-dark-muted); border-color: var(--ink-3); }
.badge-google svg { width: 13px; height: 13px; }

.reviews-masonry { columns: 3; column-gap: clamp(1.25rem, 2.5vw, 2rem); }
.reviews-masonry > * { margin-bottom: clamp(1.25rem, 2.5vw, 2rem); }
@media (max-width: 980px) { .reviews-masonry { columns: 2; } }
@media (max-width: 640px)  { .reviews-masonry { columns: 1; } }

/* --------------------------------------------------------------------------
   13. Gallery
   -------------------------------------------------------------------------- */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.25rem; }
.filter {
  font-family: var(--font-cond); font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em; font-size: .92rem;
  background: transparent; color: var(--text);
  border: 1px solid var(--line-strong); border-radius: 999px;
  padding: .55rem 1.15rem; min-height: 42px; cursor: pointer;
  transition: background-color .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.filter:hover { border-color: var(--ink); }
.filter[aria-pressed="true"] { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 285px), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.tile {
  position: relative; padding: 0; border: 0; background: var(--ink-2);
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  aspect-ratio: 4 / 3; display: block; width: 100%;
  text-align: left;
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.tile__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18,16,13,.88) 0%, rgba(18,16,13,.15) 55%, rgba(18,16,13,0) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.1rem; gap: .2rem;
  opacity: .96;
}
.tile__title { font-family: var(--font-cond); font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--cream); font-size: 1.02rem; line-height: 1.2; }
.tile__city { font-size: .82rem; color: var(--cream); opacity: .78; }
.tile__pill {
  position: absolute; top: .8rem; left: .8rem;
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .12em;
  font-size: .68rem; font-weight: 600;
  background: rgba(245,240,230,.92); color: var(--ink);
  padding: .22rem .6rem; border-radius: var(--radius);
}
.tile:hover img { transform: scale(1.05); }
.tile[hidden] { display: none; }

.gallery-empty { padding: 3rem 0; color: var(--text-muted); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10, 9, 7, .94);
  display: none; place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  border: 0;
}
.lightbox::backdrop { background: rgba(10, 9, 7, .94); }
.lightbox[open] { display: grid; }
.lightbox:not([open]) { display: none; }
.lightbox__panel { width: min(1000px, 100%); max-height: 100%; overflow-y: auto; }
.lightbox__figure { margin: 0; }
.lightbox .ba { aspect-ratio: 3 / 2; }
.lightbox__caption { margin-top: 1.15rem; color: var(--cream); }
.lightbox__caption h3 { color: var(--cream); margin-bottom: .25rem; }
.lightbox__caption p { color: var(--text-on-dark-muted); margin: 0; }
.lightbox__close {
  position: absolute; top: clamp(.75rem, 2vw, 1.5rem); right: clamp(.75rem, 2vw, 1.5rem);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(245,240,230,.12); border: 1px solid var(--line-dark);
  color: var(--cream); cursor: pointer; display: grid; place-items: center;
}
.lightbox__close:hover { background: var(--cream); color: var(--ink); }
.lightbox__nav {
  display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.25rem;
}

/* --------------------------------------------------------------------------
   14. Forms
   -------------------------------------------------------------------------- */
.field { display: grid; gap: .45rem; margin-bottom: 1.35rem; }
.field > label, .fieldset__legend {
  font-family: var(--font-cond); font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em; font-size: .86rem;
}
.field__hint { font-size: .88rem; color: var(--text-muted); margin: 0; }
.req { color: var(--chestnut); }

.input, .select, .textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: .8rem .95rem;
  min-height: 50px;
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.textarea { min-height: 130px; resize: vertical; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2312100D' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 12px;
  padding-right: 2.6rem;
}
.input:focus, .select:focus, .textarea:focus {
  outline: 0; border-color: var(--chestnut);
  box-shadow: 0 0 0 3px rgba(138, 74, 33, .18);
}
.input[aria-invalid="true"], .select[aria-invalid="true"], .textarea[aria-invalid="true"] {
  border-color: #9B2C15;
}
.error-msg {
  font-size: .88rem; color: #8C2712; font-weight: 500;
  display: flex; align-items: center; gap: .4rem;
}
.error-msg:empty { display: none; }
.error-msg svg { width: 15px; height: 15px; flex: 0 0 auto; }

.fieldset { border: 0; padding: 0; margin: 0 0 1.6rem; }
.fieldset__legend { padding: 0; margin-bottom: .8rem; }

/* Choice tiles (radio / checkbox as cards) */
.choices { display: grid; gap: .7rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr)); }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; width: 0; height: 0; }
.choice__box {
  display: flex; align-items: center; gap: .8rem;
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 1rem 1.1rem; min-height: 62px; cursor: pointer; height: 100%;
  background: var(--cream);
  transition: border-color .16s var(--ease), background-color .16s var(--ease);
}
.choice__box:hover { border-color: var(--ink); }
.choice input:checked + .choice__box { border-color: var(--chestnut); background: rgba(138,74,33,.07); box-shadow: inset 0 0 0 1px var(--chestnut); }
.choice input:focus-visible + .choice__box { outline: 3px solid var(--chestnut); outline-offset: 3px; }
.choice__icon { width: 26px; height: 26px; color: var(--chestnut); flex: 0 0 auto; }
.choice__label { font-family: var(--font-cond); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: 1rem; }
.choice__sub { display: block; font-family: var(--font-sans); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: .85rem; color: var(--text-muted); margin-top: .1rem; }
.choices--stack { grid-template-columns: 1fr; }

/* Star input */
.star-input { display: flex; gap: .25rem; }
.star-input input { position: absolute; opacity: 0; width: 0; height: 0; }
.star-input label { cursor: pointer; color: var(--line-strong); padding: .15rem; line-height: 0; }
.star-input label svg { width: 30px; height: 30px; }
.star-input label:hover, .star-input label.is-on { color: var(--chestnut); }
.star-input input:focus-visible + label { outline: 3px solid var(--chestnut); outline-offset: 2px; }

/* Dropzone */
.dropzone {
  border: 1.5px dashed var(--line-strong); border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem); text-align: center;
  background: var(--cream-2);
  transition: border-color .16s var(--ease), background-color .16s var(--ease);
  cursor: pointer;
}
.dropzone:hover, .dropzone.is-over { border-color: var(--chestnut); background: rgba(138,74,33,.06); }
.dropzone svg { width: 34px; height: 34px; color: var(--chestnut); margin: 0 auto .8rem; }
.dropzone__hint { font-size: .9rem; color: var(--text-muted); margin: .35rem 0 0; }
.dropzone input[type="file"] { position: absolute; opacity: 0; width: 0; height: 0; }

.thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: .75rem; margin-top: 1rem; list-style: none; padding: 0; }
.thumb { position: relative; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--cream-3); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb button {
  position: absolute; top: 4px; right: 4px; width: 26px; height: 26px;
  border-radius: 50%; border: 0; background: rgba(18,16,13,.82); color: var(--cream);
  cursor: pointer; display: grid; place-items: center; font-size: 15px; line-height: 1;
}
.thumb button:hover { background: var(--ink); }

/* Honeypot — out of sight for people, still in the DOM for naive bots.
   Deliberately NOT display:none: a lot of bots skip fields they can tell are
   hidden that way, and this pattern takes up no layout space either. */
.hp-field {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Multi-step */
.stepper { display: flex; gap: .4rem; margin-bottom: 2.25rem; list-style: none; padding: 0; counter-reset: s; }
.stepper li { flex: 1; display: grid; gap: .5rem; }
.stepper__bar { height: 3px; background: var(--cream-3); border-radius: 2px; transition: background-color .3s var(--ease); }
.stepper li[data-state="done"] .stepper__bar,
.stepper li[data-state="current"] .stepper__bar { background: var(--chestnut); }
.stepper__label {
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .1em;
  font-size: .74rem; color: var(--text-muted); font-weight: 600;
}
.stepper li[data-state="current"] .stepper__label { color: var(--chestnut); }
@media (max-width: 700px) { .stepper__label { display: none; } }

.step[hidden] { display: none; }
.step h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.form-nav { display: flex; gap: .85rem; justify-content: space-between; margin-top: 2rem; padding-top: 1.75rem; border-top: 1px solid var(--line); }
.form-nav .btn { flex: 0 0 auto; }
.form-panel {
  background: var(--cream);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow-sm);
}
.conditional[hidden] { display: none; }

.form-note {
  display: flex; gap: .75rem; align-items: flex-start;
  background: var(--cream-2); border-left: 3px solid var(--chestnut);
  padding: 1rem 1.25rem; border-radius: var(--radius);
  font-size: .95rem; margin-bottom: 1.75rem;
}
.form-note svg { width: 19px; height: 19px; color: var(--chestnut); flex: 0 0 auto; margin-top: .18rem; }

.form-success { text-align: center; padding: clamp(2rem, 6vw, 4rem) 0; }
.form-success__check {
  width: 74px; height: 74px; margin: 0 auto 1.75rem;
  border-radius: 50%; background: var(--chestnut); color: var(--cream);
  display: grid; place-items: center;
}
.form-success__check svg { width: 34px; height: 34px; }

.summary-list { list-style: none; margin: 1.75rem 0 0; padding: 0; text-align: left; display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); }
.summary-list li { display: flex; justify-content: space-between; gap: 1.5rem; padding: .85rem 1.15rem; border-bottom: 1px solid var(--line); }
.summary-list li:last-child { border-bottom: 0; }
.summary-list dt, .summary-list__k { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .09em; font-size: .82rem; color: var(--text-muted); }
.summary-list__v { text-align: right; font-weight: 500; }

/* --------------------------------------------------------------------------
   15. Availability calendar
   -------------------------------------------------------------------------- */
.availability { display: grid; gap: .6rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 168px), 1fr)); }
.week {
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 1.1rem 1.15rem; background: var(--cream); text-align: left;
  cursor: pointer; display: grid; gap: .35rem;
  transition: border-color .16s var(--ease), background-color .16s var(--ease);
}
.week:hover:not(:disabled) { border-color: var(--ink); }
.week__range { font-family: var(--font-cond); font-weight: 600; text-transform: uppercase; letter-spacing: .07em; font-size: 1.02rem; }
.week__status { font-size: .86rem; display: flex; align-items: center; gap: .4rem; color: var(--text-muted); }
.week__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--chestnut); flex: 0 0 auto; }
.week[data-availability="limited"] .week__dot { background: var(--amber); }
.week[data-availability="full"] .week__dot { background: var(--cream-3); }
.week:disabled { opacity: .55; cursor: not-allowed; }
.week[aria-pressed="true"] { border-color: var(--chestnut); background: rgba(138,74,33,.07); box-shadow: inset 0 0 0 1px var(--chestnut); }
.legend { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 1.25rem; font-size: .88rem; color: var(--text-muted); }
.legend span { display: inline-flex; align-items: center; gap: .45rem; }

/* --------------------------------------------------------------------------
   16. FAQ accordion
   -------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item h3 { margin: 0; }
.faq__q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
  padding: 1.4rem 0; text-align: left;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.08rem, 1.9vw, 1.35rem); line-height: 1.3;
  color: var(--text);
}
.faq__q:hover { color: var(--chestnut); }
.faq__sign { flex: 0 0 auto; width: 22px; height: 22px; margin-top: .28em; position: relative; }
.faq__sign::before, .faq__sign::after {
  content: ''; position: absolute; background: var(--chestnut);
  transition: transform .22s var(--ease), opacity .22s var(--ease);
}
.faq__sign::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.faq__sign::after  { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); }
.faq__q[aria-expanded="true"] .faq__sign::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s var(--ease); }
.faq__a[data-open="true"] { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding-bottom: 1.5rem; color: var(--text-muted); max-width: 68ch; }
.faq__a p:last-child { margin-bottom: 0; }
.section--ink .faq { border-top-color: var(--line-dark); }
.section--ink .faq__item { border-bottom-color: var(--line-dark); }
.section--ink .faq__q { color: var(--cream); }
.section--ink .faq__q:hover { color: var(--amber); }
.section--ink .faq__sign::before, .section--ink .faq__sign::after { background: var(--amber); }
.section--ink .faq__a p { color: var(--text-on-dark-muted); }

/* --------------------------------------------------------------------------
   17. Split feature blocks
   -------------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--wide-media { grid-template-columns: 1.15fr 1fr; }
.split__media img { width: 100%; border-radius: var(--radius); }
.split--reverse .split__media { order: 2; }
@media (max-width: 860px) {
  .split, .split--wide-media { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
}

.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: .85rem; }
.checklist li { position: relative; padding-left: 2rem; }
.checklist--2col { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(2rem, 4vw, 4.5rem); }
@media (max-width: 700px) { .checklist--2col { grid-template-columns: 1fr; } }
.checklist li::before {
  content: ''; position: absolute; left: 0; top: .3em;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--chestnut);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='%23000'/%3E%3Cpath d='M7 12.5l3.4 3.4L17 9.2' fill='none' stroke='%23fff' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='%23000'/%3E%3Cpath d='M7 12.5l3.4 3.4L17 9.2' fill='none' stroke='%23fff' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.on-dark .checklist li::before, .section--ink .checklist li::before { background: var(--amber); }

/* Numbered value props */
.props { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); grid-template-columns: repeat(2, minmax(0, 1fr)); counter-reset: prop; }
.prop { display: grid; gap: .6rem; padding-top: 1.35rem; border-top: 1px solid var(--line); counter-increment: prop; }
.prop::before {
  content: '0' counter(prop);
  font-family: var(--font-cond); font-weight: 700; letter-spacing: .18em;
  font-size: .8rem; color: var(--chestnut);
}
.section--ink .prop { border-top-color: var(--line-dark); }
.section--ink .prop::before { color: var(--amber); }
.prop h3 { margin: 0; font-size: 1.28rem; }
.prop p { margin: 0; color: var(--text-muted); }
.section--ink .prop p { color: var(--text-on-dark-muted); }
@media (max-width: 720px) { .props { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   18. Team
   -------------------------------------------------------------------------- */
.team { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2.5rem, 5vw, 4.5rem); }
.member__photo { aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--radius); background: var(--ink-2); margin-bottom: 1.6rem; }
.member__photo img { width: 100%; height: 100%; object-fit: cover; }
.member__name { margin-bottom: .1em; }
.member__title {
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .14em;
  font-size: .85rem; color: var(--chestnut); font-weight: 600; margin-bottom: 1.25rem;
}
.member__personal {
  margin-top: 1.35rem; padding-top: 1.25rem; border-top: 1px solid var(--line);
  font-size: .96rem; color: var(--text-muted);
}
@media (max-width: 760px) { .team { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   19. Service area
   -------------------------------------------------------------------------- */
.city-groups { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.75rem, 3.5vw, 3rem); }
.city-group h3 { font-size: 1.18rem; padding-bottom: .7rem; border-bottom: 1px solid var(--line); margin-bottom: 1rem; }
.section--ink .city-group h3 { border-bottom-color: var(--line-dark); }
.city-group ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.city-group li { color: var(--text-muted); }
.section--ink .city-group li { color: var(--text-on-dark-muted); }
@media (max-width: 800px) { .city-groups { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .city-groups { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   20. CTA band
   -------------------------------------------------------------------------- */
.cta-band { background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
.cta-band__inner {
  max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter);
  padding-block: clamp(3.5rem, 8vw, 6rem);
  display: grid; gap: 2rem; grid-template-columns: 1.4fr 1fr; align-items: center;
}
.cta-band h2 { color: var(--cream); margin-bottom: .4em; }
.cta-band p { color: var(--text-on-dark-muted); margin: 0; max-width: 46ch; }
.cta-band__actions { display: grid; gap: .85rem; justify-items: start; }
@media (max-width: 860px) { .cta-band__inner { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   21. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: var(--text-on-dark-muted); border-top: 1px solid var(--ink-3); }
.site-footer a { color: var(--cream); text-decoration: none; }
.site-footer a:hover { color: var(--amber); }
.site-footer__grid {
  max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter);
  padding-block: clamp(3rem, 6vw, 4.5rem);
  display: grid; gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
}
@media (max-width: 940px) { .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .site-footer__grid { grid-template-columns: 1fr; } }
.site-footer h3 {
  font-family: var(--font-cond); font-weight: 600; color: var(--cream);
  text-transform: uppercase; letter-spacing: .14em; font-size: .84rem; margin-bottom: 1.1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.site-footer__brand-mark { width: 184px; height: auto; margin-bottom: 1.4rem; }
.site-footer__tag { max-width: 34ch; font-size: .95rem; }
.site-footer__phone {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 600;
  color: var(--cream); text-decoration: none; display: block; margin-bottom: .35rem;
  letter-spacing: -.01em;
}
.socials { display: flex; gap: .6rem; margin-top: 1.25rem; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--ink-3); display: grid; place-items: center;
  transition: background-color .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.socials a:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.socials svg { width: 18px; height: 18px; }
.socials--light a { border-color: var(--line-strong); color: var(--ink); }
.socials--light a:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.site-footer__bar {
  border-top: 1px solid var(--ink-3);
  max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter);
  padding-block: 1.5rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
  font-size: .85rem;
}
.site-footer__bar p { margin: 0; }

/* --------------------------------------------------------------------------
   22. Spacing utilities + small helpers
   -------------------------------------------------------------------------- */
/* Bare <figure> inside a grid: no default margin, rounded to match cards. */
.grid figure { margin: 0; }
.grid figure > img { border-radius: var(--radius); }

.mt-sm  { margin-top: .75rem; }
.mt-md  { margin-top: 1.5rem; }
.mt-lg  { margin-top: 2rem; }
.mt-xl  { margin-top: 2.75rem; }
.mt-2xl { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.push-right { margin-left: auto; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 1.5rem; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }

/* Short pages (404, thank-you) sit centred in the viewport */
.page-center { min-height: 58vh; display: grid; place-items: center; }

/* --------------------------------------------------------------------------
   23. Misc
   -------------------------------------------------------------------------- */
.grid figure figcaption { margin-top: .7rem; }
.figure-note {
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .12em;
  font-size: .72rem; color: var(--text-muted); margin-top: .6rem;
}
.map-figure { margin: 0; }
.city-groups--pair { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.map-figure img { width: 100%; border-radius: var(--radius); border: 1px solid var(--line-strong); background: #F7F5F0; }
.map-pair { display: grid; grid-template-columns: 1.55fr 1fr; gap: clamp(1rem, 2vw, 1.75rem); align-items: start; }
@media (max-width: 760px) { .map-pair { grid-template-columns: 1fr; } }

.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.5rem; }
.info-list__k {
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .14em;
  font-size: .78rem; color: var(--text-muted); margin-bottom: .3rem;
}
.info-list__v { font-size: 1.18rem; }
.info-list__v a { text-decoration: none; }

.hours { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; max-width: 340px; }
.hours li { display: flex; justify-content: space-between; gap: 1.5rem; padding-bottom: .55rem; border-bottom: 1px solid var(--line); }
.hours li:last-child { border-bottom: 0; }
.hours span:last-child { color: var(--text-muted); }

.js-off-note { display: none; }
.no-js .js-off-note { display: block; }
.no-js [data-requires-js] { display: none !important; }

/* Without JavaScript, nothing can expand the FAQ — so show every answer.
   site.js removes .no-js from <html> the moment it runs. */
.no-js .faq__a { grid-template-rows: 1fr; }
.no-js .faq__sign { display: none; }
.no-js .faq__q { cursor: default; }

@media print {
  .site-header, .sticky-bar, .cta-band, .site-footer { display: none; }
  body { background: #fff; color: #000; }
}
