/* ============================================================
   Bonsai Supplies — design system
   Editorial, photo-led, generous whitespace.
   ============================================================ */

:root {
  /* Palette: deep evergreen + warm paper + ink */
  --green-900: #1a2e22;
  --green-800: #243d2e;
  --green-700: #335840;
  --green-500: #5a7d63;
  --green-100: #d8e0d4;
  --green-50:  #eef2ec;

  --bark:      #6b4f3a;
  --clay:      #b88766;

  --paper:     #ffffff;
  --cream:     #f5f1e8;
  --cream-2:   #ebe4d3;

  --ink:       #14160f;
  --ink-2:     #3a3f37;
  --muted:     #7a7c72;
  --line:      #e1dcc9;
  --line-2:    #ede8d8;

  --radius:    2px;
  --radius-lg: 4px;
  --max:       1280px;
  --max-narrow: 680px;

  --serif:     "Cormorant Garamond", "EB Garamond", Georgia, "Times New Roman", serif;
  --sans:      "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

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

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@400;500;600&display=swap');

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, picture { max-width: 100%; height: auto; display: block; }
button { font: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--green-900);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.75rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1rem; font-family: var(--sans); font-weight: 600; letter-spacing: -0.005em; }

p { margin: 0 0 1em; color: var(--ink-2); }
a { color: var(--green-800); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--green-900); }

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-700);
  margin: 0 0 1.25rem;
  display: inline-block;
}
.eyebrow.num::before {
  content: attr(data-num) "   ";
  color: var(--clay);
  font-weight: 500;
  margin-right: .35rem;
}
.lede {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.9vw, 1.55rem);
  line-height: 1.4;
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 1.5rem;
  max-width: 36ch;
}
.muted { color: var(--muted); }
.center { text-align: center; }
.serif { font-family: var(--serif); }

/* ---------- Layout ---------- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.container.narrow { max-width: var(--max-narrow); }
.container.wide { max-width: 100%; padding: 0 clamp(1.25rem, 4vw, 3rem); }

section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
section.tight { padding: clamp(2rem, 4vw, 3rem) 0; }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: clamp(2rem, 4vw, 3.5rem); gap: 1rem; flex-wrap: wrap;
}
.section-head .left { max-width: 540px; }
.section-head h2 { margin: 0; }
.section-head .lede { margin-top: .75rem; margin-bottom: 0; }
.section-head a.see-all {
  font-family: var(--sans); font-weight: 500; font-size: .9rem;
  color: var(--green-700); letter-spacing: .02em;
  border-bottom: 1px solid var(--green-700); padding-bottom: 2px;
}
.section-head a.see-all:hover { color: var(--green-900); border-color: var(--green-900); }

.rule {
  border: 0; height: 1px; background: var(--line);
  margin: 0;
}

/* ---------- Header ---------- */
.site-header {
  background: rgba(245,241,232,.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.site-header .row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1.25rem, 4vw, 2.5rem);
  max-width: var(--max); margin: 0 auto; gap: 1rem;
}
.brand {
  display: flex; align-items: baseline; gap: .5rem;
  color: var(--green-900);
}
.brand:hover { color: var(--green-900); }
.brand-name {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 500;
  color: var(--green-900); letter-spacing: -0.015em;
  line-height: 1;
}
.brand-mark {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 1rem; color: var(--clay);
  line-height: 1;
}
.nav { display: flex; gap: clamp(1rem, 2.6vw, 2.2rem); align-items: center; }
.nav a {
  color: var(--ink); font-weight: 500; font-size: .88rem;
  letter-spacing: .04em; text-transform: uppercase;
  position: relative; padding: .5rem 0;
}
.nav a:hover { color: var(--green-700); }
.nav a:not(.cart-link):hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 1px; background: var(--green-700);
}
.cart-link {
  display: inline-flex; align-items: center; gap: .4rem;
}
.cart-count {
  display: inline-grid; place-items: center;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--green-800); color: var(--cream);
  font-size: .65rem; font-weight: 600;
  border-radius: 999px; letter-spacing: 0;
}
.cart-count[hidden] { display: none; }

