/* ============================================================
   ReDefine Communications — the expo board
   The whole site is one working whiteboard: headlines are
   WRITTEN stroke by stroke (Vara.js), arrows/boxes/underlines
   draw themselves, content lives on taped-up cards.
   Brand: red #ce1b2c / blue #0f4fc9 / ink, Archivo + Inter,
   Satisfy (drawn script), Permanent Marker + Caveat accents.
   ============================================================ */

:root {
  --red: #bc1823;
  --red-deep: #96131c;
  --red-bright: #ff3131;
  --blue: #004aad;
  --blue-deep: #003c8a;
  --orange: #ff914d;
  --ink: #15171a;
  --ink-soft: #3a3f46;
  --muted: #6b7280;
  --line: #e6e8ec;
  --paper: #fdfdfe;
  --paper-2: #f6f7f9;
  --paper-3: #eef0f3;
  --marker: #101114;

  --maxw: 1340px;
  --gutter: clamp(18px, 3.5vw, 44px);

  --font-display: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-marker: "Permanent Marker", "Comic Sans MS", cursive;
  --font-hand: "Caveat", "Segoe Script", cursive;
  --font-script: "Shadows Into Light", "Segoe Print", cursive;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 1px 2px rgba(21, 23, 26, 0.06), 0 4px 16px rgba(21, 23, 26, 0.05);
  --shadow-md: 0 12px 40px rgba(21, 23, 26, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body.intro-active { overflow: hidden; height: 100vh; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Keyboard focus: a consistent, branded ring. */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

/* ---------- Accessibility utilities ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 1200;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 0 0 12px 12px;
  transition: top 0.2s ease;
}
.skip-link:focus-visible { top: 0; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- The board surface ----------
   Whiteboard sheen + the faint ghost of marker that never
   quite wipes off. */
.board {
  position: relative;
}
.board::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0) 30%, rgba(21, 23, 26, 0.016) 45%, rgba(255, 255, 255, 0) 60%),
    radial-gradient(55% 28% at 16% 18%, rgba(0, 74, 173, 0.035), transparent 70%),
    radial-gradient(40% 24% at 82% 58%, rgba(188, 24, 35, 0.03), transparent 70%),
    radial-gradient(65% 38% at 50% 96%, rgba(21, 23, 26, 0.028), transparent 70%);
}

/* ---------- Handwriting (Vara) containers ----------
   JS writes real letterform strokes into .vara-wrap. Until
   then it holds its space; on failure or reduced motion the
   text shows statically in the same script face. */
.vara-wrap { position: relative; }
.vara-wrap svg { overflow: visible; display: block; }
.vara-line { position: relative; overflow: visible; }
.vara-fallback {
  font-family: var(--font-marker);
  line-height: 1.25;
  display: block;
}

/* Marker type-on: the logo's hand. Letters snap in one at a time with a
   tiny settle, like a marker dotting the board. */
.mtype {
  font-family: var(--font-marker);
  line-height: 1.18;
  white-space: nowrap;
}
.mchar {
  display: inline-block;
  opacity: 0;
  transform: translateY(7px) rotate(var(--tilt, 0deg)) scale(1.14);
}
.mchar.on {
  opacity: 1;
  transform: none;
  transition: opacity 0.1s ease-out, transform 0.2s cubic-bezier(0.34, 1.4, 0.64, 1);
}

/* ---------- Drawn strokes (arrows, boxes, underlines) ----------
   Every .drawn path is dashed out by JS and draws itself when
   scrolled into view. */
