/* ==========================================================================
   Clovty LLC — clovty.com
   Stylesheet · Corporate / institutional aesthetic
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500&display=swap');

:root {
  /* surfaces */
  --bg:          #ffffff;
  --bg-soft:     #f6f8fa;
  --bg-dark:     #0b1a30;
  --bg-darker:   #081326;

  /* text */
  --ink:         #0a0e1a;
  --ink-soft:    #3a4250;
  --ink-muted:   #6e7889;
  --ink-faint:   #9aa3b3;

  /* lines */
  --line:        #e3e7ed;
  --line-soft:   #eef1f5;
  --line-strong: #cdd3dc;

  /* accent — restrained corporate blue */
  --accent:        #134b9a;
  --accent-hover:  #0f3d7d;
  --accent-soft:   #e6eefa;

  /* signal accents (small use) */
  --up:   #1f7a4d;
  --down: #b4393b;

  --max-w: 1240px;
}

/* Reset + base */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
::selection { background: var(--accent); color: #fff; }

/* Typography — all sans, weight contrast instead of serif italics */
.eyebrow {
  font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.eyebrow-accent { color: var(--accent); }

h1, h2, h3, h4, h5 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}
h1 {
  font-size: clamp(2.25rem, 4.6vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); font-weight: 600; letter-spacing: -0.02em; }
h4 { font-size: 1.15rem; font-weight: 600; letter-spacing: -0.01em; line-height: 1.25; }
strong, b { font-weight: 600; color: var(--ink); }

p { margin: 0; }
.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
}

/* Layout primitives */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.75rem;
}
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 1.5rem; }

section { padding: clamp(2.25rem, 4.5vw, 4rem) 0; }
.section-tight { padding: clamp(1.75rem, 3vw, 2.5rem) 0; }

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1.75rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand img { width: 26px; height: 26px; }
.nav-links {
  display: none;
  gap: 2.25rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.18s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--accent);
}
@media (min-width: 880px) {
  .nav-links { display: flex; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 6px;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover {
  background: var(--accent);
}
.btn-ghost {
  border-color: var(--line-strong);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--bg-soft);
}
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 500;
}
.btn-text:hover { color: var(--accent-hover); }
.btn-text::after { content: "→"; transition: transform 0.15s ease; }
.btn-text:hover::after { transform: translateX(3px); }

/* Hero */
.hero {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(1.5rem, 2.5vw, 2.5rem);
  position: relative;
  border-bottom: 1px solid var(--line-soft);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.45fr 1fr; gap: 4rem; }
}
.hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  font-weight: 600;
  max-width: 28ch;
}
.hero h1 .accent {
  color: var(--accent);
  font-weight: 600;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  margin-top: 2.75rem;
  margin-bottom: 0;
}
.hero-meta dt {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.hero-meta dd {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 500;
}

/* Hero side panel (institutional, no fake percentages) */
.hero-side {
  background: var(--bg-dark);
  color: #fff;
  border-radius: 4px;
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
}
.hero-side::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(255,255,255,0.04), transparent 60%);
  pointer-events: none;
}
.hero-side-label {
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  margin-bottom: 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-side-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ea38a;
}
.hero-side h3 {
  color: #fff;
  font-size: 1.25rem;
  letter-spacing: -0.015em;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  position: relative;
}
.hero-side .item {
  position: relative;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.75rem;
  align-items: start;
}
.hero-side .item:last-child { border-bottom: 0; }
.hero-side .item-num {
  font-family: 'Geist Mono', monospace;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  margin-top: 2px;
  font-weight: 500;
}
.hero-side .item-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  font-weight: 400;
}
.hero-side .item-text strong { color: #fff; font-weight: 600; }

/* Cards / Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.feature {
  background: var(--bg);
  padding: 2rem 1.6rem;
  transition: background 0.15s ease;
}
.feature:hover { background: var(--bg-soft); }
.feature-num {
  font-family: 'Geist Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.feature h4 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.feature p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* Two-col split */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; }
}
.split-eyebrow { margin-bottom: 0.75rem; }
.split-tight { gap: 2rem; }