@media (max-width: 760px) {
  .nav { gap: 1rem; }
  .nav a:not(.cart-link) { display: none; }
  .brand-name { font-size: 1.15rem; }
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 80% 30%, rgba(184,135,102,.18), transparent 70%),
    radial-gradient(ellipse 90% 70% at 10% 90%, rgba(51,88,64,.45), transparent 60%),
    linear-gradient(165deg, var(--green-900) 0%, var(--green-800) 60%, #2c4a36 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  min-height: clamp(520px, 75vh, 760px);
  display: flex;
  align-items: flex-end;
  padding: 0;
}
.hero::after {
  /* subtle film grain */
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0.05  0 0 0 0 0.05  0 0 0 0 0.05  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .6; pointer-events: none; mix-blend-mode: overlay;
}
.hero .container {
  position: relative; z-index: 1;
  padding-top: clamp(4rem, 12vw, 8rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  width: 100%;
}
.hero .eyebrow {
  color: var(--cream-2);
  opacity: .9;
}
.hero h1 {
  color: #fff;
  font-weight: 400;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 14ch;
}
.hero h1 em {
  font-style: italic; color: var(--cream);
  font-weight: 400;
}
.hero p.tagline {
  color: rgba(247,244,238,.82);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  margin: 0 0 2.5rem; max-width: 48ch;
  line-height: 1.55;
}
.hero .cta { display: flex; gap: .75rem; flex-wrap: wrap; }
.hero .scroll-cue {
  position: absolute; right: clamp(1.25rem, 4vw, 2.5rem); bottom: 2rem;
  font-family: var(--sans); font-size: .7rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(247,244,238,.55);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: 1rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-weight: 500; font-size: .85rem;
  letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .05s;
  text-align: center; line-height: 1;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--green-800); color: var(--cream); }
.btn-primary:hover { background: var(--green-900); color: #fff; }
.btn-ghost {
  background: transparent; color: var(--cream);
  border-color: rgba(247,244,238,.4);
}
.btn-ghost:hover { background: rgba(247,244,238,.08); color: #fff; border-color: rgba(247,244,238,.7); }
.btn-outline {
  background: transparent; color: var(--green-900);
  border-color: var(--green-900);
}
.btn-outline:hover { background: var(--green-900); color: var(--cream); }
.btn[disabled] { opacity: .55; cursor: not-allowed; }
.btn.is-added { background: var(--green-700); color: var(--cream); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.15rem 2.25rem; font-size: .9rem; }

/* ---------- Product grid ---------- */
.grid {
  display: grid; gap: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 2vw, 2.5rem);
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.grid.cols-3 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.grid.cols-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(2rem, 3vw, 3rem); }

.card {
  background: transparent;
  display: flex; flex-direction: column;
}
.card a.card-link { color: inherit; display: block; }
.card a.card-link:hover { text-decoration: none; }
.card-img {
  aspect-ratio: 4/5;
  background: var(--cream-2);
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  position: relative;
}
.card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease), filter .6s var(--ease);
}
.card:hover .card-img img { transform: scale(1.05); }
.card-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(20,22,15,.05));
  pointer-events: none;
}
.card-body {
  display: flex; flex-direction: column; gap: .35rem;
  padding: 0 .1rem;
}
.card-eyebrow {
  font-family: var(--sans); font-size: .68rem; font-weight: 600;
  color: var(--muted); letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: .2rem;
}
.card-title {
  font-family: var(--serif); font-size: 1.2rem;
  color: var(--green-900); line-height: 1.2;
  font-weight: 500; letter-spacing: -0.005em;
}
.card-meta {
  font-size: .85rem; color: var(--muted);
  margin-top: .15rem;
}
.card-price {
  font-family: var(--sans);
  font-weight: 500; color: var(--ink); font-size: .92rem;
  margin-top: .4rem;
}

/* ---------- Editorial featured block ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
@media (min-width: 900px) {
  .feature { grid-template-columns: 1.15fr 1fr; }
  .feature.reverse { grid-template-columns: 1fr 1.15fr; }
  .feature.reverse .feature-img { order: 2; }
}
.feature-img {
  position: relative;
  background: var(--cream-2);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-body { padding: 1rem 0; }
.feature-body h2 { margin-bottom: 1rem; }
.feature-body p { font-size: 1.05rem; max-width: 44ch; }
.feature-body .price-tag {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 500;
  color: var(--green-900); margin: 1rem 0 1.5rem;
}

/* ---------- Quotes / story strip ---------- */
.strip {
  background: var(--green-900);
  color: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}
.strip h2, .strip h3 { color: var(--cream); }
.strip p { color: rgba(247,244,238,.78); }
.strip .container { position: relative; z-index: 1; }
.strip .eyebrow { color: var(--cream-2); opacity: .8; }
.strip blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.3; font-weight: 400;
  color: #fff; margin: 0 0 1.5rem; max-width: 26ch;
}
.strip .signature {
  font-family: var(--sans); font-size: .8rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--cream-2); opacity: .7;
}

