/* ═══════════════════════════════════════════════════════════════════════
   3rd Element Pool Service

   Light, warm and photographic. Roughly 70% light surfaces, 20% charcoal,
   10% water blue. The charcoal is spent in two places only — the brand
   punctuation band and the footer — so that when it appears it reads as
   emphasis rather than as the whole page.

   The blue is sampled from the cartridge end-caps in the real filter
   photographs (#5C8FAE), deepened to #2A6484 so it clears 4.5:1 on every
   light surface here, including the stone of the proof section.
   The warm neutrals are sampled from sunlit valley concrete.
   ═══════════════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────────────────── */
:root {
  /* surfaces — desert light */
  --paper:      #FCFAF7;   /* soft architectural white */
  --sand:       #F2EDE4;   /* warm off-white */
  --stone:      #E7E0D4;   /* desert neutral */
  --wash:       #E3EDF1;   /* pale water tint */
  --ink:        #171A1D;   /* charcoal */

  /* line */
  --line:       #DFD7C8;
  --line-fine:  #EAE3D7;
  --line-dark:  #31363A;

  /* type */
  --fg:         #171A1D;
  --fg-muted:   #524C43;   /* body copy: 7.6:1 on paper */
  --on-ink:     #F3F0EA;
  --on-ink-mut: #B3AEA4;   /* body copy on charcoal: 8.1:1 */

  /* water */
  --water:      #2A6484;
  --water-deep: #1D4A63;
  --water-lift: #8FBBD4;

  --f-display: 'Jost', 'Futura', 'Century Gothic', system-ui, sans-serif;
  --f-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --t-eyebrow: 0.75rem;
  --t-micro:   0.8125rem;
  --t-lead:    clamp(1.0625rem, 1rem + 0.2vw, 1.1875rem);
  --t-h3:      clamp(1.25rem, 1.15rem + 0.4vw, 1.5rem);
  --t-h2:      clamp(1.75rem, 1.45rem + 1.1vw, 2.5rem);
  --t-h1:      clamp(2.125rem, 1.65rem + 2vw, 3.5rem);

  --gutter: clamp(20px, 4.5vw, 60px);
  --wrap: 1280px;

  /* Vertical rhythm. One scale, three steps, used by every section —
     nothing sets its own block padding. The wide-screen ceiling is
     deliberately low: at 1440 the old 118px top and bottom read as gaps
     rather than as breathing room. */
  --sec-y:       clamp(52px, 5.4vw, 84px);   /* every standard section    */
  --sec-y-tight: clamp(36px, 3.6vw, 56px);   /* bands that stay compact   */
  --sec-y-lead:  clamp(28px, 3vw, 44px);     /* header -> content, gaps   */

  --ease: cubic-bezier(.22, .68, .3, 1);
  --dur: 240ms;
  --bar-h: 0px;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--fg);
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.vh {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: 50%; top: 0; translate: -50% -110%;
  z-index: 200; background: var(--ink); color: var(--paper);
  padding: 12px 20px; font-size: var(--t-micro); text-decoration: none;
}
.skip:focus-visible { translate: -50% 0; }

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--water);
  outline-offset: 3px;
}
.mark :where(a, button):focus-visible,
.foot :where(a, button):focus-visible { outline-color: var(--water-lift); }

/* ── Layout ─────────────────────────────────────────────────────────── */
.wrap {
  width: 100%; max-width: var(--wrap);
  margin-inline: auto; padding-inline: var(--gutter);
}

.sec { padding-block: var(--sec-y); }
.sec--sand  { background: var(--sand); }
.sec--stone { background: var(--stone); }

/* ── Type ───────────────────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.018em;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.h2 { font-size: var(--t-h2); }
.h3 { font-size: var(--t-h3); line-height: 1.2; }

/* a hairline that runs to the left of the label, not under it */
.eyebrow {
  text-wrap: balance;
  font-family: var(--f-display);
  font-size: var(--t-eyebrow);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--water);
  margin: 0 0 clamp(14px, 1.6vw, 20px);
}
.eyebrow--rule { display: flex; align-items: center; gap: 12px; }
.eyebrow--rule::before {
  content: ''; width: 26px; height: 1px; flex: none;
  background: currentColor; opacity: .55;
}

