/* =========================================================
   Viktoria Wäststad — a found-stone ledger, not a shop
   No images, no webfonts, no libraries.
   ========================================================= */

:root{
  --paper:    #f4f2ec;
  --paper-2:  #eae7de;
  --card:     #fbfaf6;
  --ink:      #1e2427;
  --ink-2:    #3c464a;
  --muted:    #79817f;
  --pine:     #3f6156;
  --pine-2:   #8ea89c;
  --ochre:    #a3762f;
  --rust:     #8c4a35;
  --line:     rgba(30,36,39,.14);
  --line-2:   rgba(30,36,39,.26);

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans:  system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono:  ui-monospace, "SF Mono", "Cascadia Mono", "Segoe UI Mono", Consolas, "Liberation Mono", monospace;

  --wrap: 1120px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--serif);
  font-size:17px;
  line-height:1.68;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
body.is-locked{ overflow:hidden; }

h1,h2,h3,h4{ font-family:var(--serif); font-weight:400; line-height:1.1; margin:0; letter-spacing:-.012em; }
h1{ font-size:clamp(2.9rem,6.4vw,5rem); }
h2{ font-size:clamp(1.9rem,3.6vw,2.8rem); }
h3{ font-size:1.16rem; }
p{ margin:0; }
a{ color:inherit; text-decoration:none; }
button,input{ font:inherit; color:inherit; }
img,svg{ display:block; max-width:100%; }

.wrap{ width:100%; max-width:var(--wrap); margin-inline:auto; padding-inline:26px; }
.sr-only{ position:absolute; width:1px; height:1px; overflow:hidden; clip-path:inset(50%); white-space:nowrap; }
.mono{ font-family:var(--mono); font-size:.76rem; letter-spacing:-.01em; }

.skip{
  position:absolute; left:16px; top:-60px; z-index:100;
  background:var(--pine); color:#fff; padding:10px 16px; border-radius:4px; transition:top .2s;
}
.skip:focus{ top:16px; }
:focus-visible{ outline:2px solid var(--pine); outline-offset:3px; }

.eyebrow{
  font-family:var(--sans); font-size:.7rem; letter-spacing:.2em;
  text-transform:uppercase; color:var(--pine); margin-bottom:16px;
}
/* the handwritten-feeling asides */
.note-hand{
  font-style:italic; color:var(--ochre); font-size:1rem; margin-top:20px;
}

