:root {
  --bg: #fbf5e6;
  --bg-card: #ffffff;
  --bg-card-warm: #f4ecd6;
  --line: #d9c9a8;
  --line-strong: #c4b48e;

  --ink: #1a1108;
  --ink-soft: #5c4836;
  --ink-mute: #8a7866;

  --amber: #b8851c;
  --amber-bright: #e3b54a;
  --amber-soft: rgba(184, 133, 28, 0.08);

  --oxblood: #8B2E1F;
  --ember: #d54a2a;

  --cta-bg: #1a1108;
  --cta-bg-hover: #2a1d10;
  --cta-text: #fbf5e6;

  --max: 600px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
  background-image:
    radial-gradient(ellipse at 20% 10%, rgba(184, 133, 28, 0.08), transparent 50%),
    radial-gradient(ellipse at 80% 90%, rgba(139, 46, 31, 0.06), transparent 50%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1  0 0 0 0 0.08  0 0 0 0 0.05  0 0 0 0.05 0'/></filter><rect width='160' height='160' filter='url(%23n)'/></svg>");
  background-attachment: fixed;
}

a { color: var(--oxblood); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

/* ============== ACCESSIBILITY ============== */
/* Single, consistent focus ring across all interactive elements.
   :focus-visible suppresses the ring for mouse clicks (so buttons don't get
   a ring after every click) while keeping it for keyboard navigation. */
*:focus { outline: none; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--amber-bright);
  outline-offset: 2px;
  border-radius: 4px;
}
input[type="email"]:focus-visible,
input[type="text"]:focus-visible,
input[type="password"]:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 1px;
}

/* Skip-to-content link — visually hidden until focused.
   First tab on every page jumps straight past brandmark/nav to <main>. */
.skip-link {
  position: absolute;
  top: 8px; left: 8px;
  background: var(--ink);
  color: var(--cta-text) !important;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: translateY(-200%);
  transition: transform 0.15s ease;
  z-index: 9999;
}
.skip-link:focus { transform: translateY(0); }

/* Respect users who prefer reduced motion — kill smooth scroll, transitions,
   and animation across the board so nothing creates vestibular discomfort. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============== MARQUEE ============== */
.marquee {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 12px 12px;
  background: var(--ink);
  position: relative;
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  left: 0; right: 0; height: 1px;
  background: var(--amber-bright);
  opacity: 0.55;
}
.marquee::before { top: 4px; }
.marquee::after { bottom: 4px; }
.marquee span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff3c2 0%, #f5c542 40%, #b8851c 80%, #5a3d0a 100%);
  box-shadow: 0 0 8px rgba(245, 197, 66, 0.6);
}
.marquee span:nth-child(3n) {
  background: radial-gradient(circle at 35% 35%, #ffe78a 0%, #e3b54a 40%, #a37314 80%, #4a2f08 100%);
}

@media (max-width: 480px) {
  .marquee { gap: 11px; padding: 10px 8px; }
  .marquee span { width: 7px; height: 7px; }
}

/* ============== BRANDMARK (top) ============== */
.brandmark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 22px 16px 6px;
  color: var(--ink);
  text-decoration: none;
  font-family: 'Cormorant', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.01em;
  transition: opacity 0.15s;
}
.brandmark:hover { opacity: 0.72; }
.brandmark-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber-bright);
  box-shadow: 0 0 0 1px var(--amber) inset;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .brandmark { padding: 18px 16px 4px; font-size: 16px; }
}

/* ============== HERO ============== */
.hero-block {
  position: relative;
  padding-bottom: 28px;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 44px 22px 8px;
  text-align: center;
}
@media (max-width: 480px) { .hero-inner { padding: 32px 18px 6px; } }

.onair {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--amber);
  border: 1px solid var(--amber);
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--amber-soft);
  margin-bottom: 26px;
}
.onair .ember {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 6px rgba(213, 74, 42, 0.7);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0.3; }
}

.ornament {
  color: var(--amber);
  font-size: 14px;
  letter-spacing: 0.6em;
  margin: 6px 0 16px;
  opacity: 0.7;
}
.ornament-small {
  color: var(--amber);
  font-size: 14px;
  letter-spacing: 0.4em;
  margin: 22px 0 16px;
  opacity: 0.6;
}

