
/* ═══════════════════════════════════════════════════════════════
   NW REBUILD PROJECT — HOMEPAGE
   Design POV: "The blueprint becomes a home."
   The page opens in cool navy drafting linework and warms into
   real photographs of real homes as the visitor scrolls. Squatch
   guides the journey and appears only at genuine decisions.
   ─── Single stylesheet. No override cascades. No !important. ───
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Brand — carried forward unchanged from the NWRP design system */
  --teal:       #1D7E94;
  --teal-dk:    #0D5C6F;
  --teal-dkr:   #094A5A;
  --teal-lt:    #2E9FB8;
  --teal-pale:  #EDF6F9;
  --navy:       #0D2C3A;
  --navy-md:    #163548;
  --navy-dp:    #071C26;
  --rust:       #C0392B;
  --rust-lt:    #E04333;
  --ember:      #E87722;
  --cream:      #FBF7F0;   /* bright warm paper   lum 246 */
  --cream-dk:   #F0EAE0;
  --cream-wm:   #EFE2CB;   /* mid warm            lum 227 */
  --sand:       #E4D5B7;   /* strong warm         lum 215 */
  --slate:      #D6E6EC;   /* clear cool          lum 228 */
  --slate-dp:   #C2DBE4;   /* deeper cool         lum 215 */
  --white:      #FFFFFF;
  --text:       #0F1E24;
  --text-md:    #2A4550;
  --text-lt:    #4A6978;
  --border:     #D4E8EE;
  --bg-alt:     #F4F9FB;

  --font-body:  'Nunito', system-ui, -apple-system, sans-serif;
  --font-head:  'Playfair Display', Georgia, 'Times New Roman', serif;

  /* Type scale — deliberately wide contrast so the page has a voice */
  --fs-display: clamp(2.5rem, 5vw, 4.15rem);
  --fs-h2:      clamp(2rem, 3.9vw, 3.15rem);
  --fs-h3:      clamp(1.22rem, 1.7vw, 1.45rem);
  --fs-lead:    clamp(1.06rem, 1.35vw, 1.22rem);

  --shadow-sm:  0 2px 10px rgba(13,44,58,.07);
  --shadow-md:  0 8px 28px rgba(13,44,58,.12);
  --shadow-lg:  0 20px 60px rgba(13,44,58,.20);
  --shadow-xl:  0 32px 90px rgba(7,28,38,.34);
  --radius:     14px;
  --radius-lg:  22px;
  --radius-xl:  30px;

  --shell:      1220px;
  --gutter:     clamp(1.15rem, 5vw, 4.5rem);
  --bay:        clamp(4.5rem, 9vw, 8.5rem);   /* vertical section rhythm */
  --ease:       cubic-bezier(.22,.68,0,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1rem, .55vw + .88rem, 1.08rem);
  line-height: 1.72;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.08; letter-spacing: -.015em; }
:focus-visible { outline: 3px solid var(--ember); outline-offset: 3px; border-radius: 5px; }

.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); }
.shell-narrow { width: 100%; max-width: 780px; margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; top: -200px; left: .75rem; z-index: 999;
  background: var(--navy); color: #fff; padding: .85rem 1.4rem;
  border-radius: 0 0 10px 10px; font-weight: 800; text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ─── Scroll reveal ─────────────────────────────────────────── */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .1s; } .rv-d2 { transition-delay: .2s; }
.rv-d3 { transition-delay: .3s; } .rv-d4 { transition-delay: .4s; }

/* ═══ EYEBROW ═══ */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .72rem; font-weight: 900; letter-spacing: .17em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ''; width: 30px; height: 2px; background: currentColor;
  border-radius: 2px; flex: 0 0 30px;
}
.eyebrow-lt { color: #7FD4E4; }
.eyebrow-rust { color: var(--rust); }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 52px; padding: .9rem 1.85rem;
  font-family: var(--font-body); font-size: .95rem; font-weight: 800;
  letter-spacing: .01em; text-decoration: none; cursor: pointer;
  border: 2px solid transparent; border-radius: 100px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--rust); color: #fff; box-shadow: 0 8px 22px rgba(192,57,43,.34); }