.drawn { overflow: visible; }
.drawn path, .drawn ellipse {
  fill: none;
  stroke: var(--marker);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.drawn--red path, .drawn--red ellipse { stroke: var(--red); }
.drawn--blue path, .drawn--blue ellipse { stroke: var(--blue); }
.drawn--orange path, .drawn--orange ellipse { stroke: var(--orange); }
.drawn--thick path { stroke-width: 6; }

/* the logo's actual scribble (assets/swipe.png, extracted from the logo
   file), revealed left-to-right like the marker swipe that made it */
.swipe-img {
  display: block;
  height: auto;
  clip-path: inset(-5% 100% -5% 0);
}
.swipe-img.on { animation: swipeSweep 0.7s var(--ease) forwards; }
@keyframes swipeSweep {
  to { clip-path: inset(-5% 0% -5% 0); }
}

/* ---------- Handwritten annotations ---------- */
.note {
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.25;
  color: var(--ink-soft);
  transform: rotate(-2deg);
  display: inline-block;
}
.note--red { color: var(--red); }
.note--blue { color: var(--blue); }

.mk {
  font-family: var(--font-marker);
  font-weight: 400;
  color: var(--marker);
  transform: rotate(-1.2deg);
  display: inline-block;
}

/* ---------- Intro: the brand gets written ---------- */
.intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--paper);
  display: grid;
  place-items: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.intro.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.intro__stage { width: min(560px, 84vw); text-align: center; position: relative; }
/* The intro animates the logo's OWN pixels: three layers sliced from the
   logo file (wordmark / orange word / scribble), revealed in sequence.
   The end frame IS the logo — nothing is substituted or approximated. */
.intro__lockup {
  position: relative;
  width: min(440px, 78vw);
  margin-inline: auto;
}
.intro__lockup img, .intro__lockup svg {
  display: block;
  width: 100%;
  height: auto;
}
.intro__lockup img { clip-path: inset(-2% 100% -2% 0); }
.intro__lockup > * + * {
  position: absolute;
  inset: 0;
}
/* mask strokes that write the orange word; the dash state that hides and
   draws them lives in attributes (JS-driven) — CSS must not override it */
#commsMask .mp {
  fill: none;
  stroke: #fff;
  stroke-width: 24;
  stroke-linecap: round;
  stroke-linejoin: round;
}
#introScrib.on { animation: swipeSweep 0.7s var(--ease) forwards; }
.intro__skip {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  border: 0;
  background: none;
  color: var(--muted);
  font: 600 13px/1 var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 14px;
}
.intro__skip:hover { color: var(--ink); }

/* ---------- Scroll progress: the scribble reads along with you ----------
   The logo's own scribble texture draws across the very top of the page,
   reaching the right edge exactly when you reach the bottom. */
.scrollscrib {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 9px;
  z-index: 300;
  pointer-events: none;
}
.scrollscrib i {
  display: block;
  height: 100%;
  width: calc(var(--sp, 0) * 100%);
  background: url("assets/scrib-tile.png") repeat-x left center;
  background-size: auto 260%;
}

/* about as its own page */
.about--page { padding-top: clamp(140px, 20vh, 190px); }

/* ---------- Scratch pad (lower right) ---------- */
.scratch {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 600;
}
.scratch__btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px 12px 14px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: #fff;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
}
.scratch__btn:hover {
  transform: translateY(-3px) rotate(-1.5deg);
  box-shadow: 0 16px 44px rgba(21, 23, 26, 0.2);
  background: var(--paper-2);
}
.scratch__btn img {
  width: 38px;
  height: auto;
  transform: rotate(-6deg);
}
.scratch__btn-text {
  font-family: var(--font-marker);
  font-size: 17px;
  color: var(--marker);
}
.scratch__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  width: min(340px, calc(100vw - 36px));
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 20px 22px;
  transform: rotate(0.4deg);
}
.scratch__title {
  font-family: var(--font-marker);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 2px;
  color: var(--marker);
}
.scratch__sub { margin: 0 0 12px; font-size: 19px; }
.scratch__panel textarea,
.scratch__panel input {
  font: inherit;
  font-size: 15px;
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--paper-2);
  margin-bottom: 10px;
  transition: border-color 0.2s, background 0.2s;
}
.scratch__panel textarea:focus,
.scratch__panel input:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
}
.scratch__panel .btn { font-size: 15px; padding: 12px 18px; }
.scratch__done { margin: 12px 0 0; font-weight: 600; color: var(--blue-deep); font-size: 14.5px; }
.scratch__who {
  border: 0;
  padding: 0;
  margin: 2px 0 12px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.scratch__who label {
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}
.scratch__who input {
  width: 17px;
  height: 17px;
  accent-color: var(--red);
  cursor: pointer;
}

/* ---------- Privacy policy bubble ---------- */
.footer-nav__btn {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
}
.footer-nav__btn:hover { color: var(--ink); }
.policy-modal { position: fixed; inset: 0; z-index: 900; }
.policy-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 23, 26, 0.45);
}
.policy-modal__card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-0.3deg);
  width: min(880px, calc(100vw - 32px));
  max-height: min(84vh, 720px);
  overflow-y: auto;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  padding: clamp(24px, 4vw, 40px);
}
.policy-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: var(--paper-2);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.policy-modal__close:hover { background: var(--paper-3); }
.policy-modal__title {
  font-family: var(--font-marker);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px);
  margin: 2px 0 2px;
  color: var(--marker);
}
.policy-modal__updated { color: var(--muted); font-size: 13.5px; margin: 0 0 20px; }
/* two columns on desktop, stacked on mobile */
.policy-modal__body { columns: 2; column-gap: 40px; }
.policy-sec { break-inside: avoid; margin-bottom: 18px; }
.policy-sec h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.policy-sec p { color: var(--ink-soft); font-size: 14.5px; margin: 0 0 10px; }
.policy-sec strong { color: var(--ink); }
.policy-sec a { color: var(--blue); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.policy-sec a:hover { color: var(--blue-deep); }
@media (max-width: 820px) {
  .policy-modal__body { columns: 1; }
}


/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253, 253, 254, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
}
.brand__logo { height: 84px; width: auto; }
.site-footer .brand__logo { height: 88px; }