/* ---------- Props (value props row) ---------- */
.props {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
}
.prop h4 { margin: 0 0 .35rem; color: var(--green-900); font-size: .92rem; }
.prop p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.55; }
.prop .num {
  font-family: var(--serif); font-style: italic;
  color: var(--clay); font-size: 1.05rem; font-weight: 500;
  margin-bottom: .65rem; display: block;
}

/* ---------- Product detail ---------- */
.pd {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-top: clamp(1rem, 2vw, 2rem);
}
@media (min-width: 920px) {
  .pd { grid-template-columns: 1.2fr 1fr; gap: clamp(3rem, 5vw, 5rem); }
}
.pd .gallery {
  background: var(--cream-2);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.pd .gallery img {
  width: 100%; height: 100%; object-fit: cover;
}
.pd .buy {
  align-self: start;
  position: sticky;
  top: 100px;
}
@media (max-width: 919px) {
  .pd .buy { position: static; }
}
.pd .badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 1rem;
}
.pd h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 1rem;
  line-height: 1.05;
}
.pd .short {
  font-family: var(--serif); font-style: italic;
  font-size: 1.15rem; color: var(--ink); line-height: 1.45;
  margin-bottom: 1.5rem; max-width: 38ch;
}
.pd .price-large {
  font-size: 1.7rem;
  font-weight: 500;
  font-family: var(--serif);
  color: var(--ink);
  margin: 0 0 1.75rem;
  letter-spacing: -0.01em;
}
.qty { display: inline-flex; align-items: stretch; gap: 0; margin: 0 0 1rem; border: 1px solid var(--line); border-radius: var(--radius); }
.qty button {
  width: 42px; height: 46px;
  border: 0; background: transparent; cursor: pointer;
  font-size: 1.15rem; color: var(--ink);
  transition: background .15s;
}
.qty button:hover { background: var(--cream-2); }
.qty input {
  width: 56px; height: 46px;
  text-align: center;
  border: 0; border-left: 1px solid var(--line); border-right: 1px solid var(--line);
  font-family: var(--sans); font-size: .95rem;
  background: transparent;
}
.qty input:focus { outline: none; background: var(--cream-2); }
.pd .add-row { display: flex; gap: .75rem; align-items: center; margin: 1rem 0 2rem; flex-wrap: wrap; }
.pd .add-row .btn { flex: 1; min-width: 220px; }

.pd .description {
  margin: 2.5rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 50ch;
}
.pd .meta-list {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  font-size: .9rem;
  border-top: 1px solid var(--line);
}
.pd .meta-list li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .8rem 0;
  border-bottom: 1px solid var(--line);
}
.pd .meta-list .k {
  color: var(--muted); text-transform: uppercase;
  font-size: .72rem; letter-spacing: .14em; font-weight: 600;
}
.pd .meta-list .v { color: var(--ink); text-align: right; }
.pd .shipping-note {
  font-size: .85rem; color: var(--muted);
  margin-top: 1rem;
  display: flex; align-items: center; gap: .5rem;
}
.pd .shipping-note strong { color: var(--green-800); font-weight: 600; }

/* ---------- Collection page ---------- */
.collection-head {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
}
.collection-head .eyebrow { margin-bottom: 1rem; }
.collection-head h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0 0 1.25rem; max-width: 14ch;
}
.collection-head p.intro {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.45;
  color: var(--ink); max-width: 52ch;
  margin: 0;
}
.collection-meta {
  font-family: var(--sans); font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
  margin-top: 1.5rem;
}

