/* BlindCopy --- marketing site
   Identity lifted from the spec-016 digest email: navy on cream, Georgia serif,
   tracked-uppercase eyebrows, the b: crop-mark logo. The site warms the email's cool
   canvas to cream; ink and accent are unchanged. */

/* ============================================================ TOKENS */
:root {
  /* Ink --- navy family */
  --ink: #0f172a;
  --navy: #1e3a5f;
  --ink-70: #334155;
  --ink-55: #475569;
  --ink-45: #64748b;
  --ink-35: #94a3b8;

  /* Paper --- cream family */
  --cream: #f4f1e8;
  --cream-raised: #fbf9f3;
  --cream-bright: #fffdf7;
  --paper-white: #ffffff;
  --hairline: #dcd6c6;
  --hairline-cool: #e2e8f0;

  /* On dark navy */
  --dark-text: #f4f1e8;
  --dark-muted: #aab4c2;
  --dark-faint: #6f7b8c;
  --dark-accent: #9db4d4;
  --dark-soft: #b9c8df;
  --dark-quiet: #56627a;
  --dark-hairline: rgba(255, 255, 255, 0.14);

  /* Tints + semantic (digest sample / callouts) */
  --navy-tint: #eef2f7;
  --navy-tint-card: #f6f8fc;
  --navy-ring: #d6deea;
  --draft-line: #ccd2db;
  --amber-bg: #fef3c7;
  --amber-edge: #f6d98a;
  --amber-ink: #78350f;
  --link-email: #1d4ed8;

  /* Type */
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, "Helvetica Neue", Helvetica, sans-serif;

  /* Fluid scale */
  --fs-hero: clamp(2.4rem, 1.65rem + 2.7vw, 4.05rem);
  --fs-h2: clamp(1.95rem, 1.3rem + 2.3vw, 2.85rem);
  --fs-h3: clamp(1.32rem, 1.16rem + 0.6vw, 1.6rem);
  --fs-lead: clamp(1.16rem, 1.04rem + 0.45vw, 1.4rem);
  --fs-body: 1.1875rem;
  --fs-small: 0.95rem;
  --fs-eyebrow: 0.75rem;
  --fs-caption: 0.6875rem;

  /* Rhythm */
  --section-y: clamp(4.75rem, 2.8rem + 7vw, 9.5rem);
  --gutter: clamp(1.25rem, 0.4rem + 3.4vw, 3.25rem);
  --maxw: 1200px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================ RESET */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--serif);
  font-size: var(--fs-body);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

h1, h2, h3, p, figure { margin: 0; }
img, svg { display: block; max-width: 100%; }

a { color: var(--navy); }

::selection {
  background: var(--navy);
  color: var(--cream);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ============================================================ LAYOUT */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-y);
}

[id] { scroll-margin-top: 5.25rem; }

.band-raised { background: var(--cream-raised); }

.band-dark {
  background: var(--ink);
  color: var(--dark-text);
}

/* ============================================================ TYPE PRIMITIVES */
.eyebrow {
  font-family: var(--sans);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.7em;
}

.eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: currentColor;
  flex: none;
}

.band-dark .eyebrow { color: var(--dark-accent); }

h1, h2 {
  font-weight: 700;
  letter-spacing: -0.014em;
  line-height: 1.08;
}

h2 {
  font-size: var(--fs-h2);
  max-width: 18ch;
}

h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 1.22;
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--ink-70);
}

.band-dark .lead { color: var(--dark-muted); }

.prose p + p { margin-top: 1.05em; }

.prose p {
  color: var(--ink-70);
}

.band-dark .prose p { color: var(--dark-muted); }

/* ============================================================ MARKS */
/* The b: crop-mark logo --- inline SVG, currentColor. Masthead + digest sample. */
.brand-mark,
.digest-mark {
  color: var(--navy);
  flex: none;
}
.brand-mark { width: 2rem; height: 2rem; }
.digest-mark { width: 2.5rem; height: 2.5rem; }

/* The wordmark --- lowercase Georgia, locked to the b: mark.
   Display weight; small contexts use bold (.draft-bar-mark, .digest-eyebrow). */
.wordmark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.65rem;
  letter-spacing: 0.005em;
  text-transform: lowercase;
  color: var(--navy);
  text-decoration: none;
  line-height: 1;
}

.wordmark-quiet {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--ink-35);
}

.band-dark .wordmark-quiet { color: var(--dark-quiet); }

