/* ==========================================================================
   Crux Media Productions — global stylesheet
   No build step: plain CSS, custom properties for tokens, mobile-first.
   ========================================================================== */

/* ---- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
img, picture, svg, video { display: block; max-width: 100%; }
[hidden] { display: none !important; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; }
ul, ol { list-style: none; margin: 0; padding: 0; }

/* ---- Tokens --------------------------------------------------------------
   Brand palette per Crux.png (Coolors export). No orange — that draft was
   superseded by this navy/red/sky palette.
   ---------------------------------------------------------------------- */
:root {
  --ink:        #0A1F44; /* navy — primary dark */
  --near-black: #0B0B0D; /* deepest contrast moments */
  --slate:      #4A4F59; /* muted text */
  --paper:      #F4F6F8; /* body background, off-white */
  --paper-dim:  #E7EAEE; /* card backgrounds, subtle separation from paper */
  --sky:        #6DAEDB; /* secondary accent */
  --red:        #D72638; /* signature accent — CTAs, emphasis */
  --red-dark:   #AD1B2A;
  --white:      #FFFFFF;

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --fs-body:    1.0625rem;
  --fs-small:   0.875rem;
  --fs-eyebrow: 0.8125rem;
  --fs-h1: clamp(2.75rem, 3.2vw + 2rem, 5.75rem);
  --fs-h2: clamp(1.9rem, 1.6vw + 1.4rem, 3rem);
  --fs-h3: clamp(1.3rem, 0.6vw + 1.1rem, 1.75rem);
  --fs-stat: clamp(2.5rem, 4vw + 1rem, 4.5rem);

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: clamp(1.5rem, 2vw + 1rem, 2.5rem);
  --space-lg: clamp(2.5rem, 4vw + 1rem, 4.5rem);
  --space-xl: clamp(4rem, 6vw + 1rem, 7.5rem);

  --container: 1200px;
  --border: 2px solid var(--ink);
  --radius: 3px;
  --nav-height: 76px;

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

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  min-width: 320px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--ink);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: 1.05rem; }

p { max-width: 62ch; }
p.wide { max-width: none; }

a { text-decoration-thickness: 1.5px; text-underline-offset: 0.15em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.eyebrow--muted { color: var(--slate); }
.eyebrow--on-dark { color: var(--sky); }

/* ---- Focus & accessibility ------------------------------------------------ */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
  border-radius: 2px;
}
.on-dark :focus-visible, .hero :focus-visible { outline-color: var(--sky); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  z-index: 200;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* honeypot field — off-screen, not display:none, kept out of tab order */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---- Layout ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 640px) { .container { padding-inline: 2rem; } }