.lead {
  font-size: var(--t-lead); line-height: 1.55;
  color: var(--fg-muted); max-width: 52ch;
}
.micro { font-size: var(--t-micro); color: var(--fg-muted); }

/* the reassurance line that sits directly under a primary CTA pair */
.cta-note {
  display: flex; align-items: center; gap: 9px;
  font-size: .875rem; line-height: 1.5; color: var(--fg-muted); margin: 0;
}
.cta-note::before {
  content: ""; width: 6px; height: 6px; flex: none;
  border-radius: 50%; background: var(--water);
}
.muted { color: var(--fg-muted); }
.num { font-variant-numeric: tabular-nums; white-space: nowrap; }

a { color: inherit; }
.micro a, .foot a {
  text-decoration-color: color-mix(in srgb, currentColor 40%, transparent);
  text-underline-offset: 3px;
}
.micro a:hover, .foot a:hover { text-decoration-color: currentColor; }

/* the second line of a two-part headline, set in water blue */
h1 em, .close__h em {
  display: block; font-style: normal; color: var(--water);
}

/* ── Buttons ────────────────────────────────────────────────────────── */
.btn {
  --bg: transparent; --fg-c: currentColor; --bd: currentColor;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  min-height: 50px; padding: 0 24px;
  background: var(--bg); color: var(--fg-c);
  border: 1px solid var(--bd); border-radius: 3px;
  font-family: var(--f-display); font-size: .9375rem; font-weight: 500;
  letter-spacing: .03em; text-decoration: none; cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  touch-action: manipulation;
}
.btn--lg { min-height: 56px; padding: 0 30px; font-size: 1rem; }
.btn--primary { --bg: var(--water); --fg-c: #fff; --bd: var(--water); }
.btn--primary:hover { --bg: var(--water-deep); --bd: var(--water-deep); }
.btn--line { --bd: color-mix(in srgb, var(--fg) 26%, transparent); }
.btn--line:hover { --bd: var(--fg); }
.btn--sm { min-height: 44px; padding: 0 18px; font-size: .875rem; }
.btn--block { width: 100%; }
.btn svg { width: 22px; height: 11px; transition: translate var(--dur) var(--ease); }
.btn:hover svg { translate: 4px 0; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: clamp(28px, 3.4vw, 40px) 0 clamp(16px, 1.8vw, 22px); }

/* ── Navigation ─────────────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 100;
  color: var(--fg);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  -webkit-backdrop-filter: saturate(1.3) blur(12px);
  backdrop-filter: saturate(1.3) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav.is-stuck {
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  border-bottom-color: var(--line);
}
.nav__inner { display: flex; align-items: center; gap: clamp(16px, 3vw, 40px); min-height: 74px; }
.nav__brand {
  display: flex; align-items: center; text-decoration: none;
  margin-right: auto; padding-block: 6px;
}
.nav__brand .logo { height: 34px; width: auto; color: var(--ink); }

.nav__links { display: flex; gap: clamp(20px, 2.6vw, 36px); }
.nav__links a {
  font-family: var(--f-display); font-size: .9375rem; letter-spacing: .01em;
  text-decoration: none; padding: 10px 0; position: relative;
  color: var(--fg-muted); transition: color var(--dur) var(--ease);
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 4px; height: 1px;
  background: var(--water); scale: 0 1; transform-origin: left;
  transition: scale var(--dur) var(--ease);
}
.nav__links a:hover { color: var(--fg); }
.nav__links a:hover::after { scale: 1 1; }

.nav__end { display: flex; align-items: center; gap: clamp(12px, 1.6vw, 20px); }
.lang { display: flex; align-items: center; gap: 4px; font-family: var(--f-display); }
.lang__btn {
  appearance: none; background: none; border: 0; cursor: pointer; font: inherit;
  font-size: .75rem; font-weight: 500; letter-spacing: .08em;
  color: color-mix(in srgb, currentColor 62%, transparent);
  padding: 8px 7px; min-height: 44px; min-width: 40px;
  transition: color var(--dur) var(--ease);
}
.lang__btn.is-on, .lang__btn:hover { color: currentColor; }
.lang__sep { opacity: .4; font-size: .75rem; }

.burger {
  display: none; appearance: none; background: none; border: 0;
  width: 44px; height: 44px; cursor: pointer; padding: 0; position: relative; color: inherit;
}
.burger span {
  position: absolute; left: 11px; right: 11px; height: 1.5px; background: currentColor;
  transition: translate var(--dur) var(--ease), rotate var(--dur) var(--ease);
}
.burger span:first-child { top: 18px; }
.burger span:last-child  { top: 25px; }
.burger[aria-expanded="true"] span:first-child { translate: 0 3.5px; rotate: 45deg; }
.burger[aria-expanded="true"] span:last-child  { translate: 0 -3.5px; rotate: -45deg; }

/* ── Mobile menu ────────────────────────────────────────────────────── */
.menu {
  position: fixed; inset: 0; z-index: 95;
  background: var(--paper); color: var(--fg);
  display: flex; flex-direction: column; justify-content: center;
  padding: 92px var(--gutter) calc(36px + env(safe-area-inset-bottom));
  opacity: 0; transition: opacity 200ms var(--ease);
}
.menu.is-open { opacity: 1; }
.menu__links { display: flex; flex-direction: column; }
.menu__links a {
  padding: 20px 0; text-decoration: none;
  border-bottom: 1px solid var(--line-fine);
  font-family: var(--f-display); font-size: 1.5rem; font-weight: 400;
}
.menu__foot { margin-top: 36px; display: grid; gap: 16px; justify-items: center; }
.menu__call {
  font-family: var(--f-display); letter-spacing: .04em; color: var(--fg-muted);
  text-decoration: none; min-height: 44px; display: flex; align-items: center;
}

/* ── Hero ───────────────────────────────────────────────────────────────
   Phone: the photograph first, then the headline and the text CTA.
   Desktop: headline and actions share one row on paper, and the
   mountains panorama runs edge to edge beneath them.                  */
.hero { padding-top: 74px; display: flex; flex-direction: column; }
.hero__top { display: grid; gap: 18px; padding-block: var(--sec-y-lead); }
.hero__h1 { font-size: var(--t-h1); line-height: 1.12; margin: 0; }
.hero__head, .hero__act { min-width: 0; }
.hero__lead {
  font-size: var(--t-lead); line-height: 1.55;
  color: var(--fg-muted); max-width: 44ch; margin: 0;
}
.hero__act .cta-row { margin-top: 22px; }

.shot { margin: 0; order: -1; background: var(--stone); }
.shot__img {
  /* Keep the water, architecture and mountain horizon in the mobile crop. */
  width: 100%; height: clamp(210px, 54vw, 240px);
  object-fit: cover; object-position: 44% 58%;
  filter: saturate(.9) contrast(.96);
}

/* ── Trust bar ────────────────────────────────────────────────────────
   A thin line of type under the hero, not a boxed callout: hairlines
   above and below, small caps, muted, no fill and no border box.     */
.trust {
  border-block: 1px solid var(--line);
  background: var(--paper);
}
.trust__inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center;
  gap: 10px clamp(16px, 3vw, 40px);
  padding-block: clamp(14px, 1.5vw, 18px);
  font-family: var(--f-display);
  font-size: var(--t-eyebrow);
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.trust__i { display: inline; }
.trust__sep { color: var(--fg-muted); }   /* a hairline colour here read as broken, not subtle */

/* ── Section headers ────────────────────────────────────────────────── */
.sechead { margin-bottom: var(--sec-y-lead); max-width: 58ch; }
.sechead--wide { max-width: 58ch; }
.sechead .lead { margin-top: 14px; }

/* ── Services index ─────────────────────────────────────────────────── */
.idx {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 0;
  border-top: 1px solid var(--line);
}
.idx__i {
  display: grid; gap: 6px;
  padding: clamp(22px, 2.4vw, 30px) 0;
  border-bottom: 1px solid var(--line);
}
.idx__n {
  font-family: var(--f-display); font-size: .75rem; font-weight: 500;
  letter-spacing: .14em; color: var(--water);
}
.idx__t { font-size: var(--t-h3); font-weight: 500; line-height: 1.2; }
.idx__d { color: var(--fg-muted); margin: 0; max-width: 46ch; font-size: 1rem; line-height: 1.6; }

/* ── Proof ──────────────────────────────────────────────────────────────
   One diptych rather than two loose photographs: tight crops butted
   together, each labelled on the image itself, the "after" tag in the
   water blue so the direction of the change reads before the words.  */
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; background: var(--stone); }
.ba__f { position: relative; margin: 0; overflow: hidden; background: var(--sand); }
.ba__f picture { display: block; }
.ba__f img {
  width: 100%; aspect-ratio: 8 / 7; object-fit: cover;
  transition: scale 700ms var(--ease);
}
.ba__f:hover img { scale: 1.02; }
.ba__tag {
  position: absolute; left: clamp(12px, 1.6vw, 20px); top: clamp(12px, 1.6vw, 20px);
  font-family: var(--f-display); font-size: var(--t-eyebrow); font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; line-height: 1;
  padding: 8px 11px; border-radius: 2px;
  background: var(--paper); color: var(--fg);
  box-shadow: 0 1px 2px rgb(23 26 29 / .12);
}
.ba__tag--after { background: var(--water); color: #fff; }

/* ── Local presence ─────────────────────────────────────────────────── */

.area__body { display: grid; gap: var(--sec-y-lead); }

/* the palms photograph; first on a phone, beside the copy on desktop */
.area__fig { margin: 0; overflow: hidden; background: var(--stone); }
.area__fig picture { display: block; height: 100%; }
.area__fig img {
  width: 100%; height: clamp(240px, 66vw, 380px);
  object-fit: cover; object-position: 50% 30%;
  filter: saturate(.87) contrast(.97);
}

/* services: a photograph paired with the index */
.svc__body { display: grid; gap: var(--sec-y-lead); }
.svc__fig { margin: 0; overflow: hidden; background: var(--stone); }
.svc__fig img { width: 100%; height: clamp(220px, 56vw, 340px); object-fit: cover; object-position: 50% 40%; filter: saturate(.8) contrast(.94); }
/* Individual, restrained corrections to the existing retouched pool copies.
   Contrast softens harsh highlights without a dark overlay. Proof images
   deliberately receive no filter. Source photographs remain untouched. */

/* Enrique — the moustache mark from his business card */
.owner {
  display: flex; align-items: center; gap: 16px;
  margin-top: 1.4em; padding-top: 1.2em;
  border-top: 1px solid var(--line);
}
.owner__mark { width: 44px; height: auto; flex: none; color: var(--ink); }
.area__text p { max-width: 46ch; }
.area__text b { font-weight: 500; }
.area__owner { margin: 0; font-size: .9375rem; color: var(--fg-muted); }
.area__owner b { color: var(--fg); }

/* ── Brand punctuation ──────────────────────────────────────────────── */
.mark { background: var(--ink); color: var(--on-ink); }
.mark__inner {
  display: grid; justify-items: center; gap: clamp(22px, 2.6vw, 32px);
  padding-block: var(--sec-y-tight);
  text-align: center;
}
.mark__sym { width: clamp(46px, 5vw, 62px); height: auto; color: var(--on-ink); opacity: .9; }
.mark__line {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(1.25rem, 1.05rem + 0.95vw, 1.95rem);
  letter-spacing: .01em; margin: 0;
}

/* ── O3 Can Care ─────────────────────────────────────────────────────
   A sister company, so a slim strip rather than a section: the service
   leads ("Trash bin cleaning"), the brand signs ("by O3 Can Care").   */
.sister {
  background: var(--sand);
  border-block: 1px solid var(--line);
}
.sister__inner {
  display: grid; gap: 20px;
  padding-block: var(--sec-y-tight);
}
.sister__label {
  font-family: var(--f-display); font-size: var(--t-eyebrow); font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--water); margin: 0 0 10px;
}
.sister__h {
  font-size: clamp(1.5rem, 1.25rem + 1.1vw, 2.1rem);
  line-height: 1.12; margin: 0;
}
.sister__by {
  display: block; margin-top: 4px;
  font-size: var(--t-lead); font-weight: 400; letter-spacing: 0;
  color: var(--fg-muted);
}
.sister__svc { font-size: .9375rem; color: var(--fg-muted); margin: 12px 0 0; }
.sister__cta { justify-self: start; }

