/* ==========================================================================
   DOCTOR'S ORDERS · styles.css
   Palette and type are defined once, below. Everything else inherits.
   ========================================================================== */

:root {
  /* ----- palette ----- */
  --green:  #1C3A2D;   /* Sprinter Green · the van, dark section bands */
  --green-deep: #14291F;
  --paper:  #FAFAF6;   /* Pad White · page background, Rx paper */
  --ink:    #1F3BB3;   /* Ballpoint Blue · the prescription ink, links, rules */
  --red:    #B5311C;   /* Chile Red · stamps and small accents only */
  --carbon: #191A18;   /* body text */
  --rule:   #D9D7CE;   /* hairline rules on paper */

  /* ----- type ----- */
  --display: "Bricolage Grotesque", "Arial Black", sans-serif;
  --body: "Instrument Sans", -apple-system, "Helvetica Neue", sans-serif;
  --mono: "IBM Plex Mono", "SF Mono", Menlo, monospace;

  --max: 1080px;
  --pad-x: clamp(20px, 5vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--carbon);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--ink); }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  border-radius: 2px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.skip-link {
  position: absolute; left: 16px; top: -60px;
  background: var(--carbon); color: var(--paper);
  padding: 10px 18px; z-index: 100; text-decoration: none;
  font-family: var(--mono); font-size: 0.85rem;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 12px; }

/* ==========================================================================
   Shared bits
   ========================================================================== */

.mono-caption {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: inherit;
  opacity: 0.75;
  margin-top: 10px;
}

.btn {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-align: center;
  padding: 15px 28px;
  border: 2px solid var(--carbon);
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease, color 0.12s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--carbon);
  color: var(--paper);
}
.btn-primary:hover { background: var(--ink); border-color: var(--ink); }

.btn-ghost {
  background: transparent;
  color: var(--carbon);
}
.btn-ghost:hover { background: var(--carbon); color: var(--paper); }

/* ----- photo placeholders (swap for real <img> tags later) ----- */
.ph {
  width: 100%;
  background:
    repeating-linear-gradient(-45deg, transparent 0 14px, rgba(0,0,0,0.035) 14px 15px),
    linear-gradient(160deg, #E7E5DC, #D8D6CB);
  border: 1px solid var(--rule);
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.section-green .ph {
  background:
    repeating-linear-gradient(-45deg, transparent 0 14px, rgba(255,255,255,0.05) 14px 15px),
    linear-gradient(160deg, #24493A, #1A3529);
  border-color: rgba(250,250,246,0.25);
}
.ph-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(25,26,24,0.55);
  background: var(--paper);
  padding: 4px 9px;
  border: 1px solid var(--rule);
}
.section-green .ph-label {
  color: rgba(250,250,246,0.8);
  background: rgba(20,41,31,0.85);
  border-color: rgba(250,250,246,0.25);
}
.ph-hero     { aspect-ratio: 21 / 9; }
.ph-wide     { aspect-ratio: 16 / 9; }
.ph-square   { aspect-ratio: 1 / 1; }
.ph-portrait { aspect-ratio: 4 / 5; }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px var(--pad-x);
  background: rgba(250,250,246,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}

.wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--carbon);
  text-decoration: none;
  white-space: nowrap;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 28px);
}
.site-header nav a {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--carbon);
  text-decoration: none;
}
.site-header nav a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.site-header .nav-cta {
  border: 1.5px solid var(--carbon);
  padding: 7px 14px;
}
.site-header .nav-cta:hover { background: var(--carbon); color: var(--paper); text-decoration: none; }

/* hide middle links on small phones; wordmark + Be a guest survive */
@media (max-width: 720px) {
  .site-header nav a:not(.nav-cta) { display: none; }
}

/* ==========================================================================
   1 · Hero
   ========================================================================== */

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 9vh, 110px) var(--pad-x) clamp(40px, 7vh, 80px);
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
.stamp-chip {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  border: 1.5px solid var(--red);
  padding: 5px 11px;
  transform: rotate(-1.2deg);
}
.kicker-loc {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(25,26,24,0.6);
}

.hero-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.1rem, 6.4vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
}
.hero-title .line { display: block; }
.hero-title .line:nth-child(2) { color: var(--ink); }