h1 {
  font-family: 'Cormorant', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.0;
  margin: 0;
  font-size: clamp(46px, 13vw, 80px);
  color: var(--ink);
}
h1 em {
  font-style: italic;
  font-weight: 600;
  color: var(--oxblood);
}

.hero-inner .sub {
  font-size: clamp(16px, 4vw, 18px);
  color: var(--ink-soft);
  margin: 20px auto 22px;
  max-width: 32ch;
  line-height: 1.55;
}
.hero-inner .sub strong { color: var(--ink); font-weight: 600; }

/* Numbered chips — equal-width grid, locked sizes so the number badge
   never deforms (was getting flex-shrunk into ovals at certain widths). */
.chips {
  list-style: none;
  margin: 0 auto 8px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 420px;
  border-radius: 12px;
  padding: 8px;
  background: var(--amber-soft);
}
.chips li {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 8px 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  text-align: center;
  min-height: 78px;
}
.chips .num {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--amber-soft);
  color: var(--ink);
  border: 1px solid rgba(26, 17, 8, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}
.chips .chip-text { font-weight: 500; line-height: 1.3; }
.chip-aster { font-size: 0.72em; color: var(--amber); margin-left: 1px; vertical-align: super; font-weight: 700; }
.chips-note { font-size: 12px; color: var(--ink-mute); text-align: center; margin: 4px 0 22px; font-style: italic; letter-spacing: 0.01em; }

.movie-credits {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin: -2px 0 6px;
  font-weight: 600;
}
.movie-when {
  font-family: 'Cormorant', Georgia, serif;
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.2;
}
.movie-when strong { font-weight: 600; }

.chat-when {
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 16px;
  margin: 0 0 16px;
  text-align: center;
}
.chat-when-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 4px;
}
.chat-when-date {
  font-family: 'Cormorant', Georgia, serif;
  font-style: italic;
  font-size: clamp(22px, 5vw, 26px);
  line-height: 1.1;
  color: var(--ink);
}
.chat-when-date strong { font-weight: 600; }

.movie-blurb {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 12px 0 18px;
  line-height: 1.6;
  letter-spacing: 0.005em;
}

.ticket-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
  text-align: left;
}
.ticket-info { flex: 1; min-width: 0; }

.movie-poster {
  display: block;
  flex: 0 0 90px;
  width: 90px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 6px 18px -8px rgba(26, 17, 8, 0.45), 0 0 0 1px rgba(26,17,8,0.1);
}
@media (min-width: 480px) {
  .movie-poster { flex: 0 0 110px; width: 110px; }
}

.ticket-info .ticket-label { margin-bottom: 6px; }
.ticket-info .movie-title { margin-bottom: 4px; }

.why { margin: 0 0 44px; }
.why-h {
  font-family: 'Cormorant', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(28px, 6vw, 36px);
  line-height: 1.05;
  margin: 0 0 22px;
  color: var(--ink);
}
.why p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 16px;
  max-width: 50ch;
}
.why-sig {
  font-family: 'Cormorant', serif;
  font-style: italic;
  color: var(--ink-mute);
  margin-top: 22px !important;
  font-size: 15px !important;
}

/* Note: chips intentionally stay column at all widths now — the previous
   row-direction at >480px caused inconsistent number-badge shapes when chip
   text wrapped differently between cells. */

/* ============== TICKET CARD ============== */
.ticket {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin: 0 auto;
  max-width: 440px;
  padding: 26px 22px 20px;
  text-align: center;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 18px 36px -22px rgba(26, 17, 8, 0.2);
}
.ticket .movie-blurb {
  text-align: left;
  max-width: 38ch;
  margin-left: auto;
  margin-right: auto;
}
.ticket-bottom {
  margin: 28px auto 0;
}

.ticket-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--amber);
  margin-bottom: 12px;
}

.movie-title {
  font-family: 'Cormorant', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(28px, 7vw, 38px);
  line-height: 1.05;
  margin-bottom: 6px;
  color: var(--ink);
  word-wrap: break-word;
}

.ticket-h2 {
  font-family: 'Cormorant', serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(28px, 6vw, 34px);
  line-height: 1.05;
  margin-bottom: 14px;
  color: var(--ink);
}

.movie-meta {
  font-family: 'JetBrains Mono', monospace;
  color: var(--ink-mute);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  min-height: 1em;
}

