/* Netbreakers, direction C "Midnight Mosaic".
   Luxury editorial at night. Deep midnight base, a Didone wordmark, an overflowing photo mosaic.
   Corners are sharp on purpose (2px): precision over softness. Copper is metal, used as hairlines and small detail.
   Warm White appears only as deliberate contrast bands (tools, story). */
:root {
  /* Night scale, all derived from Midnight Navy #18202F */
  --night-0: #080B11;
  --night-1: #0C1017;
  --night-2: #10151F;
  --navy: #18202F;
  --navy-2: #1F2839;
  --navy-3: #2A3448;

  --slate: #68748A;
  --mist: #DCE1E6;
  --white: #FAF7F2;
  --card: #FFFFFF;
  --copper: #B8734F;
  --copper-deep: #9C5E3F;
  --copper-light: #D08A63;
  --copper-dark: #7E4A30;

  /* Brushed copper, only ever on 1-2px lines */
  --metal: linear-gradient(90deg, #7E4A30 0%, #B8734F 22%, #E7B08C 48%, #C27D57 62%, #8C5335 100%);

  /* Scoped tokens: dark by default, flipped inside .section--light and light sheets */
  --bg: var(--night-2);
  --fg: #F4F1EB;
  --fg-strong: var(--white);
  --fg-muted: #B3BBC7;
  --fg-soft: #929CAD;
  --line: rgba(220, 225, 230, .12);
  --line-strong: rgba(220, 225, 230, .22);
  --accent: var(--copper-light);
  --surface: var(--navy);

  /* Map roles on the night map */
  --role-served: #DCE1E6;
  --role-directed: #D08A63;
  --role-mc: #EDC98F;
  --role-ads: #8DB0DD;

  --display: "Bodoni Moda", "Didot", "Bodoni 72", Georgia, serif;
  --font: "Geist", system-ui, -apple-system, sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", monospace;
  --r: 2px;
  --wrap: 1360px;
  --gutter: clamp(16px, 3.4vw, 48px);
  --sec: clamp(64px, 8vw, 128px);
  --ease: cubic-bezier(.2, .7, .1, 1);
}

.section--light, .nb-form, .map-card, .give-box {
  --bg: var(--white);
  --fg: var(--navy);
  --fg-strong: var(--navy);
  --fg-muted: #4D576A;
  --fg-soft: #5C6679;
  --line: #E1DBD0;
  --line-strong: #CFC7B9;
  --accent: var(--copper-deep);
  --surface: var(--card);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--night-2); }
body {
  margin: 0; background: var(--night-2); color: var(--fg);
  font-family: var(--font); font-size: 17px; line-height: 1.62; font-weight: 400;
  -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; }
.section--light :focus-visible { outline-color: var(--copper-deep); }
h1, h2, h3 { margin: 0 0 .5em; text-wrap: balance; color: var(--fg-strong); }
h1, h2 { font-family: var(--display); font-weight: 500; letter-spacing: -.012em; line-height: 1.02; font-optical-sizing: auto; }
h1 { font-size: clamp(2.5rem, 5.2vw, 4.7rem); }
h2 { font-size: clamp(2.1rem, 3.8vw, 3.4rem); }
h3 { font-family: var(--font); font-size: 1.2rem; font-weight: 600; letter-spacing: -.012em; line-height: 1.25; }
h1 em, h2 em { font-style: italic; font-weight: 400; }
p { margin: 0 0 1em; text-wrap: pretty; }
strong { font-weight: 650; }
.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-muted); }
.tk { background: #FFF1B8; color: #5B4300; font-size: .82em; padding: 1px 6px; border-radius: 2px; font-weight: 600; font-family: var(--font); font-style: normal; letter-spacing: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 1.4em;
  font-family: var(--mono); font-size: .74rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--metal); }
.lede { font-size: clamp(1.06rem, 1.4vw, 1.2rem); line-height: 1.6; color: var(--fg-muted); max-width: 36em; }