/* ============================================================ BUTTONS */
.btn {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.95em 1.5em;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* instant tactile feedback on press --- no transition, snaps on both edges */
.btn:active { transform: translateY(1px); }

.btn-solid {
  background: var(--navy);
  color: var(--cream);
}
.btn-solid:hover { background: var(--ink); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--hairline);
}
.btn-ghost:hover { border-color: var(--navy); }

.btn-light {
  background: var(--cream);
  color: var(--ink);
}
.btn-light:hover { background: var(--cream-bright); }

.btn-sm {
  padding: 0.7em 1.15em;
  font-size: 0.72rem;
}

:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
}
.band-dark :focus-visible { outline-color: var(--dark-accent); }

/* ============================================================ SKIP LINK */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.8em 1.2em;
  border-radius: 2px;
}

/* ============================================================ MASTHEAD */
.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}

.masthead.is-scrolled {
  border-bottom-color: var(--hairline);
  background: color-mix(in srgb, var(--cream) 95%, transparent);
}

.masthead .wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 4.6rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 0.2rem + 2vw, 2.4rem);
}

.nav-link {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-55);
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}
.nav-link:hover { color: var(--navy); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 0.2rem + 2vw, 2.4rem);
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  /* the masthead CTA is the only on-screen control here; keep it a 44px tap target */
  .btn-sm { min-height: 44px; }
}

/* below ~380px the wordmark + CTA can't share the bar; the mark carries the brand */
@media (max-width: 380px) {
  .wordmark { display: none; }
}

/* ============================================================ HERO */
.hero {
  padding-top: clamp(3.5rem, 2rem + 6vw, 7rem);
  padding-bottom: var(--section-y);
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 0.5rem + 5vw, 5.5rem);
  align-items: center;
}

.hero-copy { max-width: 36rem; }

.hero h1 {
  font-size: var(--fs-hero);
  margin-top: 1.4rem;
  text-wrap: balance;
}

.hero-lead {
  margin-top: 1.6rem;
  font-size: var(--fs-lead);
  line-height: 1.56;
  color: var(--ink-70);
  max-width: 30rem;
}

.hero-payoff {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
  font-size: 1.16rem;
  line-height: 1.5;
  color: var(--ink);
  max-width: 30rem;
}
.hero-payoff em {
  font-style: italic;
  color: var(--navy);
}

.hero-actions {
  margin-top: 1.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  align-items: center;
}

.hero-meta {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45em 1.4em;
}
.hero-meta span {
  font-family: var(--sans);
  font-size: var(--fs-caption);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-45);
  position: relative;
}
.hero-meta span + span::before {
  content: "";
  position: absolute;
  left: -0.75em;
  top: 0.15em;
  bottom: 0.15em;
  width: 1px;
  background: var(--hairline);
}

/* below ~510px the meta wraps; drop the dividers so none orphan at a line start */
@media (max-width: 560px) {
  .hero-meta span + span::before { display: none; }
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-stack {
  width: 100%;
  max-width: 30rem;
  margin-inline: auto;
}

/* the product: the client-alert draft is the hero's evidence */
.draft {
  position: relative;
  z-index: 2;
  width: 100%;
  background: var(--paper-white);
  border: 1px solid var(--hairline-cool);
  border-radius: 6px;
  overflow: hidden;
}
.draft-bar {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.72rem 1.5rem;
}
.draft-bar-mark {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: lowercase;
  color: var(--cream);
}
.draft-bar-tag {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--dark-accent);
}
.draft-doc {
  padding: 1.7rem 1.8rem 1.95rem;
}
.draft-kicker {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}
.draft-title {
  margin: 0.7rem 0 0;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.24;
  color: var(--ink);
}
.draft-sec {
  margin-top: 1.45rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--hairline-cool);
}
.draft-label {
  margin: 0 0 0.72rem;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}
.draft-lede {
  margin: 0 0 0.85rem;
  font-family: var(--serif);
  font-size: 0.92rem;
  line-height: 1.62;
  color: var(--ink-70);
}
.draft-lines span {
  display: block;
  height: 2.5px;
  border-radius: 1.5px;
  background: var(--draft-line);
  margin-bottom: 0.5rem;
}
.draft-lines span:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-copy { max-width: 38rem; }
  .hero-visual { justify-content: flex-start; }
  .hero-stack { margin-inline: 0; }
}

/* ============================================================ DIGEST SAMPLE
   Faithful facsimile of the spec-016 digest email. White surface, cool
   hairlines, the email's exact navy tints. The one element on the page
   allowed to look like an email, because it is one. */