.hero-sub {
  max-width: 560px;
  margin-top: 26px;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: rgba(25,26,24,0.82);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-photo { margin-top: clamp(44px, 7vh, 72px); }

@media (max-width: 720px) {
  .desk-br { display: none; }
}

/* ---- hero load sequence (the one orchestrated moment) ---- */
@media (prefers-reduced-motion: no-preference) {
  .anim-1, .anim-2, .anim-3, .anim-4, .anim-5, .anim-6, .anim-7 {
    opacity: 0;
    transform: translateY(18px);
    animation: rise 0.65s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  }
  .anim-1 { animation-delay: 0.05s; }
  .anim-2 { animation-delay: 0.18s; }
  .anim-3 { animation-delay: 0.30s; }
  .anim-4 { animation-delay: 0.42s; }
  .anim-5 { animation-delay: 0.58s; }
  .anim-6 { animation-delay: 0.70s; }
  .anim-7 { animation-delay: 0.85s; }
}
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* ---- scroll reveals (single quiet pattern, JS adds .in) ---- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .reveal.in { opacity: 1; transform: none; }
}

/* ==========================================================================
   Sections, shared skeleton
   ========================================================================== */

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 10vh, 110px) var(--pad-x);
  border-top: 1px solid var(--rule);
}

.section-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: clamp(30px, 5vh, 52px);
}
.section-no {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--ink);
}
.section-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4.4vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

/* ==========================================================================
   2 · How it works
   ========================================================================== */

.steps {
  list-style: none;
  display: grid;
  gap: 0;
}
.steps li {
  display: grid;
  grid-template-columns: 64px 1fr;
  grid-template-rows: auto auto;
  column-gap: 8px;
  padding: 30px 0;
  border-top: 1px solid var(--rule);
}
.steps li:first-child { border-top: none; padding-top: 0; }
.step-no {
  grid-row: 1 / 3;
  font-family: var(--display);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.1;
  color: var(--ink);
}
.steps h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.steps p {
  max-width: 620px;
  color: rgba(25,26,24,0.82);
}

.section-close {
  margin-top: 36px;
  font-family: var(--mono);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
}

.format-host {
  max-width: 620px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-size: 0.95rem;
  color: rgba(25,26,24,0.7);
}

/* ==========================================================================
   3 · What we talk about
   ========================================================================== */

.topics-list {
  list-style: none;
  max-width: 760px;
}
.topics-list li {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.25rem, 3vw, 1.9rem);
  letter-spacing: -0.015em;
  line-height: 1.25;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
}
.topics-list li:first-child { border-top: none; padding-top: 0; }

.topics-note {
  max-width: 560px;
  margin-top: 34px;
  color: rgba(25,26,24,0.82);
}

/* ==========================================================================
   4 · The studio (green band)
   ========================================================================== */

.section-green {
  max-width: none;
  background: var(--green);
  color: var(--paper);
  border-top: none;
}
.section-green > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.section-green .section-no { color: rgba(250,250,246,0.65); }

.studio-lede {
  max-width: 640px;
  margin-bottom: clamp(30px, 5vh, 48px);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: rgba(250,250,246,0.9);
}

.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.5vw, 28px);
}
.studio-grid figure:first-child { grid-column: 1 / -1; }
@media (max-width: 620px) {
  .studio-grid { grid-template-columns: 1fr; }
}
.section-green .mono-caption { color: rgba(250,250,246,0.75); opacity: 1; }

/* ==========================================================================
   5 · The host
   ========================================================================== */

.host-grid {
  display: grid;
  grid-template-columns: minmax(240px, 380px) 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 720px) {
  .host-grid { grid-template-columns: 1fr; }
}

.host-copy h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.host-copy p + p { margin-top: 16px; }
.host-copy p { max-width: 560px; color: rgba(25,26,24,0.85); }
.host-attribution { border-top: 1px solid var(--rule); padding-top: 14px; max-width: 420px; }

/* ==========================================================================
   6 · Episodes (order-ticket cards)
   ========================================================================== */

.episodes-status {
  max-width: 560px;
  margin-bottom: clamp(28px, 4vh, 44px);
  color: rgba(25,26,24,0.82);
}

.ticket-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
}
@media (max-width: 820px) {
  .ticket-row { grid-template-columns: 1fr; max-width: 460px; }
}

