/* Netbreakers, direction B: "Overflow". More than the frame can hold.
   Brand kit: Midnight Navy, Slate Blue, Mist Gray, Warm White, Copper (as metal, used sparingly). */
:root {
  --ink-0: #070A10;          /* deepest, derived from Midnight Navy */
  --bg: #0B1019;             /* page ground */
  --bg-2: #111825;           /* raised band */
  --navy: #18202F;           /* Midnight Navy */
  --navy-2: #222C3E;
  --slate: #68748A;          /* Slate Blue */
  --mist: #DCE1E6;           /* Mist Gray */
  --white: #FAF7F2;          /* Warm White */
  --paper: #FFFFFF;
  --copper: #B8734F;         /* accent fills, marks */
  --copper-deep: #9C5E3F;    /* under white text (AA) */
  --copper-light: #D08A63;   /* copper text on navy (AA) */
  --metal: linear-gradient(104deg, #7C4A2F 0%, #B8734F 30%, #DCA682 48%, #C58157 60%, #8E5638 100%);

  --role-served: #DCE1E6;
  --role-directed: #B8734F;
  --role-mc: #E8C39E;
  --role-ads: #7F9BC4;

  --display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Hanken Grotesk", system-ui, sans-serif;

  --wrap: 1240px;
  --gutter: clamp(16px, 4vw, 48px);
  --edge: max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter)));
  --sec: clamp(72px, 10vw, 144px);
  --head: 76px;

  /* dark context (default) */
  --fg: #F3EFE8;
  --fg-2: #AEB6C2;
  --accent: var(--copper-light);
  --rule: rgba(220, 225, 230, .13);
  --inv: #0B1019;
  --inv-accent: var(--copper-deep);
}
/* light context: tools and forms, where readability matters */
.section--tool, .nb-form, .give-box, .light {
  --fg: #18202F;
  --fg-2: #4F596B;
  --accent: var(--copper-deep);
  --rule: #DCE1E6;
  --inv: #FFFFFF;
  --inv-accent: var(--copper-light);
  color: var(--fg);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0; background: var(--bg); color: var(--fg);
  font-family: var(--sans); font-size: 18px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-underline-offset: .2em; text-decoration-thickness: 1px; }
