@charset "utf-8";
/* ============================================================================
   The Broome Closet LLC — Wilmington, North Carolina
   Residential · Commercial · Rental turnover cleaning
   ----------------------------------------------------------------------------
   One stylesheet. No framework, no utility soup, no animation library.
   Native scroll only — nothing in this file or in app.js touches, intercepts
   or replaces the scroll position.

   ── PALETTE REPOINT BLOCK ────────────────────────────────────────────────────
   The brief shipped `brandColors.palette: []` (no hexes were measured off the
   logo). The edit pass DID open the uploaded file (localAssets.theirLogo) and
   it is NOT a logo — it is a portrait photograph of a made-up bedroom that the
   lead submitted in the logo field. There is therefore no logo to derive a
   palette from, the wordmark is typeset (see .brand-type / .hl-type), and the
   four tokens below stand until the client sends a real mark. To repoint the
   whole site to real logo hexes, change only these four and nothing else:

       --brand        the saturated accent  (buttons, rules, numerals, links)
       --brand-2      a lighter member of the same hue (hairlines on dark)
       --brand-ink    the accent darkened until small text on paper clears 4.5:1
       --brand-soft   a pale tint of the accent (wash panels, chips)

   Everything else is neutral by design — warm linen paper, cool near-black —
   so a repoint is a four-line edit and never a re-layout. The accent is used
   with discipline (one saturated colour, per the live-client bar), which is
   also what keeps a repoint from cascading.

   TWO places carry a literal copy of --brand because CSS custom properties
   cannot reach inside them; change these alongside the four tokens:
     · the <select> chevron data-URI in `.field select` (search %232e6e5b)
     · the rgba() glow on `.field :focus` and the two radial gradients on
       `.ctaband::before` (search 46, 110, 91 and 79, 156, 129)
   images/favicon.svg also carries the accent, as does each page's
   <meta name="theme-color"> (the near-black --night, not the accent).
   ── END REPOINT BLOCK ────────────────────────────────────────────────────────

   MOTION — CSS transitions/transforms plus one IntersectionObserver class.
   prefers-reduced-motion is honoured throughout.
   ========================================================================= */

/* ---------------------------------------------------------------- tokens - */
:root {
  /* ▼▼ the four brand tokens — see the repoint block above ▼▼ */
  --brand:      #2e6e5b;
  --brand-2:    #4f9c81;
  --brand-ink:  #235544;
  --brand-soft: #e2ede7;
  /* ▲▲ the four brand tokens ▲▲ */

  /* neutrals — warm linen paper against a cool near-black */
  --ink:      #14181a;
  --ink-2:    #454e51;
  --ink-3:    #6d7679;
  --night:    #101416;
  --night-2:  #161c1e;
  --night-3:  #1f2729;
  --paper:    #f7f5f1;
  --paper-2:  #efebe4;
  --paper-3:  #e5e0d7;
  --white:    #ffffff;

  --line:    rgba(20, 24, 26, .13);
  --line-2:  rgba(20, 24, 26, .07);
  --line-d:  rgba(226, 237, 231, .18);
  --line-d2: rgba(226, 237, 231, .09);

  /* type */
  --display: "Chivo", "Hanken Grotesk", "Segoe UI", system-ui, sans-serif;
  --body:    "Hanken Grotesk", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* one spacing rhythm, used everywhere */
  --s1: 6px;
  --s2: 10px;
  --s3: 16px;
  --s4: 24px;
  --s5: 34px;
  --s6: 48px;
  --s7: 70px;
  --s8: 100px;

  --pad:   clamp(18px, 5.4vw, 44px);
  --sec-y: clamp(56px, 11.5vw, 118px);

  --r1: 4px;
  --r2: 10px;
  --r3: 18px;
  --r4: 28px;

  --sh-1: 0 1px 2px rgba(20, 24, 26, .05), 0 6px 18px -12px rgba(20, 24, 26, .22);
  --sh-2: 0 2px 4px rgba(20, 24, 26, .05), 0 24px 50px -28px rgba(20, 24, 26, .42);
  --sh-3: 0 34px 76px -38px rgba(20, 24, 26, .55);

  --ease:  cubic-bezier(.22, .68, .28, 1);
  --hdr-h: 64px;
}

@media (min-width: 900px) {
  :root { --hdr-h: 78px; }
}

/* ------------------------------------------------------------------ reset - */
*, *::before, *::after { box-sizing: border-box; }

/* [hidden] must beat the display values set further down (the typeset logo
   understudy is display:flex / display:block and would otherwise render on
   top of the logo it exists to replace) */