.section { padding-block: var(--space-xl); }
.section--tight { padding-block: var(--space-lg); }
.section--dark { background: var(--ink); color: var(--paper); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--paper); }
.section--dark p { color: #C9D3E0; }
.section--black { background: var(--near-black); color: var(--paper); }
.section--black h1, .section--black h2, .section--black h3 { color: var(--paper); }

.grid { display: grid; gap: var(--space-md); }
@media (min-width: 720px) {
  .grid--2 { grid-template-columns: 1fr 1fr; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.stack { display: flex; flex-direction: column; gap: var(--space-sm); }
.cluster { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }

/* ---- Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.9em 1.6em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-decoration: none;
  transition: background-color 0.15s var(--ease), color 0.15s var(--ease), border-color 0.15s var(--ease), transform 0.15s var(--ease);
  white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) { .btn { transition: none; } }

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn--primary:active { transform: translateY(1px); }

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

.on-dark .btn--ghost, .hero .btn--ghost { color: var(--paper); border-color: var(--paper); }
.on-dark .btn--ghost:hover, .hero .btn--ghost:hover { background: var(--paper); color: var(--ink); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--red);
  padding-bottom: 0.1em;
}
.link-arrow::after { content: "\2192"; transition: transform 0.15s var(--ease); }
.link-arrow:hover::after { transform: translateX(4px); }
@media (prefers-reduced-motion: reduce) { .link-arrow::after { transition: none; } }

/* ==========================================================================
   Site header / nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.site-header__bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--nav-height);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
}
.brand__crest { width: 34px; height: auto; }
.brand__word {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  line-height: 1;
}
.brand__word span { display: block; font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.18em; color: var(--slate); margin-top: 0.2em; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 0.6rem;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); }

.site-nav {
  position: absolute;
  left: 0; right: 0; top: 100%;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
  padding: 1rem 1.25rem 1.5rem;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
}
.site-nav.is-open { display: flex; }
.site-nav a {
  display: block;
  padding: 0.75rem 0.25rem;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--paper-dim);
}
.site-nav a[aria-current="page"] { color: var(--red); }

.nav-meta {
  display: none;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 0.55rem 0.7rem;
  flex-shrink: 0;
}
.header-phone:hover { background: var(--ink); color: var(--paper); }
.header-phone__label { display: none; }
@media (min-width: 480px) {
  .header-phone__label { display: inline; }
}

.timecode {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--slate);
  font-variant-numeric: tabular-nums;
}
.timecode::before {
  content: "\25CF";
  color: var(--red);
  margin-right: 0.5em;
  font-size: 0.7em;
}
@media (prefers-reduced-motion: reduce) {
  .timecode::before { animation: none; }
}
@media (prefers-reduced-motion: no-preference) {
  .timecode::before { animation: rec-pulse 1.6s ease-in-out infinite; }
}
@keyframes rec-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 0;
    padding: 0;
    gap: 1.75rem;
    background: none;
  }
  .site-nav a { padding: 0.25rem 0; border-bottom: 2px solid transparent; }
  .site-nav a:hover { border-color: var(--red); }
  .site-nav a[aria-current="page"] { border-color: var(--red); }
  .nav-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
    margin-right: 1.5rem;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding-block: var(--space-lg) var(--space-md);
}
.site-footer a { color: var(--paper); text-decoration: none; }
.site-footer a:hover { color: var(--sky); }
.footer-word {
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.footer-tag { color: var(--sky); font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.05em; margin-top: 0.5rem; }
.footer-grid {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 2px solid #1B3054;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-grid h4 { color: var(--sky); font-size: 0.8rem; letter-spacing: 0.12em; margin-bottom: 0.75rem; font-family: var(--font-mono); text-transform: uppercase; }
.footer-grid li { margin-bottom: 0.5rem; }
.footer-bottom {
  margin-top: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid #1B3054;
  font-size: 0.8rem;
  color: #92A2BC;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--near-black);
  color: var(--white);
}
.hero__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__yt-wrap { position: absolute; inset: 0; overflow: hidden; }
.hero__yt-wrap iframe {
  position: absolute; top: 50%; left: 50%;
  width: 177.78vh; height: 56.25vw;
  min-width: 100%; min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0; pointer-events: none;
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,12,0.92) 0%, rgba(10,10,12,0.35) 55%, rgba(10,10,12,0.15) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: var(--space-lg) var(--space-lg);
}
.hero__bar {
  display: inline-block;
  background: var(--ink);
  padding: 0.35rem 0.9rem;
  margin-bottom: 1rem;
}
.hero h1 { color: var(--white); max-width: 16ch; }
.hero__sub { max-width: 46ch; color: #E4E8EE; margin-top: 1.25rem; font-size: 1.1rem; }
.hero__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__control {
  position: absolute;
  z-index: 3;
  top: var(--space-sm);
  right: 1.25rem;
  background: rgba(11,11,13,0.7);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* full-bleed clickable hero (Weddings) — facade fills the hero instead of a fixed 16:9 box */
.hero__facade { position: absolute; inset: 0; aspect-ratio: auto; z-index: 1; }
.hero__facade .facade__play-icon { width: 84px; height: 84px; font-size: 1.9rem; }

/* smaller, quieter hero variant used on interior pages */
.hero--page { min-height: auto; padding-block: var(--space-xl) var(--space-lg); background: var(--ink); }
.hero--page .hero__scrim { display: none; }
.hero--page h1 { max-width: 20ch; }

/* ==========================================================================
   Video facade
   ========================================================================== */
.facade {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: var(--near-black);
  border: 0;
  padding: 0;
  overflow: hidden;
  display: block;
}
.facade img { width: 100%; height: 100%; object-fit: cover; }
.facade__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(0deg, rgba(0,0,0,0.55), rgba(0,0,0,0.1) 40%);
}
.facade__play-icon {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: transform 0.15s var(--ease);
}
.facade:hover .facade__play-icon, .facade:focus-visible .facade__play-icon { transform: scale(1.08); }
@media (prefers-reduced-motion: reduce) { .facade__play-icon { transition: none; } }
.facade__label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  padding: 0.5rem 0.75rem;
}
.facade iframe { width: 100%; height: 100%; border: 0; }
.facade--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7C8AA3;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-align: center;
  padding: 1rem;
  border: 2px dashed #2A3F63;
}