/* CTA */
.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--cta-bg);
  color: var(--cta-text);
  border: 0;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 20px;
  border-radius: 10px;
  cursor: pointer;
  min-height: 54px;
  transition: background 0.15s, transform 0.05s, box-shadow 0.2s;
  text-decoration: none;
  box-shadow: 0 10px 24px -10px rgba(26, 17, 8, 0.4);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cta:hover {
  background: var(--cta-bg-hover);
  box-shadow: 0 16px 30px -12px rgba(26, 17, 8, 0.5);
}
.cta:active { transform: translateY(1px); }
.cta:disabled { opacity: 0.6; cursor: not-allowed; box-shadow: none; }

.cta .price {
  background: var(--amber-bright);
  color: var(--ink);
  padding: 4px 11px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
}

.micro {
  margin: 12px 0 0;
  font-size: 12.5px;
  color: var(--ink-mute);
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
}

/* ============== WRAP ============== */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 22px 56px;
  text-align: left;
}
@media (max-width: 480px) { .wrap { padding: 32px 18px 40px; } }

/* ============== FORM ============== */
.form-section {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  margin: 0 0 36px;
  box-shadow: 0 8px 24px -14px rgba(26, 17, 8, 0.15);
}
form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; border: 0; padding: 0; margin: 0; }
.field-compact { gap: 4px; }
.field > span, .field > legend {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.field em { color: var(--ink-mute); font-style: normal; font-weight: 400; text-transform: none; letter-spacing: 0; }
input[type="email"], input[type="text"] {
  font: inherit;
  font-size: 17px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  color: var(--ink);
  min-height: 48px;
  width: 100%;
}
input[type="email"]::placeholder, input[type="text"]::placeholder { color: var(--ink-mute); }
.suggest-btn {
  background: transparent; border: 0; padding: 0;
  color: var(--oxblood); text-decoration: underline; text-underline-offset: 3px;
  font: inherit; cursor: pointer;
}
.suggest-btn:hover { color: var(--ink); }

input[type="email"]:focus, input[type="text"]:focus {
  outline: 2px solid var(--amber);
  outline-offset: 1px;
  border-color: var(--amber);
  background: #fff;
}
.radio-row { display: flex; gap: 8px; flex-wrap: wrap; }
.radio-pill {
  flex: 1 1 auto;
  min-width: 70px;
  text-align: center;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  color: var(--ink);
}
.radio-pill input { position: absolute; opacity: 0; pointer-events: none; }
.radio-pill:has(input:checked) {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
  font-weight: 600;
}
.hint {
  font-size: 14px;
  color: var(--oxblood);
  background: rgba(139, 46, 31, 0.06);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.hint a { font-weight: 600; cursor: pointer; }
.error {
  background: rgba(213, 74, 42, 0.1);
  color: var(--oxblood);
  border: 1px solid var(--oxblood);
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 15px;
}
.cta-submit { margin-top: 2px; text-transform: uppercase; }

/* ============== PULL QUOTE ============== */
.pull {
  margin: 0 0 36px;
  padding: 28px 24px 28px 56px;
  position: relative;
  background: var(--bg-card);
  border-radius: 14px;
  border-left: 3px solid var(--oxblood);
  box-shadow: 0 6px 20px -12px rgba(26, 17, 8, 0.12);
  text-align: left;
}
.pull-mark {
  position: absolute;
  top: 4px;
  left: 14px;
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: 80px;
  line-height: 1;
  color: var(--oxblood);
  opacity: 0.22;
}
.pull p {
  font-family: 'Cormorant', serif;
  font-size: clamp(20px, 5vw, 26px);
  line-height: 1.3;
  margin: 0;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}

/* ============== FAQ ============== */
.section-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--amber);
  margin-bottom: 10px;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--amber);
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 3px;
}

.section-title {
  font-family: 'Cormorant', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 22px;
  font-size: clamp(26px, 5.5vw, 34px);
  color: var(--ink);
}

.faq { margin: 0 0 40px; }
.faq-h {
  font-family: 'Cormorant', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(26px, 5.5vw, 34px);
  line-height: 1.1;
  margin: 0 0 22px;
  color: var(--ink);
}
.faq dl { margin: 0; padding: 0; }
.faq dt {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  margin-top: 22px;
  line-height: 1.4;
}
.faq dt:first-of-type { margin-top: 0; }
.faq dd {
  margin: 4px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
}