/* Process timeline (numbered) */
.process { display: grid; gap: 0; }
.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.process-step:last-child { border-bottom: 0; }
.process-step:first-child { padding-top: 0; }
.process-num {
  font-family: 'Geist Mono', monospace;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
  padding-top: 4px;
}
.process-step h4 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.process-step p {
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 620px;
  font-size: 0.95rem;
}

/* Pricing tiers */
.tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 880px) { .tier-grid { grid-template-columns: repeat(3, 1fr); } }
.tier {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
}
.tier.featured {
  background: var(--bg-dark);
  color: #fff;
  border-color: var(--bg-dark);
  position: relative;
}
.tier.featured::before {
  content: "Most chosen";
  position: absolute;
  top: -10px;
  left: 1.5rem;
  background: var(--accent);
  color: #fff;
  font-family: 'Geist Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  font-weight: 500;
}
.tier h4 {
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Geist Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--ink-soft);
}
.tier.featured h4 { color: rgba(255,255,255,0.6); }
.tier .price {
  font-family: 'Geist', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 0.4rem;
  line-height: 1.1;
}
.tier .price small {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--ink-muted);
  letter-spacing: 0;
}
.tier.featured .price small { color: rgba(255,255,255,0.55); }
.tier .desc {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  line-height: 1.55;
}
.tier.featured .desc { color: rgba(255,255,255,0.72); }
.tier ul { margin: 0 0 1.5rem 0; padding: 0; list-style: none; flex: 1; }
.tier li {
  font-size: 0.875rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 0.65rem;
  align-items: start;
  line-height: 1.5;
}
.tier.featured li { border-bottom-color: rgba(255,255,255,0.08); }
.tier li::before {
  content: "";
  width: 10px;
  height: 1px;
  background: var(--accent);
  margin-top: 0.6rem;
}
.tier.featured li::before { background: rgba(255,255,255,0.5); }

/* Quote / pull */
.pull-quote {
  background: var(--bg-soft);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  margin: 0;
}
.pull-quote q {
  font-family: 'Geist', sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 500;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: -0.018em;
  color: var(--ink);
  display: block;
  margin-bottom: 1.5rem;
  quotes: """ """ "'" "'";
}
.pull-quote q::before { content: open-quote; }
.pull-quote q::after { content: close-quote; }
.pull-quote cite {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--ink-muted);
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* CTA strip */
.cta-strip {
  background: var(--bg-dark);
  color: #fff;
  border-radius: 6px;
  padding: clamp(2.75rem, 5vw, 4rem) clamp(2rem, 4vw, 3.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255,255,255,0.04), transparent 50%);
  pointer-events: none;
}
.cta-strip h2 {
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
  letter-spacing: -0.025em;
}
.cta-strip p {
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto 2rem;
  position: relative;
  font-size: 1rem;
  line-height: 1.55;
}
.cta-strip .btn-primary {
  background: #fff;
  color: var(--ink);
  position: relative;
}
.cta-strip .btn-primary:hover {
  background: var(--accent);
  color: #fff;
}

/* Principles / methodology row (replacing fake stats) */
.principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 3rem 0 0;
}
.principle {
  padding: 1.75rem 1.25rem;
  border-right: 1px solid var(--line);
}
.principle:last-child { border-right: 0; }
@media (max-width: 640px) {
  .principle { border-right: 0; border-bottom: 1px solid var(--line); }
  .principle:last-child { border-bottom: 0; }
}
.principle .num {
  font-family: 'Geist Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.principle .text {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.005em;
}