/* ---------- Cart ---------- */
.cart-page h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 1.5rem 0 2.5rem;
}
.cart-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .cart-grid { grid-template-columns: 1.6fr 1fr; align-items: start; }
}
.cart-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.cart-row {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-row img {
  width: 96px; height: 120px; object-fit: cover;
  background: var(--cream-2); border-radius: var(--radius);
}
.cart-row .title {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 500;
  color: var(--green-900); display: block; margin-bottom: .25rem;
  line-height: 1.25;
}
.cart-row .meta { font-size: .85rem; color: var(--muted); margin-bottom: .75rem; }
.cart-row .qty { margin: 0 0 .25rem; }
.cart-row .remove {
  background: transparent; border: 0; padding: 0;
  color: var(--muted); cursor: pointer;
  font-family: var(--sans); font-size: .78rem;
  letter-spacing: .1em; text-transform: uppercase;
  border-bottom: 1px solid currentColor; padding-bottom: 1px;
}
.cart-row .remove:hover { color: var(--green-900); }
.cart-row .line-total {
  font-family: var(--serif); font-size: 1.1rem;
  font-weight: 500; color: var(--ink);
  text-align: right;
}
.cart-summary {
  padding: 1.75rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: sticky; top: 100px;
}
.cart-summary h3 {
  font-family: var(--sans); font-size: .8rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
  margin: 0 0 1.25rem;
}
.cart-summary .row {
  display: flex; justify-content: space-between;
  padding: .5rem 0; font-size: .95rem;
}
.cart-summary .row.shipping { color: var(--green-700); font-weight: 500; }
.cart-summary .total {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 500;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem; margin-top: .75rem;
  color: var(--green-900);
}
.cart-summary .btn { margin-top: 1.5rem; }
.cart-summary .fineprint {
  font-size: .78rem; color: var(--muted);
  margin-top: 1rem; line-height: 1.5;
}
.cart-empty {
  text-align: center; padding: 5rem 1rem 4rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cart-empty p { margin-bottom: 1.5rem; font-style: italic; font-family: var(--serif); font-size: 1.2rem; color: var(--ink); }

@media (max-width: 560px) {
  .cart-row {
    grid-template-columns: 72px 1fr;
    grid-template-areas: "img body" "img total";
    gap: .75rem 1rem;
  }
  .cart-row img { grid-area: img; width: 72px; height: 90px; }
  .cart-row .body { grid-area: body; }
  .cart-row .line-total { grid-area: total; text-align: left; align-self: end; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900);
  color: rgba(247,244,238,.78);
  padding: clamp(4rem, 7vw, 6rem) 0 1.75rem;
  margin-top: clamp(4rem, 7vw, 6rem);
  font-size: .92rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 90% 0%, rgba(184,135,102,.12), transparent 70%);
  pointer-events: none;
}
.site-footer .container { position: relative; }
.site-footer a { color: var(--cream); }
.site-footer a:hover { color: #fff; }
.footer-top {
  display: grid; gap: clamp(2.5rem, 5vw, 4rem);
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(247,244,238,.12);
}
@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
.footer-brand .brand-name {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 500;
  color: #fff; display: block; margin-bottom: .5rem; letter-spacing: -0.015em;
}
.footer-brand p { color: rgba(247,244,238,.65); max-width: 32ch; margin: 0; }
.site-footer h4 {
  color: #fff; margin: 0 0 1rem;
  font-family: var(--sans); font-weight: 600;
  font-size: .72rem; letter-spacing: .22em;
  text-transform: uppercase;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: .35rem 0; }
.footer-bottom {
  margin-top: 1.75rem;
  font-size: .78rem;
  color: rgba(247,244,238,.5);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: .5rem;
  letter-spacing: .04em;
}

/* ---------- Misc ---------- */
.crumbs {
  font-size: .75rem;
  color: var(--muted);
  padding: 1.5rem 0 0;
  font-family: var(--sans); letter-spacing: .1em; text-transform: uppercase;
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--green-700); }
.crumbs .sep { margin: 0 .5rem; opacity: .5; }

.prose { max-width: 60ch; }
.prose h2 { margin-top: 2.5rem; font-size: 1.5rem; }
.prose p, .prose li { font-size: 1.02rem; line-height: 1.7; color: var(--ink-2); }
.prose ul { padding-left: 1.25rem; }

.info-table {
  width: 100%; max-width: 540px; border-collapse: collapse;
  margin: 1.5rem 0 2rem; font-size: .95rem;
}
.info-table th, .info-table td {
  padding: .85rem 0;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.info-table th {
  font-family: var(--sans); font-weight: 600;
  font-size: .72rem; text-transform: uppercase; letter-spacing: .14em;
  color: var(--muted); padding-bottom: .5rem;
  width: 40%;
}

.notice {
  background: var(--green-50);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--green-700);
  margin: 1.5rem 0;
  font-size: .9rem;
  color: var(--ink-2);
}

.signup-thanks {
  font-family: var(--serif); font-style: italic; font-size: 1.15rem;
  color: var(--green-800); margin: 0;
}

::selection { background: var(--green-700); color: #fff; }

/* ---------- Page transitions / motion ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
  }
  .reveal.visible { opacity: 1; transform: none; }
}