/* ── buttons ──────────────────────────────────────────── */
.btn{
  display:inline-flex; align-items:center; gap:.55em;
  font-family:var(--sans); padding:13px 24px;
  border:1px solid transparent; border-radius:2px;
  font-size:.8rem; letter-spacing:.1em; text-transform:uppercase;
  cursor:pointer; background:transparent;
  transition:background .25s, border-color .25s, color .25s, transform .25s var(--ease);
}
.btn:hover{ transform:translateY(-1px); }
.btn--solid{ background:var(--pine); color:#fff; }
.btn--solid:hover{ background:#33514a; }
.btn--ghost{ border-color:var(--line-2); }
.btn--ghost:hover{ border-color:var(--pine); color:var(--pine); }
.btn--block{ width:100%; justify-content:center; }
.btn[disabled]{ opacity:.4; cursor:not-allowed; transform:none; }
.btn__arrow{ width:17px; height:17px; fill:none; stroke:currentColor; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; transition:transform .25s var(--ease); }
.btn:hover .btn__arrow{ transform:translateX(4px); }

.iconbtn{
  display:grid; place-items:center; width:40px; height:40px; padding:0;
  background:transparent; border:0; cursor:pointer; color:var(--ink);
}
.iconbtn svg{ width:21px; height:21px; fill:none; stroke:currentColor; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round; }
.iconbtn:hover{ color:var(--pine); }

/* ── header ───────────────────────────────────────────── */
.header{
  position:sticky; top:0; z-index:60;
  background:rgba(244,242,236,.86);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid transparent;
  transition:border-color .3s, background .3s;
}
.header.is-stuck{ border-bottom-color:var(--line); background:rgba(244,242,236,.96); }
.header__in{ display:flex; align-items:center; gap:24px; height:72px; }

.brand{ display:flex; align-items:center; gap:10px; margin-right:auto; }
.brand__mark{ width:22px; height:22px; flex:none; }
.brand__mark .bm-body{ fill:var(--pine-2); }
.brand__mark .bm-top{ fill:#cfdcd4; }
.brand__mark .bm-line{ fill:none; stroke:rgba(30,36,39,.3); stroke-width:1; }
.brand__text{ font-size:1.1rem; letter-spacing:.06em; }

.nav{ display:flex; gap:28px; }
.nav a{
  position:relative; font-family:var(--sans); font-size:.78rem;
  letter-spacing:.11em; text-transform:uppercase; color:var(--muted); padding:6px 0;
  transition:color .25s;
}
.nav a::after{
  content:""; position:absolute; left:0; bottom:0; height:1px; width:100%;
  background:var(--pine); transform:scaleX(0); transform-origin:right;
  transition:transform .3s var(--ease);
}
.nav a:hover{ color:var(--ink); }
.nav a:hover::after{ transform:scaleX(1); transform-origin:left; }

.header__act{ display:flex; align-items:center; gap:14px; }

/* Journal leaves the page, so it is boxed and grouped with the
   right-hand items rather than sitting among the in-page anchors. */
.navout{
  display:inline-flex; align-items:center; gap:.55em;
  font-family:var(--sans); font-size:.74rem; letter-spacing:.11em; text-transform:uppercase;
  color:var(--ink); padding:7px 13px;
  border:1px solid var(--line-2); border-radius:2px;
  transition:border-color .25s, color .25s, background .25s;
}
.navout svg{
  width:12px; height:12px; fill:none; stroke:currentColor;
  stroke-width:2; stroke-linecap:round; stroke-linejoin:round;
  transition:transform .25s var(--ease);
}
.navout:hover{ border-color:var(--pine); color:var(--pine); }
.navout:hover svg{ transform:translateX(3px); }
.navout[aria-current="page"]{ background:var(--pine); border-color:var(--pine); color:#fff; }
.navout[aria-current="page"]:hover{ background:#33514a; color:#fff; }
/* its stand-in inside the burger menu on narrow screens */
.nav__out{ display:none; }
.tally{
  font-family:var(--mono); font-size:.72rem; color:var(--muted);
  padding-left:14px; border-left:1px solid var(--line);
}
.tally span{ color:var(--pine); font-weight:700; }
.held-btn{
  font-family:var(--mono); font-size:.72rem; cursor:pointer;
  background:var(--ochre); color:#fff; border:0; border-radius:2px; padding:7px 12px;
}
.held-btn:hover{ background:#8d6527; }
.burger{ display:none; }

/* ── hero ─────────────────────────────────────────────── */
.hero{ position:relative; overflow:hidden; padding:clamp(50px,7vw,96px) 0 clamp(56px,8vw,104px); }
.hero__glow{
  position:absolute; inset:-20% -20% auto; height:720px; pointer-events:none;
  background:
    radial-gradient(40% 42% at 76% 30%, rgba(142,168,156,.34), transparent 70%),
    radial-gradient(32% 34% at 20% 12%, rgba(163,118,47,.13), transparent 70%);
  filter:blur(3px);
}
.hero__in{
  position:relative; display:grid; gap:clamp(36px,5vw,64px);
  grid-template-columns:1.15fr .85fr; align-items:center;
}
.hero__copy{ max-width:36rem; }
h1{ margin-bottom:8px; }
.lede{ margin-top:22px; color:var(--ink-2); font-size:1.08rem; max-width:44ch; }
.lede--tight{ margin-top:14px; }
.hero__cta{ display:flex; flex-wrap:wrap; gap:12px; margin-top:30px; }

.sig{ margin-top:26px; color:var(--ink); opacity:.8; }
.sig svg{ width:190px; height:auto; }
.sig circle{ fill:currentColor; }

.hero__stage{ position:relative; margin:0; display:grid; place-items:center; }
.hero__gem{ width:min(80%,300px); filter:drop-shadow(0 22px 26px rgba(30,36,39,.22)); }
.hero__gem svg{ width:100%; animation:float 9s ease-in-out infinite; }
@keyframes float{ 50%{ transform:translateY(-10px); } }
.hero__tag{
  margin-top:8px; text-align:center; display:grid; gap:3px; justify-items:center;
}
.hero__tag strong{ font-weight:400; font-size:1.02rem; }
.hero__tag .mono{ color:var(--muted); }

.pill{
  font-family:var(--sans); font-size:.6rem; letter-spacing:.16em; text-transform:uppercase;
  padding:3px 9px; border-radius:2px; border:1px solid currentColor;
}
.pill--new{ color:var(--ochre); }
.pill--here{ color:var(--pine); }
.pill--held{ color:var(--ochre); background:rgba(163,118,47,.1); }
.pill--gone{ color:var(--muted); }

/* ── sections ─────────────────────────────────────────── */
.section{ padding:clamp(64px,9vw,112px) 0; }
.section--alt{ background:var(--paper-2); border-block:1px solid var(--line); }
.section__head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:30px; flex-wrap:wrap; margin-bottom:44px;
}
.section__note{ font-family:var(--sans); color:var(--muted); font-size:.88rem; line-height:1.6; max-width:40ch; }

/* ── map ──────────────────────────────────────────────── */
.mapwrap{ display:grid; grid-template-columns:.85fr 1.15fr; gap:clamp(30px,5vw,64px); align-items:start; }
.mapfig{ position:relative; justify-self:center; width:100%; max-width:340px; }
.map{ width:100%; height:auto; overflow:visible; }
.map__land{ fill:#dfe3dc; stroke:var(--pine); stroke-width:1.1; stroke-linejoin:round; }
.map__isle{ fill:#dfe3dc; stroke:var(--pine); stroke-width:.9; }
.map__grid path{ stroke:var(--line); stroke-width:.5; stroke-dasharray:2 4; fill:none; }
.map__rose{ position:absolute; top:0; right:4px; color:var(--muted); }

.pin{ cursor:pointer; }
.pin circle{ fill:var(--card); stroke:var(--pine); stroke-width:1.3; transition:fill .2s, r .2s, stroke-width .2s; }
.pin text{ font-family:var(--mono); font-size:5.4px; fill:var(--pine); text-anchor:middle; dominant-baseline:central; transition:fill .2s; }
.pin.is-gone circle{ stroke:var(--muted); stroke-dasharray:2 2; }
.pin.is-gone text{ fill:var(--muted); }
.pin:hover circle, .pin.is-lit circle{ fill:var(--pine); r:7.6; }
.pin:hover text,   .pin.is-lit text{ fill:#fff; }

.places{ list-style:none; margin:0; padding:0; display:grid; gap:0; }
.places li{
  display:grid; grid-template-columns:auto 1fr auto; align-items:baseline; gap:14px;
  padding:13px 10px; border-bottom:1px solid var(--line); cursor:pointer;
  transition:background .2s, padding-left .2s var(--ease);
}
.places li:first-child{ border-top:1px solid var(--line); }
.places li:hover, .places li.is-lit{ background:rgba(63,97,86,.07); padding-left:18px; }
.places__no{ font-family:var(--mono); font-size:.74rem; color:var(--pine); }
.places__name{ font-size:1rem; }
.places__name em{ font-style:normal; color:var(--muted); font-size:.86rem; }
.places__where{ font-family:var(--mono); font-size:.72rem; color:var(--muted); }
.places li.is-gone .places__name{ color:var(--muted); }
.places__rest{ cursor:default; color:var(--muted); font-style:italic; }
.places__rest:hover{ background:none; padding-left:10px; }

/* ── the ledger ───────────────────────────────────────── */
.entry{
  position:relative; border-top:1px solid var(--line);
  padding:clamp(48px,6vw,76px) 0;
}
.entry__in{
  width:100%; max-width:var(--wrap); margin-inline:auto; padding-inline:26px;
  display:grid; grid-template-columns:1fr 1fr; gap:clamp(32px,5vw,68px); align-items:center;
}
.entry:nth-child(even) .entry__media{ order:2; }

.entry__media{ position:relative; display:grid; place-items:center; padding:16px; }
.entry__no{
  position:absolute; inset:auto auto 2% 0; font-size:clamp(6rem,13vw,11rem);
  line-height:.8; color:var(--ink); opacity:.06; pointer-events:none; user-select:none;
}
.entry__stone{ width:min(78%,300px); filter:drop-shadow(0 18px 22px rgba(30,36,39,.2)); position:relative; }
.entry__stone svg{ width:100%; transition:transform .5s var(--ease); }
.entry:hover .entry__stone svg{ transform:scale(1.04) rotate(-1.5deg); }
.entry.is-gone .entry__stone{ filter:saturate(.35) drop-shadow(0 14px 18px rgba(30,36,39,.14)); opacity:.72; }

.entry__head{ display:flex; align-items:center; gap:12px; margin-bottom:10px; }
.entry__label{ font-family:var(--mono); font-size:.78rem; color:var(--pine); }
.entry h3{ font-size:clamp(1.6rem,2.6vw,2.1rem); margin-bottom:6px; }
.entry__where{ font-family:var(--mono); font-size:.76rem; color:var(--muted); margin-bottom:18px; }
.entry__story{ color:var(--ink-2); max-width:46ch; }

.field{
  margin:24px 0 0; padding:16px 18px; background:var(--card);
  border:1px solid var(--line); border-left:2px solid var(--pine-2);
  display:grid; grid-template-columns:auto 1fr; gap:6px 18px;
  font-family:var(--mono); font-size:.73rem; line-height:1.5;
}
.field dt{ color:var(--muted); text-transform:uppercase; letter-spacing:.06em; }
.field dd{ margin:0; color:var(--ink-2); }

.entry__foot{ display:flex; align-items:center; gap:18px; flex-wrap:wrap; margin-top:24px; }
.entry__price{ font-size:1.5rem; }
.entry__price s{ color:var(--muted); font-size:1.1rem; text-decoration-thickness:1px; }
.entry.is-gone{ background:linear-gradient(180deg, transparent, rgba(30,36,39,.02)); }

/* ── a journey: one story, then whatever came back from it ────── */
.journey{ position:relative; border-top:1px solid var(--line); padding:clamp(48px,6vw,76px) 0; }
.journey__in{ width:100%; max-width:var(--wrap); margin-inline:auto; padding-inline:26px; }

.journey__head{ display:grid; grid-template-columns:auto 1fr auto; gap:22px; align-items:start; margin-bottom:28px; }
.journey__no{
  font-size:clamp(3rem,6vw,4.6rem); line-height:.8; color:var(--pine);
  opacity:.22; user-select:none;
}
.journey__rail{ color:var(--muted); margin-bottom:6px; }
.journey h3{ font-size:clamp(1.6rem,2.8vw,2.2rem); margin-bottom:6px; }
.journey__region{ color:var(--pine); }

.journey__cols{ display:grid; grid-template-columns:1.35fr .65fr; gap:clamp(24px,4vw,48px); align-items:start; }
.journey__cols .field{ margin-top:0; }

/* the haul — specimen labels, not product cards */
.haul__head{
  display:flex; align-items:baseline; justify-content:space-between; gap:16px;
  margin:clamp(30px,4vw,44px) 0 0; padding-bottom:10px; border-bottom:1px solid var(--line);
}
.haul__head h4{ font-size:1.05rem; }
.haul__head p{ color:var(--muted); }

.haul{ display:grid; grid-template-columns:repeat(auto-fit,minmax(172px,1fr)); gap:0; }
.haul__item{
  display:flex; flex-direction:column; padding:22px 20px;
  border-right:1px solid var(--line);
  transition:background .25s;
}
.haul__item:last-child{ border-right:0; }
.haul__item:hover{ background:var(--card); }
.haul__stone{
  width:100%; max-width:110px; margin:0 auto 14px;
  background:radial-gradient(58% 58% at 50% 48%, var(--halo), transparent 72%);
}
.haul__stone svg{ width:100%; filter:drop-shadow(0 8px 12px rgba(30,36,39,.18)); transition:transform .4s var(--ease); }
.haul__item:hover .haul__stone svg{ transform:scale(1.06) rotate(-2deg); }
.haul__name{ font-size:1.02rem; margin-bottom:3px; }
.haul__meta{ color:var(--muted); margin-bottom:8px; }
.haul__note{ font-size:.88rem; color:var(--ink-2); line-height:1.5; }
.haul__foot{ display:flex; align-items:center; gap:12px; flex-wrap:wrap; margin-top:auto; padding-top:14px; }
.haul__price{ font-size:1.15rem; }
.haul__price s{ color:var(--muted); font-size:.95rem; text-decoration-thickness:1px; }
.haul__sold{ color:var(--muted); }
.btn--sm{ padding:8px 14px; font-size:.7rem; }

.haul__item.is-gone{ opacity:.62; }
.haul__item.is-gone .haul__stone svg{ filter:saturate(.3) drop-shadow(0 6px 10px rgba(30,36,39,.12)); }
.haul__item.is-gone:hover{ background:transparent; }

/* link out to the long write-up for a trip */
.postlink{
  display:inline-flex; align-items:center; gap:.6em;
  margin-top:12px; padding-bottom:3px;
  font-family:var(--sans); font-size:.82rem; letter-spacing:.03em;
  color:var(--pine); border-bottom:1px solid rgba(63,97,86,.4);
  transition:color .25s, border-color .25s, gap .25s var(--ease);
}
.postlink:hover{ color:var(--ink); border-color:var(--ink); gap:.9em; }
.postlink__meta{ color:var(--muted); }
.postlink svg{
  width:15px; height:15px; fill:none; stroke:currentColor;
  stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round;
  transition:transform .25s var(--ease);
}
.postlink:hover svg{ transform:translateX(3px); }
.row.is-gone .postlink{ color:var(--muted); border-color:var(--line-2); }
.row.is-gone .postlink:hover{ color:var(--ink); border-color:var(--ink); }

/* the drive out from Bergen, revealed on hover */
.route{ fill:none; stroke:var(--pine); stroke-width:.9; stroke-dasharray:2.5 3; opacity:0; transition:opacity .3s; }
.pin:hover .route, .pin.is-lit .route{ opacity:.55; }
.home circle{ fill:var(--ochre); }
.home text{ font-family:var(--mono); font-size:5px; fill:var(--muted); }

/* ── compact rows: the archive, and any overflow from the shelf ──
   the shelf stays a constant length because she sells them; only this
   grows, so it is one line per stone that opens for the full note   */
.arch__head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:30px; flex-wrap:wrap; margin-bottom:32px;
}
.overflow__head{
  display:flex; align-items:baseline; gap:14px; flex-wrap:wrap;
  margin:clamp(36px,5vw,56px) 0 4px; padding-bottom:14px; border-bottom:1px solid var(--line);
}
.overflow__head h3{ font-size:1.3rem; }
.overflow__head p{ font-family:var(--mono); font-size:.74rem; color:var(--muted); }

.year{ border-bottom:1px solid var(--line); }
.year:first-child{ border-top:1px solid var(--line); }
.year > summary{
  display:flex; align-items:baseline; justify-content:space-between; gap:16px;
  padding:18px 4px; cursor:pointer; list-style:none;
}
.year > summary::-webkit-details-marker{ display:none; }
.year > summary::marker{ content:""; }
.year > summary:hover .year__y{ color:var(--pine); }
.year__y{ font-size:1.5rem; transition:color .2s; }
.year__meta{ font-family:var(--mono); font-size:.74rem; color:var(--muted); }
.year[open] > summary .year__y{ color:var(--pine); }

.row{ border-top:1px solid var(--line); }
.row:first-child{ border-top:0; }
.row > summary{
  display:grid; grid-template-columns:32px 44px 1fr auto auto 16px;
  align-items:center; gap:16px; padding:11px 4px; cursor:pointer; list-style:none;
  transition:background .2s, padding-left .2s var(--ease);
}
.row > summary::-webkit-details-marker{ display:none; }
.row > summary::marker{ content:""; }
.row > summary:hover, .row.is-lit > summary{ background:rgba(63,97,86,.07); padding-left:12px; }
.row__no{ font-family:var(--mono); font-size:.74rem; color:var(--pine); }
.row__stone{ width:44px; }
.row__stone svg{ width:100%; }
.row.is-gone .row__stone{ filter:saturate(.3); opacity:.6; }
.row__name{ font-size:1rem; }
.row__name em{ font-style:normal; color:var(--muted); font-size:.85rem; }
.row__where{ font-family:var(--mono); font-size:.72rem; color:var(--muted); text-align:right; }
.row__end{ font-family:var(--mono); font-size:.72rem; color:var(--muted); min-width:9ch; text-align:right; }
.row__chev{ width:14px; height:14px; fill:none; stroke:var(--muted); stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; transition:transform .25s var(--ease); }
.row[open] .row__chev{ transform:rotate(180deg); }

.row__more{
  display:grid; grid-template-columns:1fr 1fr; gap:26px;
  padding:4px 4px 26px 92px; animation:rowOpen .3s var(--ease);
}
@keyframes rowOpen{ from{ opacity:0; transform:translateY(-6px); } }
.row__more .field{ margin-top:0; }
.row__more .entry__foot{ margin-top:14px; grid-column:1 / -1; }
/* the haul needs the full width, not one column of the two */
.row__haul{ grid-column:1 / -1; }
.row__haul .haul__head{ margin-top:8px; }

/* ── the overland ledger ──────────────────────────────── */
.overland{
  margin-top:clamp(34px,4vw,56px); padding-top:26px; border-top:1px solid var(--line);
}
.overland__stats{
  display:grid; grid-template-columns:repeat(4,1fr); gap:22px;
  list-style:none; margin:0 0 20px; padding:0;
}
.overland__stats li{ display:grid; gap:4px; }
.overland__stats strong{ font-size:clamp(1.5rem,2.6vw,2rem); font-weight:400; color:var(--pine); }
.overland__stats span{ font-family:var(--sans); font-size:.8rem; color:var(--muted); line-height:1.45; }
.overland__note{ max-width:58ch; color:var(--ink-2); font-size:.98rem; }

/* ── the trip that has not happened yet ───────────────── */
.section--edge{ border-top:1px solid var(--line); }
.next{ display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(30px,4vw,56px); align-items:start; }
.next__rail{ color:var(--muted); margin-bottom:16px; }
.next__why{ color:var(--ink-2); }
.next__why + .next__why{ margin-top:1em; }
.next__sub{ margin:26px 0 10px; font-size:.7rem; font-family:var(--sans); letter-spacing:.16em;
  text-transform:uppercase; color:var(--pine); }
.hoping{ list-style:none; margin:0; padding:0; display:grid; gap:0; }
.hoping li{
  padding:9px 0 9px 20px; border-bottom:1px solid var(--line); position:relative; color:var(--ink-2);
}
.hoping li::before{ content:"—"; position:absolute; left:0; color:var(--pine-2); }
.hoping li:first-child{ border-top:1px solid var(--line); }

.next__side{ display:grid; gap:20px; }
.fund, .wait{ padding:24px; border:1px solid var(--line); background:var(--card); }
.fund h4, .wait h4{ font-size:1.1rem; margin-bottom:12px; }
.fund__nums{ display:flex; align-items:baseline; gap:9px; margin-bottom:10px; }
.fund__nums strong{ font-size:1.9rem; font-weight:400; color:var(--pine); }
.fund__nums span{ color:var(--muted); }
.fund__bar{ height:6px; background:var(--paper-2); border-radius:100px; overflow:hidden; }
.fund__bar span{ display:block; height:100%; background:var(--pine); border-radius:100px; }

.patrons{ list-style:none; margin:16px 0 20px; padding:0; }
.patrons li{
  display:flex; justify-content:space-between; gap:12px;
  padding:7px 0; border-bottom:1px solid var(--line);
  font-size:.9rem; color:var(--ink-2);
}
.patrons__gap{ color:var(--muted); }
.patrons__gap .mono{ color:var(--ochre); }

.tiers{ display:grid; gap:8px; }
.tier{
  display:flex; align-items:baseline; justify-content:space-between; gap:12px;
  padding:11px 14px; cursor:pointer; text-align:left;
  background:transparent; border:1px solid var(--line-2); border-radius:2px;
  transition:border-color .2s, background .2s;
}
.tier:hover{ border-color:var(--pine); }
.tier.is-on{ border-color:var(--pine); background:rgba(63,97,86,.07); }
.tier__label{ font-size:.95rem; }
.tier__amount{ color:var(--pine); }
.tier__out{ margin-top:12px; font-size:.86rem; color:var(--ink-2); line-height:1.5; }
.tier__out:empty{ display:none; }
.tier__out .mono{ color:var(--muted); display:block; margin-top:4px; }
.fund__terms{
  margin-top:16px; padding-top:14px; border-top:1px solid var(--line);
  font-size:.85rem; line-height:1.55; color:var(--muted);
}
.fund__terms strong{ color:var(--ink); font-weight:400; }

.wait__say{ font-size:.94rem; color:var(--ink-2); margin-bottom:16px; }
.chips--want{ margin-bottom:14px; }
.chips--want .chip{ padding:7px 13px; font-size:.72rem; }
.chips--want .chip.is-on{ background:var(--pine); border-color:var(--pine); color:#fff; }
.wait__row{ display:flex; gap:9px; flex-wrap:wrap; }
.wait__row input{
  flex:1 1 180px; padding:12px 15px; border-radius:2px; font-family:var(--sans); font-size:.92rem;
  background:var(--paper); border:1px solid var(--line-2);
}
.wait__row input:focus{ border-color:var(--pine); outline:none; }
.wait__row input[aria-invalid="true"]{ border-color:var(--rust); }
.wait__form{ position:relative; }
.wait .form__msg{ position:static; margin-top:10px; }

/* ── the journal index ────────────────────────────────── */
.jhead{ padding-bottom:clamp(28px,4vw,44px); }
.jhead h1{ font-size:clamp(2.4rem,5vw,3.6rem); }
.jcount{ color:var(--muted); padding-top:6px; border-top:1px solid var(--line); }
.jbody{ padding-top:clamp(40px,5vw,64px); }

.jyear{ margin-bottom:clamp(30px,4vw,52px); }
.jyear__head{
  display:flex; align-items:baseline; justify-content:space-between; gap:16px;
  padding-bottom:10px; margin-bottom:6px; border-bottom:1px solid var(--line-2);
}

.jpost{
  display:grid; grid-template-columns:96px 1fr; gap:26px; align-items:start;
  padding:26px 4px; border-bottom:1px solid var(--line);
}
.jpost:last-child{ border-bottom:0; }
.jpost__stone{
  width:96px; padding:6px;
  background:radial-gradient(58% 58% at 50% 48%, var(--halo), transparent 72%);
}
.jpost__stone svg{ width:100%; filter:drop-shadow(0 8px 12px rgba(30,36,39,.16)); transition:transform .4s var(--ease); }
.jpost:hover .jpost__stone svg{ transform:scale(1.06) rotate(-2deg); }
.jpost__meta{ color:var(--muted); margin-bottom:5px; }
.jpost h3{ font-size:clamp(1.35rem,2.2vw,1.75rem); margin-bottom:4px; }
.jpost h3 a{ background-image:linear-gradient(currentColor,currentColor); background-size:0 1px;
  background-position:0 100%; background-repeat:no-repeat; transition:background-size .3s var(--ease); }
.jpost h3 a:hover{ background-size:100% 1px; }
.jpost__region{ color:var(--pine); margin-bottom:10px; }
.jpost__excerpt{
  color:var(--ink-2); font-size:.98rem;
  display:-webkit-box; -webkit-line-clamp:2; line-clamp:2;
  -webkit-box-orient:vertical; overflow:hidden;
}
.jpost__back{ margin-top:10px; }
.jpost__back a{
  font-family:var(--sans); font-size:.78rem; letter-spacing:.04em; color:var(--muted);
  transition:color .25s;
}
.jpost__back a:hover{ color:var(--pine); }
.jback{ margin-top:clamp(24px,4vw,40px); }

/* ── a single journal post ────────────────────────────── */
.post{ padding:clamp(44px,6vw,84px) 0 clamp(56px,7vw,96px); }
/* head, body and foot share one column so they line up on the left */
.post__head{ max-width:36rem; margin:0 auto clamp(28px,4vw,44px); }
.post__rail{ color:var(--muted); margin-bottom:14px; }
.post__rail a{ color:var(--pine); }
.post__rail a:hover{ color:var(--ink); }
.post h1{ font-size:clamp(2.1rem,4.4vw,3.2rem); margin-bottom:10px; }
.post__region{ color:var(--pine); }

.post__body{ max-width:36rem; margin-inline:auto; font-size:1.06rem; line-height:1.72; }
.post__body p{ color:var(--ink-2); }
.post__body p + p{ margin-top:1.05em; }
.post__body h2{
  font-size:1.3rem; margin:2.1em 0 .55em; color:var(--ink);
}
.post__body h2 + p{ margin-top:0; }
.post__pull{
  margin:1.7em 0; padding:2px 0 2px 22px; border-left:2px solid var(--pine-2);
  font-size:1.22rem; line-height:1.45; color:var(--ink);
}

/* wider than the prose column so a four-stone haul stays on one row */
.post__foot{ max-width:46rem; margin:clamp(40px,5vw,64px) auto 0; }
.post__foot .field{ margin-top:0; }
.post__foot .haul{ grid-template-columns:repeat(auto-fit,minmax(160px,1fr)); }
.post__foot .haul__item{ padding:20px 16px; }

.postnav{
  display:flex; justify-content:space-between; gap:24px;
  margin-top:clamp(32px,4vw,52px); padding-top:24px; border-top:1px solid var(--line);
}
.postnav a{ display:grid; gap:4px; max-width:19rem; }
.postnav a .mono{ color:var(--muted); }
.postnav__next{ text-align:right; }
.postnav__title{ transition:color .25s; }
.postnav a:hover .postnav__title{ color:var(--pine); }

/* the page you are already on */
.nav a[aria-current="page"]{ color:var(--ink); }
.nav a[aria-current="page"]::after{ transform:scaleX(1); }

/* ── charging ─────────────────────────────────────────── */
.craft{ display:grid; gap:clamp(36px,5vw,64px); grid-template-columns:.95fr 1.05fr; align-items:start; }
.steps{ list-style:none; margin:0; padding:0; display:grid; gap:0; }
.step{
  display:grid; grid-template-columns:auto 1fr; gap:20px; align-items:start;
  padding:24px 4px; border-bottom:1px solid var(--line);
}
.step:first-child{ border-top:1px solid var(--line); }
.step__no{ color:var(--ochre); font-size:.8rem; padding-top:5px; }
.step h3{ margin-bottom:6px; }
.step p{ color:var(--ink-2); font-size:.96rem; }

/* ── about ────────────────────────────────────────────── */
.about{ display:grid; grid-template-columns:.7fr 1.3fr; gap:clamp(32px,5vw,64px); align-items:start; }
.about__copy p + p{ margin-top:16px; }
.about__copy p{ color:var(--ink-2); }
.about__copy h2{ margin-bottom:20px; }
.portrait{ width:100%; max-width:280px; }
.pt-ring{ fill:none; stroke:var(--line-2); stroke-width:1; }
.pt-ring--2{ stroke-dasharray:3 5; }
.pt-hill{ fill:#dfe3dc; stroke:var(--pine); stroke-width:1.2; }
.pt-peak{ fill:#cfd8d1; stroke:var(--pine); stroke-width:1.2; stroke-linejoin:round; }
.pt-snow{ fill:var(--card); }
.pt-moon{ fill:#f0e6d2; stroke:var(--ochre); stroke-width:1; }
.pt-moon-cut{ fill:#dfe3dc; opacity:.9; }

/* ── letter ───────────────────────────────────────────── */
.signup{ padding:clamp(56px,7vw,88px) 0; background:var(--paper-2); border-top:1px solid var(--line); }
.signup__in{ display:grid; gap:32px; grid-template-columns:1fr 1fr; align-items:center; }
.signup p{ color:var(--ink-2); margin-top:14px; max-width:44ch; font-size:.98rem; }
.form{ position:relative; display:flex; gap:10px; flex-wrap:wrap; }
.form input{
  flex:1 1 200px; padding:13px 16px; border-radius:2px; font-family:var(--sans); font-size:.92rem;
  background:var(--card); border:1px solid var(--line-2);
}
.form input::placeholder{ color:#9aa09e; }
.form input:focus{ border-color:var(--pine); outline:none; }
.form input[aria-invalid="true"]{ border-color:var(--rust); }
.form__msg{ position:absolute; top:100%; left:2px; margin-top:9px; font-family:var(--sans); font-size:.8rem; color:var(--pine); }
.form__msg.err{ color:var(--rust); }

/* ── footer ───────────────────────────────────────────── */
.footer{ border-top:1px solid var(--line); background:var(--paper); padding-top:52px; }
.footer__in{ display:grid; gap:34px; grid-template-columns:2fr 1fr 1fr; }
.footer__brand{ display:grid; gap:12px; max-width:36ch; }
.footer__brand p{ color:var(--muted); font-size:.88rem; }
.footer nav{ display:grid; gap:10px; align-content:start; }
.footer h4{ font-family:var(--sans); font-size:.66rem; letter-spacing:.16em; text-transform:uppercase; color:var(--pine); margin-bottom:4px; }
.footer nav a{ font-family:var(--sans); color:var(--muted); font-size:.86rem; transition:color .22s; }
.footer nav a:hover{ color:var(--ink); }
.footer__base{
  display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; align-items:baseline;
  margin-top:46px; padding:20px 26px; border-top:1px solid var(--line);
  font-family:var(--sans); color:var(--muted); font-size:.75rem;
}
.disclaimer{ max-width:58ch; text-align:right; }

/* ── hold panel ───────────────────────────────────────── */
.scrim{
  position:fixed; inset:0; z-index:70; background:rgba(30,36,39,.34);
  backdrop-filter:blur(2px); opacity:0; transition:opacity .3s;
}
.scrim.is-on{ opacity:1; }

.hold{
  position:fixed; top:0; right:0; z-index:80;
  width:min(420px,100%); height:100dvh; display:flex; flex-direction:column;
  background:var(--paper); border-left:1px solid var(--line);
  transform:translateX(102%); transition:transform .38s var(--ease);
  visibility:hidden; box-shadow:-30px 0 60px -44px rgba(30,36,39,.8);
}
.hold.is-open{ transform:none; visibility:visible; }
.hold__head{ display:flex; align-items:center; justify-content:space-between; padding:22px 24px 16px; border-bottom:1px solid var(--line); }
.hold__head h2{ font-size:1.3rem; }
.hold__body{ flex:1; overflow-y:auto; padding:24px; }
.hold__stone{ width:130px; margin:0 auto 12px; }
.hold__name{ font-size:1.35rem; text-align:center; }
.hold__where{ font-family:var(--mono); font-size:.74rem; color:var(--muted); text-align:center; margin-bottom:20px; }
.hold__price{ text-align:center; font-size:1.4rem; color:var(--pine); margin-bottom:20px; }
.hold__say{ font-size:.95rem; color:var(--ink-2); margin-bottom:14px; }
.hold textarea{
  width:100%; min-height:110px; resize:vertical; padding:12px 14px; border-radius:2px;
  font-family:var(--sans); font-size:.92rem; background:var(--card); border:1px solid var(--line-2);
}
.hold textarea:focus{ border-color:var(--pine); outline:none; }
.hold__actions{ display:grid; gap:10px; margin-top:16px; }
.hold__release{
  background:none; border:0; cursor:pointer; font-family:var(--sans);
  font-size:.76rem; letter-spacing:.06em; text-transform:uppercase; color:var(--muted);
}
.hold__release:hover{ color:var(--rust); }
.hold__done{ text-align:center; display:grid; gap:14px; padding:30px 0; }
.hold__done svg{ width:54px; margin:0 auto; fill:none; stroke:var(--pine); stroke-width:1.4; stroke-linecap:round; stroke-linejoin:round; }

/* ── toasts ───────────────────────────────────────────── */
.toasts{ position:fixed; left:50%; bottom:24px; z-index:90; transform:translateX(-50%); display:grid; gap:9px; pointer-events:none; }
.toast{
  display:flex; align-items:center; gap:10px; padding:11px 18px; border-radius:2px;
  background:var(--ink); color:var(--paper); font-family:var(--sans); font-size:.82rem;
  white-space:nowrap; animation:toastIn .34s var(--ease);
}
.toast.out{ animation:toastOut .3s var(--ease) forwards; }
@keyframes toastIn{ from{ opacity:0; transform:translateY(14px); } }
@keyframes toastOut{ to{ opacity:0; transform:translateY(8px); } }

/* ── reveal ───────────────────────────────────────────── */
.js .reveal{ opacity:0; transform:translateY(20px); transition:opacity .7s var(--ease) var(--d,0ms), transform .7s var(--ease) var(--d,0ms); }
.js .reveal.is-in{ opacity:1; transform:none; }

.spark{ opacity:0; transform-box:fill-box; transform-origin:center; animation:twinkle 4s var(--sd,0s) ease-in-out infinite; }
@keyframes twinkle{ 0%,76%,100%{ opacity:0; transform:scale(.3); } 88%{ opacity:.85; transform:scale(1); } }

/* ── responsive ───────────────────────────────────────── */
@media (max-width:940px){
  .next{ grid-template-columns:1fr; }
  .overland__stats{ grid-template-columns:repeat(2,1fr); }
  .mapwrap{ grid-template-columns:1fr; }
  .about{ grid-template-columns:1fr; }
  .about__mark{ justify-self:center; }
  .footer__in{ grid-template-columns:1fr 1fr; }
  .disclaimer{ text-align:left; }
}
@media (max-width:860px){
  .hero__in{ grid-template-columns:1fr; }
  .hero__copy{ max-width:none; }
  .craft{ grid-template-columns:1fr; }
  .signup__in{ grid-template-columns:1fr; }
  .entry__in{ grid-template-columns:1fr; gap:26px; }
  .entry:nth-child(even) .entry__media{ order:0; }
  .entry__no{ font-size:5rem; bottom:auto; top:-10px; }
  .tally{ display:none; }

  .burger{ display:grid; }
  .nav{
    position:absolute; top:100%; left:0; right:0; flex-direction:column; gap:0;
    background:var(--paper); border-bottom:1px solid var(--line);
    padding:0 26px; max-height:0; overflow:hidden;
    transition:max-height .38s var(--ease), padding .38s var(--ease);
  }
  .navout{ padding:6px 10px; font-size:.7rem; letter-spacing:.08em; }
  .nav.is-open{ max-height:320px; padding:8px 26px 20px; }
  .nav a{ padding:13px 0; border-bottom:1px solid var(--line); }
  .nav a:last-child{ border-bottom:0; }
}
@media (max-width:860px){
  .journey__cols{ grid-template-columns:1fr; }
  .journey__head{ grid-template-columns:auto 1fr; }
  .journey__head .pill{ grid-column:2; justify-self:start; }
  .haul{ grid-template-columns:repeat(auto-fit,minmax(150px,1fr)); }
  .haul__item{ border-right:0; border-bottom:1px solid var(--line); }
  .haul__item:last-child{ border-bottom:0; }
}
@media (max-width:720px){
  .jpost{ grid-template-columns:64px 1fr; gap:18px; }
  .jpost__stone{ width:64px; }
  .row > summary{ grid-template-columns:28px 38px 1fr 16px; row-gap:2px; }
  .row__where{ grid-column:3; text-align:left; }
  .row__end{ grid-column:3; text-align:left; min-width:0; }
  .row__more{ grid-template-columns:1fr; padding-left:4px; }
}
@media (max-width:560px){
  /* brand + pill + burger needs ~362px and there is not that much room,
     so Journal moves inside the menu rather than clipping the burger */
  .navout{ display:none; }
  .nav__out{ display:block; color:var(--ink); border-top:1px solid var(--line-2); }
  .nav__out::after{ content:" →"; color:var(--pine); }

  .footer__in{ grid-template-columns:1fr; }
  .places li{ grid-template-columns:auto 1fr; }
  .places__where{ grid-column:2; }
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{ animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
  html{ scroll-behavior:auto; }
  .js .reveal{ opacity:1; transform:none; }
}
