/* ==========================================================================
   Shane Yerkes — Author Platform
   Design system: "The Healing Road"  |  Lowcountry literary
   ========================================================================== */

:root{
  /* Warm literary neutrals. Colour comes from the photography, not the chrome. */
  --ink:        #171310;   /* warm near-black */
  --ink-soft:   #574e44;
  --paper:      #fbf8f3;   /* bone */
  --paper-2:    #f2ede4;   /* warm sand */
  --paper-3:    #e6ded1;
  --river:      #1c1815;   /* espresso — the dark band */
  --river-2:    #2b2420;
  --river-3:    #3a312b;
  --gold:       #b4592a;   /* copper — decorative only (rules, borders, art) */
  --gold-ink:   #a8541f;   /* copper darkened for TEXT + solid fills (AA everywhere) */
  --gold-2:     #d08a45;   /* copper lightened for use ON the dark band */
  --sage:       #8a7b68;   /* warm taupe (was green) */
  --line:       rgba(23,19,16,.14);
  --line-2:     rgba(23,19,16,.08);
  --shadow:     0 24px 60px -28px rgba(23,19,16,.42);
  --shadow-sm:  0 10px 28px -16px rgba(23,19,16,.34);
  --maxw:       1200px;
  --radius:     2px;
  --font-display:"Fraunces", Georgia, serif;
  --font-body:  "Newsreader", Georgia, serif;
  --font-ui:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  margin:0;
  font-family:var(--font-body);
  font-size:1.075rem;
  line-height:1.7;
  color:var(--ink);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{ max-width:100%; display:block; }
a{ color:var(--river-2); text-underline-offset:3px; }
a:hover{ color:var(--gold-ink); }

h1,h2,h3,h4{ font-family:var(--font-display); font-weight:560; line-height:1.03; color:var(--ink); margin:0 0 .45em; letter-spacing:-.022em; text-wrap:balance; }
h1{ font-size:clamp(2.9rem,7.4vw,5.6rem); }
h2{ font-size:clamp(2.1rem,4.6vw,3.4rem); }
h3{ font-size:clamp(1.28rem,2.2vw,1.6rem); line-height:1.15; letter-spacing:-.012em; }
h4{ font-size:1.05rem; letter-spacing:0; }
p{ margin:0 0 1.15em; max-width:68ch; }
.lead{ font-size:clamp(1.18rem,2.1vw,1.45rem); line-height:1.55; color:var(--ink-soft); letter-spacing:-.006em; }

.wrap{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:clamp(1.15rem,4vw,2.5rem); }
.narrow{ max-width:760px; }
section{ padding-block:clamp(4.5rem,10vw,8.5rem); }
section.tight{ padding-block:clamp(2.5rem,5vw,4rem); }
.eyebrow{
  font-family:var(--font-ui); font-size:.7rem; font-weight:600;
  letter-spacing:.26em; text-transform:uppercase; color:var(--gold-ink);
  margin:0 0 1.15rem;
}
.eyebrow.on-dark{ color:var(--gold-2); }

/* ---- Buttons ------------------------------------------------------------ */
.btn{
  --bg:var(--river); --fg:#fff;
  display:inline-flex; align-items:center; gap:.55rem;
  font-family:var(--font-ui); font-weight:600; font-size:.82rem; letter-spacing:.1em; text-transform:uppercase;
  padding:1.05rem 2rem; border-radius:var(--radius);
  background:var(--bg); color:var(--fg); border:1px solid var(--bg);
  text-decoration:none; cursor:pointer; transition:background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover{ color:var(--fg); }
.btn--gold{ --bg:var(--gold-ink); border-color:var(--gold-ink); }
.btn--gold:hover{ background:var(--gold-2); border-color:var(--gold-2); }
.btn--ghost{ --bg:transparent; --fg:var(--ink); border-color:var(--line); box-shadow:none; }
.btn--ghost:hover{ background:var(--paper-2); color:var(--ink); }
.btn--ghost.on-dark{ --fg:#f6f1e6; border-color:rgba(246,241,230,.4); }
.btn--ghost.on-dark:hover{ background:rgba(246,241,230,.12); color:#fff; }

/* ---- Header / Nav ------------------------------------------------------- */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(246,241,230,.9); backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line-2);
}
.nav{ display:flex; align-items:center; justify-content:space-between; gap:1rem; padding-block:.85rem; }
.brand{ font-family:var(--font-display); font-weight:600; font-size:1.28rem; color:var(--ink); text-decoration:none; letter-spacing:-.01em; line-height:1; }
.brand span{ display:block; font-family:var(--font-ui); font-size:.62rem; font-weight:600; letter-spacing:.22em; text-transform:uppercase; color:var(--gold-ink); margin-top:.3rem; }
.nav-links{ display:flex; align-items:center; gap:.3rem; list-style:none; margin:0; padding:0; }
.nav-links a{
  font-family:var(--font-ui); font-size:.9rem; font-weight:500; color:var(--ink-soft);
  text-decoration:none; padding:.5rem .7rem; border-radius:var(--radius); transition:color .15s, background .15s;
  white-space:nowrap;
}
.nav-links a:hover,.nav-links a[aria-current="page"]{ color:var(--river); background:var(--paper-2); }
.nav-cta{ margin-left:.4rem; }
.nav-toggle{ display:none; background:none; border:0; cursor:pointer; padding:.4rem; color:var(--ink); }
.nav-toggle svg{ width:26px; height:26px; }

/* Collapse to the menu button before the link row starts wrapping. */
@media (max-width:1040px){
  .nav-toggle{ display:inline-flex; }
  .nav-links{
    position:absolute; top:100%; left:0; right:0; flex-direction:column; align-items:stretch; gap:0;
    background:var(--paper); border-bottom:1px solid var(--line); padding:.5rem clamp(1.15rem,4vw,2.5rem) 1.2rem;
    box-shadow:var(--shadow-sm); display:none;
  }
  .nav-links.open{ display:flex; }
  .nav-links a{ padding:.8rem .4rem; border-bottom:1px solid var(--line-2); }
  .nav-cta{ margin:.7rem 0 0; }
}

/* ---- Hero --------------------------------------------------------------- */
.hero{ position:relative; background:var(--river); color:#f4ede0; overflow:hidden; }
.hero::after{ content:""; position:absolute; inset:0; background:
   radial-gradient(120% 90% at 85% 8%, rgba(180,89,42,.20), transparent 58%),
   radial-gradient(90% 80% at 0% 100%, rgba(58,49,43,.75), transparent 62%);
   pointer-events:none; }
.hero .wrap{ position:relative; z-index:1; display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(2.5rem,6vw,5.5rem); align-items:center; padding-block:clamp(4.5rem,11vw,9rem); }
.hero h1{ color:#fbf6ec; }
.hero .lead{ color:#dcd2bf; }
.hero .eyebrow{ color:var(--gold-2); }
.hero-actions{ display:flex; flex-wrap:wrap; gap:.8rem; margin-top:1.8rem; }
.hero-quote{ margin-top:2rem; font-family:var(--font-display); font-style:italic; font-size:1.15rem; color:#e9dfca; border-left:2px solid var(--gold); padding-left:1rem; }
@media (max-width:820px){ .hero .wrap{ grid-template-columns:1fr; } }

/* ---- Image placeholders (swap real photos in) -------------------------- */
.ph{
  position:relative; border-radius:var(--radius); overflow:hidden;
  background:
    linear-gradient(135deg, var(--river-2), var(--river) 60%);
  color:#e8dcc4; display:flex; align-items:center; justify-content:center; text-align:center;
  border:1px solid rgba(255,255,255,.08); box-shadow:var(--shadow);
}
.ph::before{ content:""; position:absolute; inset:0; background:
   repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 12px, transparent 12px 24px); }
.ph-label{ position:relative; font-family:var(--font-ui); font-size:.8rem; letter-spacing:.06em; padding:1.5rem; opacity:.92; }
.ph-label strong{ display:block; font-size:.7rem; letter-spacing:.2em; text-transform:uppercase; color:var(--gold-2); margin-bottom:.4rem; }
.ph--portrait{ aspect-ratio:4/5; }
.ph--wide{ aspect-ratio:16/10; }
.ph--cover{ aspect-ratio:2/3; max-width:340px; margin-inline:auto; }
.ph--square{ aspect-ratio:1/1; }
.ph--hero{ aspect-ratio:4/5; }

/* ---- Cards / grids ------------------------------------------------------ */
.grid{ display:grid; gap:clamp(1.2rem,3vw,2rem); }
.grid-2{ grid-template-columns:repeat(2,1fr); }
.grid-3{ grid-template-columns:repeat(3,1fr); }
@media (max-width:820px){ .grid-2,.grid-3{ grid-template-columns:1fr; } }

.card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  padding:clamp(1.4rem,3vw,2rem); box-shadow:var(--shadow-sm);
}
.card h3{ margin-top:0; }
.card .icon{ font-size:1.4rem; }

.split{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,5vw,4rem); align-items:center; }
.split.reverse .split-media{ order:2; }
@media (max-width:820px){ .split{ grid-template-columns:1fr; } .split.reverse .split-media{ order:0; } }

.band{ background:var(--paper-2); }
.band--river{ background:var(--river); color:#efe6d5; }
.band--river h1,.band--river h2,.band--river h3{ color:#fbf6ec; }
.band--river .lead{ color:#d8cdb8; }
.band--sand{ background:var(--paper-3); }

/* ---- Pull quote / philosophy ------------------------------------------- */
.pullquote{ font-family:var(--font-display); font-style:italic; font-size:clamp(1.6rem,4vw,2.6rem); line-height:1.25; color:var(--river); max-width:900px; }
.pullquote cite{ display:block; font-style:normal; font-family:var(--font-ui); font-size:.85rem; letter-spacing:.12em; text-transform:uppercase; color:var(--gold-ink); margin-top:1.2rem; }

/* ---- Forms -------------------------------------------------------------- */
.form{ display:grid; gap:1rem; }
.form .row{ display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
@media (max-width:560px){ .form .row{ grid-template-columns:1fr; } }
.field{ display:grid; gap:.35rem; }
.field label{ font-family:var(--font-ui); font-size:.82rem; font-weight:600; letter-spacing:.02em; color:var(--ink-soft); }
.field input,.field select,.field textarea{
  font-family:var(--font-ui); font-size:1rem; color:var(--ink);
  background:#fffdf8; border:1.5px solid var(--line); border-radius:var(--radius);
  padding:.75rem .9rem; width:100%; transition:border-color .15s, box-shadow .15s;
}
.field textarea{ min-height:130px; resize:vertical; }
.field input:focus,.field select:focus,.field textarea:focus{ outline:none; border-color:var(--river-3); box-shadow:0 0 0 3px rgba(47,106,114,.15); }
.form .hint{ font-family:var(--font-ui); font-size:.8rem; color:var(--ink-soft); }
.form-note{ font-family:var(--font-ui); font-size:.82rem; color:var(--ink-soft); }

/* Inline email capture */
.capture{ display:flex; gap:.6rem; flex-wrap:wrap; max-width:480px; }
.capture input{ flex:1 1 220px; font-family:var(--font-ui); font-size:1rem; padding:.8rem 1rem; border:1.5px solid var(--line); border-radius:var(--radius); background:#fffdf8; }
.capture.on-dark input{ background:rgba(255,255,255,.95); border-color:transparent; }
.capture input:focus{ outline:none; border-color:var(--river-3); box-shadow:0 0 0 3px rgba(47,106,114,.18); }

.form-success{ display:none; font-family:var(--font-ui); font-weight:600; color:var(--river); background:rgba(47,106,114,.1); border:1px solid rgba(47,106,114,.25); border-radius:var(--radius); padding:.9rem 1.1rem; }
.form-success.show{ display:block; }

/* ---- Events ------------------------------------------------------------- */
.event{
  display:grid; grid-template-columns:auto 1fr auto; gap:1.5rem; align-items:center;
  background:#fffdf8; border:1px solid var(--line-2); border-radius:var(--radius);
  padding:1.3rem 1.5rem; box-shadow:var(--shadow-sm); margin-bottom:1rem;
}
.event .date{ text-align:center; min-width:74px; }
.event .date .mon{ font-family:var(--font-ui); font-size:.72rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--gold-ink); }
.event .date .day{ font-family:var(--font-display); font-size:2rem; line-height:1; color:var(--river); }
.event .meta h3{ margin:0 0 .2rem; font-size:1.2rem; }
.event .meta p{ margin:0; font-family:var(--font-ui); font-size:.9rem; color:var(--ink-soft); }
@media (max-width:640px){ .event{ grid-template-columns:auto 1fr; } .event .btn{ grid-column:1/-1; justify-content:center; } }
.empty-events{ text-align:center; padding:2.5rem 1rem; border:1px dashed var(--line); border-radius:var(--radius); background:var(--paper-2); }

/* ---- Misc --------------------------------------------------------------- */
.tag-row{ display:flex; flex-wrap:wrap; gap:.5rem; margin:1rem 0 0; }
.tag{ font-family:var(--font-ui); font-size:.78rem; font-weight:600; letter-spacing:.02em; color:var(--river); background:var(--paper-2); border:1px solid var(--line-2); padding:.35rem .75rem; border-radius:100px; }
.divider{ width:60px; height:2px; background:var(--gold); border:0; margin:1.5rem 0; }
.center{ text-align:center; }
.center .divider{ margin-inline:auto; }
.stack>*+*{ margin-top:1.5rem; }
.note{ font-family:var(--font-ui); font-size:.85rem; color:var(--ink-soft); background:var(--paper-2); border-left:3px solid var(--gold); padding:.8rem 1rem; border-radius:0 var(--radius) var(--radius) 0; }

/* ---- Footer ------------------------------------------------------------- */
.site-footer{ background:var(--ink); color:#d9cfbd; font-family:var(--font-ui); font-size:.92rem; }
.site-footer a{ color:#e7dcc7; text-decoration:none; }
.site-footer a:hover{ color:var(--gold-2); }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:2rem; padding-block:clamp(2.5rem,6vw,3.5rem); }
.footer-grid h4{ font-family:var(--font-ui); font-size:.78rem; letter-spacing:.16em; text-transform:uppercase; color:var(--gold-2); margin:0 0 1rem; }
.footer-grid ul{ list-style:none; margin:0; padding:0; display:grid; gap:.55rem; }
.footer-brand{ font-family:var(--font-display); font-size:1.4rem; color:#f6f1e6; margin-bottom:.5rem; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.1); padding-block:1.3rem; display:flex; flex-wrap:wrap; justify-content:space-between; gap:.6rem; font-size:.82rem; color:#a99e8c; }
@media (max-width:720px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:480px){ .footer-grid{ grid-template-columns:1fr; } }

/* ---- Reveal on scroll --------------------------------------------------- */
.js .reveal{ opacity:0; transform:translateY(18px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){ .js .reveal,.reveal{ opacity:1; transform:none; transition:none; } html{ scroll-behavior:auto; } }

/* skip link */
.skip{ position:absolute; left:-999px; top:0; background:var(--river); color:#fff; padding:.6rem 1rem; z-index:100; border-radius:0 0 var(--radius) 0; }
.skip:focus{ left:0; }

/* ==========================================================================
   V2 — Cinematic layer
   ========================================================================== */

/* Paper grain (tiled into the body background — cheap to paint) */
body{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
}

/* Anchor offset under sticky header + visible keyboard focus */
[id]{ scroll-margin-top:92px; }
:focus-visible{ outline:2px solid var(--gold); outline-offset:2px; }

/* ---- Real photos: unified duotone-leaning treatment --------------------- */
.photo-frame{
  position:relative; border-radius:var(--radius); overflow:hidden;
  box-shadow:var(--shadow); border:1px solid var(--line-2); margin:0;
}
/* <picture> is inline by default — it must fill the framed figure so the
   aspect-ratio on .photo--* governs the crop. */
.photo-frame picture{ display:block; width:100%; height:100%; }
.photo-frame img{
  width:100%; height:100%; object-fit:cover; display:block;
  filter:saturate(.94) contrast(1.03);
}
.photo-frame::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(165deg, rgba(23,19,16,.30), rgba(23,19,16,0) 45%, rgba(180,89,42,.12) 100%);
  mix-blend-mode:multiply;
}
.photo-frame figcaption{
  position:absolute; left:0; right:0; bottom:0; z-index:1;
  font-family:var(--font-ui); font-size:.72rem; letter-spacing:.08em; text-transform:uppercase;
  color:#f2e9d6; background:linear-gradient(transparent, rgba(22,26,24,.72));
  padding:2.2rem 1rem .7rem; text-align:right;
}
.photo--hero{ aspect-ratio:4/5; margin:0; }
.photo--portrait{ aspect-ratio:4/5; }
.photo--wide{ aspect-ratio:16/10; }
.photo--square{ aspect-ratio:1/1; }
.photo--tall{ aspect-ratio:3/4; }

/* ---- Road art panels (inline SVG scenes) -------------------------------- */
.art-panel{
  position:relative; border-radius:var(--radius); overflow:hidden;
  box-shadow:var(--shadow); border:1px solid rgba(255,255,255,.1);
}
.art-panel svg{ display:block; width:100%; height:auto; }
.road-dash{ animation:roaddash 26s linear infinite; }
@keyframes roaddash{ to{ stroke-dashoffset:-640; } }
@media (prefers-reduced-motion:reduce){ .road-dash{ animation:none; } }

/* ---- Book jacket (designed pre-cover stand-in) -------------------------- */
.jacket{
  position:relative; aspect-ratio:2/3; max-width:340px; margin-inline:auto;
  border-radius:3px 8px 8px 3px; overflow:hidden; box-shadow:var(--shadow);
}
.jacket svg,.jacket img{ display:block; width:100%; height:100%; object-fit:cover; }
.jacket::after{ /* spine light */
  content:""; position:absolute; top:0; bottom:0; left:0; width:14px;
  background:linear-gradient(90deg, rgba(0,0,0,.28), rgba(255,255,255,.08) 55%, transparent);
  pointer-events:none;
}
.jacket-note{
  display:block; text-align:center; margin-top:.9rem;
  font-family:var(--font-ui); font-size:.74rem; font-weight:600;
  letter-spacing:.16em; text-transform:uppercase; color:var(--gold-ink);
}
.band--river .jacket-note{ color:var(--gold-2); }

/* ---- Reveal stagger in grids -------------------------------------------- */
.grid .reveal:nth-child(2){ transition-delay:.12s; }
.grid .reveal:nth-child(3){ transition-delay:.24s; }
.grid .reveal:nth-child(4){ transition-delay:.36s; }

/* ---- Excerpt / book-page typesetting ------------------------------------ */
.book-page{
  background:#fffdf8; border:1px solid var(--line-2); border-radius:var(--radius);
  box-shadow:var(--shadow); max-width:740px; margin-inline:auto;
  padding:clamp(2.2rem,6vw,4.5rem);
}
.book-page p{ font-size:1.13rem; line-height:1.85; }
.book-page .dropcap::first-letter{
  font-family:var(--font-display); font-weight:560; font-size:3.9em;
  float:left; line-height:.8; padding:.04em .14em 0 0; color:var(--river);
}
.ornament{ text-align:center; color:var(--gold-ink); letter-spacing:.6em; margin:1.6rem 0; font-size:.9rem; }

/* Clearly-marked editorial placeholder (awaiting real content) */
.placeholder-block{
  border:1.5px dashed var(--gold); background:rgba(176,120,43,.07);
  border-radius:var(--radius); padding:1.2rem 1.4rem;
  font-family:var(--font-ui); font-size:.9rem; color:var(--ink-soft);
}
.placeholder-block strong{
  display:block; font-size:.7rem; font-weight:700; letter-spacing:.2em;
  text-transform:uppercase; color:var(--gold-ink); margin-bottom:.35rem;
}

/* ---- Press kit ----------------------------------------------------------- */
.factlist{ display:grid; grid-template-columns:auto 1fr; gap:.55rem 1.4rem; margin:0; }
.factlist dt{ font-family:var(--font-ui); font-size:.78rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--gold-ink); padding-top:.15rem; }
.factlist dd{ margin:0; }
@media (max-width:560px){ .factlist{ grid-template-columns:1fr; gap:.15rem; } .factlist dd{ margin-bottom:.7rem; } }

/* ---- Resources pillars (shared by hub + guide pages) --------------------- */
.jump{ display:flex; flex-wrap:wrap; gap:.5rem; margin-top:1.6rem; }
.jump a{
  font-family:var(--font-ui); font-size:.82rem; font-weight:600; letter-spacing:.01em;
  color:#f2e9d6; text-decoration:none; background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18); padding:.4rem .85rem; border-radius:100px;
  transition:background .15s, color .15s;
}
.jump a:hover{ background:var(--gold-ink); color:#fff; border-color:var(--gold-ink); }
.jump.on-light a{ color:var(--river); background:var(--paper-2); border-color:var(--line-2); }
.jump.on-light a:hover{ background:var(--gold-ink); color:#fff; border-color:var(--gold-ink); }
.res-links{ list-style:none; margin:.4rem 0 0; padding:0; display:grid; gap:.7rem; }
.res-links li{ padding-left:1.4rem; position:relative; }
.res-links li::before{ content:"→"; position:absolute; left:0; color:var(--gold-ink); font-family:var(--font-ui); }
.pillar-num{ font-family:var(--font-ui); font-size:.72rem; font-weight:700; letter-spacing:.18em; color:var(--gold-ink); }
.pillar-card{ position:relative; display:flex; flex-direction:column; gap:.6rem; text-decoration:none; color:inherit; transition:transform .18s ease, box-shadow .2s ease; }
.pillar-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); color:inherit; }
.pillar-card .go{ margin-top:auto; font-family:var(--font-ui); font-weight:600; font-size:.9rem; color:var(--gold-ink); }
.guide-callout{
  background:#fffdf8; border-left:3px solid var(--gold); border-radius:0 var(--radius) var(--radius) 0;
  box-shadow:var(--shadow-sm); padding:1.3rem 1.5rem; margin:1.6rem 0;
}
.guide-callout h3{ margin:0 0 .35rem; font-size:1.1rem; }
.guide-callout p{ margin:0; font-size:1rem; }

/* ---- Form async states ---------------------------------------------------- */
.form-error{
  display:none; font-family:var(--font-ui); font-weight:600; color:#7c2d12;
  background:rgba(176,60,30,.08); border:1px solid rgba(176,60,30,.3);
  border-radius:var(--radius); padding:.9rem 1.1rem; margin-top:.8rem;
}
.form-error.show{ display:block; }
.btn[disabled]{ opacity:.6; cursor:default; transform:none; }

/* ==========================================================================
   Print — press kits, guides, and booking pages get printed by real people
   (bookers, librarians, caregivers). Make paper legible and cheap.
   ========================================================================== */
@media print{
  :root{ --ink:#000; --ink-soft:#333; }
  *{ box-shadow:none !important; text-shadow:none !important; }
  body{ background:#fff !important; color:#000; font-size:11.5pt; line-height:1.45; }
  /* Kill navigation, capture forms, and decorative art — they waste toner. */
  .site-header,.nav,.nav-toggle,.skip,.jump,.hero-actions,.btn,
  form,.form-success,.form-error,.art-panel,.jacket,.jacket-note,
  .photo-frame figcaption,.placeholder-block{ display:none !important; }
  .hero,.band--river,.band--sand{ background:#fff !important; color:#000 !important; }
  .hero::after{ display:none !important; }
  .hero h1,.band--river h1,.band--river h2,.band--river h3,
  .hero .lead,.band--river .lead,.band--river p{ color:#000 !important; }
  .eyebrow,.pillar-num{ color:#000 !important; font-size:8pt; }
  section{ padding-block:.6rem !important; }
  .wrap{ max-width:none; padding-inline:0; }
  h1{ font-size:22pt; } h2{ font-size:15pt; } h3{ font-size:12pt; }
  h1,h2,h3,h4{ break-after:avoid; page-break-after:avoid; }
  p,li,blockquote,.card{ break-inside:avoid; page-break-inside:avoid; }
  .card,.guide-callout,.note,.book-page{ border:1px solid #bbb !important; background:#fff !important; }
  .grid-2,.grid-3{ grid-template-columns:1fr 1fr !important; }
  .photo-frame{ max-width:2.5in; }
  .photo-frame img{ filter:grayscale(1) contrast(1.1); }
  /* Print the destination of every link so a paper copy stays usable. */
  main a[href^="http"]::after{ content:" (" attr(href) ")"; font-size:8pt; color:#444; word-break:break-all; }
  main a[href^="mailto:"]::after{ content:" (" attr(href) ")"; font-size:8pt; color:#444; }
  .site-footer{ background:#fff !important; color:#000 !important; border-top:1px solid #bbb; padding-block:.5rem; }
  .site-footer a,.site-footer p,.footer-brand,.site-footer h4{ color:#000 !important; }
  .footer-grid{ display:none !important; }
}

/* ==========================================================================
   From the Road — photo album
   True masonry (CSS columns) so every snapshot keeps its own shape. These are
   phone photos from the actual trip; cropping them to a uniform grid would
   make them look like stock. Honest shapes read as honest pictures.
   ========================================================================== */
.album-feature{ max-width:820px; margin-inline:auto; }
.album{ column-count:3; column-gap:clamp(.7rem,1.6vw,1.2rem); margin-top:clamp(1.6rem,4vw,2.6rem); }
@media (max-width:900px){ .album{ column-count:2; } }
@media (max-width:560px){ .album{ column-count:1; } }

.album figure{
  break-inside:avoid; -webkit-column-break-inside:avoid; page-break-inside:avoid;
  margin:0 0 clamp(.7rem,1.6vw,1.2rem); position:relative;
}
.shot{
  display:block; width:100%; padding:0; border:1px solid var(--line-2); background:none;
  border-radius:var(--radius); overflow:hidden; cursor:zoom-in; position:relative;
  box-shadow:var(--shadow-sm); transition:transform .22s ease, box-shadow .22s ease;
}
.shot img{ width:100%; height:auto; display:block; filter:saturate(.92) contrast(1.02); }
.shot:hover{ transform:translateY(-3px); box-shadow:var(--shadow); }
.shot::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(180deg, rgba(23,19,16,0) 55%, rgba(23,19,16,.42));
  opacity:0; transition:opacity .22s ease;
}
.shot:hover::after{ opacity:1; }
.album figcaption{
  font-family:var(--font-ui); font-size:.8rem; color:var(--ink-soft);
  padding:.5rem .1rem 0; letter-spacing:.01em;
}

/* ---- Lightbox ----------------------------------------------------------- */
.lightbox{
  position:fixed; inset:0; z-index:200; display:none;
  background:rgba(18,15,13,.95); backdrop-filter:blur(6px);
  align-items:center; justify-content:center; padding:clamp(1rem,4vw,3rem);
}
.lightbox.open{ display:flex; }
.lightbox figure{ margin:0; max-width:min(1100px,100%); max-height:100%; display:flex; flex-direction:column; gap:.8rem; }
.lightbox img{
  max-width:100%; max-height:78vh; width:auto; height:auto; margin-inline:auto;
  border-radius:var(--radius); box-shadow:0 30px 80px -30px rgba(0,0,0,.8);
}
.lightbox figcaption{
  font-family:var(--font-ui); font-size:.92rem; color:#e4d9c2; text-align:center;
}
.lightbox figcaption span{ display:block; font-size:.75rem; letter-spacing:.16em; text-transform:uppercase; color:var(--gold-2); margin-top:.35rem; }
.lb-btn{
  position:absolute; background:rgba(246,241,230,.12); border:1px solid rgba(246,241,230,.28);
  color:#f6f1e6; width:46px; height:46px; border-radius:50%; cursor:pointer;
  display:flex; align-items:center; justify-content:center; font-size:1.3rem; line-height:1;
  transition:background .15s ease;
}
.lb-btn:hover{ background:rgba(246,241,230,.26); }
.lb-close{ top:clamp(.8rem,3vw,1.6rem); right:clamp(.8rem,3vw,1.6rem); }
.lb-prev{ left:clamp(.5rem,2vw,1.6rem); top:50%; transform:translateY(-50%); }
.lb-next{ right:clamp(.5rem,2vw,1.6rem); top:50%; transform:translateY(-50%); }
@media (max-width:560px){ .lb-prev{ left:.4rem; } .lb-next{ right:.4rem; } }

@media print{
  .album{ column-count:2; }
  .shot{ box-shadow:none !important; }
  .lightbox{ display:none !important; }
}

/* ==========================================================================
   V3 — Premium editorial layer
   Restraint over decoration: hairline rules instead of boxes, real whitespace,
   display type doing the work. Colour comes from the photographs.
   ========================================================================== */

/* Photo frames lose the heavy card look — a hairline and the image itself. */
.photo-frame{ border:0; box-shadow:none; border-radius:var(--radius); }
.photo-frame::after{ display:none; }
.photo-frame figcaption{
  position:static; background:none; color:var(--ink-soft);
  font-family:var(--font-ui); font-size:.68rem; letter-spacing:.2em; text-transform:uppercase;
  padding:.85rem 0 0; text-align:left;
}
.band--river .photo-frame figcaption{ color:#a89a89; }

/* A rule + label pairing used to open sections (replaces boxed eyebrows). */
.rule-label{
  display:flex; align-items:center; gap:1.1rem; margin-bottom:1.6rem;
  font-family:var(--font-ui); font-size:.7rem; font-weight:600;
  letter-spacing:.26em; text-transform:uppercase; color:var(--gold-ink);
}
.rule-label::after{ content:""; flex:1; height:1px; background:var(--line); }
.band--river .rule-label{ color:var(--gold-2); }
.band--river .rule-label::after{ background:rgba(251,248,243,.18); }

/* Oversized display moment — used sparingly, once per page at most. */
.display{
  font-family:var(--font-display); font-weight:400; font-style:italic;
  font-size:clamp(1.8rem,4.4vw,3.2rem); line-height:1.18; letter-spacing:-.02em;
  color:var(--ink); max-width:22ch;
}
.band--river .display,.bleed .display{ color:#fdfbf7; }
.bleed p{ color:#ddd3c6; }

/* Pull quote: no box, just a rule and air. */
.pullquote{
  border:0; background:none; padding:0; margin:2.5rem 0;
  font-family:var(--font-display); font-style:italic; font-weight:400;
  font-size:clamp(1.5rem,3.2vw,2.3rem); line-height:1.25; letter-spacing:-.018em;
  color:var(--ink); max-width:26ch;
}
.pullquote::before{ content:""; display:block; width:54px; height:2px; background:var(--gold); margin-bottom:1.6rem; }
.center .pullquote,.pullquote[style*="margin-inline:auto"]{ max-width:30ch; }
.center .pullquote::before,.pullquote[style*="margin-inline:auto"]::before{ margin-inline:auto; }
.pullquote cite{
  display:block; margin-top:1.4rem; font-style:normal; font-family:var(--font-ui);
  font-size:.72rem; letter-spacing:.2em; text-transform:uppercase; color:var(--ink-soft);
}

/* Divider becomes a hairline, not a gold bar. */
.divider{ width:100%; max-width:none; height:1px; background:var(--line); margin:2rem 0; }

/* Tags: quieter. */
.tag{ background:none; border:1px solid var(--line); color:var(--ink-soft);
      font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; }

/* Full-bleed image band with overlaid type — the premium hero alternative. */
.bleed{ position:relative; min-height:clamp(420px,64vh,720px); display:grid; align-items:end; overflow:hidden; background:var(--river); }
/* <picture> is inline and breaks absolute fill — target the wrapper too. */
.bleed > picture{ position:absolute; inset:0; display:block; }
.bleed img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
/* The photograph is a BACKDROP, not a competitor. Darkening the image itself is
   what makes overlaid type readable everywhere — a gradient alone cannot fix a
   busy mid-tone sky. Vignette + bottom weight then seat the type. */
.bleed img{ filter:brightness(.60) saturate(1.12) contrast(1.04); }
.bleed::after{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(120% 95% at 78% 22%, rgba(20,16,14,0) 0%, rgba(20,16,14,.55) 70%, rgba(20,16,14,.8) 100%),
    linear-gradient(90deg, rgba(20,16,14,.72) 0%, rgba(20,16,14,.42) 42%, rgba(20,16,14,.1) 78%, rgba(20,16,14,0) 100%),
    linear-gradient(180deg, rgba(20,16,14,.5) 0%, rgba(20,16,14,.08) 26%, rgba(20,16,14,.72) 100%);
}
@media (max-width:820px){
  /* The mobile scrim is heavier, so the image itself needs LESS darkening —
     stacking both turned the photo black. */
  .bleed img{ filter:brightness(.66) saturate(1.12) contrast(1.04); }
  .bleed::after{
    background:linear-gradient(180deg, rgba(20,16,14,.55) 0%, rgba(20,16,14,.44) 34%, rgba(20,16,14,.84) 100%);
  }
}
.bleed .wrap{ position:relative; z-index:1; padding-block:clamp(2.5rem,6vw,4.5rem); }
.bleed h1,.bleed h2{ color:#fdfbf7; }
.bleed .lead{ color:#ddd3c6; }

/* Nav: smaller, letterspaced, less button-y. */
.nav-links a{ font-size:.76rem; letter-spacing:.14em; text-transform:uppercase; font-weight:500; }
.nav-links a:hover,.nav-links a[aria-current="page"]{ background:none; color:var(--gold-ink); }
.nav-cta .btn{ padding:.7rem 1.15rem; font-size:.68rem; letter-spacing:.12em; }
.brand{ font-size:1.18rem; }
.brand span{ font-size:.56rem; letter-spacing:.28em; }
.site-header{ background:rgba(251,248,243,.86); }

/* Footer: airier. */
.site-footer{ padding-block:clamp(3.5rem,7vw,5.5rem) 0; }
.footer-grid{ gap:clamp(2rem,5vw,4rem); }

/* Cards used as links keep a hairline hover instead of a lift. */
.pillar-card:hover{ transform:none; box-shadow:none; border-color:var(--gold); }
.card{ box-shadow:none; }

@media (max-width:1040px){
  .nav-links a{ font-size:.82rem; letter-spacing:.1em; }
}

/* Full-bleed homepage hero — poster treatment. */
.hero-bleed{ min-height:clamp(600px,92vh,940px); }
.hero-bleed .wrap{ padding-bottom:clamp(3.5rem,8vw,6rem); max-width:var(--maxw); }
.hero-bleed .eyebrow{
  color:#f2e8db; font-size:.72rem; letter-spacing:.34em;
  display:flex; align-items:center; gap:1rem;
}
.hero-bleed .eyebrow::before{ content:""; width:46px; height:2px; background:var(--gold-2); flex:none; }
.hero-bleed h1{
  font-size:clamp(3.4rem,9.5vw,7.4rem); margin-bottom:.28em; color:#fff;
  text-shadow:0 2px 40px rgba(0,0,0,.55), 0 1px 3px rgba(0,0,0,.35);
}
.hero-bleed .lead{
  max-width:44ch; color:#ece3d7; font-size:clamp(1.12rem,1.7vw,1.32rem);
  text-shadow:0 1px 20px rgba(0,0,0,.6);
}
.hero-bleed .hero-actions{ margin-top:2.4rem; }
.hero-bleed .eyebrow,.hero-bleed .lead{ text-wrap:pretty; }
@media (max-width:820px){
  .hero-bleed{ min-height:auto; padding-block:clamp(3rem,10vw,5rem) 0; }
  .hero-bleed .wrap{ padding-block:clamp(5rem,18vw,7rem) clamp(3rem,10vw,4.5rem); }
  .hero-bleed .lead{ max-width:34ch; }
  .hero-bleed .hero-actions .btn{ width:100%; justify-content:center; }
}

/* Author byline — E-E-A-T signal, and it tells a reader who is talking. */
.byline{
  font-family:var(--font-ui); font-size:.86rem; line-height:1.6; color:var(--ink-soft);
  border-left:2px solid var(--gold); padding-left:1.1rem; margin:0; max-width:none;
}
.byline span{ display:block; margin-top:.35rem; font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; color:#6b6154; }

/* Real-photo interlude band — a breath between sections. */
.interlude{ min-height:clamp(340px,52vh,560px); }
.interlude .wrap{ padding-block:clamp(2rem,5vw,3.5rem); }
.interlude .display{ max-width:18ch; margin-bottom:1.6rem; }
.interlude p:last-child{ margin:0; }

/* Inner-page hero: same poster language as the homepage, shorter. */
.page-hero{ min-height:clamp(340px,54vh,540px); }
.page-hero .wrap{ padding-block:clamp(3rem,7vw,4.5rem); }
.page-hero .eyebrow{ color:#f2e8db; letter-spacing:.34em; display:flex; align-items:center; gap:1rem; }
.page-hero .eyebrow::before{ content:""; width:46px; height:2px; background:var(--gold-2); flex:none; }
.page-hero h1{ color:#fff; text-shadow:0 2px 36px rgba(0,0,0,.5); margin-bottom:.3em; }
.page-hero .lead{ color:#ece3d7; max-width:56ch; text-shadow:0 1px 18px rgba(0,0,0,.55); }
.page-hero .jump a{ background:rgba(255,255,255,.1); border-color:rgba(255,255,255,.28); color:#f5efe6; }
.page-hero .jump a:hover{ background:var(--gold-ink); border-color:var(--gold-ink); color:#fff; }

/* Praise page stays typographic — but treat the H1 as a display statement. */
.praise-hero h1{ font-family:var(--font-display); font-style:italic; font-size:clamp(2.4rem,5.4vw,4.2rem); }

/* Photos that are already dark (night shots) shouldn't be darkened twice. */
.bleed--night img{ filter:brightness(.92) saturate(1.1) contrast(1.02); }
@media (max-width:820px){ .bleed--night img{ filter:brightness(.8) saturate(1.1); } }


@media (max-width:820px){
  /* Inner-page heroes use wide 2.4:1 bands; keep the box near that ratio on
     phones so object-fit isn't throwing away most of the photograph. */
  .page-hero{ min-height:clamp(260px,42vw,330px); }
  .page-hero .wrap{ padding-block:clamp(2rem,7vw,2.8rem); }
  .page-hero .lead{ max-width:38ch; }
}

/* ==========================================================================
   Closing layer — capture surfaces + scan page
   ========================================================================== */

/* Footer capture (only on pages that don't already end in a capture band). */
.footer-cap{
  display:grid; grid-template-columns:1fr 1fr; gap:2rem; align-items:center;
  padding-block:2.2rem; margin-bottom:2.2rem;
  border-top:1px solid rgba(251,248,243,.14); border-bottom:1px solid rgba(251,248,243,.14);
}
.footer-cap-title{ font-family:var(--font-display); font-size:clamp(1.3rem,2.4vw,1.7rem); color:#fdfbf7; margin:0; }
@media (max-width:820px){ .footer-cap{ grid-template-columns:1fr; gap:1.2rem; } }

/* /go — the two-seconds-after-scan page. */
.scan-page .scan-hero{ min-height:100vh; min-height:100svh; align-items:center; }
.scan-hero .wrap{ max-width:640px; margin-inline:auto; text-align:center; padding-block:clamp(3rem,8vw,5rem); }
.scan-hero .eyebrow{ justify-content:center; }
.scan-hero h1{ font-size:clamp(3rem,10vw,4.6rem); color:#fff; text-shadow:0 2px 40px rgba(0,0,0,.55); }
.scan-hero .lead{ color:#ece3d7; margin-inline:auto; text-shadow:0 1px 18px rgba(0,0,0,.55); }
.scan-hero .capture{ justify-content:center; margin-top:1.8rem; }
.scan-links{ display:flex; gap:1.6rem; justify-content:center; flex-wrap:wrap; margin-top:2rem; }
.scan-links a{
  font-family:var(--font-ui); font-size:.76rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  color:#f2e8db; text-decoration:none; border-bottom:1px solid var(--gold-2); padding-bottom:.3rem;
}
.scan-links a:hover{ color:var(--gold-2); }

/* ==========================================================================
   Scroll-driven depth — pure CSS (2026), zero JS, fully guarded.
   The bleed photograph drifts slowly as it crosses the viewport.
   ========================================================================== */
@supports (animation-timeline: view()){
  @media (prefers-reduced-motion: no-preference){
    .bleed img{
      scale:1.14;
      animation:bleed-drift linear both;
      animation-timeline:view();
    }
    @keyframes bleed-drift{
      from{ transform:translateY(-3.5%); }
      to{   transform:translateY(3.5%); }
    }
  }
}

/* ==========================================================================
   THE ROAD — scroll-driven journey. The book's premise as an experience:
   a copper line draws itself down the page as the trip unspools.
   Pure CSS scroll animation; older browsers simply see the finished line.
   ========================================================================== */
.journey{ position:relative; padding-block:clamp(4.5rem,10vw,8rem); background:var(--paper); overflow:clip; }
.journey .wrap{ position:relative; }

.journey-rail{
  position:absolute; top:.4rem; bottom:.4rem; left:11px; width:2px;
  /* Dashed track reads as a road's centerline; the copper fill drives over it. */
  background:repeating-linear-gradient(var(--line) 0 10px, transparent 10px 20px);
}
.journey-rail i{
  position:absolute; inset:0; background:linear-gradient(var(--gold), var(--gold-ink));
  transform-origin:top;
}
@supports (animation-timeline: view()){
  @media (prefers-reduced-motion: no-preference){
    .journey-rail i{
      animation:rail-grow linear both;
      animation-timeline:view();
      animation-range:entry 10% exit 90%;
    }
    @keyframes rail-grow{ from{ transform:scaleY(0); } to{ transform:scaleY(1); } }
  }
}

.journey-head{ padding-left:clamp(2.6rem,6vw,4rem); margin-bottom:clamp(2.5rem,6vw,4rem); max-width:640px; }

.stop{
  position:relative; padding-left:clamp(2.6rem,6vw,4rem);
  display:grid; grid-template-columns:minmax(0,30ch) minmax(0,1fr);
  gap:clamp(1.6rem,4vw,3.5rem); align-items:center;
  margin-bottom:clamp(3.5rem,8vw,6rem);
}
.stop:last-child{ margin-bottom:0; }
.stop::before{               /* waypoint marker on the rail */
  content:""; position:absolute; left:5px; top:.55rem;
  width:14px; height:14px; border-radius:50%;
  background:var(--paper); border:3px solid var(--gold-ink);
}
.stop-place{
  font-family:var(--font-ui); font-size:.66rem; font-weight:700;
  letter-spacing:.3em; text-transform:uppercase; color:var(--gold-ink); margin:0 0 .8rem;
}
.stop-line{
  font-family:var(--font-display); font-style:italic; font-weight:400;
  font-size:clamp(1.25rem,2.3vw,1.7rem); line-height:1.3; letter-spacing:-.014em;
  color:var(--ink); margin:0; max-width:26ch;
}
.stop-line strong{ font-style:normal; font-weight:560; }
.stop .photo-frame{ margin:0; }
.stop .photo-frame img{
  /* Every road photo in a stop is portrait (~3:4). Forcing 4/3 here center-cropped
     ~44% off each one — it cut the truck off at the wheels and cropped Conor out of
     frame. Match the source orientation so the real photos show whole. */
  aspect-ratio:3/4; object-fit:cover; width:100%;
}
.stop--end .stop-line{ font-size:clamp(1.5rem,3vw,2.2rem); max-width:22ch; }
.stop--end .cta-row{ margin-top:1.6rem; display:flex; gap:.8rem; flex-wrap:wrap; }

/* Alternate photo side for rhythm on wide screens */
@media (min-width:821px){
  .stop:nth-child(even of .stop){ grid-template-columns:minmax(0,1fr) minmax(0,30ch); }
  .stop:nth-child(even of .stop) .stop-text{ order:2; }
}
@media (max-width:820px){
  .stop{ grid-template-columns:1fr; gap:1.1rem; }
  .stop .photo-frame{ max-width:none; }
}

/* Stops fade up as they enter — same guarded technique. */
@supports (animation-timeline: view()){
  @media (prefers-reduced-motion: no-preference){
    .stop{ animation:stop-in ease both; animation-timeline:view(); animation-range:entry 0% entry 45%; }
    @keyframes stop-in{ from{ opacity:.15; transform:translateY(26px); } to{ opacity:1; transform:none; } }
  }
}

/* ==========================================================================
   Cinematic page navigation — cross-document view transitions (2026 CSS).
   Pages breathe into each other instead of flashing; the header holds still.
   Zero JS, reduced-motion safe, older browsers unaffected.
   ========================================================================== */
@media (prefers-reduced-motion: no-preference){
  @view-transition{ navigation:auto; }
  ::view-transition-old(root){ animation:vt-out .22s ease both; }
  ::view-transition-new(root){ animation:vt-in .3s ease both; }
  .site-header{ view-transition-name:site-header; }
}
@keyframes vt-out{ to{ opacity:0; } }
@keyframes vt-in{ from{ opacity:0; transform:translateY(8px); } to{ opacity:1; transform:none; } }

/* ---- Social row (footer) -------------------------------------------------
   Icon links to Shane's profiles. 44x44 minimum tap target (WCAG 2.5.5 / Apple HIG),
   and inherits the footer link colour so themes stay in sync. */
.social-row{ display:flex; gap:.55rem; align-items:center; margin-top:.6rem; list-style:none; }
.social-row a{
  display:inline-flex; align-items:center; justify-content:center;
  width:44px; height:44px; border-radius:50%;
  border:1px solid rgba(255,255,255,.22); color:inherit;
  transition:background .18s ease, border-color .18s ease, transform .18s ease;
}
.social-row a:hover,.social-row a:focus-visible{
  background:rgba(255,255,255,.10); border-color:var(--gold-2); transform:translateY(-1px);
}
.social-row svg{ display:block; }
@media print{ .social-row{ display:none; } }

/* ---- Film (facade YouTube embed) ----------------------------------------
   A raw <iframe> pulls ~1MB of YouTube JS and sets cookies on EVERY pageview,
   before anyone presses play. This ships a poster + button instead and only
   creates the iframe on click — nothing reaches YouTube until the viewer asks.
   Keeps the page fast and the visit private by default. */
.film{
  position:relative; aspect-ratio:16/9; width:100%;
  border-radius:var(--radius); overflow:hidden;
  background:var(--river); box-shadow:var(--shadow);
}
.film img{ width:100%; height:100%; object-fit:cover; display:block; }
.film iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
.film-play{
  position:absolute; inset:0; width:100%; height:100%;
  display:grid; place-items:center; gap:0; cursor:pointer;
  border:0; padding:0; background:
    radial-gradient(60% 60% at 50% 50%, rgba(20,16,14,.18), rgba(20,16,14,.52));
  transition:background .25s ease;
}
.film-play:hover,.film-play:focus-visible{
  background:radial-gradient(60% 60% at 50% 50%, rgba(20,16,14,.06), rgba(20,16,14,.42));
}
.film-play:focus-visible{ outline:3px solid var(--gold-2); outline-offset:-4px; }
.film-disc{
  width:78px; height:78px; border-radius:50%;
  background:rgba(246,241,230,.94); display:grid; place-items:center;
  box-shadow:0 10px 34px rgba(0,0,0,.42);
  transition:transform .25s cubic-bezier(.2,.7,.3,1), background .25s ease;
}
.film-play:hover .film-disc,.film-play:focus-visible .film-disc{
  transform:scale(1.07); background:var(--gold-2);
}
.film-disc svg{ width:28px; height:28px; margin-left:4px; fill:var(--river); display:block; }
.film-meta{
  position:absolute; left:0; right:0; bottom:0; padding:1.1rem 1.2rem;
  display:flex; align-items:baseline; gap:.7rem; flex-wrap:wrap;
  background:linear-gradient(180deg, rgba(20,16,14,0), rgba(20,16,14,.82));
  font-family:var(--font-ui); text-align:left;
}
.film-title{ color:#fbf8f3; font-weight:600; font-size:.95rem; letter-spacing:.01em; }
.film-time{ color:var(--gold-2); font-size:.76rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase; }
.film-note{
  display:block; margin-top:.85rem; font-family:var(--font-ui);
  font-size:.74rem; color:var(--ink-soft); letter-spacing:.01em;
}
.band--river .film-note{ color:#c4b6a6; }
@media (prefers-reduced-motion: reduce){
  .film-play,.film-disc{ transition:none; }
  .film-play:hover .film-disc{ transform:none; }
}
@media print{ .film{ display:none; } }

/* ---- Journey map --------------------------------------------------------
   The trip's beats made navigable. The road is a decorative SVG; the stops are
   REAL <button>s positioned over it, so focus, keyboard and tap targets all
   behave. Stylized on purpose — it is an arc, not a cartographic claim. */
.journey{ --plate:#0f1c1e; }
.journey-road{
  position:relative; width:100%; margin:0 0 1.6rem;
  aspect-ratio:1000/240; min-height:150px;
}
.journey-road svg{ position:absolute; inset:0; width:100%; height:100%; overflow:visible; }
.journey-road .road-line{
  fill:none; stroke:rgba(246,241,230,.28); stroke-width:3;
  stroke-dasharray:11 9; stroke-linecap:round;
}
.journey-road .road-done{
  fill:none; stroke:var(--gold-2); stroke-width:3.5; stroke-linecap:round;
  stroke-dasharray:var(--len) var(--len);
  /* stroke-dashoffset is set inline by JS. It must NOT come from an unregistered
     custom property: var() substitutes fine but the transition cannot interpolate
     an untyped token, so it silently resolves to the initial 0 and never animates. */
  transition:stroke-dashoffset .55s cubic-bezier(.4,.5,.2,1);
}
.journey-stop{
  position:absolute; transform:translate(-50%,-50%);
  width:44px; height:44px; padding:0; border:0; background:none;
  cursor:pointer; display:grid; place-items:center; border-radius:50%;
}
.journey-stop::before{
  content:""; width:15px; height:15px; border-radius:50%;
  background:#0f1c1e; border:2.5px solid rgba(246,241,230,.5);
  transition:transform .25s cubic-bezier(.2,.7,.3,1), background .25s ease, border-color .25s ease;
}
.journey-stop:hover::before{ transform:scale(1.25); border-color:var(--gold-2); }
.journey-stop:focus-visible{ outline:3px solid var(--gold-2); outline-offset:2px; }
.journey-stop[aria-current="true"]::before{
  background:var(--gold-2); border-color:#f6f1e6; transform:scale(1.5);
}
.journey-num{
  position:absolute; top:100%; left:50%; transform:translateX(-50%); margin-top:.35rem;
  font-family:var(--font-ui); font-size:.6rem; font-weight:700; letter-spacing:.18em;
  color:rgba(246,241,230,.5); white-space:nowrap; transition:color .25s ease;
}
.journey-stop[aria-current="true"] .journey-num{ color:var(--gold-2); }

.journey-plate{ display:grid; grid-template-columns:minmax(0,1.1fr) minmax(0,1fr); gap:2rem; align-items:center; }
.journey-figure{
  margin:0; position:relative; aspect-ratio:3/4; border-radius:var(--radius);
  overflow:hidden; background:#0f1c1e; box-shadow:var(--shadow);
}
.journey-figure img{
  width:100%; height:100%; object-fit:cover; display:block;
  opacity:1; transition:opacity .35s ease;
}
.journey-figure.is-swapping img{ opacity:0; }
.journey-eyebrow{
  font-family:var(--font-ui); font-size:.66rem; font-weight:700; letter-spacing:.3em;
  text-transform:uppercase; color:var(--gold-2); margin:0 0 .7rem;
}
.journey-title{
  font-family:var(--font-display); font-size:clamp(1.7rem,3.2vw,2.5rem);
  line-height:1.15; letter-spacing:-.015em; color:#fbf8f3; margin:0 0 .6rem;
}
.journey-caption{ color:#d9cec0; font-size:1.02rem; margin:0 0 1.4rem; }
.journey-nav{ display:flex; gap:.6rem; align-items:center; }
.journey-nav button{
  width:44px; height:44px; border-radius:50%; cursor:pointer;
  border:1px solid rgba(246,241,230,.3); background:rgba(246,241,230,.06);
  color:#f6f1e6; display:grid; place-items:center;
  transition:background .2s ease, border-color .2s ease;
}
.journey-nav button:hover:not(:disabled){ background:var(--gold-ink); border-color:var(--gold-ink); }
.journey-nav button:disabled{ opacity:.35; cursor:default; }
.journey-nav svg{ width:17px; height:17px; fill:currentColor; }
.journey-count{
  font-family:var(--font-ui); font-size:.74rem; letter-spacing:.14em;
  color:rgba(246,241,230,.6); margin-left:.4rem;
}
@media (max-width:820px){
  .journey-plate{ grid-template-columns:1fr; gap:1.4rem; }
  .journey-road{ aspect-ratio:1000/300; }
  .journey-figure{ aspect-ratio:4/5; }
}
@media (prefers-reduced-motion: reduce){
  .road-done,.journey-stop::before,.journey-figure img{ transition:none; }
}
@media print{ .journey{ display:none; } }

/* ---- Press one-sheet ----------------------------------------------------
   press.html doubles as a printable one-sheet: hit Print and a publicist gets
   fast facts, bios, praise and contact on paper — no PDF pipeline needed.
   Screen hides the sheet header; print hides the web furniture. */
.sheet-head{ display:none; }
@media print{
  .no-print{ display:none !important; }
  .sheet-head{
    display:block; border-bottom:1.5pt solid #000; padding-bottom:.35rem; margin-bottom:.8rem;
  }
  .sheet-head p{ margin:0; font-family:var(--font-ui); font-size:9pt; letter-spacing:.06em; }
  .sheet-head p:first-child{ font-size:12pt; letter-spacing:.14em; }
  /* Drop everything a publicist does not need on paper. */
  .film,.album,.lightbox,.res-links li a[download],
  .page-hero picture,.page-hero img{ display:none !important; }
  .page-hero{ min-height:0 !important; }
  .page-hero::after{ display:none !important; }
  .grid-2{ grid-template-columns:1fr 1fr !important; gap:.5rem !important; }
  .factlist{ font-size:10pt; }
}

/* ---- Share ---------------------------------------------------------------
   Native share sheet where the OS provides one, explicit buttons where it does
   not. Every link carries ?s= so a share that produces a signup is provable in
   Shane's dashboard. */
.share{ display:flex; align-items:center; gap:.55rem; flex-wrap:wrap; }
.share-label{
  font-family:var(--font-ui); font-size:.68rem; font-weight:700; letter-spacing:.2em;
  text-transform:uppercase; color:var(--ink-soft); margin-right:.2rem;
}
.band--river .share-label,.on-dark .share-label{ color:#c4b6a6; }
.share button,.share a{
  width:44px; height:44px; border-radius:50%; cursor:pointer; padding:0;
  display:inline-grid; place-items:center; text-decoration:none;
  border:1px solid var(--line-2); background:transparent; color:var(--ink);
  transition:background .18s ease, border-color .18s ease, transform .18s ease, color .18s ease;
}
.band--river .share button,.band--river .share a{
  border-color:rgba(246,241,230,.28); color:#f6f1e6;
}
.share button:hover,.share a:hover,.share button:focus-visible,.share a:focus-visible{
  background:var(--gold-ink); border-color:var(--gold-ink); color:#fff; transform:translateY(-1px);
}
.share svg{ width:18px; height:18px; fill:currentColor; display:block; }
.share-copied{
  font-family:var(--font-ui); font-size:.76rem; font-weight:600; color:var(--gold-ink);
  opacity:0; transition:opacity .2s ease;
}
.band--river .share-copied{ color:var(--gold-2); }
.share-copied.show{ opacity:1; }
@media (prefers-reduced-motion: reduce){ .share button,.share a{ transition:none; } }
@media print{ .share{ display:none; } }

/* ---- Post-signup invite -------------------------------------------------- */
.invite{ margin-top:1.1rem; }
.invite-lead{ font-family:var(--font-ui); font-size:.88rem; margin:0 0 .6rem; color:inherit; opacity:.9; }
.invite-row{ display:flex; gap:.5rem; flex-wrap:wrap; }
.invite-link{
  flex:1 1 220px; min-width:0; padding:.7rem .8rem; font-size:.9rem;
  font-family:var(--font-ui); border:1px solid var(--line-2); border-radius:var(--radius);
  background:rgba(255,255,255,.9); color:var(--ink);
}
.invite-copy{ flex:none; }
@media print{ .invite{ display:none; } }