/* ---------- Buttons: copper as metal, not paint ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .6em; min-height: 50px;
  padding: 12px 26px; border: 1px solid #B77250; border-radius: var(--r); cursor: pointer;
  background: linear-gradient(180deg, #9E6041 0%, #8C5335 100%);
  box-shadow: inset 0 1px 0 rgba(255, 222, 196, .28), 0 10px 24px -14px rgba(0, 0, 0, .7);
  color: #fff; font: inherit; font-weight: 600; font-size: .98rem; letter-spacing: .005em;
  text-decoration: none; transition: filter .25s, transform .25s var(--ease);
}
.btn:hover { filter: brightness(1.08); }
.section--light .btn, .nb-form .btn, .give-box .btn { box-shadow: inset 0 1px 0 rgba(255, 222, 196, .28), 0 8px 18px -14px rgba(24, 32, 47, .5); }
.section--light .btn--ghost { box-shadow: none; }
.btn:active { transform: translateY(1px); }
.btn--big { min-height: 58px; padding: 14px 32px; font-size: 1.03rem; }
.btn--small { min-height: 44px; padding: 8px 18px; font-size: .92rem; }
.btn--ghost { background: transparent; color: var(--fg-strong); border-color: var(--line-strong); box-shadow: none; }
.btn--ghost:hover { filter: none; border-color: var(--fg-strong); }
.btn-text { background: none; border: 0; font: inherit; color: var(--fg-muted); 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: 600; color: var(--fg-strong); text-decoration: none; gap: .55em; }
.link-arrow::after { content: "\2192"; color: var(--accent); transition: transform .3s var(--ease); }
.link-arrow:hover::after { transform: translateX(5px); }

/* ---------- Header: transparent on arrival, solid night once you scroll. No line. ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: transparent; transition: background-color .3s, box-shadow .3s; }
.site-header.is-scrolled, body.menu-open .site-header { background: rgba(12, 16, 23, .97); box-shadow: 0 14px 34px -18px rgba(0, 0, 0, .8); }
.header-row { display: flex; align-items: center; gap: 24px; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--white); min-height: 44px; }
.brand-mark {
  position: relative; flex: none; width: 32px; height: 32px; display: grid; place-items: center;
  font-family: var(--display); font-weight: 600; font-size: 21px; line-height: 1; color: var(--copper-light);
  border: 1px solid rgba(208, 138, 99, .55); padding-bottom: 3px;
}
.brand-mark::after { content: ""; position: absolute; left: 7px; right: 7px; bottom: 5px; height: 1px; background: var(--mist); opacity: .7; }
.brand-name { font-family: var(--display); font-weight: 500; font-size: 1.4rem; letter-spacing: -.005em; transition: opacity .35s, transform .35s var(--ease); }
.page-index .site-header:not(.show-brand) .brand-name { opacity: 0; transform: translateY(4px); }
.nav { margin-left: auto; }
.nav ul { display: flex; gap: 0; list-style: none; margin: 0; padding: 0; }
.nav a { position: relative; display: inline-flex; align-items: center; min-height: 44px; padding: 0 13px; color: #C7CDD6; text-decoration: none; font-weight: 500; font-size: .92rem; letter-spacing: .005em; transition: color .2s; }
.nav a::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 8px; height: 1px; background: var(--metal); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav a:hover { color: #fff; }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: #fff; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .btn--small { background: transparent; border-color: rgba(208, 138, 99, .6); box-shadow: none; color: #fff; }
.header-actions .btn--small:hover { background: var(--copper-deep); filter: none; }
.menu-btn { display: none; min-height: 44px; min-width: 80px; padding: 0 18px; border: 1px solid var(--line-strong); border-radius: var(--r); background: transparent; font: inherit; font-weight: 600; font-size: .92rem; color: #fff; cursor: pointer; }
.mobile-nav { background: var(--night-1); }
.mobile-nav ul { list-style: none; margin: 0; padding: 4px var(--gutter) 32px; }
.mobile-nav a { display: flex; align-items: center; justify-content: space-between; min-height: 58px; font-family: var(--display); font-size: 1.55rem; font-weight: 500; color: var(--white); text-decoration: none; border-bottom: 1px solid var(--line); }
.mobile-nav a::after { content: "\2192"; font-family: var(--font); font-size: 1.1rem; color: var(--copper-light); }

/* ---------- Home hero: Didone wordmark + overflowing mosaic ---------- */
.hero { position: relative; background: var(--night-2); margin-top: -76px; padding-top: 76px; }
.hero::before { /* a faint lift of light behind the wordmark, like a stage wash; static */
  content: ""; position: absolute; inset: 0 0 auto; height: 70%; pointer-events: none;
  background: radial-gradient(60% 70% at 50% 0%, rgba(42, 52, 72, .55), transparent 70%);
}
.hero > * { position: relative; }
.hero-mark { padding-top: clamp(8px, 1.6vw, 24px); }
.wordmark {
  display: inline-block; margin: 0; color: var(--white);
  font-family: var(--display); font-weight: 500; font-optical-sizing: auto; font-variation-settings: "opsz" 96;
  letter-spacing: -.018em; font-size: 16vw; line-height: .86; white-space: nowrap;
  transform: translateX(-.02em);
  animation: rise 1.4s var(--ease) both;
}
.hero-rule { height: 1px; margin-top: clamp(14px, 2vw, 28px); background: var(--metal); transform-origin: left; animation: draw 1.6s .2s var(--ease) both; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 20px clamp(32px, 6vw, 110px); align-items: end; padding-top: clamp(22px, 2.4vw, 36px); animation: rise 1.4s .15s var(--ease) both; }
.hero-copy .eyebrow { margin-bottom: 1.1em; }
.hero-title { margin: 0; max-width: 16ch; font-size: clamp(2.4rem, 4.1vw, 3.9rem); line-height: 1; }
.hero-title em { color: var(--copper-light); }
.hero-side .lede { margin-bottom: 0; font-size: clamp(1.03rem, 1.25vw, 1.14rem); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 28px; margin-top: 26px; }
.hero-where { margin: 16px 0 0; font-family: var(--mono); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-soft); }