.digest {
  width: 100%;
  background: var(--paper-white);
  border: 1px solid var(--hairline-cool);
  border-radius: 5px;
  overflow: hidden;
  font-family: var(--sans);
  color: var(--ink);
}

.digest-head {
  padding: 1.5rem 1.5rem 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.digest-eyebrow {
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: lowercase;
  color: var(--navy);
}
.digest-date {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.15;
  margin-top: 0.5rem;
  color: var(--ink);
}
.digest-sub {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--ink-45);
  margin-top: 0.35rem;
}
.digest-call {
  margin: 0 1.5rem;
  background: var(--navy-tint);
  border: 1px solid var(--navy-ring);
  border-radius: 4px;
  padding: 0.85rem 0.95rem;
}
.digest-call-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.digest-call-text {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #1e293b;
}

.digest-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 1.15rem 1.5rem 0;
  border-block: 1px solid var(--hairline-cool);
}
.digest-stat {
  text-align: center;
  padding: 0.8rem 0.3rem;
}
.digest-stat + .digest-stat { border-left: 1px solid var(--hairline-cool); }
.digest-stat b {
  font-family: var(--serif);
  font-size: 1.5rem;
  display: block;
  color: var(--ink);
}
.digest-stat.accent b { color: var(--navy); }
.digest-stat span {
  font-size: 0.58rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-45);
  white-space: nowrap;
}

.digest-sectlabel {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 1.25rem 1.5rem 0;
}

/* hero card --- faithful facsimile, includes the email's 4px navy rule */
.digest-hero {
  margin: 0.65rem 1.5rem 1.6rem;
  background: var(--navy-tint-card);
  border: 1px solid var(--navy-ring);
  border-left: 4px solid var(--navy);
  border-radius: 4px;
  padding: 1.05rem 1.1rem 1.15rem;
}
.digest-pill {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--navy);
  background: #e3e9f2;
  border-radius: 3px;
  padding: 0.28em 0.6em;
}
.digest-hero-title {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.28;
  margin-top: 0.7rem;
  color: var(--ink);
}
.digest-hero-id {
  font-size: 0.72rem;
  color: var(--ink-55);
  margin-top: 0.35rem;
}
.digest-hero-text {
  font-size: 0.81rem;
  line-height: 1.62;
  color: #1e293b;
  margin-top: 0.7rem;
}
.digest-cta {
  margin-top: 0.95rem;
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 4px;
  padding: 0.65em 1.1em;
}

/* ============================================================ FLOW */
.flow-head {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 46rem;
}
.flow-head h2 { max-width: 20ch; }
.flow-head .lead { max-width: 38rem; }

.flow {
  margin-top: clamp(2.75rem, 1.5rem + 4vw, 4.75rem);
  display: grid;
  grid-template-columns: 1fr 26rem;
  gap: clamp(2rem, 0.2rem + 5vw, 5.5rem);
  align-items: start;
}

/* the vertical timeline */
.flow-line {
  list-style: none;
  margin: 0;
  padding: 0.4rem 0;
  border-left: 1px solid var(--hairline);
}
.flow-step {
  position: relative;
  padding: 0 0 1.9rem 2rem;
}
.flow-step:last-child { padding-bottom: 0; }
.flow-step::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0.32rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--navy);
}
.flow-step.is-last::before {
  background: var(--cream-raised);
  border: 1px solid var(--navy);
}
.flow-step-head {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-family: var(--sans);
}
.flow-step-head b {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy);
}
.flow-step-head span {
  font-size: var(--fs-caption);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-45);
}
.flow-step-text {
  margin: 0.4rem 0 0;
  font-size: var(--fs-small);
  line-height: 1.58;
  color: var(--ink-55);
  max-width: 23rem;
}

/* the digest, shown in full */
.flow-digest { margin: 0; }
.flow-digest-cap {
  margin-top: 0.95rem;
  font-family: var(--sans);
  font-size: var(--fs-caption);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-45);
  text-align: center;
}

@media (max-width: 860px) {
  .flow {
    grid-template-columns: 1fr;
    gap: 2.75rem;
    max-width: 27rem;
  }
}

/* ============================================================ PROBLEM (dark) */
.problem .wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 0.5rem + 5vw, 5.5rem);
  align-items: start;
}
.problem h2 {
  font-size: var(--fs-h2);
  max-width: 14ch;
}
.problem .prose {
  font-size: var(--fs-lead);
  line-height: 1.62;
  max-width: 33rem;
}
.problem .prose p { color: var(--dark-text); }
.problem .prose p + p {
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--dark-hairline);
}