/* ── Final CTA ──────────────────────────────────────────────────────── */
.close { background: var(--wash); }
.close__grid { display: grid; gap: clamp(32px, 4vw, 56px); align-items: start; }
.close__h {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(1.875rem, 1.55rem + 1.3vw, 2.75rem);
  line-height: 1.14; letter-spacing: -0.02em;
  margin: 0 0 clamp(16px, 1.8vw, 24px);
}

.qf {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(22px, 3vw, 34px);
  display: grid; gap: 16px;
}
.qf__lede { font-size: .875rem; line-height: 1.5; color: var(--fg-muted); margin: 0; max-width: 42ch; }
.qf__row { display: grid; gap: 6px; }
.qf label {
  font-family: var(--f-display); font-size: var(--t-micro); font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; color: var(--fg-muted);
}
.qf input, .qf select {
  font: inherit; font-size: 1rem; min-height: 50px; padding: 0 14px;
  background: #fff; color: var(--fg);
  border: 1px solid var(--line); border-radius: 3px;
  width: 100%; appearance: none;
  transition: border-color var(--dur) var(--ease);
}
.qf select {
  background-image: linear-gradient(45deg, transparent 50%, var(--fg-muted) 50%),
                    linear-gradient(135deg, var(--fg-muted) 50%, transparent 50%);
  background-position: calc(100% - 20px) 22px, calc(100% - 14px) 22px;
  background-size: 6px 6px, 6px 6px; background-repeat: no-repeat;
  padding-right: 40px;
}
.qf input:hover, .qf select:hover,
.qf input:focus, .qf select:focus { border-color: var(--water); }
.qf__hint, .qf__status { font-size: .875rem; line-height: 1.5; color: var(--fg-muted); margin: 0; }
.qf__status:empty { display: none; }
.qf__draft { display: grid; gap: 12px; border-top: 1px solid var(--line); padding-top: 20px; }
.qf__draft[hidden] { display: none; }
.qf__draft textarea { width: 100%; min-height: 140px; resize: vertical; padding: 12px; border: 1px solid var(--line); border-radius: 3px; background: #fff; color: var(--fg); font: inherit; font-size: 1rem; line-height: 1.5; }
.qf__draft .btn { white-space: normal; text-align: center; padding-block: 10px; }
.btn:disabled { cursor: wait; opacity: .7; }
.no-js .qf { display: none; }

/* ── Footer ─────────────────────────────────────────────────────────── */
.foot { background: var(--ink); color: var(--on-ink); padding-block: var(--sec-y) 0; }
.foot__grid { display: grid; gap: var(--sec-y-lead); }
.foot__brand .logo { height: 40px; width: auto; color: var(--on-ink); }
.foot__k {
  font-family: var(--f-display); font-size: var(--t-eyebrow); font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--on-ink-mut); margin: 0 0 12px;
}
.foot__col p { margin: 0 0 .45em; font-size: .9375rem; color: var(--on-ink); }
.foot__col p > a { display: inline-flex; align-items: center; min-height: 30px; }
.foot__col p:last-child { margin-bottom: 0; }
.foot__col:last-child p { color: var(--on-ink-mut); max-width: 36ch; }
.foot__sister { margin-top: 24px; }
.foot__sister .foot__k { margin-bottom: 8px; }
.foot__base {
  display: flex; flex-wrap: wrap; gap: 8px 28px;
  justify-content: space-between; align-items: baseline;
  margin-top: var(--sec-y-lead);
  padding-block: 20px calc(24px + max(env(safe-area-inset-bottom), var(--bar-h)));
  border-top: 1px solid var(--line-dark);
  font-size: var(--t-micro); color: var(--on-ink-mut);
}
.foot__base p, .foot__base address { margin: 0; font-style: normal; }
.foot__addr { font-variant-numeric: tabular-nums; }