[hidden] { display: none !important; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--hdr-h) + 16px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; border: 0; background: var(--paper-3); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.03em;
  margin: 0;
  text-wrap: balance;
}
p  { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a  { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

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

::selection { background: var(--brand); color: #fff; }

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

.skip {
  position: absolute; left: 12px; top: -80px; z-index: 200;
  background: var(--ink); color: var(--paper);
  padding: 12px 18px; border-radius: var(--r2);
  font-weight: 700; transition: top .18s var(--ease);
}
.skip:focus { top: 12px; }

/* ------------------------------------------------------------ containers - */
.wrap   { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: var(--pad); }
.wrap-w { width: 100%; max-width: 1440px; margin-inline: auto; padding-inline: var(--pad); }
.wrap-n { width: 100%; max-width: 880px;  margin-inline: auto; padding-inline: var(--pad); }

.sec { padding-block: var(--sec-y); position: relative; }
.sec-t { padding-block: calc(var(--sec-y) * .62); }

.bg-paper  { background: var(--paper); }
.bg-paper2 { background: var(--paper-2); }
.bg-tint   { background: var(--brand-soft); }
.bg-white  { background: var(--white); }
.bg-dark   { background: var(--night); color: var(--paper-2); }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--paper); }

/* a hairline that reads as a deliberate rule, not a border */
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.bg-dark .rule { background: var(--line-d); }

/* ------------------------------------------------------------ typography - */
.eyebrow {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--brand-ink);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 var(--s3);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px; flex: none;
  background: var(--brand);
}
.eyebrow.c { justify-content: center; }
.bg-dark .eyebrow { color: var(--brand-2); }
.bg-dark .eyebrow::before { background: var(--brand-2); }

h1 { font-size: clamp(38px, 10.4vw, 78px); }
h2 { font-size: clamp(29px, 6.4vw, 50px); }
h3 { font-size: clamp(20px, 3.4vw, 26px); letter-spacing: -.022em; line-height: 1.12; }
h4 { font-size: 17px; letter-spacing: -.012em; line-height: 1.2; }

.accent { color: var(--brand); }
.bg-dark .accent, .hero .accent { color: var(--brand-2); }

.lead {
  font-size: clamp(17px, 2.1vw, 19.5px);
  line-height: 1.58;
  color: var(--ink-2);
  max-width: 56ch;
}
.bg-dark .lead { color: rgba(226, 237, 231, .78); }
.lead.c { margin-inline: auto; }

.mt-s  { margin-top: var(--s3); }
.mt-m  { margin-top: var(--s4); }
.mt-l  { margin-top: var(--s5); }
.mt-xl { margin-top: var(--s6); }
.tc { text-align: center; }

.kicker {
  font-family: var(--display);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand-ink);
}
.bg-dark .kicker { color: var(--brand-2); }

.sep {
  color: var(--brand);
  font-weight: 700;
  padding-inline: 2px;
}

/* ---------------------------------------------------------------- buttons - */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--display);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -.005em;
  cursor: pointer;
  text-align: center;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease),
              background-color .2s var(--ease), border-color .2s var(--ease),
              color .2s var(--ease);
  box-shadow: var(--sh-1);
}
.btn svg { width: 18px; height: 18px; flex: none; fill: currentColor; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-2); }
.btn:active { transform: translateY(0); }

.btn-p { --btn-bg: var(--brand); --btn-fg: #fff; }
.btn-p:hover { --btn-bg: #275e4e; }

.btn-d { --btn-bg: var(--ink); --btn-fg: var(--paper); }
.btn-d:hover { --btn-bg: #000; }

.btn-o {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}
.btn-o:hover { border-color: var(--brand); color: var(--brand-ink); box-shadow: var(--sh-1); }

.btn-g {
  --btn-bg: rgba(255, 255, 255, .1);
  --btn-fg: #fff;
  border-color: rgba(255, 255, 255, .42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: none;
}
.btn-g:hover { --btn-bg: rgba(255, 255, 255, .2); border-color: #fff; }

.btn-sm { min-height: 44px; padding: 9px 17px; font-size: 14.5px; }
.btn-lg { min-height: 58px; padding: 16px 30px; font-size: 16.5px; }
.btn-w  { width: 100%; }

.cta-row { display: flex; flex-wrap: wrap; gap: var(--s2); }
.cta-row.c { justify-content: center; }

/* a text link that behaves like an editorial "more" */
.tlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 700; font-size: 15px;
  color: var(--brand-ink);
  padding-block: 6px;
  border-bottom: 2px solid var(--brand-soft);
  transition: border-color .2s var(--ease), gap .2s var(--ease), color .2s var(--ease);
}
.tlink svg { width: 15px; height: 15px; fill: currentColor; }
.tlink:hover { border-color: var(--brand); gap: 12px; }
.bg-dark .tlink { color: var(--brand-2); border-color: var(--line-d); }
.bg-dark .tlink:hover { border-color: var(--brand-2); }

/* ----------------------------------------------------------------- header - */
.hdr {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  height: var(--hdr-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background-color .28s var(--ease), box-shadow .28s var(--ease),
              transform .32s var(--ease), border-color .28s var(--ease);
  border-bottom: 1px solid transparent;
  padding-top: env(safe-area-inset-top);
  height: calc(var(--hdr-h) + env(safe-area-inset-top));
}
.hdr::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(16, 20, 22, .58), rgba(16, 20, 22, 0));
  opacity: 1;
  transition: opacity .28s var(--ease);
  pointer-events: none;
}
.hdr.solid {
  background: rgba(247, 245, 241, .93);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom-color: var(--line-2);
  box-shadow: 0 1px 26px -14px rgba(20, 24, 26, .5);
}
.hdr.solid::after { opacity: 0; }
.hdr.up { transform: translateY(-104%); }
.hdr.always-solid { position: sticky; }

.hdr-in {
  width: 100%; max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--pad);
  display: flex; align-items: center; gap: var(--s3);
}

.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-lg {
  height: 44px; width: auto; max-width: 190px;
  object-fit: contain; background: none;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .3));
  transition: height .24s var(--ease), filter .24s var(--ease);
}
.hdr.solid .brand-lg { filter: none; }
@media (min-width: 900px) { .brand-lg { height: 52px; max-width: 240px; } }

