/* festoso — marketing site styles
 * Dark editorial + gold accents. Vanilla CSS, no build step.
 */

/* ---------- Reset + base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ---------- Tokens ---------- */
:root {
  --bg:           #0a0a0a;
  --bg-elevated:  #141414;
  --bg-card:      #161513;
  --fg:           #f4f1ea;
  --fg-muted:     #9a9590;
  --fg-dim:       #6a6560;
  --gold:         #c89b3c;
  --gold-hover:   #d8ab4c;
  --gold-soft:    rgba(200, 155, 60, 0.12);
  --border:       rgba(244, 241, 234, 0.08);
  --border-hover: rgba(244, 241, 234, 0.18);

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, system-ui, sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;

  --shadow-card: 0 1px 0 rgba(255,255,255,0.04) inset, 0 30px 60px -30px rgba(0,0,0,0.7);
}

/* Optional Fraunces variable font — gracefully falls back to Georgia */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: local('Fraunces'), local('Fraunces-Regular');
}

/* ---------- Body ---------- */
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Subtle film-grain on the body for editorial feel */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) { .container { padding-inline: 40px; } }

.section { padding-block: 88px; position: relative; z-index: 2; }
@media (min-width: 768px) { .section { padding-block: 128px; } }

.section--tight { padding-block: 56px; }

.grid { display: grid; gap: 24px; }
.grid-2 { display: grid; gap: 32px; }
.grid-3 { display: grid; gap: 24px; }
.grid-4 { display: grid; gap: 24px; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: var(--gold);
  font-weight: 500;
}

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.display-xl { font-size: clamp(44px, 8vw, 96px); line-height: 1.0; letter-spacing: -0.035em; }
.display-lg { font-size: clamp(36px, 5.5vw, 64px); line-height: 1.05; letter-spacing: -0.03em; }
.display-md { font-size: clamp(28px, 4vw, 44px); line-height: 1.1; letter-spacing: -0.025em; }

.lede {
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--fg-muted);
  max-width: 56ch;
  line-height: 1.5;
}

.muted { color: var(--fg-muted); }
.dim { color: var(--fg-dim); }

/* ---------- Wordmark ---------- */
.wordmark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.wordmark::before {
  content: '';
  display: inline-block;
  width: 22px; height: 22px;
  background: url('/assets/img/festoso-mark.png') center/contain no-repeat;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  will-change: transform;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--gold);
  color: #0a0a0a;
}
.btn--primary:hover { background: var(--gold-hover); }

.btn--ghost {
  border: 1px solid var(--border-hover);
  color: var(--fg);
}
.btn--ghost:hover { border-color: var(--fg); background: rgba(255,255,255,0.03); }

.btn--small { padding: 10px 16px; font-size: 14px; }