/* ── Mobile contact bar ─────────────────────────────────────────────── */
.bar {
  position: fixed; inset: auto 0 0; z-index: 90;
  display: none; gap: 1px; background: var(--line-dark);
  padding-bottom: env(safe-area-inset-bottom);
  translate: 0 100%; transition: translate 300ms var(--ease);
  box-shadow: 0 -10px 30px rgb(23 26 29 / .12);
}
.bar.is-up { translate: 0 0; }
.bar a {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 58px; text-decoration: none;
  font-family: var(--f-display); font-size: .9375rem; font-weight: 500;
  touch-action: manipulation;
}
.bar svg { width: 19px; height: 19px; fill: currentColor; flex: none; }
.bar__text { flex: 1 1 auto; background: var(--water); color: #fff; }
.bar__call { flex: 0 0 34%; background: var(--ink); color: var(--on-ink); }

/* ── Without JavaScript ─────────────────────────────────────────────── */
.no-js .bar { translate: 0 0; }
.no-js .burger, .no-js .menu { display: none !important; }

/* ── Reveal, scoped to .js so the page reads with scripting off ─────── */
.js .reveal {
  opacity: 0; translate: 0 12px;
  transition: opacity 560ms var(--ease), translate 560ms var(--ease);
  transition-delay: calc(var(--i, 0) * 60ms);
}
.js .reveal.is-in { opacity: 1; translate: 0 0; }

/* ═══ Breakpoints ═══════════════════════════════════════════════════ */

/* ── ≤ 600px: phones ────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .eyebrow--rule::before { display: none; }
  /* keeps "Pool care across the Coachella Valley" on one line at 375 */
  .hero .eyebrow { letter-spacing: .1em; }

  .hero__h1 { font-size: clamp(1.875rem, 8.7vw, 2.25rem); }
  .close__h { font-size: clamp(1.875rem, 7.8vw, 2rem); }
  /* three stacked labels read as an unfinished list on a phone and only
     repeat the hero */
  .trust { display: none; }
  .eyebrow--rule { gap: 0; }

  /* the diptych is half-width here; smaller tags keep the cartridges clear */
  .ba__tag { left: 8px; top: 8px; padding: 5px 7px; font-size: .625rem; letter-spacing: .12em; }

  .cta-row { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .sister__cta { width: 100%; }
  .cta-row .btn { width: 100%; }
}

/* Keep the approved two-line hero statement intact on narrow phones. */
@media (max-width: 340px) {
  .hero__h1 { font-size: 1.75rem; }
}

/* ── ≤ 959px: phone + small tablet ──────────────────────────────────── */
@media (max-width: 959px) {
  :root { --bar-h: calc(58px + env(safe-area-inset-bottom)); }
  html { scroll-padding-top: 78px; }

  .nav__links, .nav__cta { display: none; }
  .burger { display: block; }
  .bar { display: flex; }
  .menu:not(.is-open) { display: none; }

  .hero__top { padding-block: var(--sec-y-lead); }

  /* the sticky bar already offers Text and Call here; the form is enough */
  .close .cta-row, .close .cta-note { display: none; }

  .foot__col p > a { display: inline-flex; align-items: center; min-height: 44px; }
}

/* ── ≥ 700px ────────────────────────────────────────────────────────── */
@media (min-width: 601px) and (max-width: 959px) {
  .shot__img { height: clamp(260px, 36vw, 340px); object-position: 50% 30%; }
}

@media (min-width: 700px) {
  .idx { grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
  .idx__i { border-bottom: 0; padding-inline: 0 clamp(20px, 3vw, 40px); }
  .idx__i:nth-child(odd) { border-right: 1px solid var(--line); }
  .idx__i:nth-child(n+3) { border-top: 1px solid var(--line); }
  .idx__i:nth-child(even) { padding-left: clamp(20px, 3vw, 40px); padding-right: 0; }
}

/* ── ≥ 860px ────────────────────────────────────────────────────────── */
@media (min-width: 860px) {
  .area__body {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    /* the photograph spans both rows; without auto/1fr the extra height is
       shared out and opens a gap under the heading */
    grid-template-rows: auto 1fr;
    gap: var(--sec-y-lead) clamp(32px, 5vw, 80px);
    align-items: start;
  }
  .area__head { grid-column: 1; grid-row: 1; }
  .area__text { grid-column: 1; grid-row: 2; }
  /* the photograph takes its height from the copy beside it instead of its
     own tall portrait ratio, so the two columns end together */
  .area__fig  { grid-column: 2; grid-row: 1 / span 2; align-self: stretch; position: relative; min-height: 400px; }
  .area__fig img { position: absolute; inset: 0; height: 100%; object-position: 50% 58%; }
  .close__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 420px); }
  .sister__inner { grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 48px; }
}