/* typeset fallback — revealed by app.js only if the logo file fails */
.brand-type {
  font-family: var(--display); font-weight: 800;
  font-size: 17px; letter-spacing: -.03em; line-height: 1.02;
  color: #fff; text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
  display: flex; flex-direction: column;
}
.brand-type em { font-style: normal; font-size: 10.5px; letter-spacing: .2em; opacity: .8; }
.hdr.solid .brand-type { color: var(--ink); text-shadow: none; }

.brand-tag {
  display: none;
  padding-left: 12px; margin-left: 2px;
  border-left: 1px solid rgba(255, 255, 255, .3);
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600; color: rgba(255, 255, 255, .82);
}
.hdr.solid .brand-tag { color: var(--ink-3); border-left-color: var(--line); }
@media (min-width: 1080px) { .brand-tag { display: block; } }

.nav {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: clamp(14px, 1.7vw, 28px);
}
.nav a {
  font-family: var(--display);
  font-weight: 600; font-size: 15px;
  color: rgba(255, 255, 255, .93);
  text-shadow: 0 1px 10px rgba(0, 0, 0, .4);
  padding: 8px 2px;
  position: relative;
  transition: color .2s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 2px;
  height: 2px; background: var(--brand-2);
  transition: right .26s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { right: 0; }
.hdr.solid .nav a { color: var(--ink-2); text-shadow: none; }
.hdr.solid .nav a:hover, .hdr.solid .nav a[aria-current="page"] { color: var(--brand-ink); }
@media (min-width: 1080px) { .nav { display: flex; } }

.hdr-cta { display: none; margin-left: auto; }
@media (min-width: 620px) { .hdr-cta { display: inline-flex; } }
@media (min-width: 1080px) { .hdr-cta { margin-left: var(--s3); } }

.burger {
  margin-left: auto;
  width: 46px; height: 46px;
  display: grid; place-content: center; gap: 5px;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 12px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background-color .2s var(--ease), border-color .2s var(--ease);
}
.burger i { display: block; width: 19px; height: 2px; background: #fff; border-radius: 2px; }
.hdr.solid .burger { background: transparent; border-color: var(--line); }
.hdr.solid .burger i { background: var(--ink); }
@media (min-width: 620px) { .burger { margin-left: var(--s2); } }
@media (min-width: 1080px) { .burger { display: none; } }

/* ------------------------------------------------------------ mobile sheet - */
.sheet {
  position: fixed; inset: 0; z-index: 130;
  background: var(--night);
  color: var(--paper);
  display: flex; flex-direction: column;
  padding: max(14px, env(safe-area-inset-top)) var(--pad) max(20px, env(safe-area-inset-bottom));
  opacity: 0; visibility: hidden;
  transform: translateY(-14px);
  transition: opacity .26s var(--ease), transform .26s var(--ease), visibility .26s;
  overflow-y: auto;
}
.sheet.open { opacity: 1; visibility: visible; transform: none; }
.sheet-top { display: flex; align-items: center; gap: 12px; padding-block: 8px var(--s4); }
.sheet-top .brand-lg { height: 44px; filter: none; }
.sheet-top .brand-type { color: var(--paper); text-shadow: none; }
.sheet-x {
  margin-left: auto;
  width: 46px; height: 46px;
  border: 1px solid var(--line-d);
  border-radius: 12px; background: transparent;
  color: var(--paper); font-size: 26px; line-height: 1;
  cursor: pointer;
}
.sheet nav { display: flex; flex-direction: column; }
.sheet nav a {
  font-family: var(--display);
  font-size: clamp(23px, 6.6vw, 30px);
  font-weight: 700; letter-spacing: -.03em;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-d2);
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
}
.sheet nav a span {
  font-size: 11.5px; letter-spacing: .18em;
  color: var(--brand-2); font-family: var(--body); font-weight: 700;
}
.sheet-foot { margin-top: auto; padding-top: var(--s5); display: grid; gap: var(--s2); }
.sheet-note { text-align: center; font-size: 13.5px; color: rgba(226, 237, 231, .6); margin-top: 6px; }

/* ------------------------------------------------------------------- hero - */
.hero {
  position: relative;
  min-height: 640px;
  min-height: clamp(600px, 94svh, 900px);
  display: flex; align-items: center; justify-content: center;
  padding: calc(var(--hdr-h) + 46px) var(--pad) 60px;
  overflow: hidden;
  isolation: isolate;
  background: var(--night);
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 46%;
  background: var(--night-2);
}
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(16, 20, 22, .74) 0%, rgba(16, 20, 22, .34) 34%,
                    rgba(16, 20, 22, .56) 72%, rgba(16, 20, 22, .88) 100%),
    radial-gradient(115% 78% at 50% 42%, rgba(16, 20, 22, 0) 24%, rgba(16, 20, 22, .58) 100%);
}