.mosaic {
  position: relative; overflow: hidden; isolation: isolate;
  width: 100%; height: clamp(440px, 50vw, 780px);
  margin-top: clamp(24px, 2.6vw, 40px);
  perspective: 1800px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 7%, #000 62%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0, #000 7%, #000 62%, transparent 100%);
  animation: fade 1.8s .35s ease both;
}
.mosaic-plane {
  position: absolute; left: -16%; right: -16%; top: -30%;
  display: flex; gap: clamp(10px, 1vw, 16px);
  transform: rotateX(18deg) rotateZ(-9deg);
  transform-origin: 50% 35%;
  animation: plane-sway 56s ease-in-out infinite alternate;
  will-change: transform;
}
.mcol { flex: 1 1 0; display: flex; flex-direction: column; gap: clamp(10px, 1vw, 16px); animation: col-drift 38s ease-in-out infinite alternate; will-change: transform; }
.mcol:nth-child(odd) { margin-top: 11%; }
.mcol--1 { animation-duration: 46s; animation-direction: alternate-reverse; }
.mcol--2 { animation-duration: 34s; animation-delay: -8s; }
.mcol--3 { animation-duration: 42s; animation-direction: alternate-reverse; animation-delay: -12s; }
.mcol--4 { animation-duration: 37s; animation-delay: -20s; }
.mcol--5 { animation-duration: 49s; animation-direction: alternate-reverse; animation-delay: -5s; }
.mcol--6 { animation-duration: 40s; animation-delay: -16s; }
.mcol--7 { animation-duration: 44s; animation-direction: alternate-reverse; animation-delay: -24s; }
.mcol--8 { animation-duration: 36s; animation-delay: -10s; }
.tile { position: relative; margin: 0; border-radius: var(--r); overflow: hidden; background: var(--navy); aspect-ratio: 360 / 426; box-shadow: 0 24px 40px -22px rgba(0, 0, 0, .9); }
.tile::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .07); pointer-events: none; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: opacity .8s ease; filter: saturate(.84) contrast(1.05) brightness(.95); }
.tile img.is-swapping { opacity: 0; }
@keyframes col-drift { from { transform: translateY(-7%); } to { transform: translateY(7%); } }
@keyframes plane-sway { from { transform: rotateX(18deg) rotateZ(-9deg); } to { transform: rotateX(14deg) rotateZ(-6deg) translateX(-2.5%); } }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes draw { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.wordmark { animation-name: rise-mark; }
@keyframes rise-mark { from { opacity: 0; transform: translate(-.02em, 18px); } to { opacity: 1; transform: translateX(-.02em); } }

/* ---------- Inner page heroes ---------- */
.page-hero { position: relative; padding: clamp(36px, 6vw, 96px) 0 clamp(40px, 5vw, 80px); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 80px); align-items: center; }
.page-hero h1 { max-width: 15ch; }
.page-hero .lede { margin-bottom: 0; }
.page-photos { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; align-items: center; }
.page-photos img { width: 100%; height: auto; aspect-ratio: 360 / 426; object-fit: cover; border-radius: var(--r); background: var(--navy); box-shadow: 0 30px 50px -28px rgba(0, 0, 0, .9); }
.page-photos img:nth-child(2) { transform: translateY(-26px); }
.page-photos img:nth-child(odd) { transform: translateY(18px); }
.page-hero::after { content: ""; position: absolute; left: var(--gutter); right: var(--gutter); bottom: 0; max-width: calc(var(--wrap) - 2 * var(--gutter)); margin: 0 auto; height: 1px; background: var(--line); }

/* ---------- Sections ---------- */
.section { position: relative; padding: var(--sec) 0; background: var(--bg); color: var(--fg); }
.section--light { background: var(--white); }
.section--light + .section--light { padding-top: 0; }
.section--alt { background: var(--night-1); }
.section-head { max-width: 44em; margin-bottom: clamp(32px, 4.4vw, 60px); }
.section-head p:not(.eyebrow) { color: var(--fg-muted); font-size: 1.08rem; }

/* Stats: Didone numerals on hairlines */
.section--stats { padding: clamp(8px, 2vw, 24px) 0 clamp(24px, 3vw, 40px); }
.section--stats .eyebrow { margin-bottom: 2em; }
.stats { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(6, 1fr); gap: 36px 0; }
.stats li { position: relative; padding: 22px 20px 0 0; border-top: 1px solid var(--line-strong); }
.stats li:first-child::before { content: ""; position: absolute; left: 0; top: -1px; width: 100%; height: 1px; background: var(--metal); }
.stats strong { display: block; font-family: var(--display); font-weight: 500; font-size: clamp(3rem, 5vw, 4.6rem); line-height: .95; letter-spacing: -.02em; color: var(--white); font-variant-numeric: lining-nums; }
.stats span { display: block; margin-top: 14px; font-size: .9rem; line-height: 1.4; color: var(--fg-muted); max-width: 13em; }
.stats-note { margin: 32px 0 0; font-size: .88rem; color: var(--fg-soft); }

/* Offers: an editorial ledger, not cards */
.offers { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 clamp(32px, 5vw, 88px); border-bottom: 1px solid var(--line); }
.offer { position: relative; display: grid; grid-template-columns: 64px 1fr; grid-template-rows: auto 1fr auto; column-gap: 20px; padding: clamp(28px, 3.2vw, 44px) 0; border-top: 1px solid var(--line); }
.offer-num { grid-row: 1 / span 3; font-family: var(--mono); font-size: .8rem; letter-spacing: .1em; color: var(--accent); padding-top: .55em; }
.offer h3 { font-family: var(--display); font-weight: 500; font-size: clamp(1.6rem, 2.3vw, 2.1rem); letter-spacing: -.01em; line-height: 1.08; margin-bottom: .45em; }
.offer p { color: var(--fg-muted); }
.offer-price { margin: 14px 0 0 !important; color: var(--fg-strong) !important; display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 12px; }
.offer-price strong { font-family: var(--mono); font-weight: 500; font-size: 1rem; letter-spacing: .02em; }
.offer-price span { font-size: .88rem; color: var(--fg-soft); }
.after-offers { margin-top: 28px; }