.btn .arrow {
  display: inline-block;
  transition: transform .2s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0;
  z-index: 100;
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  background: rgba(10, 10, 10, 0.72);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav__links {
  display: none;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 14px;
  color: var(--fg-muted);
  transition: color .15s ease;
}
.nav__links a:hover { color: var(--fg); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
@media (min-width: 900px) { .nav__links { display: flex; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(200, 155, 60, 0.18), transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(200, 155, 60, 0.08), transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero__content {
  position: relative;
  max-width: 880px;
}
.hero__eyebrow { margin-bottom: 28px; }
.hero__headline { margin-bottom: 28px; }
.hero__sub { margin-bottom: 40px; font-size: clamp(18px, 1.5vw, 24px); color: var(--fg-muted); max-width: 38ch; }
.hero__ctas {
  display: flex; flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.hero__trust {
  display: flex; flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 13px;
  color: var(--fg-dim);
}
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust span::after {
  content: '';
  width: 3px; height: 3px;
  background: var(--fg-dim);
  border-radius: 50%;
  margin-left: 16px;
}
.hero__trust span:last-child::after { display: none; }

/* Floating event-card mock in the hero corner */
.hero__mock {
  position: absolute;
  right: -40px; bottom: 60px;
  width: 320px;
  display: none;
  padding: 18px;
  background: linear-gradient(160deg, rgba(22,21,19,0.95), rgba(10,10,10,0.95));
  border: 1px solid var(--border-hover);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
  transform: rotate(2deg);
}
@media (min-width: 1100px) { .hero__mock { display: block; right: 24px; } }
.hero__mock-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.hero__mock-row:last-child { margin-bottom: 0; }
.hero__mock-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); animation: pulse 2s ease-in-out infinite; }
.hero__mock-label { font-size: 12px; color: var(--fg-muted); }
.hero__mock-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin-top: 10px; }
.hero__mock-tile { aspect-ratio: 1; border-radius: 4px; background: linear-gradient(135deg, #2a2520, #1a1612); }
.hero__mock-tile.featured { background: linear-gradient(135deg, var(--gold), #8a6a2c); position: relative; }
.hero__mock-tile.featured::after { content: '★'; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 14px; }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

/* ---------- Stats ---------- */
.stats {
  border-block: 1px solid var(--border);
  background: var(--bg-elevated);
}
.stats__inner {
  display: grid;
  gap: 32px;
  padding-block: 56px;
}
@media (min-width: 768px) {
  .stats__inner { grid-template-columns: repeat(3, 1fr); gap: 48px; }
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.stat__label { color: var(--fg-muted); font-size: 15px; line-height: 1.45; max-width: 28ch; }
.stat__cite { display: block; margin-top: 8px; font-size: 12px; color: var(--fg-dim); }

/* ---------- Feature blocks ---------- */
.feature__copy h2 { margin-bottom: 20px; }
.feature__copy p { color: var(--fg-muted); font-size: 18px; line-height: 1.6; max-width: 48ch; }

.feature__visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-card);
  display: grid;
  place-items: center;
}
.feature__visual.reverse-on-desktop { order: -1; }
@media (min-width: 768px) {
  .feature--reverse .feature__visual { order: 2; }
}

.feature__placeholder {
  padding: 32px;
  text-align: center;
  color: var(--fg-dim);
  font-size: 13px;
  letter-spacing: 0.04em;
}

/* Editor mock — two-panel side-by-side */
.editor-mock { width: 100%; height: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 16px; }
.editor-mock__panel {
  border-radius: var(--r-sm);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2a2520 0%, #1a1612 100%);
}
.editor-mock__panel::before {
  content: attr(data-label);
  position: absolute;
  top: 8px; left: 8px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: rgba(0,0,0,0.6);
  padding: 4px 8px;
  border-radius: 4px;
}
.editor-mock__panel.edited { background: linear-gradient(135deg, #4a3a2a 0%, #2a1f15 100%); border: 1px solid var(--gold-soft); }
.editor-mock__panel.edited::after {
  content: '✦';
  position: absolute; bottom: 8px; right: 8px;
  color: var(--gold);
  font-size: 18px;
}

/* Curation mock — grid of tiles with stars */
.curation-mock { width: 100%; height: 100%; padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.curation-mock__toolbar {
  display: flex; gap: 8px; align-items: center;
  padding: 8px 12px;
  background: var(--bg-elevated);
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--fg-muted);
}
.curation-mock__toolbar .chip {
  padding: 4px 10px;
  background: var(--gold);
  color: #0a0a0a;
  border-radius: 999px;
  font-weight: 500;
  font-size: 11px;
}
.curation-mock__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; flex: 1; }
.curation-mock__tile {
  border-radius: 4px;
  background: linear-gradient(135deg, #2a2520, #1a1612);
  position: relative;
}
.curation-mock__tile.starred {
  background: linear-gradient(135deg, var(--gold), #8a6a2c);
}
.curation-mock__tile.starred::after {
  content: '★';
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: #fff;
  font-size: 16px;
}

/* TV mock — wide aspect with photo */
.tv-mock {
  width: 100%; height: 100%;
  padding: 24px;
  display: grid;
  place-items: center;
}
.tv-mock__screen {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--r-md);
  background:
    radial-gradient(ellipse at 30% 30%, rgba(200,155,60,0.4), transparent 50%),
    linear-gradient(135deg, #3a2a1a, #1a1612);
  border: 1px solid var(--border-hover);
  position: relative;
  display: grid;
  place-items: end start;
  padding: 16px;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: -0.01em;
}
.tv-mock__stand {
  width: 30%;
  height: 8px;
  background: var(--border);
  margin-top: 8px;
  border-radius: 0 0 4px 4px;
}

/* ---------- How it works ---------- */
.steps { display: grid; gap: 24px; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.step {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color .2s ease, transform .2s ease;
}
.step:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.step__num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.step h3 { font-size: 22px; margin-bottom: 10px; }
.step p { color: var(--fg-muted); font-size: 15px; }

/* ---------- Pricing ---------- */
.pricing__grid { display: grid; gap: 16px; }
@media (min-width: 600px) { .pricing__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing__grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.price-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  position: relative;
  transition: border-color .2s ease, transform .2s ease;
}
.price-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.price-card--featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(200,155,60,0.06), var(--bg-card) 40%);
}
.price-card__badge {
  position: absolute;
  top: -12px; left: 24px;
  padding: 4px 12px;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}
.price-card__name {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.price-card__price {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.price-card__price .unit { font-size: 14px; color: var(--fg-muted); font-family: var(--font-body); letter-spacing: 0; margin-left: 4px; }
.price-card__hint { color: var(--fg-muted); font-size: 14px; margin-bottom: 24px; min-height: 2.5em; }
.price-card__features { display: grid; gap: 10px; margin-bottom: 28px; }
.price-card__features li {
  font-size: 14px;
  color: var(--fg);
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
}
.price-card__features li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 12px; height: 6px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
}
.price-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  background: rgba(255,255,255,0.06);
  color: var(--fg);
  border: 1px solid var(--border);
  transition: background .15s ease;
}
.price-card__cta:hover { background: rgba(255,255,255,0.1); }
.price-card--featured .price-card__cta { background: var(--gold); color: #0a0a0a; border-color: var(--gold); }
.price-card--featured .price-card__cta:hover { background: var(--gold-hover); }

.pricing__note {
  margin-top: 40px;
  padding: 20px 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 14px;
  color: var(--fg-muted);
  text-align: center;
}
.pricing__note strong { color: var(--fg); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  border-top: 1px solid var(--border);
  padding-block: 24px;
}
.faq details:last-child { border-bottom: 1px solid var(--border); }
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.015em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--fg);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p {
  margin-top: 16px;
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 68ch;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding-block: 64px 32px;
  background: var(--bg);
}
.footer__grid { display: grid; gap: 40px; margin-bottom: 48px; }
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
}
.footer__brand .wordmark { margin-bottom: 16px; }
.footer__brand p { color: var(--fg-muted); font-size: 14px; max-width: 32ch; }
.footer__col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-weight: 500;
  margin-bottom: 16px;
}
.footer__col ul { display: grid; gap: 10px; }
.footer__col li a {
  color: var(--fg-muted);
  font-size: 14px;
  transition: color .15s ease;
}
.footer__col li a:hover { color: var(--fg); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--fg-dim);
}
.footer__bottom a { color: var(--fg-dim); }
.footer__bottom a:hover { color: var(--fg-muted); }

/* ---------- Tables (partners) ---------- */
.payout-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.payout-table th, .payout-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.payout-table tbody tr:last-child td { border-bottom: 0; }
.payout-table th {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-weight: 500;
  background: var(--bg-elevated);
}
.payout-table td:first-child { font-weight: 500; }
.payout-table td .payout { color: var(--gold); font-family: var(--font-display); font-size: 18px; }
.payout-table td .note { display: block; color: var(--fg-dim); font-size: 12px; margin-top: 2px; }

/* ---------- Audience cards ---------- */
.audience { display: grid; gap: 20px; }
@media (min-width: 768px) { .audience { grid-template-columns: 1fr 1fr; gap: 24px; } }
.audience__card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.audience__card h3 { font-size: 24px; margin-bottom: 12px; }
.audience__card p { color: var(--fg-muted); font-size: 15px; line-height: 1.6; }
.audience__tier {
  display: inline-block;
  padding: 4px 10px;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 16px;
}

/* ---------- Press kit specifics ---------- */
.facts { display: grid; gap: 12px; max-width: 720px; }
.facts li {
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  font-size: 15px;
}
.facts li span:first-child {
  color: var(--fg-dim);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.facts li span:last-child { color: var(--fg); text-align: right; }

.swatches { display: grid; gap: 16px; }
@media (min-width: 600px) { .swatches { grid-template-columns: repeat(3, 1fr); } }
.swatch {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg-card);
}
.swatch__chip {
  width: 100%;
  aspect-ratio: 2/1;
  border-radius: var(--r-sm);
  margin-bottom: 16px;
}
.swatch__name { font-weight: 500; font-size: 14px; margin-bottom: 4px; }
.swatch__hex { font-family: 'SF Mono', Menlo, Consolas, monospace; font-size: 12px; color: var(--fg-muted); }

.downloads { display: grid; gap: 12px; max-width: 720px; }
.download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: border-color .15s ease;
}
.download:hover { border-color: var(--border-hover); }
.download__meta { font-size: 12px; color: var(--fg-dim); }

.dos { display: grid; gap: 24px; }
@media (min-width: 600px) { .dos { grid-template-columns: 1fr 1fr; } }
.do-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.do-col.do h4 { color: var(--gold); }
.do-col.dont h4 { color: #c87a5c; }
.do-col ul { display: grid; gap: 8px; color: var(--fg-muted); font-size: 14px; }
.do-col li { padding-left: 18px; position: relative; }
.do-col.do li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); }
.do-col.dont li::before { content: '✕'; position: absolute; left: 0; color: #c87a5c; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(0.2, 0.7, 0.2, 1), transform .8s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Accessibility ---------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Section label */
.section__label {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section__head { max-width: 720px; margin-bottom: 64px; }
.section__head .section__label { margin-bottom: 12px; }
.section__head h2 { margin-bottom: 16px; }
.section__head p { color: var(--fg-muted); font-size: 18px; max-width: 56ch; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center p { margin-inline: auto; }