/* slow Ken Burns — pure CSS, no library, no scroll listener */
@keyframes kb {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to   { transform: scale(1.17) translate3d(-1.6%, -1.4%, 0); }
}
.kb { animation: kb 30s ease-in-out infinite alternate; will-change: transform; }

.hero-in {
  position: relative;
  width: 100%; max-width: 880px;
  margin-inline: auto;
  text-align: center;
  color: #fff;
}

.hero-logo { display: block; margin: 0 auto var(--s4); }
.hero-logo img {
  height: clamp(76px, 18vw, 124px);
  width: auto; max-width: min(300px, 78vw);
  margin-inline: auto;
  object-fit: contain;
  background: none;               /* THE CLEAN LOGO LAW — no plate, no box */
  filter: drop-shadow(0 6px 26px rgba(0, 0, 0, .55));
}
.hl-type {
  display: block;
  font-family: var(--display);
  font-size: clamp(30px, 8.6vw, 54px);
  font-weight: 800; letter-spacing: -.035em; line-height: .98;
  text-shadow: 0 4px 26px rgba(0, 0, 0, .5);
}
.hl-type em {
  display: block; font-style: normal;
  font-size: 12px; letter-spacing: .34em; font-weight: 600;
  margin-top: 8px; color: var(--brand-2);
}

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px 8px 13px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 999px;
  background: rgba(16, 20, 22, .3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: #fff;
}
.pill svg { width: 15px; height: 15px; fill: var(--brand-2); flex: none; }

.hero h1 {
  margin-top: var(--s4);
  color: #fff;
  text-shadow: 0 5px 34px rgba(0, 0, 0, .46);
}
.hero .lead {
  margin: var(--s4) auto 0;
  max-width: 30ch;
  color: rgba(255, 255, 255, .93);
  font-size: clamp(17px, 2.3vw, 20px);
  text-shadow: 0 2px 18px rgba(0, 0, 0, .5);
}
.hero .cta-row { margin-top: var(--s5); }

.hero-trust {
  margin-top: var(--s5);
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px 10px;
}
.hero-trust li {
  font-size: 12.5px; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: rgba(16, 20, 22, .26);
}

.scroll-cue {
  position: absolute; left: 50%; bottom: 20px;
  width: 1px; height: 46px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .7));
  transform: translateX(-50%);
}
.scroll-cue::after {
  content: ""; position: absolute; left: -2px; bottom: 0;
  width: 5px; height: 5px; border-radius: 50%; background: #fff;
  animation: cue 2.6s var(--ease) infinite;
}
@keyframes cue {
  0%, 100% { transform: translateY(0); opacity: .25; }
  50%      { transform: translateY(-14px); opacity: 1; }
}
@media (max-height: 700px) { .scroll-cue { display: none; } }

/* --------------------------------------------------------- trust ribbon - */
.ribbon { background: var(--ink); color: var(--paper-2); }
.ribbon-g {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line-d2);
}
.ribbon-i {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line-d2);
}
.ribbon-i svg { width: 25px; height: 25px; flex: none; fill: none; stroke: var(--brand-2); stroke-width: 1.6; }
.ribbon-i b {
  display: block;
  font-family: var(--display); font-weight: 700;
  font-size: 15.5px; letter-spacing: -.015em;
  color: var(--paper);
}
.ribbon-i span { display: block; font-size: 13.5px; color: rgba(226, 237, 231, .62); line-height: 1.4; }
@media (min-width: 640px)  { .ribbon-g { grid-template-columns: 1fr 1fr; column-gap: var(--s5); } }
@media (min-width: 1040px) {
  .ribbon-g { grid-template-columns: repeat(5, 1fr); column-gap: var(--s4); }
  .ribbon-i { border-bottom: 0; padding-block: 28px; }
}