/* The logo rests without its scribble; hovering SCRIBBLES it in — three
   horizontal bands of the real artwork sweep in alternating directions,
   like a marker zigzagging under the word. */
.brand__lockup { position: relative; display: block; }
.brand__scrib {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.brand__scrib--1 { clip-path: inset(-2% 100% 62% 0); transition: clip-path 0.14s ease-in 0.24s; }
.brand__scrib--2 { clip-path: inset(30% 0% 30% 100%); transition: clip-path 0.14s ease-in 0.12s; }
.brand__scrib--3 { clip-path: inset(62% 100% -2% 0); transition: clip-path 0.14s ease-in 0s; }
.brand:hover .brand__scrib--1, .brand:focus-visible .brand__scrib--1 {
  clip-path: inset(-2% 0% 62% 0);
  transition-delay: 0s;
}
.brand:hover .brand__scrib--2, .brand:focus-visible .brand__scrib--2 {
  clip-path: inset(30% 0% 30% 0);
  transition-delay: 0.13s;
}
.brand:hover .brand__scrib--3, .brand:focus-visible .brand__scrib--3 {
  clip-path: inset(62% 0% -2% 0);
  transition-delay: 0.26s;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 30px);
  font-weight: 600;
  font-size: 15px;
}
.nav a { position: relative; padding: 6px 0; color: var(--ink-soft); }
.nav a:hover { color: var(--ink); }
.nav a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--blue);
  transition: right 0.28s var(--ease);
}
.nav a:not(.nav__cta):hover::after { right: 0; }
.nav__pledge {
  font-family: var(--font-marker);
  font-weight: 400;
  font-size: 15px;
  color: var(--blue) !important;
  transform: rotate(-1.5deg);
}
.nav__pledge::after { background: var(--red) !important; }
.nav__cta {
  background: var(--red);
  color: #fff !important;
  padding: 10px 18px !important;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), background 0.2s;
}
.nav__cta:hover { background: var(--red-deep); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s, color 0.2s;
}
.btn--primary { background: var(--red); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--red-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--blue { background: var(--blue); color: #fff; box-shadow: var(--shadow-sm); }
.btn--blue:hover { background: var(--blue-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--block { width: 100%; }

/* ---------- Fade reveal (opacity only — nothing slides) ---------- */
.reveal { opacity: 0; transition: opacity 0.8s ease; }
.reveal.in { opacity: 1; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(140px, 20vh, 200px) 0 clamp(60px, 9vh, 110px);
}
.hero__eyebrow {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 27px);
  color: var(--blue);
  transform: rotate(-1.6deg);
  margin: 0 0 10px;
}
.hero__vara { max-width: 900px; }
.hero__underline {
  width: min(420px, 70%);
  height: 26px;
  margin: 2px 0 6px;
}
.hero__lead {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink-soft);
  max-width: 58ch;
  margin: 22px 0 32px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero__pillars {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  padding: 0;
  margin: 44px 0 0;
  font-family: var(--font-marker);
  font-size: 15px;
  color: var(--ink-soft);
}
.hero__pillars li { display: flex; align-items: center; gap: 10px; transform: rotate(-0.8deg); }
.hero__pillars li::before {
  content: "";
  width: 14px; height: 14px;
  border-radius: 4px;
  background: var(--blue);
  transform: rotate(-6deg);
}
.hero__pillars li:nth-child(2n)::before { background: var(--red); transform: rotate(5deg); }

/* ---------- The promise, underscored by the logo's scribble ---------- */
.callout {
  padding: clamp(40px, 6vw, 80px) 0;
}
.callout__inner {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}
.callout__inner p {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0;
}
.callout__inner .hl-red { color: var(--red); }
.callout__inner .hl-blue { color: var(--blue); }
.callout__sub {
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
  font-size: clamp(16px, 1.6vw, 19px) !important;
  letter-spacing: 0 !important;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 14px auto 0 !important;
}
.callout__scrib {
  width: min(340px, 58%);
  margin: 22px auto 0;
}

/* ---------- Section heads (title gets handwritten) ---------- */
.shead { margin-bottom: clamp(30px, 4.5vw, 52px); }
.shead__kicker {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 24px;
  color: var(--red);
  transform: rotate(-1.6deg);
  display: inline-block;
  margin: 0 0 4px;
}
.shead__vara { max-width: 720px; }
.shead__sub { color: var(--ink-soft); font-size: 17px; margin: 14px 0 0; max-width: 62ch; }

/* ---------- Services: sticky notes on the board ---------- */
.map { padding: clamp(60px, 9vw, 110px) 0; }
.map__foot {
  margin: clamp(30px, 5vw, 52px) 0 0;
  text-align: center;
}
/* the "don't see it? ask." line is a real pitch — give it real presence */
.map__foot .note {
  font-size: clamp(24px, 2.6vw, 34px);
  color: var(--ink);
  line-height: 1.35;
  max-width: 52ch;
}
.map__foot .note strong {
  color: var(--red);
  font-weight: 700;
}

.details__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: start;
}
.card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: clamp(22px, 3vw, 32px);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.card--tape::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 92px;
  height: 20px;
  background: rgba(0, 74, 173, 0.14);
  border-left: 1px dashed rgba(0, 74, 173, 0.25);
  border-right: 1px dashed rgba(0, 74, 173, 0.25);
}
.card:nth-child(even).card--tape::before {
  background: rgba(188, 24, 35, 0.12);
  border-color: rgba(188, 24, 35, 0.22);
  transform: translateX(-50%) rotate(1.6deg);
}
.details__grid .card:nth-child(1) { transform: rotate(-0.5deg); }
.details__grid .card:nth-child(2) { transform: rotate(0.6deg); }
.details__grid .card:nth-child(3) { transform: rotate(0.4deg); }
.details__grid .card:nth-child(4) { transform: rotate(-0.6deg); }
.card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 25px);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.card p { color: var(--ink-soft); margin: 0; font-size: 15.5px; }

