/* ============ tokens ============
   Palette derived from the real Digital Boss Academy brand:
   - DBA red from the bold chunky logo
   - Luxe black canvas
   - Cream text for warmth (not cold white)
   - Soft gold highlight for the "boss" energy
*/
:root {
  --bg: #0b0909;
  --bg-2: #14100f;
  --bg-3: #1c1716;
  --ink: #f6eee3;
  --ink-2: #c9bfb0;
  --muted: #8a7f70;
  --line: #2a211f;
  --line-2: #3a2f2c;

  --red: #d42820;
  --red-hot: #ef3a31;
  --gold: #e8c97a;
  --cream: #faf3e6;

  --radius: 20px;
  --radius-sm: 10px;
  --max: 1200px;
  --shadow: 0 20px 60px -20px rgba(212,40,32,.3);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--red), var(--gold));
  z-index: 200;
  transition: width .08s linear;
}
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 {
  font-family: 'Syne', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0 0 .5em;
}
h1 em, h2 em, .accent {
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif !important;
  font-style: italic !important;
  font-weight: 500 !important;
  color: var(--gold);
  letter-spacing: -0.01em;
  padding-right: .04em;
  font-size: 1.05em;
}

p { margin: 0 0 1em; color: var(--ink-2); }

.eyebrow, .section-eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow span, .section-eyebrow::before {
  color: var(--red);
  font-size: 10px;
}
.section-eyebrow::before {
  content: '◆';
}

.section-title { font-size: clamp(30px, 4.6vw, 58px); }
.section-lede { max-width: 640px; color: var(--ink-2); font-size: 17px; }