/* ==========================================================================
   Cards — three doors / keyframe cards
   ========================================================================== */
.door {
  position: relative;
  display: block;
  text-decoration: none;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
}
.door__frame { position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-bottom: 2px solid var(--ink); }
.door__frame img { width: 100%; height: 100%; object-fit: cover; }
.door__num {
  position: absolute;
  top: -0.4rem;
  left: -0.2rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--paper);
  -webkit-text-stroke: 2px var(--ink);
  opacity: 0.9;
  pointer-events: none;
}
.door__body { padding: 1.5rem; }
.door__body h3 { margin-bottom: 0.6rem; }
.door__body p { margin-bottom: 1rem; color: var(--slate); }
.door:hover { border-color: var(--red); }
.door:hover .link-arrow::after { transform: translateX(4px); }

/* ==========================================================================
   Pricing — Real Estate (MLS spec-sheet)
   ========================================================================== */
.spec-sheet { border: 2px solid var(--ink); background: var(--white); display: flex; flex-direction: column; }
.spec-sheet__head {
  background: var(--ink);
  color: var(--paper);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.spec-sheet__head h3 { color: var(--paper); font-size: 1.1rem; }
.spec-sheet__price { font-family: var(--font-mono); font-size: 1.5rem; color: var(--sky); white-space: nowrap; }
.spec-sheet__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.spec-sheet__body li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--paper-dim);
  font-size: 0.95rem;
}
.spec-sheet__body li:last-of-type { border-bottom: 0; }
.spec-sheet__tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 0.25rem 0.6rem;
  margin-bottom: 0.9rem;
}

/* ==========================================================================
   Scoreboard — Sports turnaround
   ========================================================================== */
.scoreboard { display: grid; gap: 2px; background: var(--ink); border: 2px solid var(--ink); }
@media (min-width: 720px) { .scoreboard { grid-template-columns: repeat(3, 1fr); } }
.scoreboard__cell {
  background: var(--near-black);
  color: var(--white);
  padding: var(--space-md) 1.25rem;
  text-align: center;
}
.scoreboard__num {
  font-family: var(--font-display);
  font-size: var(--fs-stat);
  color: var(--red);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.scoreboard__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9FB0C9;
  margin-top: 0.75rem;
}

.stat-table { width: 100%; border-collapse: collapse; }
.stat-table th, .stat-table td { text-align: left; padding: 0.9rem 0.5rem; border-bottom: 2px solid var(--paper-dim); }
.stat-table th { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate); }
.stat-table td.price { font-family: var(--font-mono); font-size: 1.1rem; text-align: right; white-space: nowrap; }

