/* ============================================================
   Bidside — landing page styles
   Aesthetic: editorial newspaper × manifesto.
   No gradients. No shadows by default. Purple is a highlighter,
   never a background. Sharp horizontal rules separate sections.
   Display = Fraunces (editorial serif). Body = IBM Plex Sans.
   Numbers / metadata = IBM Plex Mono.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --paper:        #F4EDE3;          /* warm newsprint */
  --paper-soft:   #ECE3D6;          /* slightly darker for cards */
  --ink:          #1D1F26;          /* main text */
  --ink-soft:     #3B3F47;          /* secondary text */
  --mute:         #6B6963;          /* meta / footnotes */
  --rule:         #2A2C33;          /* horizontal rules */
  --hairline:     rgba(29, 31, 38, 0.18);

  --accent:       #8B3DFF;          /* brand purple — highlighter only */
  --accent-ink:   #5B25B0;          /* darker purple for body text */
  --warn:         #B53A2C;          /* oxblood — for vendor side */
  --warn-soft:    #F0D7D2;
  --good:         #2C6E4A;          /* deep moss — for buyer side */
  --good-soft:    #D5E4D8;

  --serif:        "Fraunces", "Georgia", "Times New Roman", serif;
  --sans:         "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --mono:         "IBM Plex Mono", "SFMono-Regular", Menlo, Consolas, monospace;

  --gutter:       clamp(20px, 4vw, 56px);
  --maxw:         1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  font-feature-settings: "kern" 1, "liga" 1, "ss01" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; padding: 0; margin: 0; }
dl, dd { margin: 0; }
p { margin: 0; }