@media (max-width: 820px) {
  .problem .wrap { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================ HOW IT WORKS */
.how-head {
  max-width: 44rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.how-head h2 { max-width: 17ch; }
.how-head .lead { max-width: 36rem; }

.steps {
  margin-top: clamp(2.5rem, 1.4rem + 3.5vw, 4.25rem);
  border-top: 1px solid var(--hairline);
}
.step {
  display: grid;
  grid-template-columns: 5.5rem 11rem 1fr;
  gap: clamp(1rem, 0.2rem + 3vw, 3.5rem);
  padding-block: clamp(1.85rem, 1.2rem + 2vw, 2.9rem);
  border-bottom: 1px solid var(--hairline);
  align-items: baseline;
}
.step-num {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
}
.step-num::before {
  content: "";
  display: block;
  width: 1.7rem;
  height: 2px;
  background: var(--navy);
  margin-bottom: 0.85rem;
}
.step h3 { color: var(--ink); }
.step p {
  color: var(--ink-70);
  font-size: 1.0625rem;
  line-height: 1.66;
  max-width: 34rem;
}

@media (max-width: 820px) {
  .step {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
  .step-num { margin-bottom: 0.2rem; }
}

/* ============================================================ PRIVATE / LEDGER */
.private .wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 0.5rem + 5vw, 5.5rem);
  align-items: start;
}
.private-intro {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 6rem;
}
.private-intro h2 { max-width: 15ch; }
.private-intro .prose { max-width: 26rem; }

.ledger {
  border-top: 1px solid var(--hairline);
}
.ledger-row {
  display: grid;
  grid-template-columns: 4.25rem 1fr;
  gap: clamp(1rem, 0.4rem + 1.5vw, 2rem);
  padding-block: 1.4rem;
  border-bottom: 1px solid var(--hairline);
  align-items: baseline;
}
.ledger-no {
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}
.ledger-term {
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}
.ledger-def {
  margin-top: 0.3rem;
  font-size: var(--fs-small);
  line-height: 1.6;
  color: var(--ink-55);
}

@media (max-width: 820px) {
  .private .wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .private-intro { position: static; }
}

/* ============================================================ WHO IT FITS */
.who h2 {
  font-size: var(--fs-h2);
  max-width: 22ch;
  margin-top: 1.25rem;
}
.who .prose {
  font-size: var(--fs-lead);
  line-height: 1.62;
  max-width: 37rem;
  margin-top: 1.6rem;
}

/* ============================================================ CLOSE (dark) */
.close {
  text-align: center;
  padding-bottom: clamp(3.5rem, 2rem + 4vw, 6rem);
}
.close .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.close .eyebrow { justify-content: center; }
.close h2 {
  font-size: clamp(2.1rem, 1.4rem + 2.6vw, 3.2rem);
  max-width: 18ch;
}
.close .prose {
  max-width: 34rem;
  font-size: var(--fs-lead);
  line-height: 1.6;
}
.close .prose p { color: var(--dark-muted); }
.close .btn { margin-top: 0.6rem; }
.close-note {
  font-family: var(--sans);
  font-size: var(--fs-caption);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-faint);
}
.close-email {
  margin-top: -0.4rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--dark-muted);
}
.close-email a {
  color: var(--dark-accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(157, 180, 212, 0.35);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.close-email a:hover {
  color: var(--cream);
  border-bottom-color: var(--cream);
}

/* ============================================================ FOOTER */
.foot {
  background: var(--ink);
  color: var(--dark-muted);
  border-top: 1px solid var(--dark-hairline);
  padding-block: 3.25rem;
}
.foot .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
}
.foot-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.foot-tag {
  font-family: var(--sans);
  font-size: var(--fs-caption);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark-faint);
}
.foot-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
  text-align: right;
}
.foot-link {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-soft);
  text-decoration: none;
}
.foot-link:hover { color: var(--cream); }
.foot-meta {
  font-family: var(--sans);
  font-size: var(--fs-caption);
  letter-spacing: 0.01em;
  color: var(--dark-faint);
}

@media (max-width: 560px) {
  .foot .wrap { flex-direction: column; align-items: flex-start; }
  .foot-right { align-items: flex-start; text-align: left; }
}

/* ============================================================ REVEAL */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
    transition-delay: var(--d, 0s);
  }
  [data-reveal].is-in {
    opacity: 1;
    transform: none;
  }
}