/* ------------------------------------------------- editorial intro split - */
.ed {
  display: grid;
  gap: var(--s6);
  align-items: center;
}
@media (min-width: 900px) {
  .ed { grid-template-columns: 1.02fr .98fr; gap: clamp(40px, 5vw, 84px); }
  .ed.flip .ed-copy { order: 2; }
}

/* the offset frame hangs below the main photo — reserve the room for it so it
   never collides with the copy underneath */
.ed-media { position: relative; margin-bottom: 38px; }
@media (min-width: 900px) { .ed-media { margin-bottom: 52px; } }
.ph {
  position: relative;
  overflow: hidden;
  border-radius: var(--r3);
  background: linear-gradient(150deg, var(--paper-3), var(--brand-soft));
  box-shadow: var(--sh-2);
}
.ph img { width: 100%; height: 100%; object-fit: cover; }
.ph-tall  { aspect-ratio: 4 / 5; }
.ph-wide  { aspect-ratio: 16 / 10; }
.ph-sq    { aspect-ratio: 1 / 1; }
.ph-panor { aspect-ratio: 21 / 9; }

/* the offset second frame — asymmetric, never a symmetric 2-up */
.ph-b {
  position: absolute;
  right: -6px; bottom: -30px;
  width: 46%;
  border: 6px solid var(--paper);
  border-radius: var(--r3);
  box-shadow: var(--sh-3);
}
.bg-paper2 .ph-b { border-color: var(--paper-2); }
.bg-tint .ph-b   { border-color: var(--brand-soft); }
@media (min-width: 900px) { .ph-b { right: -34px; bottom: -44px; width: 52%; } }

/* a slow drift on a still photo — cheap, tasteful, CSS only */
@keyframes drift {
  from { transform: scale(1.03); }
  to   { transform: scale(1.11) translate3d(-1%, -1%, 0); }
}
.tick img { animation: drift 34s ease-in-out infinite alternate; }

.ed-copy > * + * { margin-top: var(--s3); }
.ed-copy h2 + .lead { margin-top: var(--s4); }

/* a small stack of hairline facts under editorial copy */
.facts { margin-top: var(--s5); border-top: 1px solid var(--line); }
.facts li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.facts svg { width: 19px; height: 19px; flex: none; margin-top: 3px; fill: none; stroke: var(--brand); stroke-width: 1.8; }
.facts b { font-family: var(--display); font-weight: 700; font-size: 16px; letter-spacing: -.015em; }
.facts span { display: block; color: var(--ink-2); font-size: 15px; line-height: 1.5; }
.bg-dark .facts { border-color: var(--line-d); }
.bg-dark .facts li { border-color: var(--line-d); }
.bg-dark .facts span { color: rgba(226, 237, 231, .7); }
.bg-dark .facts svg { stroke: var(--brand-2); }

/* --------------------------------------- numbered full-bleed service rows - */
.svcs { background: var(--paper); }
.svc-row {
  position: relative;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.svc-row:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 940px) {
  .svc-row { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .svc-row:nth-child(even) .svc-fig { order: 2; }
}

.svc-fig {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  aspect-ratio: 16 / 11;
  background: var(--paper-3);
}
@media (min-width: 940px) { .svc-fig { aspect-ratio: auto; min-height: 460px; } }
.svc-fig img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.svc-row:hover .svc-fig img { transform: scale(1.045); }
.svc-fig::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16, 20, 22, .32), rgba(16, 20, 22, 0) 46%);
}

.svc-body {
  padding: clamp(30px, 6vw, 68px) var(--pad) clamp(34px, 6vw, 68px);
  display: flex; flex-direction: column; justify-content: center;
  max-width: 640px;
}
@media (min-width: 940px) {
  .svc-row:nth-child(odd) .svc-body  { padding-inline: clamp(30px, 4.4vw, 68px) var(--pad); margin-right: auto; }
  .svc-row:nth-child(even) .svc-body { padding-inline: var(--pad) clamp(30px, 4.4vw, 68px); margin-left: auto; }
}

/* the oversized outline numeral — our signature block */
.svc-no {
  font-family: var(--display);
  font-size: clamp(58px, 13vw, 116px);
  font-weight: 800;
  line-height: .82;
  letter-spacing: -.06em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--brand);
  margin-bottom: var(--s2);
  opacity: .55;
}
@supports not (-webkit-text-stroke: 1px red) {
  .svc-no { color: var(--brand-soft); }
}