/* ---------- Grain overlay (newsprint feel) ---------- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image:
    url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

/* ---------- Common bits ---------- */
.caps {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.caps-warn   { color: var(--warn); }
.caps-buyer  { color: var(--good); }
.mute        { color: var(--mute); }
.small       { font-size: 13.5px; line-height: 1.5; }
.mono        { font-family: var(--mono); }

.rule {
  height: 1px;
  background: var(--rule);
  border: 0;
  margin: 0;
}
.rule--thick { height: 2px; }
.rule--thin  { height: 1px; background: var(--hairline); }

/* Highlighter — purple swipe behind a span. Animates in on page load. */
.highlight {
  position: relative;
  white-space: nowrap;
}
.highlight::before {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 0.05em;
  height: 0.45em;
  background: var(--accent);
  z-index: -1;
  border-radius: 1px;
  transform-origin: left center;
  transform: scaleX(0);
  animation: highlightSwipe 0.85s cubic-bezier(0.5, 0, 0.2, 1) 0.6s forwards;
}
@keyframes highlightSwipe {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Reduce motion — kill animations for users who'd rather not */
@media (prefers-reduced-motion: reduce) {
  .highlight::before { transform: scaleX(1); animation: none; }
  * { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
}

/* ---------- Buttons (pills) ---------- */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  border: 1.5px solid var(--ink);
  transition: transform 0.16s ease, background 0.16s ease, color 0.16s ease;
  white-space: nowrap;
}
.btn-pill svg { color: currentColor; }
.btn-pill--ink {
  background: var(--ink);
  color: var(--paper);
}
.btn-pill--ink:hover { transform: translateY(-1px); background: #000; }
.btn-pill--purple {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-pill--purple:hover { background: #7530E6; border-color: #7530E6; transform: translateY(-1px); }
.btn-pill--lg {
  padding: 15px 26px;
  font-size: 15.5px;
}

/* ---------- Masthead ---------- */
.masthead {
  padding: 22px var(--gutter) 0;
}
.masthead-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.brand-mark {
  width: 26px;
  height: 26px;
}
.brand-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.brand--small .brand-name { font-size: 19px; }
.brand--small .brand-mark { width: 22px; height: 22px; }

.masthead-nav {
  margin-left: 28px;
  display: flex;
  gap: 24px;
  flex: 1;
}
.masthead-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.15s ease;
}
.masthead-nav a:hover { color: var(--ink); }
.masthead-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1.5px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.masthead-nav a:hover::after { transform: scaleX(1); }

.masthead-rule {
  max-width: var(--maxw);
  margin: 0 auto;
  height: 3px;
  background: var(--rule);
  position: relative;
}
.masthead-rule::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 5px;
  height: 1px;
  background: var(--rule);
}

.masthead-strap {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0 0;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}

@media (max-width: 760px) {
  .masthead-nav { display: none; }
  .masthead-strap { font-size: 9.5px; padding-top: 8px; }
  .masthead-strap span:nth-child(2) { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(48px, 8vw, 96px) var(--gutter) clamp(48px, 7vw, 88px);
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto auto auto;
  gap: 0;
  align-items: start;
}
.hero-eyebrow {
  grid-column: 1 / 2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  animation: fadeUp 0.6s ease 0.05s both;
}
.dotmark {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}
.hero-headline {
  grid-column: 1 / 2;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(40px, 6.8vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.027em;
  color: var(--ink);
  margin: 0;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  animation: fadeUp 0.7s cubic-bezier(0.2, 0, 0.1, 1) 0.15s both;
  max-width: 16ch;
}
.hero-sub {
  grid-column: 1 / 2;
  margin: 26px 0 0;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
  animation: fadeUp 0.7s ease 0.35s both;
}
.caps-link {
  font-family: var(--mono);
  font-size: 0.86em;
  letter-spacing: 0.04em;
  background: var(--paper-soft);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--ink);
}
.hero-cta-row {
  grid-column: 1 / 2;
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 36px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.55s both;
}
.hero-cta-note {
  font-size: 13.5px;
  color: var(--mute);
  max-width: 38ch;
  line-height: 1.45;
}

/* Hand-stamp — sits in the top-right of the hero grid */
.stamp {
  grid-column: 2 / 3;
  grid-row: 1 / 4;
  width: clamp(120px, 14vw, 180px);
  color: var(--accent);
  align-self: start;
  justify-self: end;
  transform: rotate(-9deg);
  opacity: 0.92;
  margin-left: 12px;
  animation: stampDrop 0.7s cubic-bezier(0.18, 0.9, 0.32, 1.2) 0.35s both;
}
@keyframes stampDrop {
  from { opacity: 0; transform: rotate(-26deg) scale(1.4); }
  to   { opacity: 0.92; transform: rotate(-9deg) scale(1); }
}
@media (max-width: 760px) {
  .stamp { display: none; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Editorial lead ---------- */
.lead {
  padding: 0 var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.lead-grid {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  gap: clamp(28px, 5vw, 72px);
  padding: 38px 0;
  align-items: start;
}
.lead-byline {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 2px solid var(--ink);
  padding-left: 16px;
}
.lead-byline .caps { color: var(--ink); font-weight: 600; }
.lead-byline-author {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
}
.lead-body p {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--ink);
  font-variation-settings: "opsz" 24, "SOFT" 50;
}
.lead-body p + p { margin-top: 18px; }
.dropcap {
  position: relative;
}
.dropcap-letter {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 4.4em;
  float: left;
  line-height: 0.86;
  margin-right: 12px;
  margin-top: 4px;
  color: var(--accent);
  font-variation-settings: "opsz" 144;
}

@media (max-width: 760px) {
  .lead-grid { grid-template-columns: 1fr; gap: 18px; padding: 28px 0; }
  .lead-byline { border-left: 0; border-top: 1px solid var(--rule); padding-left: 0; padding-top: 14px; flex-direction: row; align-items: baseline; gap: 14px; }
}

/* ---------- Section heads (numbered) ---------- */
.section-head {
  max-width: var(--maxw);
  margin: 0 auto clamp(28px, 4vw, 48px);
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 22px;
  align-items: baseline;
}
.section-num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 0;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  max-width: 22ch;
}
.section-deck {
  grid-column: 2 / 3;
  margin-top: 10px;
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 56ch;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .section-head { grid-template-columns: 1fr; }
  .section-deck { grid-column: 1 / 2; }
}

/* ---------- How it works ---------- */
.how {
  padding: clamp(64px, 8vw, 96px) 0 clamp(64px, 8vw, 96px);
}
.steps {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  gap: 1px;
  background: var(--rule); /* hairlines between rows */
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.step {
  display: grid;
  grid-template-columns: minmax(120px, 160px) 1fr;
  gap: 28px;
  padding: 28px 0;
  background: var(--paper);
  align-items: start;
}
.step-num {
  font-family: var(--mono);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
}
.step h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin: 0 0 10px;
  color: var(--ink);
}
.step p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
}

@media (max-width: 640px) {
  .step { grid-template-columns: 1fr; gap: 6px; }
}

/* ---------- Ledger / PropTrack vs Bidside ---------- */
.ledger {
  padding: clamp(64px, 8vw, 96px) 0;
  background: var(--paper-soft);
  border-top: 2px solid var(--rule);
  border-bottom: 2px solid var(--rule);
}
.ledger-table {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr 1fr;
  border-top: 2px solid var(--ink);
}
.ledger-row {
  display: contents;
}
.ledger-cell {
  padding: 22px 22px;
  border-bottom: 1px solid var(--hairline);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}
.ledger-cell--label {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
  border-right: 1px solid var(--hairline);
  padding-top: 26px;
}
.ledger-cell--vendor {
  background:
    linear-gradient(transparent 0 0),
    var(--warn-soft);
  background-blend-mode: normal;
  border-right: 1px solid var(--hairline);
  color: var(--ink);
}
.ledger-cell--buyer {
  background: var(--good-soft);
  color: var(--ink);
}
.ledger-row--head .ledger-cell {
  padding-top: 30px;
  padding-bottom: 26px;
  border-bottom: 2px solid var(--ink);
}
.ledger-row--head .ledger-cell h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  margin: 8px 0 4px;
}
.ledger-row--head .ledger-cell--vendor h3 { color: var(--warn); }
.ledger-row--head .ledger-cell--buyer h3 { color: var(--good); }

.ledger-foot {
  max-width: var(--maxw);
  margin: 22px auto 0;
  padding: 0 var(--gutter);
  font-size: 13.5px;
  color: var(--ink-soft);
  max-width: 56ch;
  padding-left: var(--gutter);
}

@media (max-width: 760px) {
  .ledger-table { grid-template-columns: 1fr; border-top: 2px solid var(--ink); }
  .ledger-cell--label { border-right: 0; border-bottom: 0; padding-bottom: 4px; padding-top: 18px; }
  .ledger-cell--vendor, .ledger-cell--buyer { border-right: 0; }
  .ledger-row--head .ledger-cell--label { display: none; }
}

/* ---------- Panes (5 real-brief screenshots) ----------
   The visual centrepiece of the page. Each image is a designed asset
   that carries its own headline + tinted background, so we don't add
   our own typography around it — we just give it breathing room and
   the subtlest possible frame. Light hover lift on desktop. */
.panes {
  padding: clamp(56px, 8vw, 96px) 0 clamp(72px, 9vw, 112px);
}
.panes-stack {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3.5vw, 48px);
}
.pane {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--paper-soft);
  border: 1px solid var(--hairline);
  transition: transform 0.4s cubic-bezier(0.2, 0, 0.1, 1),
              box-shadow 0.4s cubic-bezier(0.2, 0, 0.1, 1);
}
.pane:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -22px rgba(29, 31, 38, 0.25);
}
.pane img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1280 / 800;
}
.panes-caption {
  max-width: 70ch;
  margin: clamp(28px, 4vw, 44px) auto 0;
  padding: 0 var(--gutter);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--mute);
  text-align: center;
}