.btn-primary:hover { background: var(--rust-lt); box-shadow: 0 14px 34px rgba(192,57,43,.44); }
.btn-teal { background: var(--teal); color: #fff; box-shadow: 0 8px 22px rgba(29,126,148,.3); }
.btn-teal:hover { background: var(--teal-lt); box-shadow: 0 14px 34px rgba(29,126,148,.4); }
.btn-ghost { background: rgba(255,255,255,.07); color: #fff; border-color: rgba(255,255,255,.42); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.16); border-color: #fff; }
.btn-light { background: #fff; color: var(--teal-dk); }
.btn-light:hover { background: var(--teal-pale); }
.btn-outline { background: transparent; color: var(--teal-dk); border-color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: #fff; }

/* Text link with a drafting underline that extends on hover */
.tlink {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 800; color: var(--teal-dk); text-decoration: none;
  padding-bottom: 3px; background-image: linear-gradient(var(--rust), var(--rust));
  background-size: 0% 2px; background-position: 0 100%; background-repeat: no-repeat;
  transition: background-size .4s var(--ease), color .25s ease;
}
.tlink:hover { background-size: 100% 2px; color: var(--rust); }
.proof .tlink, .give .tlink { color: #A8E6F2; background-image: linear-gradient(#FFC48A, #FFC48A); }
.proof .tlink:hover, .give .tlink:hover { color: #FFC48A; }
.tlink .arw { transition: transform .3s var(--ease); }
.tlink:hover .arw { transform: translateX(5px); }

/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  display: flex; align-items: center; gap: 1.5rem;
  padding: .7rem var(--gutter);
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease;
}
.nav-clear { background: transparent; }
.nav-solid {
  background: rgba(255,255,255,.93); backdrop-filter: blur(16px) saturate(1.6);
  box-shadow: 0 1px 0 var(--border), 0 6px 26px rgba(13,44,58,.08);
  padding-block: .45rem;
}
.nav-brand {
  display: flex; align-items: center; gap: .7rem;
  text-decoration: none; margin-right: auto; flex-shrink: 0;
}
.nav-brand img { width: 46px; height: 46px; object-fit: contain; transition: width .4s ease, height .4s ease; }
.nav-solid .nav-brand img { width: 40px; height: 40px; }
.nav-brand span {
  font-family: var(--font-head); font-weight: 800; font-size: 1.06rem;
  line-height: 1.15; letter-spacing: -.01em; color: #fff;
  transition: color .35s ease;
}
.nav-solid .nav-brand span { color: var(--navy); }
.nav-brand small {
  display: block; font-family: var(--font-body); font-size: .62rem;
  font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
  color: rgba(255,255,255,.62); transition: color .35s ease;
}
.nav-solid .nav-brand small { color: var(--teal); }

.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links a {
  padding: .55rem .8rem; border-radius: 9px; text-decoration: none;
  font-size: .88rem; font-weight: 700; color: rgba(255,255,255,.88);
  transition: background .22s ease, color .22s ease;
}
.nav-links a:hover { background: rgba(255,255,255,.14); color: #fff; }
.nav-solid .nav-links a { color: var(--text-md); }
.nav-solid .nav-links a:hover { background: var(--teal-pale); color: var(--teal-dk); }
.nav-cta { margin-left: .5rem; min-height: 44px; padding: .6rem 1.3rem; font-size: .86rem; }

.burger {
  display: none; width: 46px; height: 46px; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3);
  border-radius: 11px; cursor: pointer;
}
.nav-solid .burger { background: var(--teal-pale); border-color: var(--border); }
.burger i { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s ease; }
.nav-solid .burger i { background: var(--navy); }
.burger.open i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open i:nth-child(2) { opacity: 0; }
.burger.open i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 0 0 0 auto; z-index: 199;
  width: min(89vw, 380px); padding: 5.5rem 1.75rem 2rem;
  background: var(--navy); overflow-y: auto;
  transform: translateX(102%); transition: transform .45s var(--ease);
  box-shadow: -24px 0 70px rgba(7,28,38,.5);
}
.drawer.open { transform: none; }
.drawer h4 {
  font-family: var(--font-body); font-size: .67rem; font-weight: 900;
  letter-spacing: .17em; text-transform: uppercase; color: #6FC4D6;
  margin: 1.6rem 0 .5rem;
}
.drawer h4:first-of-type { margin-top: 0; }
.drawer a {
  display: block; padding: .68rem .2rem; text-decoration: none;
  font-size: 1rem; font-weight: 700; color: rgba(255,255,255,.86);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.drawer a:hover { color: #fff; padding-left: .6rem; }
.drawer .btn { width: 100%; margin-top: 1.5rem; }
.scrim {
  position: fixed; inset: 0; z-index: 198; background: rgba(7,28,38,.55);
  backdrop-filter: blur(3px); opacity: 0; pointer-events: none;
  transition: opacity .4s ease;
}
.scrim.on { opacity: 1; pointer-events: auto; }

/* ═══════════════════════════════════════════════════════
   HERO — navy drafting table. The blueprint draws itself.
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative; isolation: isolate;
  display: grid; align-items: center;
  padding: clamp(6rem, 11vh, 7.6rem) 0 0;
  background:
    radial-gradient(120% 88% at 50% 6%, #17415580 0%, transparent 62%),
    linear-gradient(172deg, var(--navy-md) 0%, var(--navy) 44%, var(--navy-dp) 100%);
  overflow: hidden;
}
/* Drafting grid — fine mm grid over a heavier 10mm grid */
.hero-grid {
  position: absolute; inset: -2px; z-index: -3; pointer-events: none;
  background-image:
    linear-gradient(rgba(127,212,228,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127,212,228,.055) 1px, transparent 1px),
    linear-gradient(rgba(127,212,228,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127,212,228,.10) 1px, transparent 1px);
  background-size: 28px 28px, 28px 28px, 140px 140px, 140px 140px;
  background-position: center center;
  mask-image: radial-gradient(90% 95% at 50% 40%, #000 30%, transparent 82%);
}
/* The self-drawing house elevation */
/* Anchored to the CONTENT CENTRE, not the viewport edge, so the drawing
   stays with the copy on ultra-wide and 4K displays. */
.hero-draft {
  position: absolute; z-index: -2; pointer-events: none;
  left: 50%; top: 50%;
  width: min(1560px, 116vw);
  transform: translate(-50%, -46%);
  opacity: .55;
  mask-image: radial-gradient(120% 105% at 50% 50%, #000 46%, transparent 88%);
}
.hero-draft path, .hero-draft line, .hero-draft polyline, .hero-draft rect, .hero-draft circle {
  stroke: #8FDCEC; fill: none; vector-effect: non-scaling-stroke;
}
.hero-draft .ink { stroke-width: 2.5; }
.hero-draft .thin { stroke-width: 1.15; opacity: .62; }
.hero-draft .dim { stroke-width: .7; opacity: .42; stroke-dasharray: 5 4; }
.hero-draft .fillw { fill: rgba(143,220,236,.055); }
/* Animate the linework on so it reads as being drafted live */
.draw { stroke-dasharray: var(--len, 2400); stroke-dashoffset: var(--len, 2400); animation: draw 2.7s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.hero-glow {
  position: absolute; z-index: -1; pointer-events: none;
  width: min(1100px, 96vw); aspect-ratio: 1;
  left: 50%; top: 46%; transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(29,126,148,.30) 0%, transparent 66%);
  filter: blur(14px);
}

.hero-inner {
  position: relative; width: 100%; max-width: var(--shell);
  margin-inline: auto; padding: 0 var(--gutter) clamp(1.6rem,3.6vh,2.6rem);
  display: grid; grid-template-columns: minmax(0,1.32fr) clamp(240px, 23vw, 318px);
  gap: clamp(1.2rem, 2.6vw, 2.6rem); align-items: center;
}
.hero-copy { text-align: left; max-width: 56ch; }
.hero-mark {
  width: clamp(66px, 6.4vw, 86px); height: auto; margin-bottom: 1rem;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,.4));
}
.hero-tag {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .42rem 1.05rem .42rem .75rem; margin-bottom: 1.15rem;
  background: rgba(232,119,34,.15); border: 1px solid rgba(232,119,34,.42);
  border-radius: 100px; font-size: .74rem; font-weight: 900;
  letter-spacing: .1em; text-transform: uppercase; color: #FFC48A;
}
.hero-tag b {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--ember); box-shadow: 0 0 0 0 rgba(232,119,34,.75);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 11px rgba(232,119,34,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,119,34,0); }
}
.hero h1 {
  font-size: var(--fs-display); font-weight: 800; color: #fff;
  margin-bottom: 1.05rem; text-wrap: balance;
}
.hero h1 em {
  display: block; font-style: italic; font-weight: 700;
  background: linear-gradient(96deg, #7FD4E4 0%, #A8E6F2 48%, #FFC48A 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  font-size: var(--fs-lead); font-weight: 500; line-height: 1.72;
  color: rgba(255,255,255,.82); margin-bottom: .8rem; max-width: 52ch;
}
.hero-free {
  display: block; font-weight: 900; color: #fff;
  border-left: 3px solid var(--ember); padding-left: .85rem; margin-bottom: 1.55rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }

/* ─── Squatch: bubble and character occupy SEPARATE grid rows.
       Nothing overlaps the character. A drawn connector spans the gap. ─── */
.sq-unit {
  position: relative;
  display: grid; grid-template-rows: auto var(--sq-gap, 34px) auto;
  justify-items: center; width: 100%;
}
.sq-art {
  grid-row: 3; width: 100%; height: auto;
  filter: drop-shadow(0 20px 24px rgba(0,0,0,.4));
  animation: sq-in 1.1s var(--ease) .45s both;
}
@keyframes sq-in { from { opacity: 0; transform: translateY(30px) scale(.96); } }

.sq-bubble {
  grid-row: 1; position: relative; z-index: 2;
  width: 100%; padding: 1rem 1.15rem;
  background: var(--teal-dkr); border: 2px solid rgba(143,220,236,.55);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(7,28,38,.4);
  animation: sq-in 1s var(--ease) .8s both;
}
/* Connector lives in the middle row: touches the bubble, stops short of him. */
.sq-link {
  grid-row: 2; align-self: stretch; justify-self: center;
  width: 34px; height: 100%; position: relative;
  transform: translateX(var(--sq-link-x, 0));
}
/* tapered tick hanging off the bubble, stopping well short of the character */
.sq-link::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 0; border-style: solid;
  border-width: 13px 8px 0 8px;
  border-color: var(--teal-dkr) transparent transparent transparent;
  filter: drop-shadow(0 1px 0 rgba(143,220,236,.55));
}
.final-sq .sq-link::before { border-top-color: var(--navy); filter: drop-shadow(0 1px 0 rgba(29,126,148,.6)); }
.sq-name {
  font-size: .68rem; font-weight: 900; letter-spacing: .15em;
  text-transform: uppercase; color: #8FDCEC; margin-bottom: .3rem;
}
.sq-bubble p { font-size: .95rem; font-weight: 700; line-height: 1.55; color: #fff; margin-bottom: .55rem; }
.sq-bubble a {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .89rem; font-weight: 900; color: #FFC48A;
  text-decoration: underline; text-underline-offset: 3px;
}
.sq-bubble a:hover { color: #fff; }

/* ─── Promise strip: honest facts, not invented numbers ─── */
.promise {
  position: relative; z-index: 3;
  background: rgba(7,28,38,.55); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(143,220,236,.2);
}
.promise-grid {
  max-width: var(--shell); margin-inline: auto; padding: 1.35rem var(--gutter);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
}
.promise-cell { padding: .55rem 1.15rem; border-left: 1px solid rgba(143,220,236,.17); }
.promise-cell:first-child { border-left: 0; padding-left: 0; }
.promise-cell b {
  display: block; font-family: var(--font-head); font-size: 1.35rem;
  font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: .15rem;
}
.promise-cell span {
  display: block; font-size: .78rem; font-weight: 700; line-height: 1.45;
  color: rgba(255,255,255,.6);
}

/* ═══════════════════════════════════════════════════════
   TWO DOORS — the visitor self-selects
   ═══════════════════════════════════════════════════════ */
.doors { padding: var(--bay) 0; background: var(--sand); position: relative; }
.doors::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(13,44,58,.055) 1px, transparent 1px);
  background-size: 15px 15px;
  mask-image: linear-gradient(#000, transparent 72%);
}
.doors-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.1rem, 2.2vw, 1.9rem); }
.door {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; flex-direction: column;
  padding: clamp(2rem, 3.4vw, 3.1rem);
  border-radius: var(--radius-xl); color: #fff;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.door:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.door-help { background: linear-gradient(155deg, var(--navy-md), var(--navy-dp)); }
.door-give { background: linear-gradient(155deg, var(--teal), var(--teal-dkr)); }
.door::after {           /* faint blueprint watermark inside each door */
  content: ''; position: absolute; z-index: -1; right: -12%; bottom: -18%;
  width: 62%; aspect-ratio: 1; opacity: .12;
  background: no-repeat center/contain;
}
.door-help::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23fff' stroke-width='1.4'%3E%3Cpath d='M10 46 50 14l40 32'/%3E%3Cpath d='M20 42v44h60V42'/%3E%3Crect x='42' y='60' width='16' height='26'/%3E%3Crect x='27' y='52' width='11' height='11'/%3E%3Crect x='62' y='52' width='11' height='11'/%3E%3C/svg%3E");
}
.door-give::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23fff' stroke-width='1.4'%3E%3Cpath d='M50 88C30 72 12 58 12 40a19 19 0 0 1 38-6 19 19 0 0 1 38 6c0 18-18 32-38 48z'/%3E%3C/svg%3E");
}
.door-num {
  font-family: var(--font-head); font-size: .8rem; font-weight: 800;
  letter-spacing: .2em; color: rgba(255,255,255,.42); margin-bottom: .9rem;
}
.door h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800;
  color: #fff; margin-bottom: .85rem;
}
.door p { font-size: 1rem; line-height: 1.75; color: rgba(255,255,255,.84); margin-bottom: 1.9rem; }
.door-btns { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: auto; }
.door-note { margin-top: 1.05rem; font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.5); }