/* Map: the deepest night, full bleed */
.section--map { background: var(--night-0); }
.section-head--light p:not(.eyebrow) { color: var(--fg-muted); }
.nb-map { position: relative; }
.map-stage svg { width: 100%; height: auto; display: block; }
.land { fill: #161D2A; stroke: #2A3446; stroke-width: 1; }
.land--other { fill: #10151E; }
.borders--states { fill: none; stroke: #252E3E; stroke-width: .7; }
.dot { stroke: var(--night-0); stroke-width: 2.5; cursor: pointer; transition: transform .25s var(--ease), opacity .25s; transform-box: fill-box; transform-origin: center; }
.dot:hover, .dot.is-active, .dot:focus-visible { transform: scale(1.35); 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: 24px; }
.legend-item { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; padding: 0 16px 0 14px; border-radius: var(--r); border: 1px solid var(--line-strong); background: transparent; color: var(--white); font: inherit; font-size: .9rem; font-weight: 500; cursor: pointer; transition: border-color .2s, opacity .2s; }
.legend-item:hover { border-color: rgba(255, 255, 255, .45); }
.legend-item i { width: 9px; height: 9px; 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: .5; text-decoration: line-through; }
.map-card { position: absolute; right: 0; top: 68px; width: min(340px, 100%); background: var(--white); color: var(--fg); border-radius: var(--r); padding: 24px; box-shadow: 0 40px 70px -30px rgba(0, 0, 0, .9); border-top: 2px solid var(--copper); }
.map-card h3 { font-family: var(--display); font-weight: 500; font-size: 1.6rem; margin-bottom: .3em; }
.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-muted); }
.map-card-close:hover { color: var(--navy); }
.map-card-role { font-family: var(--mono); font-size: .72rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; margin-bottom: .4em; color: var(--copper-deep); }
.map-card-list { list-style: none; padding: 0; margin: 0 0 14px; font-size: .95rem; }
.map-card-list span { color: var(--fg-muted); }
.map-card-photos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
.map-card-photos img { aspect-ratio: 4/3; object-fit: cover; border-radius: var(--r); }
.sample-note { margin-top: 22px; font-size: .86rem; color: var(--fg-soft); }
.sample-note--light { color: var(--fg-soft); }

/* Sizes widget (on warm white) */
.sizes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 6vw, 96px); align-items: center; }
.sizes-grid .section-head { margin-bottom: 0; }
.sizes { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(24px, 3vw, 40px); box-shadow: 0 30px 60px -40px rgba(24, 32, 47, .35); }
.sizes-label { font-weight: 600; margin-bottom: 12px; color: var(--fg-strong); }
.seg { display: inline-flex; flex-wrap: wrap; gap: 0; padding: 0; border: 1px solid var(--line-strong); border-radius: var(--r); background: transparent; }
.seg button { min-height: 46px; min-width: 72px; padding: 0 18px; border: 0; border-right: 1px solid var(--line); border-radius: 0; background: transparent; font: inherit; font-weight: 600; font-size: .95rem; color: var(--fg-strong); cursor: pointer; transition: background .2s, color .2s; }
.seg button:last-child { border-right: 0; }
.seg button:hover { background: rgba(24, 32, 47, .05); }
.seg button small { font-weight: 500; font-size: .75rem; color: var(--copper-deep); margin-left: 4px; }
.seg button[aria-checked="true"] { background: var(--navy); color: #fff; }
.seg button[aria-checked="true"] small { color: var(--copper-light); }
.sizes-out { margin: 24px 0 0; display: grid; }
.sizes-out div { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.sizes-out div:last-child { border-bottom: 0; }
.sizes-out dt { color: var(--fg-muted); }
.sizes-out dd { margin: 0; font-family: var(--display); font-weight: 500; font-size: 2rem; letter-spacing: -.01em; color: var(--navy); font-variant-numeric: lining-nums; }

/* Tools: one tall, two stacked; sharp frames */
.tools { display: grid; grid-template-columns: 1.35fr 1fr; grid-template-rows: auto auto; gap: 16px; }
.tool { position: relative; display: flex; flex-direction: column; text-decoration: none; color: var(--fg); background: var(--card); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: border-color .3s; }
.tool:hover { border-color: var(--copper); }
.tool:first-child { grid-row: span 2; }
.tool img { aspect-ratio: 16/10; object-fit: cover; width: 100%; transition: transform 1.2s var(--ease); }
.tool:hover img { transform: scale(1.035); }
.tool:first-child img { aspect-ratio: auto; flex: 1; min-height: 280px; }
.tool:not(:first-child) { flex-direction: row; }
.tool:not(:first-child) img { width: 42%; aspect-ratio: auto; }
.tool-body { position: relative; z-index: 1; background: var(--card); padding: 24px 26px 26px; display: grid; gap: 6px; align-content: center; }
.tool-body strong { font-family: var(--display); font-weight: 500; font-size: 1.6rem; letter-spacing: -.01em; line-height: 1.1; color: var(--navy); }
.tool-body strong::after { content: " \2192"; font-family: var(--font); font-size: 1.1rem; color: var(--copper-deep); }
.tool-body span { color: var(--fg-muted); font-size: .97rem; }

/* Verses */
.section--verse { padding-top: var(--sec); }
.verse-wrap { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(32px, 6vw, 110px); align-items: end; }
.verse { margin: 0; padding-top: 36px; position: relative; }
.verse::before { content: ""; position: absolute; top: 0; left: 0; width: 72px; height: 1px; background: var(--metal); }
.verse blockquote { margin: 0; }
.verse blockquote p { font-family: var(--display); font-size: clamp(2rem, 4.2vw, 3.8rem); line-height: 1.08; font-weight: 400; font-style: italic; letter-spacing: -.01em; color: var(--white); }
.verse figcaption { font-family: var(--mono); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--copper-light); display: flex; flex-wrap: wrap; gap: 4px 16px; align-items: baseline; }
.verse figcaption span { font-family: var(--font); text-transform: none; letter-spacing: 0; font-size: .95rem; color: var(--fg-muted); }
.verse-pair p { font-size: .98rem; color: var(--fg-muted); border-top: 1px solid var(--line); padding-top: 16px; }
.verse-pair span { display: block; font-family: var(--mono); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-strong); margin-bottom: 4px; }