/* handwritten checklist of offerings inside each sticky note */
.card__list {
  list-style: none;
  margin: 16px 0 0;
  padding: 14px 0 0;
  border-top: 1.5px dashed var(--line);
  display: grid;
  gap: 7px;
}
.card__list li {
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.25;
  color: var(--ink-soft);
  padding-left: 26px;
  position: relative;
  transform: rotate(-0.5deg);
}
.card__list li:nth-child(even) { transform: rotate(0.4deg); }
.card__list li .tick {
  position: absolute;
  left: 2px;
  top: 0.3em;
  width: 16px;
  height: 14px;
}

/* ---------- Pledge banner: a note taped to the board ---------- */
.pledge-note { padding: clamp(30px, 5vw, 60px) 0; }
.pledge-note__card {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  padding: clamp(28px, 4vw, 44px);
  transform: rotate(-0.8deg);
}
.pledge-note__card .note { margin-bottom: 6px; }
.pledge-note__card h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.8vw, 30px);
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.pledge-note__card p { color: var(--ink-soft); margin: 0 auto 22px; max-width: 52ch; }

/* ---------- Approach ---------- */
.approach { padding: clamp(60px, 9vw, 110px) 0; }
.approach__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: start;
}
.approach__text p { color: var(--ink-soft); }
.approach__text p strong { color: var(--ink); }
.approach__points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}
.approach__points .card { transform: rotate(0.5deg); }
.approach__points .card:nth-child(2) { transform: rotate(-0.6deg); }
.approach__points .card strong { color: var(--ink); display: block; margin-bottom: 4px; }
.approach__points .card { color: var(--ink-soft); }