.svc-body h3 { font-size: clamp(27px, 5.4vw, 40px); }
.svc-body .lead { margin-top: var(--s3); }

.svc-list { margin-top: var(--s4); display: grid; gap: 9px; }
.svc-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 15.5px; color: var(--ink-2); line-height: 1.45;
}
.svc-list svg { width: 16px; height: 16px; flex: none; margin-top: 4px; fill: none; stroke: var(--brand); stroke-width: 2.2; }
.svc-body .tlink { margin-top: var(--s4); align-self: flex-start; }

/* --------------------------------------------- room-by-room checklist band - */
.rooms { display: grid; gap: var(--s6); }
@media (min-width: 980px) { .rooms { grid-template-columns: .82fr 1.18fr; gap: clamp(40px, 5vw, 80px); align-items: start; } }

.room-cols { display: grid; gap: var(--s5) clamp(24px, 4vw, 56px); }
@media (min-width: 620px) { .room-cols { grid-template-columns: 1fr 1fr; } }

.room-grp h4 {
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--brand-ink);
  padding-bottom: 11px;
  border-bottom: 2px solid var(--brand);
}
.room-grp ul { margin-top: 4px; }
.room-grp li {
  padding: 11px 0 11px 24px;
  border-bottom: 1px solid var(--line-2);
  font-size: 15.5px; color: var(--ink-2);
  position: relative;
}
.room-grp li::before {
  content: "";
  position: absolute; left: 2px; top: 19px;
  width: 9px; height: 9px;
  border-radius: 2px;
  background: var(--brand-soft);
  border: 1px solid var(--brand-2);
}

/* ---------------------------------------------------- the mid-page moment - */
.brk {
  position: relative;
  min-height: 400px;
  min-height: clamp(400px, 64svh, 640px);
  display: grid; place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--night);
  text-align: center;
  padding: var(--s7) var(--pad);
}
.brk-media { position: absolute; inset: 0; z-index: -2; }
.brk-media img { width: 100%; height: 100%; object-fit: cover; }
.brk::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(16, 20, 22, .62), rgba(16, 20, 22, .5)),
    radial-gradient(100% 70% at 50% 50%, rgba(16, 20, 22, .1), rgba(16, 20, 22, .72));
}
.brk-in { max-width: 780px; color: #fff; }
.brk-in h2 { color: #fff; font-size: clamp(30px, 7vw, 58px); text-shadow: 0 5px 30px rgba(0, 0, 0, .45); }
.brk-in .lead { color: rgba(255, 255, 255, .9); margin-inline: auto; }
.brk-in .cta-row { margin-top: var(--s5); }

/* --------------------------------------------------------------- process - */
.steps { display: grid; gap: 2px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: var(--paper);
  padding: clamp(26px, 4vw, 42px);
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  transition: background-color .3s var(--ease);
}
.step:hover { background: var(--white); }
.bg-paper2 .step { background: var(--paper-2); }
.bg-paper2 .step:hover { background: var(--paper); }
.step-n {
  font-family: var(--display);
  font-size: 13px; font-weight: 800; letter-spacing: .2em;
  color: var(--brand);
}
.step h3 { font-size: clamp(21px, 3vw, 26px); }
.step p { color: var(--ink-2); font-size: 15.5px; line-height: 1.55; }

/* ------------------------------------------------------- gallery rail --- */
.rail-head {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: var(--s4);
  margin-bottom: var(--s5);
}
.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(78vw, 320px);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 14px;
  scrollbar-width: thin;
}
.rail::-webkit-scrollbar { height: 7px; }
.rail::-webkit-scrollbar-track { background: var(--line-2); border-radius: 4px; }
.rail::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 4px; }
.rail-i { scroll-snap-align: start; margin: 0; }
.rail-i .ph { aspect-ratio: 4 / 5; box-shadow: var(--sh-1); }
.rail-i figcaption {
  margin-top: 11px;
  font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700; color: var(--ink-3);
}
.rail-note { margin-top: var(--s3); font-size: 13.5px; color: var(--ink-3); }
@media (min-width: 900px) { .rail { grid-auto-columns: 340px; gap: 20px; } }

/* --------------------------------------------------------- service area - */
.area-g { display: grid; gap: var(--s6); align-items: center; }
@media (min-width: 940px) { .area-g { grid-template-columns: 1fr 1.06fr; gap: clamp(40px, 5vw, 80px); } }