/* Partner */
.partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.partner-img, .split-img { border-radius: var(--r); aspect-ratio: 4/3; object-fit: cover; width: 100%; box-shadow: 0 40px 70px -40px rgba(0, 0, 0, .8); }
.partner-img { object-position: 50% 35%; }
.partner-grid p:not(.eyebrow) { color: var(--fg-muted); }

/* Contact + forms: a warm-white sheet set on night */
.section--contact { background: var(--night-1); }
.section--contact .section-head p:not(.eyebrow) { color: var(--fg-muted); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.call-line { font-size: 1.4rem; font-weight: 600; }
.nb-form { background: var(--white); color: var(--fg); border-radius: var(--r); padding: clamp(22px, 3.2vw, 44px); border-top: 2px solid var(--copper); box-shadow: 0 50px 90px -50px rgba(0, 0, 0, .9); }
.form-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 18px; margin-bottom: 24px; }
.field { display: grid; gap: 7px; align-content: start; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .9rem; color: var(--fg-strong); }
.opt { font-weight: 400; color: var(--fg-muted); }
input, select, textarea { font: inherit; font-size: 1rem; color: var(--navy); width: 100%; min-height: 50px; padding: 11px 14px; border: 1px solid #C2C9D2; border-radius: var(--r); background: #fff; transition: border-color .2s, box-shadow .2s; }
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, .28); }
.is-invalid { border-color: #B3261E !important; }
.nb-form .btn[type=submit] { width: 100%; }
.form-note { margin: 12px 0 0; font-size: .88rem; color: var(--fg-muted); text-align: center; }
.form-done, .form-error { padding: 16px; border-radius: var(--r); margin-top: 12px; color: var(--navy); }
.form-done { background: #E6EFE4; }
.form-error { background: #FBE7E4; }
.contact-lines { list-style: none; padding: 0; margin: 28px 0; }
.contact-lines li { padding: 13px 0; border-bottom: 1px solid var(--line); }
.contact-lines span { display: inline-block; min-width: 100px; font-weight: 600; color: var(--fg-strong); }
.section--contact-page { padding-top: clamp(36px, 6vw, 96px); background: var(--night-2); }
.section--contact-page h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); }
.page-photos--contact { margin: 12px 0 8px; max-width: 440px; gap: 10px; }
.page-photos--contact img:nth-child(n) { transform: none; }
.contact-img, .serve-img { border-radius: var(--r); margin-top: 32px; aspect-ratio: 16/11; object-fit: cover; width: 100%; }

/* What we do */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.split p:not(.eyebrow) { color: var(--fg-muted); }
.price-rows { list-style: none; padding: 0; margin: 0 0 16px; border-top: 1px solid var(--line); }
.price-rows li { display: flex; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); color: var(--fg); }
.price-rows strong { white-space: nowrap; font-family: var(--mono); font-weight: 500; font-size: .95rem; color: var(--fg-strong); }
.steps { list-style: none; counter-reset: s; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 0; border-top: 1px solid var(--line-strong); }
.steps li { counter-increment: s; position: relative; padding: 84px 28px 30px 0; color: var(--fg-muted); }
.steps li + li { padding-left: 28px; border-left: 1px solid var(--line); }
.steps li::before { content: counter(s, decimal-leading-zero); position: absolute; top: 26px; font-family: var(--display); font-size: 2.2rem; font-weight: 500; line-height: 1; color: var(--accent); }
.steps strong { display: block; color: var(--fg-strong); font-size: 1.12rem; margin-bottom: 6px; letter-spacing: -.01em; }
.plain-list { padding-left: 1.2em; color: var(--fg-muted); }
.plain-list li { margin-bottom: .6em; }
.plain-list li::marker { color: var(--copper-light); }