/* ═══════════════════════════════════════════════════════
   MISSION — one honest paragraph, given room to breathe
   ═══════════════════════════════════════════════════════ */
/* cool band: breaks the sand->cream warm-on-warm transition */
.mission { padding: var(--bay) 0; background: var(--slate); text-align: center;
  border-block: 1px solid rgba(13,44,58,.08); }
.mission-rule { width: 62px; height: 3px; background: var(--rust); border-radius: 3px; margin: 0 auto 2.1rem; }
.mission p {
  font-family: var(--font-head); font-size: clamp(1.24rem, 2.25vw, 1.85rem);
  font-weight: 600; line-height: 1.52; color: var(--navy);
  letter-spacing: -.015em; text-wrap: pretty;
}
.mission p b { font-weight: 800; color: var(--teal-dk); font-style: italic; }
.mission-btns { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; margin-top: 2.4rem; }

/* ═══════════════════════════════════════════════════════
   BLUEPRINT → HOME. The single best proof we own.
   ═══════════════════════════════════════════════════════ */
.proof {
  padding: var(--bay) 0; color: #fff; position: relative; overflow: hidden;
  background: linear-gradient(168deg, var(--navy) 0%, var(--teal-dkr) 100%);
}
.proof::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(143,220,236,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143,220,236,.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(90% 80% at 70% 30%, #000, transparent 72%);
}
.proof-grid {
  position: relative; display: grid;
  grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr);
  gap: clamp(2rem, 4.5vw, 4.5rem); align-items: center;
}
.proof h2 { font-size: var(--fs-h2); font-weight: 800; color: #fff; margin-bottom: 1.2rem; }
.proof h2 em { font-style: italic; color: #7FD4E4; }
.proof p { color: rgba(255,255,255,.8); font-size: var(--fs-lead); line-height: 1.76; margin-bottom: 1.2rem; }
.proof-meta { display: flex; flex-wrap: wrap; gap: 1.9rem; margin: 1.9rem 0; }
.proof-meta div b {
  display: block; font-family: var(--font-head); font-size: 1.5rem;
  font-weight: 800; color: #7FD4E4;
}
.proof-meta div span { font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.56); }

.compare {
  position: relative; aspect-ratio: 16/9; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-xl); cursor: ew-resize;
  user-select: none; touch-action: pan-y;
  border: 1px solid rgba(143,220,236,.28);
}
.compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.compare-top { position: absolute; inset: 0; width: 50%; overflow: hidden; }
/* The overlay image must stay at the FULL slider width; only the clipping
   parent narrows. Its pixel width is pinned by JS on load and resize, so the
   render cannot shrink and stretch as the handle moves. */