.towns {
  margin-top: var(--s5);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 var(--s4);
  border-top: 1px solid var(--line-d);
}
.towns li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line-d);
  font-size: 15px;
  color: rgba(226, 237, 231, .82);
  display: flex; align-items: center; gap: 9px;
}
.towns li::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--brand-2); flex: none;
}
@media (min-width: 560px) { .towns { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 940px) { .towns { grid-template-columns: 1fr 1fr; } }

/* -------------------------------------------------------------- the FAQ - */
.faq { max-width: 860px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  position: relative;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(17px, 2.6vw, 21px);
  letter-spacing: -.018em;
  line-height: 1.28;
  transition: color .2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brand-ink); }
.faq summary::after {
  content: "";
  position: absolute; right: 6px; top: 50%;
  width: 15px; height: 15px;
  margin-top: -7px;
  background:
    linear-gradient(var(--brand), var(--brand)) center/15px 2px no-repeat,
    linear-gradient(var(--brand), var(--brand)) center/2px 15px no-repeat;
  transition: transform .26s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .ans { padding: 0 0 24px; color: var(--ink-2); font-size: 15.5px; line-height: 1.62; max-width: 66ch; }
.faq .ans p + p { margin-top: 12px; }

/* ------------------------------------------------------------- CTA band - */
.ctaband {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding-block: clamp(56px, 10vw, 108px);
}
.ctaband::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(80% 120% at 12% 0%, rgba(79, 156, 129, .3), transparent 62%),
    radial-gradient(70% 110% at 92% 100%, rgba(46, 110, 91, .34), transparent 60%);
}
.ctaband h2 { color: #fff; font-size: clamp(30px, 6.6vw, 54px); }
.ctaband .lead { color: rgba(255, 255, 255, .82); margin-inline: auto; }
.ctaband .cta-row { margin-top: var(--s5); }
.ctaband .fine { margin-top: var(--s4); font-size: 13.5px; color: rgba(255, 255, 255, .6); }

/* ----------------------------------------------------------- the contact - */
.contact-g { display: grid; gap: var(--s6); align-items: start; }
@media (min-width: 980px) { .contact-g { grid-template-columns: 1.12fr .88fr; gap: clamp(40px, 5vw, 76px); } }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r4);
  padding: clamp(24px, 4.4vw, 46px);
  box-shadow: var(--sh-2);
}
.form-grid { display: grid; gap: var(--s3); margin-top: var(--s4); }
.f-2 { display: grid; gap: var(--s3); }
@media (min-width: 560px) { .f-2 { grid-template-columns: 1fr 1fr; } }

.field { display: grid; gap: 7px; }
.field label {
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .11em; text-transform: uppercase;
  color: var(--ink-2);
}
.req { color: var(--brand); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--r2);
  background: var(--paper);
  font-size: 16px;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease);
}
.field textarea { min-height: 118px; resize: vertical; line-height: 1.55; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%232e6e5b' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px 8px;
  padding-right: 40px;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--ink-3); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(46, 110, 91, .14);
}
.field input::placeholder, .field textarea::placeholder { color: #a3aaac; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-msg { margin-top: var(--s3); font-size: 15px; min-height: 1.2em; color: var(--ink-2); }
.form-msg.ok  { color: var(--brand-ink); font-weight: 600; }
.form-msg.err { color: #a8342a; font-weight: 600; }
.form-fine { margin-top: 6px; font-size: 13px; color: var(--ink-3); }

.cinfo { margin-top: var(--s5); display: grid; gap: 2px; border: 1px solid var(--line); border-radius: var(--r3); overflow: hidden; }
.cinfo > * {
  display: flex; align-items: center; gap: 15px;
  padding: 18px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: background-color .2s var(--ease);
}
.cinfo > *:last-child { border-bottom: 0; }
.cinfo a:hover { background: var(--brand-soft); }
.cinfo svg { width: 22px; height: 22px; flex: none; fill: none; stroke: var(--brand); stroke-width: 1.7; }
.cinfo b {
  display: block; font-size: 11.5px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--ink-3); font-weight: 700;
}
.cinfo em {
  display: block; font-style: normal;
  font-family: var(--display); font-weight: 700; font-size: 16.5px;
  letter-spacing: -.015em; color: var(--ink);
  word-break: break-word;
}

/* ---------------------------------------------------------------- footer - */
.ft { background: var(--night); color: rgba(226, 237, 231, .74); padding-block: var(--s7) var(--s5); }
.ft-g { display: grid; gap: var(--s6); }
@media (min-width: 880px) { .ft-g { grid-template-columns: 1.4fr 1fr 1fr; gap: var(--s6); } }
.ft-brand .brand-lg { height: 50px; max-width: 210px; filter: none; }
.ft-brand .brand-type { color: var(--paper); text-shadow: none; }
.ft-blurb { margin-top: var(--s3); font-size: 15px; max-width: 40ch; line-height: 1.55; }
.ft-cta { margin-top: var(--s4); display: flex; flex-wrap: wrap; gap: var(--s2); }
.ft h4 {
  font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--brand-2); margin-bottom: var(--s3);
}
.ft-links li { padding: 7px 0; }
.ft-links a { font-size: 15px; transition: color .18s var(--ease); }
.ft-links a:hover { color: var(--paper); }
.ft-bot {
  margin-top: var(--s6); padding-top: var(--s4);
  border-top: 1px solid var(--line-d2);
  display: flex; flex-wrap: wrap; gap: var(--s2) var(--s4);
  justify-content: space-between;
  font-size: 13.5px; color: rgba(226, 237, 231, .5);
}
.ft-bot a:hover { color: var(--paper); }