/* Budget builder (warm white tool band) */
.section--tool { padding-top: clamp(40px, 5vw, 72px); }
.budget-size { margin-bottom: 32px; }
.seg--wide button { min-width: 80px; }
.budget-main { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.b-group { border: 0; margin: 0 0 30px; padding: 0; }
.b-group legend { font-family: var(--mono); font-weight: 500; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--copper-deep); margin-bottom: 12px; }
.b-group ul { list-style: none; margin: 0; padding: 0; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); }
.b-item { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; padding: 12px 18px; border-bottom: 1px solid var(--line); }
.b-item:last-child { border-bottom: 0; }
.b-item:not(.is-on) .b-label { color: #646D7D; }
.b-label small { display: block; font-size: .84rem; color: var(--fg-muted); }
.switch { position: relative; width: 50px; height: 44px; border: 0; background: none; cursor: pointer; padding: 0; }
.switch span { position: absolute; left: 0; top: 10px; width: 46px; height: 24px; border-radius: 99px; background: #C4CBD3; transition: background .25s; }
.switch span::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; transition: transform .25s var(--ease); 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(22px); background: #F1D2BD; }
.switch:disabled { cursor: default; opacity: .7; }
.b-amt { display: flex; align-items: center; gap: 4px; font-weight: 600; font-family: var(--mono); }
.b-amt input { width: 116px; text-align: right; min-height: 44px; font-family: var(--mono); font-size: .95rem; }
.b-amt input:disabled { background: var(--white); color: #646D7D; }
.budget-summary {
  position: sticky; top: 100px; background: var(--navy); color: var(--white); border-radius: var(--r); padding: 32px;
  box-shadow: 0 40px 70px -40px rgba(24, 32, 47, .8);
  --line: rgba(220, 225, 230, .14); --fg-muted: #C3CAD4; --accent: var(--copper-light);
}
.budget-summary::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: var(--metal); }
.sum-label { font-family: var(--mono); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--copper-light); margin: 0; }
.sum-total { font-family: var(--display); font-size: 3.6rem; font-weight: 500; line-height: 1.05; letter-spacing: -.015em; margin: 8px 0 20px; font-variant-numeric: lining-nums; }
.sum-rows { margin: 0 0 24px; }
.sum-rows div { display: flex; justify-content: space-between; padding: 12px 0; border-top: 1px solid var(--line); color: #C3CAD4; }
.sum-rows dd { margin: 0; font-family: var(--mono); font-weight: 500; color: #fff; }
.budget-summary .btn { width: 100%; }
.budget-summary .btn-text { color: #C3CAD4; }
.budget-summary .small { color: #C3CAD4; }
.budget-summary .small a { color: var(--copper-light); }

/* Timeline (warm white tool band) */
.tl-controls { display: flex; flex-wrap: wrap; gap: 24px 48px; align-items: end; margin-bottom: 36px; padding: 24px 26px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); }
.field--date input { min-width: 220px; }
.tl-weeks { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; align-items: start; }
.tl-week { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; }
.tl-week header { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; padding-bottom: 12px; margin-bottom: 6px; border-bottom: 1px solid var(--navy); }
.tl-week h2 { font-size: 1.45rem; margin: 0; }
.tl-week header p { margin: 0; font-family: var(--mono); font-size: .76rem; letter-spacing: .06em; color: var(--copper-deep); white-space: nowrap; }
.tl-week ul { list-style: none; margin: 0; padding: 0; }
.tl-task { display: flex; align-items: center; gap: 4px; border-bottom: 1px solid var(--line); }
.tl-task:last-child { border-bottom: 0; }
.tl-name { flex: 1; min-height: 44px; padding: 10px 4px; font-size: .97rem; line-height: 1.35; border-radius: var(--r); outline: none; color: var(--navy); }
.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-muted); font-size: 1rem; border-radius: var(--r); }
.tl-btns button:hover:not(:disabled) { background: var(--white); 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: 600; cursor: pointer; padding: 0 4px; }
.tl-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.tl-help { margin-top: 16px; }

/* Events (warm white band) */
.events-h { font-size: clamp(2rem, 3vw, 2.6rem); margin-top: 8px; }
.event-list { list-style: none; margin: 0 0 64px; padding: 0; display: grid; gap: 16px; }
.event { display: grid; grid-template-columns: 260px 1fr; gap: 28px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.event img, .event-noimg { width: 100%; height: 100%; min-height: 180px; 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-weight: 500; font-size: 3.4rem; line-height: 1; }
.event-noimg span { font-family: var(--mono); text-transform: uppercase; letter-spacing: .16em; font-size: .8rem; color: var(--copper-light); }
.event-body { padding: 24px 24px 24px 0; }
.event-date { font-family: var(--mono); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--copper-deep); margin-bottom: .4em; }
.event h3 { font-family: var(--display); font-weight: 500; font-size: 1.7rem; margin-bottom: .2em; }
.event-where { color: var(--fg-muted); margin-bottom: .4em; }
.event-role { display: inline-block; font-size: .8rem; font-weight: 600; margin-bottom: .5em; padding: 2px 10px; border: 1px solid var(--line-strong); border-radius: var(--r); }
.event--past { background: transparent; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; grid-template-columns: 170px 1fr; }
.event--past img, .event--past .event-noimg { border-radius: var(--r); min-height: 0; height: auto; aspect-ratio: 4/3; margin: 4px 0 18px; align-self: start; }
.event--past h3 { font-size: 1.35rem; }

/* About */
.about-hero { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: end; }
.about-photo { border-radius: var(--r); aspect-ratio: 5/4; object-fit: cover; object-position: 50% 25%; width: 100%; box-shadow: 0 40px 70px -40px rgba(0, 0, 0, .9); }
.page-hero--about h1 { font-size: clamp(2.8rem, 6vw, 5.4rem); max-width: 11ch; }
.prose { max-width: 44em; }
.prose p { font-size: 1.14rem; color: var(--fg-muted); }
.prose .lede { font-family: var(--display); font-size: clamp(1.6rem, 2.6vw, 2.2rem); line-height: 1.25; color: var(--navy); font-weight: 400; max-width: none; margin-bottom: 1.2em; }
.prose .lede strong { font-style: italic; font-weight: 500; color: var(--copper-deep); }
.sign { font-family: var(--display); font-style: italic; font-size: 1.5rem; color: var(--navy) !important; margin-top: 1.4em; }
.about-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.about-strip img { aspect-ratio: 3/4; object-fit: cover; border-radius: var(--r); width: 100%; }
.verse-pair--light { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); margin-bottom: 36px; }
.verse-pair--light p { font-family: var(--display); font-style: italic; font-size: clamp(1.35rem, 2vw, 1.7rem); line-height: 1.3; color: var(--white); border-top-color: var(--line-strong); }
.verse-pair--light span { font-family: var(--mono); font-style: normal; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--copper-light); margin-bottom: 10px; }
.about-mission { font-size: 1.08rem; color: var(--fg-muted); }
.about-mission strong { color: var(--fg-strong); }