/* On hovering, prefer-reduced-motion users get no transform */
@media (prefers-reduced-motion: reduce) {
  .pane { transition: none; }
  .pane:hover { transform: none; }
}

/* ---------- Pricing ---------- */
.pricing {
  padding: clamp(64px, 8vw, 96px) 0;
  border-top: 2px solid var(--rule);
}
.pricing-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.price-card {
  background: var(--paper-soft);
  border: 1px solid var(--hairline);
  padding: 26px 22px;
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card--featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.price-card--featured .price-card-name,
.price-card--featured .price-card-blurb,
.price-card--featured .price-card-eyebrow,
.price-card--featured .price-card-amount { color: var(--paper); }
.price-card--featured .price-card-eyebrow { color: rgba(244, 237, 227, 0.65); }
.price-card-badge {
  position: absolute;
  top: -12px;
  left: 22px;
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 3px;
}
.price-card-eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 18px;
}
.price-card-amount {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(40px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 2px;
  font-variation-settings: "opsz" 144;
}
.price-card-currency {
  font-size: 0.45em;
  font-weight: 600;
  margin-top: 0.4em;
  color: inherit;
  letter-spacing: 0;
}
.price-card-period {
  font-family: var(--mono);
  font-size: 0.35em;
  font-weight: 500;
  margin-top: 0.95em;
  letter-spacing: 0;
  margin-left: 4px;
  color: inherit;
}
.price-card-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.012em;
  margin: 10px 0 12px;
  color: var(--ink);
}
.price-card-blurb {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.pricing-note {
  max-width: var(--maxw);
  margin: 28px auto 0;
  padding: 0 var(--gutter);
  font-size: 13px;
  color: var(--mute);
  text-align: center;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq {
  padding: clamp(64px, 8vw, 96px) 0;
  background: var(--paper-soft);
  border-top: 2px solid var(--rule);
  border-bottom: 2px solid var(--rule);
}
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  gap: 0;
}
.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: minmax(160px, 240px) 1fr;
  gap: 32px;
  align-items: start;
}
.faq-item:last-child { border-bottom: 0; }
.faq-item dt {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.012em;
}
.faq-item dd {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.faq-item dd a {
  color: var(--accent-ink);
  border-bottom: 1px solid currentColor;
}
.faq-item dd a:hover { color: var(--accent); }

@media (max-width: 720px) {
  .faq-item { grid-template-columns: 1fr; gap: 10px; }
}

/* ---------- Final CTA ---------- */
.final-cta {
  padding: clamp(80px, 10vw, 128px) var(--gutter);
  text-align: center;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  /* Subtle radial spotlight in the bottom-right, very low opacity */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 110%, rgba(139, 61, 255, 0.28), transparent 55%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.final-cta h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.06;
  letter-spacing: -0.024em;
  color: var(--paper);
  margin: 0 0 20px;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.final-cta p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(244, 237, 227, 0.75);
  max-width: 56ch;
  margin: 0 auto 32px;
}

/* ---------- Colophon (footer) ---------- */
.colophon {
  padding: 0 var(--gutter) 32px;
  background: var(--paper);
}
.colophon-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding: 36px 0;
  align-items: start;
}
.colophon-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-soft);
}
.colophon-block .caps {
  margin-bottom: 6px;
  color: var(--ink);
}
.colophon-block a {
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
.colophon-block a:hover { color: var(--ink); }
.colophon-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--mute);
  margin-top: 6px;
}
.colophon-foot {
  max-width: var(--maxw);
  margin: 14px auto 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--mute);
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .colophon-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .colophon-grid { grid-template-columns: 1fr; }
  .colophon-foot { flex-direction: column; gap: 8px; text-align: center; align-items: center; }
}

/* ---------- Scroll-triggered reveal (subtle) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