/* ── ≥ 960px: desktop ───────────────────────────────────────────────── */
@media (min-width: 960px) {
  .menu { display: none !important; }

  /* Tighten only the long desktop transitions; mobile keeps its rhythm. */
  .proof { padding-bottom: calc(var(--sec-y) * .8); }
  .svc { padding-block: calc(var(--sec-y) * .8); }
  .area { padding-block: calc(var(--sec-y) * .8); }
  .close { padding-bottom: calc(var(--sec-y) * .8); }

  .hero { padding-top: calc(74px + var(--sec-y-lead)); }
  .hero__top {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: center;
    gap: clamp(28px, 3vw, 44px);
    padding-block: 0 clamp(28px, 3vw, 44px);
  }
  .hero__act .cta-row { margin-top: 24px; }
  .shot { order: 0; }
  .shot__img { height: clamp(440px, 33vw, 480px); object-position: 50% 30%; }

  .idx__i { padding-block: clamp(28px, 3vw, 40px); }

  /* photograph on the left, the four services as one column on the right */
  .svc__body { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); align-items: stretch; }
  .svc__fig, .svc__fig picture { height: 100%; }
  .svc__fig img { height: 100%; min-height: 440px; object-position: 50% 60%; }
  .svc__body .idx { grid-template-columns: 1fr; border-bottom: 0; }
  .svc__body .idx__i,
  .svc__body .idx__i:nth-child(odd),
  .svc__body .idx__i:nth-child(even),
  .svc__body .idx__i:nth-child(n+3) {
    border: 0; border-bottom: 1px solid var(--line);
    padding: clamp(18px, 1.8vw, 24px) 0;
  }

  .foot__grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1.35fr); }
}

/* Intermediate desktop columns need two equal-width contact actions. */
@media (min-width: 960px) and (max-width: 1199px) {
  .hero__act .cta-row { display: grid; grid-template-columns: 1fr; }
}

/* ── Reduced motion ─────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; translate: none; }
  .ba__f:hover img { scale: 1; }
}

/* ── Print ──────────────────────────────────────────────────────────── */
@media print {
  .nav, .bar, .menu, .qf, .skip { display: none !important; }
  body { background: #fff; color: #000; padding: 0; }
  .mark, .foot { background: #fff !important; color: #000 !important; }
}