/* -------------------------------------------------- sticky mobile callbar - */
.callbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px var(--pad) calc(10px + env(safe-area-inset-bottom));
  background: rgba(247, 245, 241, .95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  transform: translateY(115%);
  transition: transform .3s var(--ease);
}
.callbar.show { transform: none; }
.callbar .btn { min-height: 48px; font-size: 15px; box-shadow: none; }
@media (min-width: 900px) { .callbar { display: none; } }
/* the bar is fixed — keep it from sitting on top of the last line of the footer */
@media (max-width: 899px) { body { padding-bottom: 74px; } }

/* ------------------------------------------------------------ page heroes - */
.phero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--night);
  color: #fff;
  padding: calc(var(--hdr-h) + 62px) var(--pad) clamp(52px, 9vw, 96px);
  min-height: 440px;
  display: flex; align-items: flex-end;
}
.phero-media { position: absolute; inset: 0; z-index: -2; }
.phero-media img { width: 100%; height: 100%; object-fit: cover; }
.phero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(16, 20, 22, .8) 0%, rgba(16, 20, 22, .34) 42%, rgba(16, 20, 22, .86) 100%);
}
.phero-in { width: 100%; max-width: 1180px; margin-inline: auto; }
.phero h1 { color: #fff; font-size: clamp(34px, 7.6vw, 66px); text-shadow: 0 5px 30px rgba(0, 0, 0, .45); }
.phero .lead { color: rgba(255, 255, 255, .9); margin-top: var(--s4); }
.phero .cta-row { margin-top: var(--s5); }

.crumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255, 255, 255, .68);
  margin-bottom: var(--s4);
}
.crumbs a { border-bottom: 1px solid rgba(255, 255, 255, .3); padding-bottom: 2px; }
.crumbs a:hover { color: #fff; border-color: #fff; }
.crumbs span[aria-hidden] { opacity: .5; }

/* -------------------------------------------------------- service cards --
   Used on services.html only — photo-faced, never a uniform icon grid.      */
.svc-cards { display: grid; gap: var(--s4); }
@media (min-width: 760px)  { .svc-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .svc-cards { grid-template-columns: repeat(3, 1fr); } }
.card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r3);
  overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: transparent; }
.card-fig { aspect-ratio: 3 / 2; overflow: hidden; background: var(--paper-3); }
.card-fig img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.card:hover .card-fig img { transform: scale(1.06); }
.card-body { padding: clamp(20px, 3vw, 28px); display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body h3 { font-size: clamp(20px, 2.6vw, 24px); }
.card-body p { color: var(--ink-2); font-size: 15.5px; line-height: 1.55; }
.card-body .tlink { margin-top: auto; align-self: flex-start; }

/* ---------------------------------------------------- a quiet quote block - */
.note {
  border-left: 3px solid var(--brand);
  padding: 4px 0 4px 22px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(19px, 3.2vw, 25px);
  line-height: 1.3;
  letter-spacing: -.02em;
  color: var(--ink);
  max-width: 46ch;
}
.bg-dark .note { color: var(--paper); border-color: var(--brand-2); }

/* ------------------------------------------------------- reveal on scroll - */
.js .rv {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .66s var(--ease), transform .66s var(--ease);
}
.js .rv.in { opacity: 1; transform: none; }
.js .rv-2 { transition-delay: .09s; }
.js .rv-3 { transition-delay: .18s; }

@media (prefers-reduced-motion: reduce) {
  .js .rv { opacity: 1; transform: none; transition: none; }
  .kb, .tick img, .scroll-cue::after { animation: none !important; }
  .btn:hover, .card:hover { transform: none; }
  .svc-row:hover .svc-fig img, .card:hover .card-fig img { transform: none; }
  * { scroll-behavior: auto !important; }
}

/* ------------------------------------------------------------------ print - */
@media print {
  .hdr, .sheet, .callbar, .scroll-cue, .rail::-webkit-scrollbar { display: none !important; }
  body { background: #fff; color: #000; }
  .hero, .brk, .phero { min-height: 0; padding: 24px 0; }
  .hero-media, .brk-media, .phero-media { display: none; }
}