.ticket {
  position: relative;
  background: #FFFFFE;
  border: 1.5px solid var(--carbon);
  padding: 0 0 22px;
  overflow: hidden;
}
/* perforated stub edge along the top */
.ticket::before {
  content: "";
  display: block;
  height: 10px;
  border-bottom: 2px dashed var(--rule);
  background:
    radial-gradient(circle at 8px -4px, var(--paper) 6px, transparent 6.5px) repeat-x;
  background-size: 24px 10px;
}

.ticket-head {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 18px;
  border-bottom: 1px solid var(--rule);
}

.ticket-body { padding: 20px 18px 6px; }

.ticket-guest-tba {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: rgba(25,26,24,0.68);
  margin-bottom: 18px;
}

.ticket-meta { display: grid; gap: 14px; }
.ticket-meta div { display: grid; gap: 4px; }
.ticket-meta dt {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(25,26,24,0.68);
}
.blank-line {
  display: block;
  height: 1.2em;
  border-bottom: 1.5px solid var(--rule);
  max-width: 180px;
}

.ticket-stamp {
  position: absolute;
  right: -8px;
  bottom: 16px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  border: 1.5px solid var(--red);
  padding: 5px 22px 5px 12px;
  transform: rotate(-4deg);
  background: rgba(255,255,254,0.9);
}

/* future live-episode bits, styled now so real episodes drop in cleanly */
.ticket-video { aspect-ratio: 16 / 9; border-bottom: 1px solid var(--rule); }
.ticket-video iframe { width: 100%; height: 100%; border: 0; }
.ticket-guest {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.2rem;
  padding: 18px 18px 12px;
}
.ticket-live .ticket-meta { padding: 0 18px; }

/* ==========================================================================
   Guest wall (dormant at launch - the commented block in index.html
   drops in here once real guests confirm)
   ========================================================================== */

.guest-wall { margin-top: clamp(48px, 8vh, 80px); }
.guest-wall-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  margin-bottom: clamp(20px, 3vh, 32px);
}
.guest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
}
@media (max-width: 920px) { .guest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .guest-grid { grid-template-columns: 1fr; max-width: 300px; } }

.guest-card {
  background: #FFFFFE;
  border: 1.5px solid var(--carbon);
  padding-bottom: 16px;
}
.guest-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-bottom: 1.5px solid var(--carbon);
  display: block;
}
.guest-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  padding: 14px 16px 2px;
}
.guest-role, .guest-org {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: rgba(25,26,24,0.68);
  padding: 2px 16px 0;
}
.guest-link {
  display: inline-block;
  margin: 12px 16px 0;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--ink);
  text-underline-offset: 4px;
}

/* ==========================================================================
   Notify strip
   ========================================================================== */

.notify {
  margin-top: clamp(48px, 8vh, 80px);
  padding: clamp(26px, 4vw, 40px);
  border: 1.5px solid var(--carbon);
  background: #FFFFFE;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
@media (max-width: 780px) {
  .notify { grid-template-columns: 1fr; }
}

.notify-copy h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.notify-copy p { color: rgba(25,26,24,0.75); }

.notify-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
}
.notify-form input[type="email"] {
  flex: 1 1 220px;
  min-width: 0;
  font-family: var(--mono);
  font-size: 0.9rem;
  padding: 13px 14px;
  border: 1.5px solid var(--carbon);
  background: var(--paper);
  color: var(--carbon);
}
.notify-form input::placeholder { color: rgba(25,26,24,0.55); }
.notify-form .form-msg { flex-basis: 100%; }

/* ==========================================================================
   7 · Be a guest · THE PRESCRIPTION PAD
   ========================================================================== */

.section-guest {
  max-width: none;
  background:
    repeating-linear-gradient(0deg, transparent 0 46px, rgba(31,59,179,0.05) 46px 47px),
    var(--paper);
}

.rx-pad {
  max-width: 680px;
  margin: 0 auto;
  background: #FFFFFE;
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 rgba(31,59,179,0.14);
  padding: clamp(24px, 5vw, 48px);
  position: relative;
}
/* perforation along the pad's top edge */
.rx-pad::before {
  content: "";
  position: absolute;
  top: 10px; left: 0; right: 0;
  border-top: 2px dashed rgba(31,59,179,0.3);
}