/* ---------- About ---------- */
.about { padding: clamp(60px, 9vw, 110px) 0; }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: stretch;
}
.about__media { position: relative; display: flex; }
.about__photo {
  margin: 0;
  flex: 1;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transform: rotate(-0.8deg);
  border: 12px solid #fff;
  outline: 1px solid var(--line);
  position: relative;
}
.about__photo::before, .about__photo::after {
  content: "";
  position: absolute;
  width: 74px;
  height: 22px;
  background: rgba(0, 74, 173, 0.13);
  border-left: 1px dashed rgba(0, 74, 173, 0.25);
  border-right: 1px dashed rgba(0, 74, 173, 0.25);
  z-index: 2;
}
.about__photo::before { top: -8px; left: -18px; transform: rotate(-38deg); }
.about__photo::after { top: -8px; right: -18px; transform: rotate(38deg); }
/* the photo runs the full height of the text beside it */
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}
.about__text p { color: var(--ink-soft); }

.creds { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 18px; }
.creds li { border-left: 4px solid var(--blue); padding-left: 18px; }
.creds li:nth-child(2) { border-left-color: var(--red); }
.creds__title { display: block; font-weight: 700; color: var(--ink); }
.creds__detail { display: block; color: var(--muted); font-size: 15px; margin-top: 4px; }

.link-arrow { font-weight: 700; color: var(--blue); display: inline-block; margin-top: 6px; }
.link-arrow:hover { color: var(--blue-deep); }

/* ---------- Contact (stays on the board — no dark strip) ---------- */
.contact { padding: clamp(60px, 9vw, 110px) 0 clamp(70px, 10vw, 120px); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: start;
}
.contact__pitch > p { color: var(--ink-soft); max-width: 46ch; }
.contact__direct { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.contact__direct li { display: grid; grid-template-columns: 74px minmax(0, 1fr); gap: 12px; align-items: baseline; }
.contact__direct a, .contact__direct address { overflow-wrap: anywhere; }
.contact__direct span {
  font-family: var(--font-marker);
  font-size: 13px;
  color: var(--muted);
  transform: rotate(-1.2deg);
}
.contact__direct a { font-weight: 600; }
.contact__direct a:hover { color: var(--blue); text-decoration: underline; }
.contact__direct address { font-style: normal; }

.contact__form {
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--ink);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 34px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  box-shadow: var(--shadow-md);
  transform: rotate(0.4deg);
}
.field { display: grid; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 14px; }
.field input, .field textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--paper-2);
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
}
.contact__form .btn { grid-column: 1 / -1; }

/* ---------- Footer (the marker tray) ---------- */
.site-footer {
  border-top: 0;
  padding: 44px 0 26px;
  position: relative;
}
.site-footer::before {
  /* aluminum marker tray along the bottom of the board */
  content: "";
  position: absolute;
  top: 0;
  left: 4%;
  right: 4%;
  height: 9px;
  border-radius: 5px;
  background: linear-gradient(180deg, var(--paper-3), var(--line));
  box-shadow: 0 2px 5px rgba(21, 23, 26, 0.08);
}
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 12px 22px; font-weight: 600; font-size: 14px; color: var(--ink-soft); }
.footer-nav a:hover { color: var(--ink); }
.disclaimer {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.disclaimer p { margin: 0; }

/* ============================================================
   PLEDGE PAGE — a letter, written on the board
   ============================================================ */

.pl-head { padding: clamp(140px, 20vh, 200px) 0 clamp(20px, 3vw, 40px); }
.pl-head__kicker {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 27px);
  color: var(--red);
  transform: rotate(-1.6deg);
  margin: 0 0 10px;
}
.pl-head__vara { max-width: 860px; }
.pl-head__lead {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink-soft);
  max-width: 58ch;
  margin: 24px 0 0;
}