/* ============== FOOTER ============== */
footer {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-mute);
  text-align: center;
  letter-spacing: 0.06em;
}
footer a { color: var(--ink-soft); }
footer p { margin: 6px 0; }
.sister a { color: var(--oxblood); }

/* =====================================================================
   NEW DESIGN CHROME — shared across every page from 2026-05-21 forward.
   The homepage has all of this inline already; this block applies the
   same look to /about, /privacy, /terms, /thanks, /success, /cancel,
   /picks/*.html so the whole site reads as one design.

   Additive only — old rules above are preserved so we don't accidentally
   break any page during the rollout.
   ===================================================================== */

:root {
  --bg-deep:        #f4ecd6;
  --bg-card-2:      #faf4e2;
  --line-strong:    #b8a578;
  --accent:         #8B2E1F;
  --accent-2:       #b8851c;
  --accent-bright:  #e3b54a;
  --accent-glow:    rgba(139, 46, 31, 0.18);
  --accent-soft:    rgba(184, 133, 28, 0.08);
  --hero-bg:
    radial-gradient(ellipse at 18% 8%, rgba(184, 133, 28, 0.10), transparent 55%),
    radial-gradient(ellipse at 82% 92%, rgba(139, 46, 31, 0.07), transparent 55%),
    var(--bg);
  --grain-opacity:  0.32;
  --grain-blend:    multiply;
  --headline-shadow: none;
  --cta-glow:       0 0 0 transparent;
  --cta-shadow-color: rgba(26, 17, 8, 0.45);
}

/* Film grain overlay — same SVG noise used on the homepage */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 100;
  opacity: var(--grain-opacity);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.9  0 0 0 0 0.85  0 0 0 0 0.7  0 0 0 0.06 0'/></filter><rect width='180' height='180' filter='url(%23n)'/></svg>");
  mix-blend-mode: var(--grain-blend);
}

/* New topbar (wraps brandmark + optional nav links) */
.topbar {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  max-width: 1280px; margin: 0 auto;
}

/* Brandmark — overrides the old centered version. Inside .topbar it lives
   on the left. The old .brandmark-dot circle is replaced by a small
   square frame + inner dot, matching the new homepage. */
.topbar .brandmark,
.brandmark {
  display: inline-flex; align-items: center; gap: 11px;
  color: var(--ink); text-decoration: none;
  font-family: 'Cormorant', Georgia, serif;
  font-style: italic; font-weight: 600;
  font-size: 19px; letter-spacing: 0.005em;
  transition: opacity 0.15s;
  white-space: nowrap;
  padding: 0;
  justify-content: flex-start;
}
.brandmark:hover { opacity: 0.8; color: var(--ink); }
.brandmark .brandmark-dot,
.topbar .brandmark-dot {
  position: relative;
  width: 22px; height: 22px;
  border-radius: 5px;
  background: var(--bg-deep);
  border: 1px solid var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: none;
}
.brandmark .brandmark-dot::after,
.topbar .brandmark-dot::after {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

.top-meta {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute);
}
.top-meta a { color: var(--ink-soft); text-decoration: none; }
.top-meta a:hover { color: var(--accent); }
.top-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); display: inline-block; opacity: 0.6; }

@media (max-width: 640px) {
  .topbar { padding: 14px 18px; }
  .top-meta { display: none; }
  .topbar .brandmark, .brandmark { font-size: 17px; }
}

/* Section eyebrow / heading / sub — used by content pages */
.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 14px;
  display: flex; align-items: center; gap: 14px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.section-eyebrow.left { justify-content: flex-start; }
.section-eyebrow.left::before, .section-eyebrow.left::after { display: none; }
.section-eyebrow.center { justify-content: center; }

.section-h {
  font-family: 'Cormorant', Georgia, serif;
  font-style: italic; font-weight: 500;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 18px;
  text-wrap: balance;
}
.section-h em { color: var(--accent); font-weight: 600; }
.section-sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 48px;
  line-height: 1.55;
}

/* New shared site footer (used by all non-home pages) */
footer.site-footer {
  padding: 36px 22px 28px;
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-mute);
  text-align: center;
  letter-spacing: 0.06em;
  margin-top: 64px;
  border-radius: 0;
}
footer.site-footer .row { margin: 6px 0; }
footer.site-footer a { color: var(--ink-soft); text-decoration: none; }
footer.site-footer a:hover { color: var(--accent); }
footer.site-footer .sister a { color: var(--accent); }