/* Give */
.give-box { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; background: var(--white); color: var(--fg); padding: clamp(26px, 4vw, 60px); border-radius: var(--r); border-top: 2px solid var(--copper); max-width: calc(var(--wrap) - 2 * var(--gutter)); }
.give-box p { color: var(--fg-muted); }
.give-item { font-weight: 600; color: var(--copper-deep) !important; }
.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(--line-strong); border-left: 1px solid var(--line); }
.wish { background: var(--card); padding: 28px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.wish h3 { font-family: var(--display); font-weight: 500; font-size: 1.7rem; }
.wish p { color: var(--fg-muted); }
.wish .btn { margin-top: auto; align-self: flex-start; }
.wish-goal { font-size: .9rem; }

/* Footer */
.site-footer { background: var(--night-0); color: #B3BBC7; padding: 88px 0 28px; font-size: .94rem; position: relative; }
.site-footer::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: var(--metal); opacity: .6; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.brand-name--footer { color: #fff; font-size: 2.2rem; margin-bottom: .5em; }
.footer-h { color: #fff; font-family: var(--mono); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: .8em; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer a { color: #B3BBC7; text-decoration: none; display: inline-flex; min-height: 44px; align-items: center; }
.site-footer a:hover { color: #fff; }
.footer-verse { font-family: var(--display); font-style: italic; font-size: 1.2rem; color: #E4E1DA; }
.footer-verse span { font-family: var(--mono); font-style: normal; font-size: .74rem; letter-spacing: .1em; color: var(--copper-light); margin-left: 6px; }
.social { list-style: none; padding: 0; display: flex; gap: 16px; margin-top: 12px !important; flex-wrap: wrap; }
.social--big { gap: 8px; }
.social--big a { color: var(--white); min-height: 44px; padding: 0 18px; border: 1px solid var(--line-strong); border-radius: var(--r); text-decoration: none; display: inline-flex; align-items: center; font-weight: 500; }
.social--big a:hover { border-color: var(--copper-light); }
.footer-base { border-top: 1px solid rgba(255, 255, 255, .08); margin-top: 48px; padding-top: 22px; }
.footer-base p { margin: 0; font-family: var(--mono); font-size: .74rem; letter-spacing: .08em; color: #929CAD; }

.dock { display: none; }
.print-only { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav { display: none; }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .header-actions { margin-left: auto; }
  .stats { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1081px) { .mobile-nav { display: none !important; } }
@media (max-width: 860px) {
  .page-hero-grid, .offers, .sizes-grid, .partner-grid, .contact-grid, .split, .verse-wrap, .about-hero, .budget-main, .give-box, .verse-pair--light { grid-template-columns: 1fr; }
  /* Home hero on phones: wordmark, then photos, then the promise and the button */
  .hero { display: flex; flex-direction: column; }
  .hero-mark { order: 1; }
  .mosaic { order: 2; height: clamp(250px, 70vw, 420px); margin-top: 10px;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 12%, #000 82%, transparent 100%);
            mask-image: linear-gradient(to bottom, transparent 0, #000 12%, #000 82%, transparent 100%); }
  .hero-grid { order: 3; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding-top: 4px; padding-bottom: 8px; }
  .hero-copy, .hero-side { display: contents; }
  .hero-copy .eyebrow { order: 1; }
  .hero-title { order: 2; max-width: 16ch; }
  .hero-actions { order: 3; }
  .hero-side .lede { order: 4; margin-top: 22px; }
  .hero-where { order: 5; }
  .hero-rule { margin-top: 12px; }
  .mosaic-plane { left: -44%; right: -44%; top: -34%; }
  .offers { border-bottom: 0; }
  .tools { grid-template-columns: 1fr; }
  .tool:first-child { grid-row: auto; }
  .tool:first-child img { min-height: 0; aspect-ratio: 16/10; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .budget-summary { position: sticky; bottom: 0; top: auto; z-index: 20; border-radius: 0; margin: 0 calc(-1 * var(--gutter)); padding: 16px var(--gutter) calc(16px + env(safe-area-inset-bottom)); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2px 16px; box-shadow: 0 -18px 40px -10px rgba(8, 11, 17, .45); }
  .budget-summary .sum-total { font-size: 2.2rem; margin: 0; grid-column: 1; }
  .budget-summary .sum-label { grid-column: 1; font-size: .68rem; }
  .budget-summary .btn { grid-column: 2; grid-row: 1 / span 2; width: auto; min-height: 52px; padding: 10px 20px; }
  .budget-summary .sum-rows, .budget-summary .btn-text, .budget-summary .small { grid-column: 1 / -1; }
  .budget-summary .sum-rows { display: none; }
  .map-card { position: relative; top: auto; right: auto; margin-top: 16px; width: 100%; }
  .dot { transform: scale(2); stroke-width: 1.5; }
  .dot:hover, .dot.is-active, .dot:focus-visible { transform: scale(2.6); }
  .section--map .map-stage { margin: 0 -8px; }
  .event, .event--past { grid-template-columns: 1fr; gap: 0; }
  .event img, .event-noimg { aspect-ratio: 16/9; min-height: 0; }
  .event-body { padding: 20px 20px 22px; }
  .event--past .event-body { padding: 0 0 22px; }
  .page-photos { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .page-photos img { aspect-ratio: 4/5; }
  .page-photos img:nth-child(n) { transform: none; }
  .page-hero-grid { gap: 26px; }
  .tool:not(:first-child) img { width: 38%; }
  .steps li, .steps li + li { padding: 72px 0 26px; border-left: 0; border-bottom: 1px solid var(--line); }
  .dock {
    display: flex; position: fixed; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); z-index: 40;
    padding: 8px; gap: 8px; align-items: center; background: rgba(8, 11, 17, .97); border: 1px solid rgba(208, 138, 99, .35); border-radius: var(--r);
    box-shadow: 0 24px 50px -12px rgba(0, 0, 0, .7);
    transform: translateY(140%); opacity: 0; transition: transform .45s var(--ease), opacity .3s;
  }
  .dock.is-on { transform: none; opacity: 1; }
  .dock .btn { flex: 1; min-height: 52px; }
  .dock-note { padding-left: 12px; font-size: .84rem; font-weight: 500; line-height: 1.25; color: #D5DAE1; }
}
@media (max-width: 560px) {
  body { font-size: 17px; }
  .header-row { min-height: 64px; }
  .hero { margin-top: -64px; padding-top: 64px; }
  .header-actions .btn--small { display: none; }
  .form-fields { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 28px 0; }
  .stats strong { font-size: 3rem; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 2.6rem); }
  .hero-actions { margin-top: 20px; gap: 4px 18px; }
  .hero-actions .btn--big { flex: 1 1 100%; }
  .hero-copy .eyebrow { font-size: .66rem; letter-spacing: .12em; gap: 10px; margin-bottom: .9em; margin-top: 4px; }
  .hero-copy .eyebrow::before { width: 16px; }
  .hero-side .lede { font-size: 1rem; line-height: 1.55; }
  .hero-where { margin-top: 10px; font-size: .68rem; }
  .offer { grid-template-columns: 1fr; }
  .offer-num { grid-row: auto; padding: 0 0 10px; }
  .about-strip { grid-template-columns: 1fr 1fr; }
  .b-item { gap: 10px; padding: 10px 12px; }
  .b-amt input { width: 88px; padding: 8px 10px; }
  .seg { display: grid; grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 1fr; width: 100%; }
  .seg--wide { grid-auto-flow: row; grid-template-columns: repeat(4, 1fr); }
  .seg button { min-width: 0; padding: 0 6px; }
  .timeline .seg { grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); }
  .seg button { border-bottom: 1px solid var(--line); }
  .tl-controls { padding: 18px 16px; }
  .field--date { width: 100%; }
  .field--date input { min-width: 0; }
  .budget-summary .btn-text, .budget-summary .small { display: none; }
  .price-rows li { flex-direction: column; gap: 2px; }
  .tool:not(:first-child) { flex-direction: column; }
  .tool:not(:first-child) img { width: 100%; aspect-ratio: 16/9; }
  .sizes-out dd { font-size: 1.6rem; }
  .verse-pair--light { gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  /* Static mosaic: a still, tilted, staggered photo wall */
  .mcol:nth-child(even) { transform: translateY(-5%); }
  .mcol:nth-child(3n) { transform: translateY(3%); }
}

@media print {
  .site-header, .site-footer, .page-hero, .tl-actions, .tl-help, .sample-note, .budget, .tl-add, .tl-btns, .skip, .seg, .dock { display: none !important; }
  html, body { background: #fff; color: #000; font-size: 12pt; }
  .section { 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-controls { background: none; padding: 0; border: 0; }
  .tl-weeks { grid-template-columns: 1fr 1fr; }
  .tl-week { box-shadow: none; border: 1px solid #ccc; break-inside: avoid; }
  .tl-controls .field--date input { border: 0; }
}