.compare-top img { width: auto; max-width: none; height: 100%; object-fit: cover; }
.compare-top::after {
  content: ''; position: absolute; top: 0; bottom: 0; right: 0; width: 3px;
  background: #fff; box-shadow: 0 0 16px rgba(0,0,0,.5);
}
.compare-lbl {
  position: absolute; top: .9rem; z-index: 4;
  padding: .35rem .85rem; border-radius: 100px;
  font-size: .68rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(7,28,38,.78); color: #fff; backdrop-filter: blur(5px);
  pointer-events: none;
}
.compare-lbl.l { left: .9rem; }
.compare-lbl.r { right: .9rem; }
.compare-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; z-index: 5;
  width: 46px; transform: translateX(-50%);
  display: grid; place-items: center; cursor: ew-resize;
}
.compare-knob {
  width: 46px; height: 46px; border-radius: 50%; background: #fff;
  display: grid; place-items: center; box-shadow: 0 6px 22px rgba(0,0,0,.45);
  font-size: .8rem; color: var(--teal-dk); font-weight: 900; letter-spacing: .02em;
}
.compare-hint {
  position: absolute; z-index: 6; left: 50%; bottom: 1.1rem;
  transform: translateX(-50%); padding: .5rem 1.1rem; border-radius: 100px;
  background: rgba(7,28,38,.8); color: #fff; font-size: .78rem; font-weight: 800;
  white-space: nowrap; pointer-events: none; transition: opacity .45s ease;
}