/* the pledge: one promise, hand-boxed */
.pl-list { padding: clamp(30px, 5vw, 60px) 0 clamp(40px, 6vw, 70px); }
.pl-statement {
  position: relative;
  max-width: 860px;
  padding: clamp(28px, 4.5vw, 56px) clamp(24px, 5vw, 60px);
}
.pl-statement__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.pl-statement .vara-wrap { position: relative; }
.pl-list__note { margin: 22px 0 0; }

/* what I mean by that */
.pl-mean { padding: clamp(30px, 5vw, 70px) 0; }
.pl-mean__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 30px);
  max-width: 980px;
}
.pl-mean__grid h3 {
  font-family: var(--font-marker);
  font-weight: 400;
  font-size: clamp(19px, 2vw, 24px);
  margin: 0 0 10px;
  transform: rotate(-1.2deg);
}
.pl-mean__grid .card:nth-child(1) h3 { color: var(--blue); }
.pl-mean__grid .card:nth-child(2) h3 { color: var(--red); }
.pl-mean__grid .card:nth-child(1) { transform: rotate(-0.5deg); }
.pl-mean__grid .card:nth-child(2) { transform: rotate(0.5deg); }
.pl-mean__grid .card p { font-size: 16px; }

/* signature */
.pl-sign { padding: clamp(40px, 7vw, 90px) 0 clamp(80px, 10vw, 130px); }
.pl-sign__intro {
  color: var(--ink-soft);
  font-size: clamp(16px, 1.5vw, 19px);
  max-width: 58ch;
  margin: 0 0 40px;
}
.pl-sign__intro a { color: var(--blue); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.pl-sign__intro a:hover { color: var(--blue-deep); }
.pl-sign__label {
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: 24px;
  color: var(--muted);
  margin: 0 0 4px;
  transform: rotate(-1.4deg);
}
.pl-sign__vara { max-width: 460px; }
.pl-sign__swipe { width: min(320px, 72%); margin: 4px 0 16px; }
.pl-sign__org {
  margin: 0;
  font: 600 14px/1.5 var(--font-body);
  letter-spacing: 0.04em;
  color: var(--muted);
}
.pl-sign__print { margin: 34px 0 0; color: var(--muted); font-size: 14px; }
.pl-sign__print button {
  background: none;
  border: 0;
  color: var(--ink-soft);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}
.pl-sign__print button:hover { color: var(--ink); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .approach__inner, .about__inner, .contact__inner { grid-template-columns: 1fr; }
  .details__grid, .pl-mean__grid { grid-template-columns: 1fr; }
  /* single column: the photo goes back to a square crop */
  .about__media { max-width: 420px; }
  .about__photo img { height: auto; aspect-ratio: 1; }
}

@media (max-width: 720px) {
  .nav {
    position: fixed;
    top: 110px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 18px var(--gutter) 26px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    transition: transform 0.35s var(--ease);
  }
  .nav.open { transform: none; }
  .nav a { padding: 12px 4px; font-size: 17px; }
  .nav__cta { text-align: center; margin-top: 10px; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .contact__form { grid-template-columns: 1fr; transform: none; }
  .brand__logo { height: 70px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transition: none; }
  .intro { display: none; }
  .swipe-img { clip-path: none; animation: none; }
}

/* ---------- Print (pledge page) ---------- */
@media print {
  .site-header, .site-footer, .intro, .pl-sign__print { display: none !important; }
  body { background: #fff; }
  .pl-statement, .pl-mean__grid .card { break-inside: avoid; }
  .vara-fallback { display: block !important; }
}