a:hover { text-decoration-thickness: 2px; }
:focus-visible { outline: 2px solid var(--copper-light); outline-offset: 3px; }
h1, h2, h3 { margin: 0 0 .5em; text-wrap: balance; color: var(--fg); }
h1 { font-family: var(--display); font-weight: 850; text-transform: uppercase; font-size: clamp(3.1rem, 8vw, 8rem); line-height: .88; letter-spacing: -.005em; }
h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.3rem, 4.6vw, 4.2rem); line-height: 1; letter-spacing: -.012em; }
h3 { font-family: var(--sans); font-weight: 700; font-size: 1.25rem; line-height: 1.25; letter-spacing: -.01em; }
p { margin: 0 0 1em; text-wrap: pretty; }
strong { font-weight: 700; }
.nowrap { white-space: nowrap; }
.visually-hidden, .hp { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--white); color: var(--navy); padding: 10px 14px; z-index: 100; }
.skip:focus { left: 8px; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.small { font-size: .9rem; color: var(--fg-2); }
.tk { background: #FFF1B8; color: #5B4300; font-size: .85em; padding: 1px 6px; border-radius: 2px; font-weight: 600; font-family: var(--sans); letter-spacing: 0; text-transform: none; font-style: normal; }

.eyebrow { display: flex; align-items: center; gap: 12px; font-size: .78rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.4em; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; flex: none; }
.lede { font-size: clamp(1.08rem, 1.5vw, 1.25rem); line-height: 1.55; color: var(--fg-2); max-width: 36em; }

/* Buttons: square, crisp, copper like a machined plate */
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px;
  padding: 12px 24px; border-radius: 2px; border: 0; cursor: pointer;
  background: var(--copper-deep); color: #fff; font: inherit; font-weight: 700; font-size: .98rem; letter-spacing: .01em;
  text-decoration: none; box-shadow: inset 0 1px 0 rgba(255, 226, 200, .28), inset 0 -1px 0 rgba(0, 0, 0, .18);
  transition: background .2s, transform .2s;
}
.btn:hover { background: #87502F; }
.btn:active { transform: translateY(1px); }
.btn--big { min-height: 58px; padding: 14px 30px; font-size: 1.04rem; }
.btn--small { min-height: 44px; padding: 8px 18px; font-size: .92rem; }
.btn--ghost { background: transparent; color: var(--fg); box-shadow: inset 0 0 0 1px var(--fg); }
.btn--ghost:hover { background: var(--fg); color: var(--inv); }
.btn-text { background: none; border: 0; font: inherit; color: var(--fg-2); text-decoration: underline; text-underline-offset: .2em; cursor: pointer; min-height: 44px; padding: 8px; }
.btn[aria-disabled="true"] { opacity: .55; pointer-events: none; }
.link-arrow { display: inline-flex; align-items: center; min-height: 44px; font-weight: 700; color: var(--fg); text-decoration: none; gap: .55em; }
.link-arrow::after { content: "\2192"; color: var(--accent); transition: transform .2s; }
.link-arrow:hover::after { transform: translateX(5px); }

/* Header: no rule under it, ever */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--bg); transition: background .3s; }
.site-header.is-scrolled { background: rgba(9, 13, 20, .97); }
.page-index .site-header:not(.is-scrolled) { background: transparent; }
body.menu-open .site-header { background: var(--bg) !important; }
.header-row { display: flex; align-items: center; gap: 24px; min-height: var(--head); }
.brand { display: inline-flex; align-items: center; text-decoration: none; color: var(--fg); min-height: 44px; }
.brand-name { display: inline-flex; align-items: center; font-family: var(--display); font-weight: 800; font-size: 1.55rem; line-height: 1; letter-spacing: .08em; text-transform: uppercase; color: var(--fg); margin: 0; }
.brand-name i { width: 1px; height: 1.05em; margin: 0 .3em 0 .34em; background: var(--copper); transform: skewX(-18deg); }
.nav { margin-left: auto; }
.nav ul { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 12px; color: #C9D0D8; text-decoration: none; font-weight: 600; font-size: .92rem; transition: color .2s; }
.nav a:hover { color: #fff; }
.nav a[aria-current="page"] { color: #fff; box-shadow: inset 0 -1px 0 var(--copper-light); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.menu-btn { display: none; min-height: 44px; min-width: 72px; padding: 0 16px; border-radius: 2px; border: 1px solid rgba(243, 239, 232, .55); background: transparent; font: inherit; font-weight: 700; font-size: .92rem; letter-spacing: .06em; text-transform: uppercase; color: var(--fg); cursor: pointer; }
.mobile-nav { background: var(--bg); }
.mobile-nav ul { list-style: none; margin: 0; padding: 8px var(--gutter) 32px; }
.mobile-nav a { display: flex; align-items: center; min-height: 56px; font-family: var(--display); text-transform: uppercase; letter-spacing: .02em; font-size: 1.7rem; font-weight: 800; color: var(--fg); text-decoration: none; border-bottom: 1px solid var(--rule); }

/* ============ HERO: the flood ============ */
.hero { position: relative; margin-top: calc(-1 * var(--head)); min-height: max(760px, 100svh); background: var(--bg); overflow: clip; display: flex; align-items: flex-end; isolation: isolate; }
.flood { position: absolute; z-index: 0; top: -8%; bottom: -8%; left: 50%; right: -240px; display: flex; gap: 10px; margin: 0; }
.flood-col { flex: 0 0 clamp(160px, 13.5vw, 230px); }
.flood-col--1 { margin-top: -180px; }
.flood-col--2 { margin-top: -60px; }
.flood-col--3 { margin-top: -260px; }
.flood-col--4 { margin-top: -120px; }
.flood-col--5 { margin-top: -220px; }
.flood-run { animation: flood-up 120s linear infinite; will-change: transform; }
.flood-col:nth-child(even) .flood-run { animation-name: flood-down; animation-duration: 150s; }
.flood-col--2 .flood-run { animation-duration: 100s; }
.flood-col--4 .flood-run { animation-duration: 135s; }
.flood-run img { width: 100%; height: auto; margin: 0 0 10px; background: var(--navy); }
@keyframes flood-up { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(0, -33.3333%, 0); } }
@keyframes flood-down { from { transform: translate3d(0, -33.3333%, 0); } to { transform: translate3d(0, 0, 0); } }
/* the calm: a dark field where the headline sits, and a fade into the page below */
.hero::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background:
  linear-gradient(90deg, var(--bg) 0, var(--bg) 47%, rgba(11, 16, 25, .7) 52%, rgba(11, 16, 25, .1) 62%, rgba(11, 16, 25, 0) 72%),
  linear-gradient(0deg, var(--bg) 0, rgba(11, 16, 25, 0) 22%),
  linear-gradient(180deg, rgba(11, 16, 25, .94) 0, rgba(11, 16, 25, .55) 80px, rgba(11, 16, 25, 0) 170px); }
/* the frame the photos refuse to stay inside */
.hero-frame { position: absolute; z-index: 2; pointer-events: none; top: calc(var(--head) + 28px); bottom: 40px; left: var(--edge); right: var(--edge); border: 1px solid rgba(243, 239, 232, .16); }
.hero-frame i { position: absolute; width: 22px; height: 22px; border: 0 solid var(--copper-light); }
.hero-frame i:nth-child(1) { top: -12px; left: -12px; border-width: 1px 0 0 1px; }
.hero-frame i:nth-child(2) { top: -12px; right: -12px; border-width: 1px 1px 0 0; }
.hero-frame i:nth-child(3) { bottom: -12px; left: -12px; border-width: 0 0 1px 1px; }
.hero-frame i:nth-child(4) { bottom: -12px; right: -12px; border-width: 0 1px 1px 0; }
.hero-inner { position: relative; z-index: 3; width: 100%; }
.hero-copy { max-width: 600px; padding: calc(var(--head) + 72px) 0 clamp(72px, 9vh, 104px) clamp(0px, 2.4vw, 36px); }
.hero-title { margin-bottom: .45em; }
.ht-a { display: block; font-size: clamp(3.4rem, 7.2vw, 7.4rem); line-height: .86; }
.ht-b { display: block; margin-top: .22em; font-family: var(--serif); font-style: italic; font-weight: 400; text-transform: none; letter-spacing: -.01em; font-size: clamp(2.1rem, 3.9vw, 3.9rem); line-height: 1.02; color: var(--copper-light); }
.hero .lede { color: #BCC4CF; max-width: 27em; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 28px; margin-top: 30px; }
.hero-where { margin: 26px 0 0; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: #9AA3B0; }

/* ============ Sections ============ */
.section { padding: var(--sec) 0; position: relative; }
.section--alt { background: var(--bg-2); }
.section-head { max-width: 46em; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head p:not(.eyebrow) { color: var(--fg-2); font-size: 1.1rem; max-width: 36em; }

/* Sub-page heroes: huge type, then a run of photos that spills off the right edge */
.page-hero { padding: clamp(56px, 9vw, 120px) 0 clamp(40px, 5vw, 72px); overflow: clip; background: var(--bg); }
.page-hero h1 { max-width: 13ch; margin-bottom: .32em; font-size: clamp(3.3rem, 9.4vw, 10rem); }
.page-hero .lede { margin-bottom: 0; }
.spill { margin-top: clamp(40px, 5vw, 64px); padding-left: var(--edge); overflow: clip; }
.spill-row { display: flex; gap: 10px; width: max-content; }
.spill-row img { height: clamp(150px, 19vw, 280px); width: auto; flex: none; }
.spill-row img:nth-child(3n+2) { margin-top: clamp(24px, 3vw, 48px); }
.section--contact-page .spill { margin: 0 0 clamp(48px, 6vw, 80px); }

/* ============ Stats: abundance ============ */
.section--stats { padding: clamp(56px, 7vw, 104px) 0 clamp(72px, 9vw, 128px); background: var(--bg); overflow: clip; }
.stats { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: 24px; row-gap: 0; }
.stats li { grid-column: span 2; border-top: 1px solid var(--rule); padding: 20px 0 28px; }
.stats li:nth-child(-n+3) { grid-row: 1; }
.stats li:nth-child(n+4):not(:last-child) { grid-row: 2; }
.stats li:nth-child(1) { grid-column: 7 / span 2; }
.stats li:nth-child(2) { grid-column: 9 / span 2; }
.stats li:nth-child(3) { grid-column: 11 / span 2; }
.stats li:nth-child(4) { grid-column: 7 / span 2; }
.stats li:nth-child(5) { grid-column: 9 / span 2; }
.stats strong { display: block; font-family: var(--display); font-weight: 800; font-size: clamp(3.6rem, 6.4vw, 6.6rem); line-height: .82; color: var(--fg); letter-spacing: -.01em; }
.stats span { display: block; margin-top: 14px; font-size: .9rem; line-height: 1.35; color: var(--fg-2); max-width: 14em; }
.stats li:last-child { grid-column: 1 / span 6; grid-row: 1 / span 2; border-top: 0; padding: 0; align-self: end; position: relative; }
.stats li:last-child strong { font-size: clamp(10rem, 27vw, 25rem); line-height: .74; letter-spacing: -.03em; margin-left: -.05em; background: var(--metal); -webkit-background-clip: text; background-clip: text; color: transparent; padding-top: .06em; }
.stats li:last-child span { font-size: 1rem; color: var(--fg); margin-top: 22px; letter-spacing: .02em; }
.stats-note { margin: 40px 0 0; font-size: .9rem; color: var(--fg-2); }

/* ============ Offers ============ */
#what-we-do { background: var(--bg-2); }
.offers { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--rule); }
.offer { padding: 40px 48px 44px 0; border-bottom: 1px solid var(--rule); display: grid; grid-template-columns: 96px 1fr; column-gap: 16px; }
.offer:nth-child(even) { padding-left: 48px; border-left: 1px solid var(--rule); }
.offer > *:not(.offer-num) { grid-column: 2; }
.offer-num { grid-row: span 3; font-family: var(--display); font-weight: 800; font-size: 4rem; line-height: .8; color: transparent; -webkit-text-stroke: 1px var(--copper-light); }
.offer h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.7rem, 2.4vw, 2.2rem); line-height: 1.05; letter-spacing: -.01em; margin-bottom: .45em; }
.offer p { color: var(--fg-2); }
.offer-price { margin: 0; color: var(--fg) !important; }
.offer-price strong { color: var(--accent); }
.offer-price span { font-size: .9rem; color: var(--fg-2); }
.after-offers { margin-top: 32px; }

/* ============ Map ============ */
.section--map { background: var(--bg); }
.section-head--light p:not(.eyebrow) { color: var(--fg-2); }
.nb-map { position: relative; }
.map-stage svg { width: 100%; height: auto; display: block; }
.land { fill: #172031; stroke: #2B3649; stroke-width: 1; }
.land--other { fill: #111926; }
.borders--states { fill: none; stroke: #263145; stroke-width: .7; }
.dot { stroke: var(--bg); stroke-width: 2; cursor: pointer; transition: transform .2s, opacity .2s; transform-box: fill-box; transform-origin: center; opacity: .95; }
.dot:hover, .dot.is-active, .dot:focus-visible { transform: scale(1.3); outline: none; stroke: #fff; }
.dot.is-hidden { opacity: 0; pointer-events: none; }
.dot--served { fill: var(--role-served); }
.dot--directed { fill: var(--role-directed); }
.dot--mc { fill: var(--role-mc); }
.dot--ads { fill: var(--role-ads); }
.map-legend { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.legend-item { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; padding: 0 16px; border-radius: 2px; border: 1px solid var(--rule); background: transparent; color: var(--fg); font: inherit; font-size: .92rem; font-weight: 600; cursor: pointer; }
.legend-item:hover { border-color: rgba(243, 239, 232, .4); }
.legend-item i { width: 10px; height: 10px; border-radius: 50%; }
.legend-item[data-role="served"] i { background: var(--role-served); }
.legend-item[data-role="directed"] i { background: var(--role-directed); }
.legend-item[data-role="mc"] i { background: var(--role-mc); }
.legend-item[data-role="ads"] i { background: var(--role-ads); }
.legend-item[aria-pressed="false"] { opacity: .45; text-decoration: line-through; }
.map-card { position: absolute; left: 0; top: 64px; width: min(340px, 100%); background: var(--bg-2); color: var(--fg); border: 1px solid var(--rule); padding: 22px; box-shadow: 0 30px 60px rgba(0, 0, 0, .45); }
.map-card h3 { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 2rem; line-height: .95; margin-bottom: .45em; }
.map-card-close { position: absolute; right: 6px; top: 6px; width: 44px; height: 44px; border: 0; background: none; font-size: 1.6rem; cursor: pointer; color: var(--fg-2); }
.map-card-close:hover { color: var(--fg); }
.map-card-role { font-size: .74rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; margin-bottom: .5em; color: var(--copper-light); }
.map-card-list { list-style: none; padding: 0; margin: 0 0 14px; font-size: .95rem; }
.map-card-list li { padding: 6px 0; border-top: 1px solid var(--rule); }
.map-card-list span { color: var(--fg-2); }
.map-card-photos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; }
.map-card-photos img { aspect-ratio: 4/3; object-fit: cover; }
.sample-note { margin-top: 24px; font-size: .88rem; color: var(--fg-2); }
.sample-note--light { color: var(--fg-2); }

/* ============ Sizes widget ============ */
.section--sizes { background: var(--bg-2); }
.sizes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.sizes { background: var(--bg); border: 1px solid var(--rule); padding: clamp(24px, 3vw, 40px); }
.sizes-label { font-weight: 700; margin-bottom: 14px; }
.seg { display: inline-flex; flex-wrap: wrap; gap: 0; border: 1px solid var(--rule); border-radius: 2px; }
.seg button { min-height: 46px; min-width: 72px; padding: 0 18px; border: 0; border-radius: 0; background: transparent; font: inherit; font-weight: 700; font-size: .98rem; color: var(--fg); cursor: pointer; transition: background .2s, color .2s; }
.seg button + button { box-shadow: inset 1px 0 0 var(--rule); }
.seg button:hover { background: rgba(127, 140, 160, .12); }
.seg button small { font-weight: 700; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-left: 6px; }
.seg button[aria-checked="true"] { background: var(--fg); color: var(--inv); box-shadow: none; }
.seg button[aria-checked="true"] small { color: var(--inv-accent); }
.sizes-out { margin: 28px 0 0; display: grid; gap: 0; }
.sizes-out div { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 0; border-bottom: 1px solid var(--rule); }
.sizes-out dt { color: var(--fg-2); }
.sizes-out dd { margin: 0; font-family: var(--display); font-weight: 800; font-size: 2.6rem; line-height: 1; }
.sizes-out div:last-child dd { color: var(--copper-light); }

/* ============ Tools: one big, two stacked ============ */
.section--tools { background: var(--bg); }
.tools { display: grid; grid-template-columns: 1.35fr 1fr; grid-template-rows: repeat(2, minmax(280px, auto)); gap: 12px; }
.tool { position: relative; display: flex; align-items: flex-end; text-decoration: none; color: #fff; overflow: hidden; background: var(--navy); min-height: 280px; }
.tool:first-child { grid-row: span 2; min-height: 572px; }
.tool img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.85); transition: transform 1.2s cubic-bezier(.2, .7, .2, 1); }
.tool::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7, 10, 16, .94) 0, rgba(7, 10, 16, .7) 38%, rgba(7, 10, 16, .05) 75%); }
.tool:hover img { transform: scale(1.04); }
.tool-body { position: relative; z-index: 1; padding: 28px 30px 30px; display: grid; gap: 8px; max-width: 30em; }
.tool-body strong { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: clamp(2rem, 2.8vw, 2.6rem); line-height: .92; letter-spacing: .005em; }
.tool:first-child .tool-body strong { font-size: clamp(2.4rem, 4.4vw, 4.2rem); }
.tool-body strong::after { content: " \2192"; font-family: var(--sans); font-weight: 400; font-size: .6em; color: var(--copper-light); }
.tool-body span { color: #D3D8DF; font-size: 1rem; }

/* ============ Verse: the giant numerals break the grid ============ */
.section--verse { background: var(--ink-0); overflow: clip; }
.verse-big { position: absolute; right: -.08em; top: 50%; transform: translateY(-52%); font-family: var(--display); font-weight: 800; font-size: clamp(16rem, 44vw, 44rem); line-height: .8; letter-spacing: -.02em; color: transparent; -webkit-text-stroke: 1px rgba(208, 138, 99, .26); pointer-events: none; user-select: none; }
.verse-wrap { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: end; }
.verse { margin: 0; }
.verse blockquote { margin: 0 0 28px; }
.verse blockquote p { font-family: var(--serif); font-size: clamp(2.2rem, 4.6vw, 4.4rem); line-height: 1.04; font-style: italic; color: var(--fg); letter-spacing: -.01em; }
.verse figcaption { font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: .85rem; color: var(--copper-light); }
.verse figcaption span { display: block; margin-top: 6px; font-weight: 400; letter-spacing: 0; text-transform: none; font-size: 1rem; color: var(--fg-2); }
.verse-pair p { font-size: 1rem; color: var(--fg-2); border-top: 1px solid var(--rule); padding-top: 16px; }
.verse-pair span { display: block; font-weight: 700; color: var(--fg); letter-spacing: .14em; text-transform: uppercase; font-size: .8rem; margin-bottom: 6px; }

/* ============ Partner: the photo runs off the left edge ============ */
.section--partner { background: var(--bg); overflow: clip; }
.partner-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.partner-img { width: calc(100% + var(--edge)); max-width: none; margin-left: calc(-1 * var(--edge)); aspect-ratio: 5/6; object-fit: cover; object-position: 50% 40%; }
.split-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ============ Contact + forms ============ */
.section--contact { background: var(--bg-2); }
.section--contact .section-head p { color: var(--fg-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 88px); align-items: start; }
.call-line { font-family: var(--display); font-size: 2rem; font-weight: 800; }
.nb-form { background: var(--white); border-radius: 0; padding: clamp(22px, 3vw, 40px); box-shadow: 0 40px 80px rgba(0, 0, 0, .35); }
.form-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 18px; margin-bottom: 22px; }
.field { display: grid; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: .92rem; }
.opt { font-weight: 400; color: var(--fg-2); }
input, select, textarea { font: inherit; font-size: 1rem; color: #18202F; width: 100%; min-height: 50px; padding: 10px 14px; border: 1px solid #A9B2BE; border-radius: 0; background: #fff; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(184, 115, 79, .35); }
.is-invalid { border-color: #B3261E !important; }
.form-note { margin: 12px 0 0; font-size: .9rem; color: var(--fg-2); }
.form-done, .form-error { padding: 16px; margin-top: 12px; }
.form-done { background: #E6EFE4; }
.form-error { background: #FBE7E4; }
.contact-lines { list-style: none; padding: 0; margin: 28px 0; }
.contact-lines li { padding: 12px 0; border-bottom: 1px solid var(--rule); }
.contact-lines span { display: inline-block; min-width: 100px; font-weight: 700; }
.section--contact-page { padding-top: clamp(24px, 3vw, 40px); overflow: clip; }
.section--contact-page h1 { font-size: clamp(3rem, 7vw, 6.4rem); }
.serve-img { margin-top: 28px; aspect-ratio: 16/10; object-fit: cover; width: 100%; }

/* ============ What we do ============ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.price-rows { list-style: none; padding: 0; margin: 0 0 16px; border-top: 1px solid var(--rule); }
.price-rows li { display: flex; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--rule); }
.price-rows strong { white-space: nowrap; color: var(--accent); }
.steps { list-style: none; counter-reset: s; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0; border-top: 1px solid var(--rule); }
.steps li { counter-increment: s; position: relative; padding: 96px 28px 32px 0; color: var(--fg-2); border-bottom: 1px solid var(--rule); }
.steps li + li { padding-left: 28px; border-left: 1px solid var(--rule); }
.steps li::before { content: counter(s, decimal-leading-zero); position: absolute; top: 20px; font-family: var(--display); font-weight: 800; font-size: 3.6rem; line-height: 1; color: transparent; -webkit-text-stroke: 1px var(--copper-light); }
.steps strong { display: block; color: var(--fg); font-size: 1.2rem; margin-bottom: 6px; }
.plain-list { padding-left: 0; list-style: none; border-top: 1px solid var(--rule); }
.plain-list li { padding: 12px 0 12px 28px; border-bottom: 1px solid var(--rule); position: relative; color: var(--fg-2); }
.plain-list li::before { content: ""; position: absolute; left: 0; top: 1.3em; width: 14px; height: 1px; background: var(--copper-light); }

/* ============ Tools pages (light, crisp) ============ */
.section--tool { background: var(--white); padding-top: clamp(48px, 6vw, 80px); }
.budget-size { margin-bottom: 32px; }
.seg--wide button { min-width: 80px; }
.budget-main { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.b-group { border: 0; margin: 0 0 28px; padding: 0; }
.b-group legend { font-weight: 700; font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--copper-deep); margin-bottom: 10px; }
.b-group ul { list-style: none; margin: 0; padding: 0; background: var(--paper); border: 1px solid var(--mist); }
.b-item { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; padding: 12px 18px; border-bottom: 1px solid var(--mist); }
.b-item:last-child { border-bottom: 0; }
.b-item:not(.is-on) .b-label { color: #6F7887; }
.b-label small { display: block; font-size: .85rem; color: var(--fg-2); }
.switch { position: relative; width: 48px; height: 44px; border: 0; background: none; cursor: pointer; padding: 0; }
.switch span { position: absolute; left: 0; top: 11px; width: 48px; height: 22px; border-radius: 2px; background: #C4CBD3; transition: background .2s; }
.switch span::after { content: ""; position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; border-radius: 1px; background: #fff; transition: transform .2s; box-shadow: 0 1px 3px rgba(0, 0, 0, .25); }
.switch[aria-checked="true"] span { background: var(--navy); }
.switch[aria-checked="true"] span::after { transform: translateX(26px); background: var(--copper-light); }
.switch:disabled { cursor: default; opacity: .7; }
.b-amt { display: flex; align-items: center; gap: 6px; font-weight: 700; }
.b-amt input { width: 112px; text-align: right; min-height: 44px; font-variant-numeric: tabular-nums; }
.b-amt input:disabled { background: var(--white); color: #6F7887; border-color: var(--mist); }
.budget-summary { position: sticky; top: calc(var(--head) + 20px); background: var(--bg); color: var(--white); padding: 32px; --fg: #F3EFE8; --fg-2: #AEB6C2; --accent: var(--copper-light); --rule: rgba(220, 225, 230, .13); }
.budget-summary::before { content: ""; display: block; width: 40px; height: 2px; background: var(--metal); margin-bottom: 20px; }
.sum-label { font-weight: 700; font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: #C9D0D8; margin: 0; }
.sum-total { font-family: var(--display); font-size: 5rem; font-weight: 800; line-height: .9; margin: 10px 0 20px; letter-spacing: -.01em; font-variant-numeric: tabular-nums; }
.sum-rows { margin: 0 0 24px; }
.sum-rows div { display: flex; justify-content: space-between; padding: 12px 0; border-top: 1px solid var(--rule); }
.sum-rows dt { color: #C9D0D8; }
.sum-rows dd { margin: 0; font-weight: 700; }
.budget-summary .btn { width: 100%; }
.budget-summary .btn-text { color: #C9D0D8; }
.budget-summary .small, .budget-summary .small a { color: #C9D0D8; }
.section--tool .sample-note { color: var(--fg-2); }

.tl-controls { display: flex; flex-wrap: wrap; gap: 24px 48px; align-items: end; margin-bottom: 40px; }
.field--date input { min-width: 220px; }
.tl-weeks { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 12px; }
.tl-week { background: var(--paper); border: 1px solid var(--mist); padding: 20px 20px 14px; }
.tl-week header { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; border-bottom: 1px solid var(--copper); padding-bottom: 10px; margin-bottom: 6px; }
.tl-week h2 { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 1.7rem; line-height: 1; letter-spacing: .01em; margin: 0; }
.tl-week header p { margin: 0; font-size: .85rem; font-weight: 600; color: var(--fg-2); }
.tl-week ul { list-style: none; margin: 0; padding: 0; }
.tl-task { display: flex; align-items: center; gap: 4px; border-bottom: 1px solid var(--mist); }
.tl-name { flex: 1; min-height: 44px; padding: 10px 4px; font-size: .98rem; line-height: 1.35; outline: none; }
.tl-name:focus { background: var(--white); box-shadow: inset 0 0 0 2px var(--copper); }
.tl-btns { display: flex; }
.tl-btns button { width: 36px; height: 44px; border: 0; background: none; cursor: pointer; color: var(--fg-2); font-size: 1rem; }
.tl-btns button:hover:not(:disabled) { background: var(--mist); color: var(--navy); }
.tl-btns button:disabled { opacity: .25; }
.tl-add { margin-top: 6px; min-height: 44px; border: 0; background: none; color: var(--copper-deep); font: inherit; font-weight: 700; cursor: pointer; padding: 0; }
.tl-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.tl-help { margin-top: 18px; }

/* ============ Events ============ */
.events-h { font-size: clamp(2rem, 3.4vw, 3rem); margin-top: 16px; }
.event-list { list-style: none; margin: 0 0 72px; padding: 0; display: grid; gap: 12px; }
.event { display: grid; grid-template-columns: 240px 1fr; gap: 28px; background: var(--bg-2); border: 1px solid var(--rule); overflow: hidden; }
.event img, .event-noimg { width: 100%; height: 100%; min-height: 170px; object-fit: cover; }
.event-noimg { background: var(--navy); color: var(--white); display: grid; place-content: center; text-align: center; }
.event-noimg b { display: block; font-family: var(--display); font-size: 4rem; font-weight: 800; line-height: 1; }
.event-noimg span { text-transform: uppercase; letter-spacing: .2em; font-weight: 700; font-size: .8rem; color: var(--copper-light); }
.event-body { padding: 24px 24px 24px 0; }
.event-date { font-weight: 700; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--copper-light); margin-bottom: .5em; }
.event h3 { font-family: var(--serif); font-weight: 400; font-size: 1.9rem; line-height: 1.05; margin-bottom: .3em; }
.event-where { color: var(--fg-2); margin-bottom: .3em; }
.event-role { font-size: .9rem; font-weight: 700; margin-bottom: .3em; }
.event--past { background: transparent; border: 0; border-bottom: 1px solid var(--rule); }
.event--past img { filter: saturate(.7) brightness(.85); }

/* ============ About ============ */
.page-hero--about { padding-bottom: 0; }
.about-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; }
.about-hero h1 { font-size: clamp(3.4rem, 8.4vw, 8.6rem); max-width: 9ch; padding-bottom: .3em; }
.about-photo { width: calc(100% + var(--edge)); max-width: none; aspect-ratio: 4/5; object-fit: cover; object-position: 50% 30%; margin-right: calc(-1 * var(--edge)); }
.prose { max-width: 44em; }
.prose p { font-size: 1.15rem; color: #D5DAE1; }
.prose .lede { font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.15; color: var(--fg); }
.prose .lede strong { font-weight: 400; font-style: italic; color: var(--copper-light); }
.sign { font-family: var(--serif); font-style: italic; font-size: 1.6rem !important; color: var(--fg) !important; }
.about-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.about-strip img { aspect-ratio: 3/4; object-fit: cover; width: 100%; }
.about-strip img:nth-child(even) { transform: translateY(40px); }
.verse-pair--light { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.about-mission { font-size: 1.1rem; color: var(--fg-2); }
.about-mission strong { color: var(--fg); }

/* ============ Give ============ */
.give-box { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; background: var(--white); padding: clamp(28px, 4vw, 56px); max-width: calc(var(--wrap) - 2 * var(--gutter)); }
.give-box h2 { font-size: clamp(3rem, 6vw, 5rem); }
.give-item { font-weight: 700; color: var(--copper-deep); }
.wish-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 0; border-top: 1px solid var(--rule); border-left: 1px solid var(--rule); }
.wish { padding: 28px; display: flex; flex-direction: column; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); transition: background .25s; }
.wish:hover { background: rgba(127, 140, 160, .06); }
.wish h3 { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 2.1rem; line-height: .95; letter-spacing: .005em; }
.wish p { color: var(--fg-2); }
.wish .btn { margin-top: auto; align-self: flex-start; background: transparent; color: var(--fg); box-shadow: inset 0 0 0 1px rgba(243, 239, 232, .5); }
.wish .btn:hover { background: var(--copper-deep); box-shadow: none; color: #fff; }
.wish-goal { font-size: .9rem; }

/* ============ Footer: the name, too big for the page ============ */
.site-footer { background: var(--ink-0); color: #C9D0D8; padding: 88px 0 0; font-size: .95rem; overflow: clip; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.brand-name--footer { color: #fff; font-size: 1.8rem; margin-bottom: 18px; }
.footer-h { color: #fff; font-weight: 700; font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1em; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer a { color: #C9D0D8; text-decoration: none; display: inline-flex; min-height: 44px; align-items: center; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-verse { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: #E4E7EB; line-height: 1.3; }
.footer-verse span { font-family: var(--sans); font-style: normal; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--copper-light); }
.social { list-style: none; padding: 0; display: flex; gap: 16px; margin-top: 12px !important; flex-wrap: wrap; }
.social--big a { color: var(--fg); min-height: 44px; padding: 0 18px; border: 1px solid rgba(243, 239, 232, .35); border-radius: 2px; text-decoration: none; }
.footer-base { border-top: 1px solid rgba(255, 255, 255, .08); margin-top: 56px; padding-top: 20px; }
.footer-base p { margin: 0; font-size: .82rem; color: #9AA3B0; }
.footer-giant { margin: 32px 0 0; font-family: var(--display); font-weight: 900; text-transform: uppercase; font-size: 16.6vw; line-height: .74; letter-spacing: -.01em; white-space: nowrap; color: #141C2B; text-align: center; height: .5em; overflow: hidden; user-select: none; }

.print-only { display: none; }

/* ============ Responsive ============ */
@media (max-width: 1120px) {
  .nav { display: none; }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .header-actions { margin-left: auto; }
}
@media (min-width: 1121px) { .mobile-nav { display: none !important; } }
@media (max-width: 960px) {
  .stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .stats li, .stats li:nth-child(n) { grid-row: auto; grid-column: auto; }
  .stats li:nth-child(n+4):not(:last-child) { grid-row: auto; }
  .stats li:last-child { grid-column: 1 / -1; order: -1; margin-bottom: 36px; }
  .stats li:last-child strong { font-size: clamp(9rem, 46vw, 20rem); }
}
@media (max-width: 860px) {
  :root { --head: 64px; }
  .offers, .sizes-grid, .partner-grid, .contact-grid, .split, .verse-wrap, .about-hero, .budget-main, .give-box, .verse-pair--light { grid-template-columns: 1fr; }
  .offer, .offer:nth-child(even) { padding: 32px 0; border-left: 0; grid-template-columns: 72px 1fr; }
  .offer-num { font-size: 3rem; }
  .tools { grid-template-columns: 1fr; grid-template-rows: none; }
  .tool:first-child { grid-row: auto; min-height: 420px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .partner-img { width: calc(100% + 2 * var(--gutter)); margin: 0 calc(-1 * var(--gutter)); aspect-ratio: 4/3; }
  .about-photo { width: calc(100% + 2 * var(--gutter)); margin: 0 calc(-1 * var(--gutter)); aspect-ratio: 1/1; }
  .about-hero { gap: 8px; }
  .steps li, .steps li + li { padding: 88px 0 28px; border-left: 0; }
  .budget-summary { position: sticky; bottom: 0; top: auto; margin: 0 calc(-1 * var(--gutter)); padding: 16px var(--gutter); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2px 16px; box-shadow: 0 -16px 40px rgba(0, 0, 0, .28); z-index: 5; }
  .budget-summary::before { display: none; }
  .budget-summary .sum-total { font-size: 2.8rem; margin: 0; grid-column: 1; }
  .budget-summary .sum-label { grid-column: 1; letter-spacing: .12em; font-size: .7rem; }
  .budget-summary .btn { grid-column: 2; grid-row: 1 / span 2; width: auto; min-height: 48px; padding: 10px 18px; }
  .budget-summary .sum-rows, .budget-summary .btn-text, .budget-summary .small { grid-column: 1 / -1; }
  .budget-summary .sum-rows { display: none; }
  .map-card { position: static; margin-top: 16px; width: 100%; }
  .event { grid-template-columns: 1fr; gap: 0; }
  .event img, .event-noimg { aspect-ratio: 16/9; min-height: 0; }
  .event-body { padding: 20px 20px 24px; }
  .event--past .event-body { padding: 16px 0 24px; }
  .verse-big { top: 0; transform: none; font-size: 62vw; right: -.1em; }

  /* hero: the flood pours over the top of the screen, the headline sits in the calm below */
  .hero { min-height: 100svh; }
  .flood { left: -64px; right: -64px; top: -40px; bottom: 48%; gap: 8px; }
  .flood-col { flex-basis: 34vw; }
  .flood-col--1 { margin-top: -90px; }
  .flood-col--3 { margin-top: -140px; }
  .flood-run img { margin-bottom: 8px; }
  .hero::before { background:
    linear-gradient(0deg, var(--bg) 0, var(--bg) 54%, rgba(11, 16, 25, .75) 60%, rgba(11, 16, 25, 0) 72%),
    linear-gradient(180deg, rgba(11, 16, 25, .8) 0, rgba(11, 16, 25, 0) 110px); }
  .hero-frame { top: calc(var(--head) + 14px); bottom: 20px; left: 12px; right: 12px; }
  .hero-frame i { width: 14px; height: 14px; }
  .hero-frame i:nth-child(1), .hero-frame i:nth-child(2) { top: -7px; }
  .hero-frame i:nth-child(3), .hero-frame i:nth-child(4) { bottom: -7px; }
  .hero-frame i:nth-child(1), .hero-frame i:nth-child(3) { left: -7px; }
  .hero-frame i:nth-child(2), .hero-frame i:nth-child(4) { right: -7px; }
  .hero-copy { padding: 44vh 4px 44px; display: flex; flex-direction: column; }
}
@media (max-width: 560px) {
  body { font-size: 17px; }
  .header-actions .btn--small { display: none; }
  .brand-name { font-size: 1.4rem; }
  .form-fields { grid-template-columns: 1fr; }
  .stats { column-gap: 16px; grid-template-columns: 1fr 1fr; }
  .stats li:nth-child(-n+5) { padding: 16px 0 22px; }
  .stats li:nth-child(5) { grid-column: 1 / -1; }
  .stats strong { font-size: 4.2rem; }
  .about-strip { grid-template-columns: 1fr 1fr; }
  .about-strip img:nth-child(even) { transform: translateY(24px); }
  .b-item { gap: 10px; padding: 10px 12px; }
  .b-amt input { width: 86px; padding: 8px 10px; }
  .seg { display: grid; grid-template-columns: repeat(4, 1fr); width: 100%; }
  .seg button { min-width: 0; padding: 0 6px; }
  .seg button:nth-child(4n+1) { box-shadow: none; }
  .timeline .seg { grid-template-columns: repeat(3, 1fr); }
  .timeline .seg button:nth-child(4n+1) { box-shadow: inset 1px 0 0 var(--rule); }
  .timeline .seg button:nth-child(3n+1) { box-shadow: none; }
  .seg button:nth-child(n+4) { border-top: 1px solid var(--rule); }
  .timeline .seg button:nth-child(4) { border-top: 1px solid var(--rule); }
  .budget-summary .btn-text, .budget-summary .small { display: none; }
  .price-rows li { flex-direction: column; gap: 2px; }
  .hero-copy { padding-top: 46svh; }
  .hero .eyebrow { letter-spacing: .12em; font-size: .7rem; }
  .hero .eyebrow::before { width: 16px; }
  .ht-a { font-size: 3.35rem; }
  .ht-b { font-size: 2.05rem; }
  .hero .lede { font-size: 1rem; }
  .hero-actions { margin-top: 22px; }
  .hero-where { font-size: .74rem; }
  .spill-row img { height: 150px; }
  .tool-body { padding: 22px 20px 22px; }
  .footer-giant { font-size: 16.4vw; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .flood-run { transform: none !important; }
}

@media print {
  .site-header, .site-footer, .page-hero, .tl-actions, .tl-help, .sample-note, .budget, .tl-add, .tl-btns, .skip, .seg, .spill { display: none !important; }
  body, html { background: #fff; color: #000; font-size: 12pt; }
  .section--tool { --fg: #000; background: #fff; }
  .page-budget-builder main > *:not(.print-only) { display: none !important; }
  .print-only { display: block !important; padding: 0; }
  .print-only table { width: 100%; border-collapse: collapse; }
  .print-only td, .print-only th { text-align: left; padding: 6px 0; border-bottom: 1px solid #ccc; }
  .print-only td:last-child, .print-only th:last-child { text-align: right; }
  .print-only .grand td { font-weight: 800; font-size: 14pt; border-top: 2px solid #000; }
  .section--tool { padding: 0; }
  .tl-weeks { grid-template-columns: 1fr 1fr; }
  .tl-week { border: 1px solid #ccc; break-inside: avoid; }
  .tl-controls .field--date input { border: 0; }
}