/* ═══════════════════════════════════════════════════════
   WHAT YOU ACTUALLY RECEIVE
   ═══════════════════════════════════════════════════════ */
.receive { padding: var(--bay) 0; background: var(--slate);
  border-bottom: 1px solid rgba(13,44,58,.08); }
.sec-head { max-width: 720px; margin-bottom: clamp(2.4rem, 4vw, 3.6rem); }
.sec-head.mid { margin-inline: auto; text-align: center; }
.sec-head.mid .eyebrow { justify-content: center; }
.sec-head h2 { font-size: var(--fs-h2); font-weight: 800; color: var(--navy); margin-bottom: 1rem; text-wrap: balance; }
.sec-head h2 em { font-style: italic; color: var(--teal); }
.sec-head p { font-size: var(--fs-lead); color: var(--text-md); line-height: 1.76; }

.recv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(248px,1fr)); gap: clamp(1rem,1.9vw,1.6rem); }
.recv {
  position: relative; padding: 2rem 1.7rem 1.8rem; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s ease;
}
.recv:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--teal-lt); }
.recv-ico {
  width: 52px; height: 52px; margin-bottom: 1.2rem; border-radius: 14px;
  display: grid; place-items: center; background: var(--teal-pale); color: var(--teal-dk);
}
.recv-ico svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.recv h3 { font-size: var(--fs-h3); font-weight: 800; color: var(--navy); margin-bottom: .6rem; }
.recv p { font-size: .94rem; color: var(--text-md); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════
   PROCESS — 12 authoritative steps, grouped into 4 phases
   ═══════════════════════════════════════════════════════ */
.process { padding: var(--bay) 0; background: var(--cream); position: relative; }
.phases { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: clamp(1rem,1.8vw,1.5rem); align-items: stretch; }
@media (max-width: 1000px) { .phases { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px)  { .phases { grid-template-columns: 1fr; } }
.phase {
  position: relative; display: flex; flex-direction: column;
  padding: 1.85rem 1.6rem;
  background: #fff; border-radius: var(--radius-lg);
  border-top: 4px solid var(--teal);
  box-shadow: 0 2px 12px rgba(13,44,58,.06);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.phase:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.phase:nth-child(2) { border-top-color: var(--teal-lt); }
.phase:nth-child(3) { border-top-color: var(--ember); }
.phase:nth-child(4) { border-top-color: var(--rust); }
.phase-n {
  font-family: var(--font-head); font-size: 2.6rem; font-weight: 800;
  line-height: 1; color: rgba(13,44,58,.12); margin-bottom: .3rem;
}
.phase h3 { font-size: var(--fs-h3); font-weight: 800; color: var(--navy); margin-bottom: 1rem; }
.phase ol { list-style: none; counter-reset: s; }
.phase li {
  display: grid; grid-template-columns: 1.95rem minmax(0,1fr);
  align-items: start; gap: .1rem;
  counter-increment: s; margin-bottom: .62rem;
  font-size: .9rem; font-weight: 600; line-height: 1.5; color: var(--text-md);
}
.phase li::before {
  content: counter(s, decimal-leading-zero);
  justify-self: start; margin-top: .1rem;
  font-family: var(--font-body); font-size: .68rem; font-weight: 900;
  color: var(--teal-dk); background: #fff; border: 1px solid var(--border);
  border-radius: 6px; padding: .12rem .34rem; letter-spacing: -.02em;
}
.phase:nth-child(1) ol { counter-reset: s 0; }
.phase:nth-child(2) ol { counter-reset: s 3; }
.phase:nth-child(3) ol { counter-reset: s 5; }
.phase:nth-child(4) ol { counter-reset: s 8; }

/* Squatch guide band — appears after the process, reading blueprints */
.sq-band {
  display: grid; grid-template-columns: clamp(130px, 15vw, 200px) minmax(0,1fr);
  gap: clamp(1.1rem, 2.5vw, 2.4rem); align-items: center;
  max-width: 880px; margin: clamp(2.6rem,5vw,4rem) auto 0;
  padding: clamp(1.4rem,2.6vw,2.1rem) clamp(1.3rem,2.6vw,2.3rem);
  background: var(--slate-dp); border: 2px dashed var(--teal);
  border-radius: var(--radius-xl);
}
.sq-band img { width: 100%; height: auto; filter: drop-shadow(0 12px 16px rgba(13,44,58,.16)); }
.sq-band { column-gap: clamp(1.6rem, 3vw, 2.8rem); }
.sq-band-copy h3 { font-size: var(--fs-h3); font-weight: 800; color: var(--navy); margin-bottom: .5rem; }
.sq-band-copy p { font-size: .97rem; color: var(--text-md); line-height: 1.7; margin-bottom: .9rem; }

/* ═══════════════════════════════════════════════════════
   PROJECTS — real families, editorial cards
   ═══════════════════════════════════════════════════════ */
/* deeper cool: breaks the cream->sand warm-on-warm transition */
.projects { padding: var(--bay) 0; background: var(--slate-dp);
  border-block: 1px solid rgba(13,44,58,.08); }
.proj-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(288px,1fr)); gap: clamp(1.1rem,2vw,1.7rem); }
.proj {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border-radius: var(--radius-lg); text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.proj:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.proj-img { position: relative; aspect-ratio: 16/11; overflow: hidden; background: var(--bg-alt); }
.proj-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.proj:hover .proj-img img { transform: scale(1.055); }
.proj-place {
  position: absolute; left: .8rem; bottom: .8rem;
  padding: .3rem .8rem; border-radius: 100px;
  background: rgba(7,28,38,.8); backdrop-filter: blur(5px);
  font-size: .68rem; font-weight: 900; letter-spacing: .08em;
  text-transform: uppercase; color: #fff;
}
.proj-body { padding: 1.5rem 1.55rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.proj-body h3 { font-size: var(--fs-h3); font-weight: 800; color: var(--navy); margin-bottom: .55rem; }
.proj-body p { font-size: .93rem; color: var(--text-md); line-height: 1.68; margin-bottom: 1.2rem; }
.proj-body .tlink { margin-top: auto; }

/* ═══════════════════════════════════════════════════════
   FAMILIES — testimonials
   ═══════════════════════════════════════════════════════ */
/* warm band between two cool ones */
.voices { padding: var(--bay) 0; background: var(--cream-wm);
  border-bottom: 1px solid rgba(13,44,58,.08); }
.voices-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(292px,1fr)); gap: clamp(1.1rem,2vw,1.7rem); }
.voice {
  position: relative; display: flex; flex-direction: column;
  padding: 2.3rem 1.8rem 1.8rem; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(13,44,58,.05);
}
.voice::before {
  content: '\201C'; position: absolute; top: -.4rem; left: 1.2rem;
  font-family: var(--font-head); font-size: 5.2rem; font-weight: 900;
  line-height: 1; color: var(--teal-lt); opacity: .28;
}
.voice blockquote { position: relative; font-size: .98rem; line-height: 1.78; color: var(--text-md); margin-bottom: 1.5rem; }

/* Attribution = the family's home, titled. No dark slab. */
.voice-home { display: block; margin-top: auto; text-decoration: none; }
.voice-home figure { margin: 0; }
.voice-home .vh-img {
  overflow: hidden; border-radius: var(--radius); aspect-ratio: 16/10;
  background: var(--bg-alt); border: 1px solid var(--border);
}
.voice-home .vh-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .7s var(--ease);
}
.voice-home:hover .vh-img img { transform: scale(1.05); }
.voice-home figcaption { padding-top: .85rem; }
.voice-home .vh-name {
  display: block; font-family: var(--font-head); font-size: 1.02rem;
  font-weight: 800; color: var(--navy); line-height: 1.3;
}
.voice-home .vh-place { display: block; font-size: .79rem; font-weight: 700; color: var(--text-lt); margin-top: .18rem; }
.voice-home .vh-go { display: inline-block; margin-top: .6rem; font-size: .82rem; font-weight: 800; color: var(--teal-dk); }
.voice-home:hover .vh-go { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════
   TEAM PREVIEW + COMMUNITY
   ═══════════════════════════════════════════════════════ */
.team { padding: var(--bay) 0; background: var(--cream);
  border-bottom: 1px solid rgba(13,44,58,.08); }
.team-group { margin-bottom: 2.6rem; }
.team-group:last-of-type { margin-bottom: 2.2rem; }
.team-group-head {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem;
}
.team-group-head::before, .team-group-head::after {
  content: ''; flex: 1; height: 1px; background: rgba(13,44,58,.14);
}
.team-group-head h3 {
  font-family: var(--font-head); font-size: .82rem; font-weight: 800;
  letter-spacing: .13em; text-transform: uppercase; color: var(--teal-dk);
  white-space: nowrap;
}
.team-row { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(.9rem,1.8vw,1.5rem);
  max-width: 910px; margin: 0 auto; }
.tm {
  width: 150px; padding: 1.4rem .8rem 1.2rem; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius);
  text-align: center; text-decoration: none;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.tm:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.tm img { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; margin: 0 auto .8rem; border: 3px solid var(--teal-pale); display: block; }
.tm img.tm-ph { object-fit: contain; background: var(--teal-pale); padding: 6px; }
.tm b { display: block; font-family: var(--font-head); font-size: .95rem; font-weight: 800; color: var(--navy); margin-bottom: .15rem; }
.tm span { font-size: .74rem; font-weight: 700; line-height: 1.4; color: var(--text-lt); display: block; }
.tm .tm-cred{margin-top:.35rem;font-size:.66rem;font-weight:800;letter-spacing:.02em;line-height:1.35;color:var(--teal-dk,#1C7C8C)}
.tm-join { display: grid; place-items: center; border-style: dashed; border-color: var(--teal-lt); background: var(--teal-pale); }
.tm-join .plus {
  width: 68px; height: 68px; border-radius: 50%; background: #fff; color: var(--teal);
  display: grid; place-items: center; font-size: 1.9rem; font-weight: 300;
  margin-bottom: .8rem; border: 3px solid var(--teal-pale);
}

.give { padding: var(--bay) 0; background: linear-gradient(160deg, var(--teal-dk), var(--navy)); color: #fff; position: relative; overflow: hidden; }
.give-grid { position: relative; display: grid; grid-template-columns: minmax(0,1fr) minmax(0,.92fr); gap: clamp(2rem,4vw,4rem); align-items: center; }
.give h2 { font-size: var(--fs-h2); font-weight: 800; color: #fff; margin-bottom: 1.1rem; }
.give p { color: rgba(255,255,255,.82); font-size: var(--fs-lead); line-height: 1.76; margin-bottom: 1.1rem; }
.give-btns { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.9rem; }
.give-pics { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.give-pics img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--radius); border: 1px solid rgba(255,255,255,.18);
}
.give-pics img:first-child { grid-column: span 2; aspect-ratio: 16/9; }

/* ═══════════════════════════════════════════════════════
   FINAL CALL — Squatch beside the house he helped draw
   ═══════════════════════════════════════════════════════ */
.final { padding: var(--bay) 0 0; background: var(--sand); position: relative; overflow: hidden; }
.final-grid {
  position: relative; display: grid;
  grid-template-columns: minmax(0,1fr) clamp(260px, 33vw, 460px);
  gap: clamp(1.5rem,3.5vw,3.2rem); align-items: end;
}
.final-copy { padding-bottom: clamp(3rem,6vw,5rem); }
.final h2 { font-size: var(--fs-h2); font-weight: 800; color: var(--navy); margin-bottom: 1.1rem; text-wrap: balance; }
.final h2 em { font-style: italic; color: var(--teal); }
.final p { font-size: var(--fs-lead); color: var(--text-md); line-height: 1.76; margin-bottom: 1.1rem; max-width: 50ch; }
.final-btns { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.9rem; }
.final-note { margin-top: 1.3rem; font-size: .86rem; font-weight: 700; color: var(--text-lt); }
.final-sq .sq-art { filter: drop-shadow(0 16px 20px rgba(13,44,58,.18)); }
.final-sq .sq-bubble { background: var(--navy); border-color: var(--teal); animation: none; }
.final-sq .sq-bubble p { color: #fff; }
.final-sq .sq-bubble .sq-name { color: #8FDCEC; }


/* ═══════════════════════════════════════════════════════
   FOOTER — full site map
   ═══════════════════════════════════════════════════════ */
footer { background: var(--navy-dp); color: rgba(255,255,255,.68); padding: clamp(3rem,6vw,4.5rem) 0 0; }
.f-grid {
  max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter);
  display: grid; grid-template-columns: minmax(0,1.5fr) repeat(3, minmax(0,1fr));
  gap: clamp(1.6rem,3vw,2.8rem);
}
.f-brand .logo-row { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.1rem; }
.f-brand .logo-row img { width: 42px; height: 42px; object-fit: contain; }
.f-brand .logo-row span { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; color: #fff; }
.f-brand p { font-size: .9rem; line-height: 1.75; margin-bottom: 1.4rem; max-width: 40ch; }
.f-social { display: flex; flex-wrap: wrap; gap: .6rem; }
.f-social a {
  padding: .55rem 1.15rem; border-radius: 100px; text-decoration: none;
  font-size: .84rem; font-weight: 800; color: #fff;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18);
  transition: background .25s ease, border-color .25s ease;
}
.f-social a:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.4); }
.f-col h4 {
  font-family: var(--font-body); font-size: .68rem; font-weight: 900;
  letter-spacing: .16em; text-transform: uppercase; color: #7FD4E4;
  margin-bottom: 1.05rem;
}
.f-col ul { list-style: none; }
.f-col li { margin-bottom: .58rem; }
.f-col a { font-size: .89rem; font-weight: 600; text-decoration: none; transition: color .2s ease, padding-left .2s ease; }
.f-col a:hover { color: #fff; padding-left: .25rem; }
.f-bottom {
  max-width: var(--shell); margin: clamp(2.4rem,4vw,3.4rem) auto 0;
  padding: 1.5rem var(--gutter); border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
  justify-content: space-between; font-size: .83rem;
}
.f-bottom a { color: #7FD4E4; text-decoration: none; font-weight: 700; }
.badge-501 {
  padding: .35rem .95rem; border-radius: 100px; font-size: .72rem; font-weight: 900;
  letter-spacing: .08em; text-transform: uppercase;
  background: rgba(127,212,228,.14); color: #7FD4E4; border: 1px solid rgba(127,212,228,.3);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — one coherent set of breakpoints
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 1.6rem; }
  .hero-copy { text-align: center; max-width: 60ch; }
  .hero-copy .eyebrow, .hero-tag { justify-content: center; }
  .hero-mark { margin-inline: auto; }
  .hero-sub { margin-inline: auto; }
  .hero-free { border-left: 0; border-top: 3px solid var(--ember); padding: .8rem 0 0; display: inline-block; }
  .hero-actions { justify-content: center; }
  .sq-unit { max-width: 330px; margin-inline: auto; --sq-gap: 30px; }
  .hero-draft { opacity: .3; right: -22%; }
  .proof-grid, .give-grid, .final-grid { grid-template-columns: 1fr; }
  .proof-grid { gap: 2.4rem; }
  .final-grid { justify-items: center; }
  .final-copy { padding-bottom: 0; text-align: center; }
  .final-copy .eyebrow { justify-content: center; }
  .final p { margin-inline: auto; }
  .final-btns { justify-content: center; }
  .final-sq { max-width: 380px; }
  .f-grid { grid-template-columns: 1fr 1fr; }
  .f-brand { grid-column: span 2; }
}
@media (max-width: 760px) {
  :root { --bay: 3.6rem; }
  .promise-grid { grid-template-columns: 1fr 1fr; gap: .5rem 0; padding-block: 1.1rem; }
  .promise-cell { padding: .5rem .9rem; }
  .promise-cell:nth-child(odd) { border-left: 0; padding-left: 0; }
  .promise-cell b { font-size: 1.15rem; }
  .doors-inner { grid-template-columns: 1fr; }
  .sq-band { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .sq-band img { max-width: 170px; }
  .give-pics { grid-template-columns: 1fr 1fr; }
  .f-grid { grid-template-columns: 1fr; }
  .f-brand { grid-column: auto; }
  .f-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero { min-height: 0; padding-top: 5.2rem; }
  .hero-tag { margin-bottom: .85rem; font-size: .67rem; padding: .36rem .8rem .36rem .6rem; }
  .hero h1 { margin-bottom: .8rem; }
  .hero-sub { font-size: 1rem; margin-bottom: .65rem; }
  .hero-free { margin-bottom: 1.1rem; padding-top: .65rem; font-size: .97rem; }
  .hero-inner { padding-bottom: 1.1rem; gap: .8rem; }
  .hero-actions { gap: .6rem; }
  .sq-unit { max-width: 290px; --sq-gap: 26px; }
  .sq-bubble { padding: .9rem 1rem; }
  .promise-grid { grid-template-columns: 1fr; }
  .promise-cell { border-left: 0; padding-left: 0; }
  .btn { width: 100%; }
  .hero-actions, .door-btns, .mission-btns, .final-btns, .give-btns { width: 100%; }
  .tm { width: 132px; }
}

/* Respect motion preferences — no exceptions */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; }
  .draw { stroke-dashoffset: 0; }
}