/* Forms */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .form-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  font-family: 'Geist', sans-serif;
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 0.8rem 0.95rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.55; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 980px) { .contact-grid { grid-template-columns: 1fr 1.3fr; gap: 4rem; } }
.contact-info {
  border-top: 2px solid var(--ink);
  padding-top: 1.5rem;
}
.contact-info dl { display: grid; gap: 1.5rem; margin: 0; }
.contact-info dt {
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.contact-info dd { margin: 0; font-size: 0.93rem; line-height: 1.6; color: var(--ink); }
.contact-info dd a { color: var(--accent); }
.contact-info dd a:hover { color: var(--accent-hover); border-bottom: 1px solid currentColor; }

/* Sourcing list */
.source-list { list-style: none; padding: 0; margin: 0; }
.source-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  align-items: baseline;
}
.source-list li:last-child { border-bottom: 0; }

/* Deliverable / scope list (used on services page) */
.scope-list { list-style: none; padding: 0; margin: 0; }
.scope-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.75rem;
  align-items: start;
  font-size: 0.95rem;
  line-height: 1.55;
}
.scope-list li:last-child { border-bottom: 0; }
.scope-list li::before {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--accent);
  margin-top: 0.65rem;
}

/* Legal pages */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.legal-content h1 { margin-bottom: 0.5rem; font-size: clamp(2rem, 4vw, 2.75rem); letter-spacing: -0.025em; }
.legal-content .updated {
  font-family: 'Geist Mono', monospace;
  font-size: 0.78rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
  display: block;
  font-weight: 500;
}
.legal-content h2 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 2.75rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.legal-content h3 {
  font-size: 1.05rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.005em;
}
.legal-content p { margin: 0 0 1rem; }
.legal-content ul, .legal-content ol { margin: 0 0 1.25rem 1.25rem; padding: 0; }
.legal-content li { margin-bottom: 0.5rem; }
.legal-content a { color: var(--accent); border-bottom: 1px solid currentColor; }
.legal-content a:hover { color: var(--accent-hover); }
.legal-content strong { color: var(--ink); font-weight: 600; }

/* Page header (inner pages) */
.page-header {
  padding: clamp(3.5rem, 6vw, 5rem) 0 clamp(2.5rem, 4vw, 3.25rem);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.page-header h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  margin-bottom: 1rem;
  max-width: 22ch;
  line-height: 1.05;
}
.page-header .lead { max-width: 60ch; }

/* Footer */
.site-footer {
  background: var(--bg-darker);
  color: #fff;
  padding: clamp(2.5rem, 4vw, 3.5rem) 0 1.5rem;
  margin-top: 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-brand { color: #fff; }
.footer-brand .brand { color: #fff; margin-bottom: 1rem; }
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 32ch;
}
.footer-col h6 {
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  margin: 0 0 1.1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.footer-col a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: #fff; }
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.75rem;
  font-family: 'Geist Mono', monospace;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* Compliance band */
.compliance-band {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 2rem;
  align-items: center;
}
.compliance-band .item {
  font-family: 'Geist Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}
.compliance-band .item::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 1px;
}

/* Reveals (subtle) */
.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Utilities */
.muted { color: var(--ink-muted); }
.center { text-align: center; }
.mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; } .mt-8 { margin-top: 4rem; }
.mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; } .mb-8 { margin-bottom: 4rem; }
.flex { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Mobile menu */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--ink);
  font-weight: 500;
}
@media (min-width: 880px) { .menu-toggle { display: none; } }

.mobile-menu {
  display: none;
  background: var(--bg);
  border-bottom: 1px solid var(--line-soft);
  padding: 1rem 1.75rem 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.85rem; }
.mobile-menu a { color: var(--ink); font-size: 1rem; font-weight: 500; }
.mobile-menu a.active { color: var(--accent); }
@media (min-width: 880px) { .mobile-menu, .mobile-menu.open { display: none; } }

/* Print-safe */
@media print {
  .site-header, .site-footer, .cta-strip { display: none; }
  body { background: white; color: black; }
}