/* ==========================================================================
   Weddings — quiet pricing list
   ========================================================================== */
.quiet-list { display: flex; flex-direction: column; gap: var(--space-md); }
.quiet-list__item { border-left: 3px solid var(--sky); padding-left: 1.5rem; }
.quiet-list__item h3 { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.75rem; }
.quiet-list__item .price { font-family: var(--font-mono); font-size: 1.15rem; color: var(--red); text-transform: none; }
.quiet-list__item p { color: var(--slate); margin-top: 0.5rem; }

/* ==========================================================================
   Steps (how it works)
   ========================================================================== */
.steps { counter-reset: step; display: grid; gap: var(--space-md); }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps li { counter-increment: step; }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--red);
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}
.steps h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.steps p { color: var(--slate); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial {
  background: var(--white);
  border: 2px solid var(--ink);
  padding: var(--space-md);
}
.testimonial blockquote { font-size: 1.15rem; line-height: 1.5; }
.testimonial cite { display: block; margin-top: 1rem; font-style: normal; font-family: var(--font-mono); font-size: 0.8rem; color: var(--slate); }

/* ==========================================================================
   Portfolio grid
   ========================================================================== */
.portfolio-grid { display: grid; gap: var(--space-sm); grid-template-columns: 1fr; }
@media (min-width: 640px) { .portfolio-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .portfolio-grid--3 { grid-template-columns: repeat(3, 1fr); } }
.portfolio-grid figcaption { margin-top: 0.6rem; font-size: 0.9rem; color: var(--slate); }

/* full-film embeds for weddings — larger, stacked */
.film-list { display: flex; flex-direction: column; gap: var(--space-lg); }
.film-list figcaption { margin-top: 0.75rem; }
.film-list figcaption .name { font-weight: 600; }

/* ==========================================================================
   About
   ========================================================================== */
.about-layout { display: grid; gap: var(--space-lg); align-items: start; }
@media (min-width: 780px) { .about-layout { grid-template-columns: 0.85fr 1.15fr; } }
.about-photo { border: 2px solid var(--ink); }
.about-copy p { max-width: 60ch; margin-bottom: 1.1rem; color: var(--slate); }
.about-copy p:first-of-type { color: var(--ink); font-size: 1.1rem; }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
}
.field input, .field select, .field textarea {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 0.75rem 0.9rem;
  background: var(--white);
  font-size: 1rem;
}
.field textarea { resize: vertical; min-height: 120px; }
.field-required::after { content: " *"; color: var(--red); }

.form-status {
  padding: 1rem 1.25rem;
  border: 2px solid var(--ink);
  font-size: 0.95rem;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status--success { border-color: var(--ink); background: #E7F4EC; }
.form-status--error { border-color: var(--red); background: #FBE8EA; }

.contact-direct { display: flex; flex-direction: column; gap: 1rem; }
.contact-direct__phone { font-family: var(--font-display); font-size: 2.25rem; text-decoration: none; }
.contact-direct__phone:hover { color: var(--red); }
.contact-direct__row { display: flex; gap: 0.75rem; align-items: baseline; }
.contact-direct__row .label { font-family: var(--font-mono); font-size: 0.75rem; color: var(--slate); text-transform: uppercase; letter-spacing: 0.08em; min-width: 5.5rem; }

/* ==========================================================================
   Closing CTA band
   ========================================================================== */
.cta-band { text-align: left; }
.cta-band h2 { max-width: 14ch; }
.cta-band__inner { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
@media (min-width: 720px) {
  .cta-band__inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  }
  .reveal.is-visible { opacity: 1; transform: none; }
}

/* ==========================================================================
   Misc utilities
   ========================================================================== */
.text-slate { color: var(--slate); }
.mt-0 { margin-top: 0; }
.max-w-prose { max-width: 62ch; }
.center-text { text-align: center; }
.center-text p { margin-inline: auto; }