/* ============ buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-sm { padding: 11px 18px; font-size: 12px; }
.btn-lg { padding: 20px 34px; font-size: 14px; }
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 40px -12px rgba(212,40,32,.6);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(232,201,122,.55) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform .8s cubic-bezier(.22,1,.36,1);
  z-index: -1;
}
.btn-primary:hover::before { transform: translateX(120%); }
.btn-primary:hover { background: var(--red-hot); transform: translateY(-2px); box-shadow: 0 18px 50px -12px rgba(239,58,49,.7); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover { background: var(--bg-2); border-color: var(--gold); color: var(--gold); }
.btn-block { width: 100%; }
.btn-inline { margin-top: 12px; }

/* ============ nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,9,9,.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  height: 28px;
  width: auto;
  max-width: none;
  aspect-ratio: 586 / 278;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 20px rgba(212,40,32,.3));
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--gold); }

/* mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 34px; height: 30px;
  position: relative;
  cursor: pointer;
  padding: 0;
  color: var(--ink);
}
.nav-toggle span {
  position: absolute;
  left: 4px; right: 4px;
  height: 1.5px;
  background: currentColor;
  transition: transform .3s ease, opacity .2s ease, top .3s ease;
}
.nav-toggle span:nth-child(1) { top: 10px; }
.nav-toggle span:nth-child(2) { top: 15px; }
.nav-toggle span:nth-child(3) { top: 20px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 15px; transform: rotate(45deg); background: var(--red); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 15px; transform: rotate(-45deg); background: var(--red); }

.nav-drawer {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(212,40,32,.2), transparent 70%),
    var(--bg);
  z-index: 40;
  transform: translateY(-100%);
  transition: transform .5s cubic-bezier(.77,0,.175,1);
  padding: 120px 32px 60px;
  overflow-y: auto;
  display: none;
}
.nav-drawer.open { transform: translateY(0); }
.nav-drawer nav { display: flex; flex-direction: column; gap: 4px; max-width: 560px; margin: 0 auto; }
.nav-drawer a {
  font-family: 'Syne', sans-serif;
  font-size: 34px;
  font-weight: 600;
  color: var(--ink);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: -.02em;
}
.nav-drawer a:hover { color: var(--gold); }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-drawer { display: block; }
}

/* ============ hero ============ */
.hero {
  padding: clamp(70px, 10vw, 140px) 0 clamp(50px, 7vw, 100px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -30% -20% auto auto;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(212,40,32,.22), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto auto -30% -20%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(232,201,122,.14), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-title {
  font-size: clamp(42px, 7vw, 92px);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.hero-sub {
  max-width: 54ch;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-2);
}
.hero-ctas {
  display: flex;
  gap: 12px;
  margin: 28px 0 48px;
  flex-wrap: wrap;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 640px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.hero-stats div { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -.02em;
}
.hero-stats span { font-size: 11px; text-transform: uppercase; letter-spacing: .2em; color: var(--muted); }

.hero-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(100% 80% at 50% 0%, rgba(232,201,122,.2), transparent 50%),
    linear-gradient(165deg, #201714 0%, #0f0a09 100%);
  border: 1px solid var(--line-2);
  box-shadow: 0 40px 80px -30px rgba(212,40,32,.35);
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: bottom center;
}
.hero-media .tag {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--gold);
  color: #000;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  z-index: 3;
}
.hero-spark {
  position: absolute;
  background: var(--cream);
  color: #111;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 30px -6px rgba(0,0,0,.5);
  z-index: 4;
}
.spark-1 { top: 22%; right: -10px; transform: rotate(4deg); }
.spark-2 { bottom: 18%; left: -14px; transform: rotate(-3deg); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-media { max-width: 460px; margin: 0 auto; }
}

/* ============ marquee ============ */
.marquee {
  overflow: hidden;
  background: var(--red);
  color: #fff;
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  gap: 44px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.marquee-track span.dot { color: var(--gold); }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ volumes ============ */
.volumes { padding: clamp(80px, 10vw, 140px) 0; }
.volume-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.volume {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.volume:hover { transform: translateY(-3px); border-color: var(--gold); }
.volume-badge {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.volume h3 { font-size: 26px; margin-bottom: 14px; }
.volume > p { font-size: 15px; flex: 1; }
.volume-price {
  font-family: 'Syne', sans-serif;
  font-size: 58px;
  font-weight: 800;
  letter-spacing: -.04em;
  margin: 10px 0 20px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.volume-price span { font-size: 28px; color: var(--muted); }
.volume-featured {
  background:
    radial-gradient(80% 100% at 100% 0%, rgba(212,40,32,.25), transparent 50%),
    linear-gradient(160deg, #1f1311 0%, #0f0908 100%);
  border-color: var(--red);
  box-shadow: var(--shadow);
}
.volume-featured .volume-badge { color: var(--red); }
.volume-featured .volume-price { color: var(--cream); }
.featured-ribbon {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--gold);
  color: #000;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.volume-note { font-size: 12px; color: var(--gold); margin: 10px 0 0; text-align: center; letter-spacing: .05em; }

@media (max-width: 900px) { .volume-grid { grid-template-columns: 1fr; } }

/* ============ curriculum ============ */
.curriculum {
  padding: clamp(80px, 10vw, 140px) 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--line);
}
.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 36px 0 60px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.curriculum-subhead {
  font-family: 'Syne', sans-serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -.01em;
  margin: 56px 0 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.module {
  background: var(--bg-2);
  padding: 28px 22px;
  transition: background .25s ease, color .25s ease;
  position: relative;
}
.module:hover { background: var(--red); }
.module:hover span { color: #ffd; }
.module:hover h4 { color: #fff; }
.module:hover p { color: #ffe9e8; }
.module span {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: .14em;
  transition: color .25s ease;
}
.module h4 {
  font-size: 16px;
  margin: 10px 0 6px;
  letter-spacing: -.01em;
  color: var(--ink);
  transition: color .25s ease;
}
.module p { font-size: 13px; color: var(--muted); margin: 0; transition: color .25s ease; }
.module.bonus { background: #18100e; }
.module.bonus span { color: var(--gold); }
.module.bonus:hover { background: var(--gold); }
.module.bonus:hover span,
.module.bonus:hover h4,
.module.bonus:hover p { color: #1a0f0e; }

@media (max-width: 1000px) { .module-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .module-grid { grid-template-columns: 1fr; } }

/* ============ founder ============ */
.founder { padding: clamp(80px, 10vw, 140px) 0; }
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.founder-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(65% 55% at 50% 45%, rgba(232,201,122,.45), transparent 70%),
    radial-gradient(80% 60% at 50% 0%, rgba(212,40,32,.2), transparent 60%),
    linear-gradient(165deg, #2a1f1c 0%, #14100f 100%);
  border: 1px solid var(--line-2);
}
.founder-media::before {
  content: '';
  position: absolute;
  inset: 15% 10%;
  background: radial-gradient(circle, rgba(232,201,122,.2), transparent 65%);
  filter: blur(30px);
  z-index: 0;
}
.founder-media img { position: relative; z-index: 1; }
.founder-media img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: bottom center;
}
.chip {
  position: absolute;
  background: var(--cream);
  color: #1a0f0e;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,.6);
  white-space: nowrap;
  z-index: 2;
}
.chip-1 { top: 8%;   left: -18px; transform: rotate(-4deg); }
.chip-2 { top: 48%;  right: -22px; transform: rotate(3deg); background: var(--red); color: #fff; }
.chip-3 { bottom: 10%; left: 18%; transform: rotate(-2deg); background: var(--gold); color: #1a0f0e; }

.founder-copy .signature {
  font-family: 'Syne', sans-serif;
  font-style: italic;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: .04em;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-media { max-width: 460px; }
}

/* ============ results ============ */
.results {
  padding: clamp(80px, 10vw, 140px) 0;
  background:
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--line);
}
.win-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.win {
  margin: 0;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}
.win:hover { transform: translateY(-3px); border-color: var(--gold); }
.win-frame {
  position: relative;
  padding: 12px;
  background: #1a1211;
  border-bottom: 1px solid var(--gold);
}
.win-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,7,7,.55) 100%);
  pointer-events: none;
}
.win img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center top;
  background: var(--cream);
  border-radius: 6px;
  filter: contrast(1.02);
}
.win figcaption {
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.win figcaption strong { color: var(--cream); font-family: 'Syne', sans-serif; font-size: 17px; }
.win figcaption span { color: var(--gold); font-size: 13px; font-weight: 500; }

.testimonial-row {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.testimonial-row blockquote {
  margin: 0;
  padding: 30px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -.01em;
}
.testimonial-row cite {
  display: block;
  margin-top: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-style: normal;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .04em;
}

@media (max-width: 900px) {
  .win-grid { grid-template-columns: 1fr; }
  .testimonial-row { grid-template-columns: 1fr; }
}

/* ============ pricing ============ */
.pricing { padding: clamp(80px, 10vw, 140px) 0; }
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.price-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 34px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card header h3 { font-size: 24px; margin-bottom: 8px; }
.price-card header p { font-size: 14px; color: var(--muted); margin-bottom: 26px; }
.price {
  font-family: 'Syne', sans-serif;
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
  color: var(--cream);
}
.price .currency { font-size: 28px; color: var(--muted); }
.price .period {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-left: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.price-features { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.price-features li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--ink-2);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.price-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.price-note { font-size: 12px; color: var(--muted); margin: 14px 0 0; text-align: center; }

.price-card-featured {
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(232,201,122,.18), transparent 50%),
    linear-gradient(160deg, #1d1310 0%, #0d0807 100%);
  border-color: var(--gold);
  box-shadow: 0 20px 60px -20px rgba(232,201,122,.25);
}
.badge {
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--gold);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 999px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.guarantee {
  text-align: center;
  margin-top: 30px;
  color: var(--muted);
  font-size: 14px;
}
.guarantee strong { color: var(--gold); }

@media (max-width: 800px) { .price-grid { grid-template-columns: 1fr; } }

/* ============ faq ============ */
.faq {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.faq-list { margin-top: 40px; max-width: 820px; }
.faq details {
  border-top: 1px solid var(--line-2);
  padding: 22px 0;
}
.faq details:last-of-type { border-bottom: 1px solid var(--line-2); }
.faq summary {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--ink);
  letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 28px;
  color: var(--red);
  font-weight: 400;
  transition: transform .2s ease, color .2s ease;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); color: var(--gold); }
.faq details p { margin: 14px 0 0; color: var(--ink-2); font-size: 15.5px; max-width: 72ch; }

/* ============ final CTA ============ */
.final-cta {
  padding: clamp(90px, 13vw, 170px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(212,40,32,.28), transparent 70%),
    radial-gradient(50% 60% at 50% 100%, rgba(232,201,122,.15), transparent 70%),
    var(--bg);
}
.final-cta h2 {
  font-size: clamp(42px, 7vw, 82px);
  margin-bottom: 20px;
  letter-spacing: -.03em;
}
.final-cta p { font-size: 19px; margin-bottom: 36px; color: var(--ink-2); }

/* ============ footer ============ */
.footer {
  background: #050404;
  color: #6a5d50;
  padding: 70px 0 30px;
  border-top: 1px solid var(--line);
}
.footer-logo { height: 38px; width: auto; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer-tag { color: var(--muted); margin-top: 14px; font-size: 14px; max-width: 32ch; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-cols h5 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .24em;
  color: var(--gold);
  margin: 0 0 16px;
  font-weight: 700;
}
.footer-cols a {
  display: block;
  font-size: 14px;
  padding: 4px 0;
  color: var(--ink-2);
}
.footer-cols a:hover { color: var(--red); }
.footer-bottom { padding-top: 24px; }
.footer-bottom small { color: #5a4f44; font-size: 12px; }

@media (max-width: 780px) {
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

/* ============ reveal ============ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

::selection { background: var(--gold); color: #000; }