.rx-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 24px;
}
.rx-show {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.05;
}
.rx-sub {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(25,26,24,0.6);
  margin-top: 8px;
}
.rx-symbol {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  line-height: 0.9;
  color: var(--ink);
}

.rx-intro {
  max-width: 480px;
  color: rgba(25,26,24,0.82);
  margin-bottom: 30px;
}

.rx-form { display: grid; gap: 26px; }
.rx-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
@media (max-width: 560px) {
  .rx-row { grid-template-columns: 1fr; }
}

.rx-field { display: grid; gap: 6px; }
.rx-field label {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(25,26,24,0.65);
}
.rx-field input {
  font-family: var(--body);
  font-size: 1.05rem;
  color: var(--carbon);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--ink);
  padding: 8px 2px;
  border-radius: 0;
}
.rx-field input:focus-visible {
  outline: none;
  border-bottom-width: 3px;
  background: rgba(31,59,179,0.05);
}

.rx-field select {
  font-family: var(--body);
  font-size: 1.05rem;
  color: var(--carbon);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--ink);
  padding: 8px 2px;
  border-radius: 0;
  width: 100%;
}
.rx-field select:focus-visible {
  outline: none;
  border-bottom-width: 3px;
  background: rgba(31,59,179,0.05);
}
/* until a choice is made, the select shows its "Select one" prompt */
.rx-field select:invalid { color: rgba(25,26,24,0.55); }
.rx-field select option { color: var(--carbon); }

.rx-field textarea {
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--carbon);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--ink);
  padding: 8px 2px;
  border-radius: 0;
  resize: vertical;
  min-height: 72px;
}
.rx-field textarea:focus-visible {
  outline: none;
  border-bottom-width: 3px;
  background: rgba(31,59,179,0.05);
}
.rx-hint {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--ink);
}

.btn-rx {
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: var(--ink);
  color: #FFFFFE;
  border: 2px solid var(--ink);
  padding: 16px 30px;
  justify-self: start;
  cursor: pointer;
  transition: background 0.12s ease, transform 0.12s ease;
}
.btn-rx:hover { background: var(--green); border-color: var(--green); }
.btn-rx:active { transform: translateY(1px); }

.form-msg {
  font-family: var(--mono);
  font-size: 0.82rem;
  min-height: 1.2em;
}
.form-msg.ok { color: var(--green); }
.form-msg.err { color: var(--red); }
.form-msg a { color: inherit; }

.rx-fallback {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  font-size: 0.95rem;
  color: rgba(25,26,24,0.7);
}

/* ==========================================================================
   Nominate a guest (quieter cousin of the pad - carbon, not ink)
   ========================================================================== */

.nominate {
  max-width: 680px;
  margin: clamp(40px, 7vh, 64px) auto 0;
  background: #FFFFFE;
  border: 1.5px solid var(--carbon);
  padding: clamp(24px, 5vw, 40px);
}
.nominate h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.nominate-intro {
  max-width: 520px;
  color: rgba(25,26,24,0.78);
  margin-bottom: 26px;
}
.nominate-form { display: grid; gap: 24px; }
.nominate .rx-field input,
.nominate .rx-field textarea {
  border-bottom-color: var(--carbon);
}
.nominate .rx-field input:focus-visible,
.nominate .rx-field textarea:focus-visible {
  background: rgba(25,26,24,0.04);
}
.nominate .btn { justify-self: start; }

/* ==========================================================================
   8 · Footer
   ========================================================================== */

.site-footer {
  background: var(--green-deep);
  color: rgba(250,250,246,0.85);
  text-align: center;
  padding: clamp(48px, 8vh, 80px) var(--pad-x) 40px;
}

.footer-wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: -0.02em;
  color: var(--paper);
}
.footer-line {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 10px;
  color: rgba(250,250,246,0.6);
}
.footer-contact { margin-top: 26px; }
.footer-contact a { color: var(--paper); text-underline-offset: 4px; }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-top: 22px;
}
.footer-social a {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: rgba(250,250,246,0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(250,250,246,0.3);
  padding-bottom: 2px;
}
.footer-social a:hover { color: var(--paper); border-color: var(--paper); }

.footer-copyright {
  margin-top: 36px;
  font-size: 0.85rem;
  color: rgba(250,250,246,0.55);
}
