/* =========================================================================
   Sara machts GmbH — "Cinematic Gold"
   Palette : Espresso / Cream / veredeltes Bernstein-Gold / Braun
   Type    : Space Grotesk (Display) · Inter (Body) · Space Mono (Timecode)
   ========================================================================= */

:root {
  /* dark / cinematic */
  --espresso:   #16100B;
  --espresso-2: #1F1710;
  --panel:      #241B12;
  --panel-line: rgba(244, 196, 48, .14);

  /* light / paper */
  --cream:   #FAF5EC;
  --cream-2: #F2E8D6;
  --cream-line: rgba(91, 58, 30, .14);

  /* brand */
  --gold:      #E6A411;
  --gold-2:    #F4C430;
  --gold-deep: #C57C0A;
  --brown:     #5B3A1E;
  --grad-gold: linear-gradient(105deg, #F4C430 0%, #E6A411 52%, #C57C0A 100%);

  /* text */
  --ink:        #1F1710;
  --ink-soft:   #6A5B49;
  --on-dark:    #FAF5EC;
  --on-dark-dim:#C6B295;

  --maxw: 1180px;
  --gut: clamp(1.25rem, 5vw, 4rem);
  --sect-y: clamp(4.5rem, 10vw, 9rem);
  --radius: 18px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* ---------- type ---------- */
h1, h2, h3 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.02em;
}
h2 { font-size: clamp(2rem, 1.3rem + 2.6vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 1.05rem + .8vw, 1.55rem); letter-spacing: -.01em; }
p { text-wrap: pretty; }
.lead { font-size: clamp(1.1rem, 1rem + .6vw, 1.4rem); line-height: 1.55; color: var(--ink-soft); }

/* timecode / eyebrow — the broadcast signature */
.eyebrow {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: currentColor;
}
.on-dark .eyebrow { color: var(--gold-2); }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
section { padding-block: var(--sect-y); position: relative; }
.on-dark { background: var(--espresso); color: var(--on-dark); }
.on-dark p { color: var(--on-dark-dim); }
.on-dark .lead { color: var(--on-dark-dim); }
[id] { scroll-margin-top: 84px; }

/* ---------- buttons ---------- */
.btn {
  --pad: .9rem 1.6rem;
  display: inline-flex; align-items: center; gap: .55rem;
  padding: var(--pad);
  border-radius: 100px;
  font-weight: 600;
  font-size: .98rem;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-primary {
  background: var(--grad-gold);
  color: #2A1B06;
  box-shadow: 0 8px 24px -10px rgba(230, 164, 17, .8);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(230, 164, 17, .9); }
.btn-ghost {
  border-color: currentColor;
  color: inherit;
  background: transparent;
}
.on-dark .btn-ghost { border-color: rgba(250, 245, 236, .35); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-2px); }
.on-dark .btn-ghost:hover { color: var(--gold-2); border-color: var(--gold-2); }
.btn:focus-visible, a:focus-visible, .logo-cell:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
}

/* =========================================================================
   HEADER
   ========================================================================= */
.site-head {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s, padding .35s var(--ease), backdrop-filter .35s;
  padding-block: 1.3rem;
}
.site-head.scrolled {
  background: rgba(22, 16, 11, .82);
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 1px 0 var(--panel-line);
  padding-block: .65rem;
}
.head-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand img { height: 44px; width: auto; transition: height .35s var(--ease); }
.scrolled .brand img { height: 36px; }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); }
.nav a {
  color: var(--on-dark);
  font-size: .92rem; font-weight: 500;
  position: relative; padding-block: .35rem;
  opacity: .82; transition: opacity .25s, color .25s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px; background: var(--grad-gold);
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav a:hover, .nav a.active { opacity: 1; color: var(--gold-2); }
.nav a.active::after, .nav a:hover::after { transform: scaleX(1); }
.nav .btn { padding: .55rem 1.15rem; }
.nav .btn:hover { opacity: 1; }
.nav .btn::after { display: none; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px; border: none; background: transparent;
  position: relative; z-index: 110;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ""; position: absolute; left: 11px; right: 11px; height: 2px;
  background: var(--on-dark); border-radius: 2px; transition: transform .3s var(--ease), opacity .25s;
}
.nav-toggle::before { top: 15px; }
.nav-toggle span { top: 21px; }
.nav-toggle::after { top: 27px; }
body.menu-open .nav-toggle::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-toggle span { opacity: 0; }
body.menu-open .nav-toggle::after { transform: translateY(-6px) rotate(-45deg); }

/* =========================================================================
   HERO — the vintage-TV "broadcast screen"
   ========================================================================= */
.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  background:
    radial-gradient(120% 90% at 78% 12%, rgba(230, 164, 17, .20), transparent 55%),
    radial-gradient(90% 70% at 10% 100%, rgba(91, 58, 30, .35), transparent 60%),
    var(--espresso);
  color: var(--on-dark);
  overflow: hidden;
  isolation: isolate;
}
/* faint cinematic scanlines */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,.025) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay; opacity: .6;
}
/* ambient production still, low opacity */
.hero-still {
  position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background: url("../assets/img/old_set_1.png") right center / cover no-repeat;
  opacity: .10;
  -webkit-mask-image: linear-gradient(to left, #000 0%, transparent 62%);
          mask-image: linear-gradient(to left, #000 0%, transparent 62%);
}
.hero .wrap { position: relative; z-index: 1; padding-block: 8rem 4rem; }
.hero-copy { max-width: 50ch; }

.rec {
  font-family: "Space Mono", monospace;
  font-size: .72rem; font-weight: 700; letter-spacing: .26em;
  color: var(--gold-2);
  display: inline-flex; align-items: center; gap: .55rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--panel-line);
  padding: .4rem .85rem; border-radius: 100px;
  background: rgba(244, 196, 48, .05);
}
.rec .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #ff4d3d;
  box-shadow: 0 0 0 0 rgba(255, 77, 61, .6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 77, 61, .55); }
  70% { box-shadow: 0 0 0 7px rgba(255, 77, 61, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 77, 61, 0); }
}

.hero h1 {
  font-size: clamp(2.7rem, 1.6rem + 6vw, 5.6rem);
  line-height: .98;
  margin-bottom: 1.4rem;
}
.hero h1 .gold {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: clamp(1.1rem, 1rem + .6vw, 1.35rem); color: var(--on-dark-dim); max-width: 46ch; margin-bottom: 2.2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; }

.scroll-hint {
  position: absolute; left: 50%; bottom: 1.8rem; transform: translateX(-50%);
  font-family: "Space Mono", monospace; font-size: .65rem; letter-spacing: .25em;
  color: var(--on-dark-dim); display: flex; flex-direction: column; align-items: center; gap: .5rem;
  z-index: 1;
}
.scroll-hint .line { width: 1px; height: 38px; background: linear-gradient(var(--gold-2), transparent); animation: drop 2.2s var(--ease) infinite; }
@keyframes drop { 0%,100% { transform: scaleY(.3); opacity: .4; transform-origin: top; } 50% { transform: scaleY(1); opacity: 1; transform-origin: top; } }

/* =========================================================================
   PODCAST — first content section
   ========================================================================= */
.podcast { background: var(--cream); position: relative; overflow: hidden; }
.podcast::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  top: -16%; right: -12%; border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 196, 48, .22), transparent 68%);
}
.podcast-grid {
  position: relative; z-index: 1;
  display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) { .podcast-grid { grid-template-columns: minmax(0, 440px) 1fr; } }
.podcast-cover { position: relative; margin: 0; }
.podcast-cover::after {
  content: ""; position: absolute; inset: 0; border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(91, 58, 30, .12);
  pointer-events: none;
}
.podcast-cover img {
  width: 100%; height: auto; border-radius: 22px;
  box-shadow: 0 34px 64px -28px rgba(91, 58, 30, .6), 0 8px 20px -12px rgba(91, 58, 30, .35);
}
.podcast h2 { font-size: clamp(2.3rem, 1.4rem + 3.4vw, 3.7rem); margin-bottom: 1.2rem; }
.podcast h2 .gold { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.podcast-links { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.1rem; }
.plat {
  display: inline-flex; align-items: center; gap: .65rem;
  padding: .85rem 1.5rem; border-radius: 100px;
  font-weight: 600; font-size: .98rem; color: #fff;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s;
}
.plat svg { width: 1.35em; height: 1.35em; flex: none; }
.plat-spotify { background: #1DB954; }
.plat-apple { background: linear-gradient(135deg, #9933CC, #C44FE0); }
.plat:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -12px rgba(0, 0, 0, .45); filter: brightness(1.05); }
.plat:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; }

/* =========================================================================
   STORY / stats
   ========================================================================= */
.story-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.story-copy p + p { margin-top: 1.1rem; }
.pull {
  font-family: "Space Grotesk", sans-serif; font-weight: 500;
  font-size: clamp(1.3rem, 1rem + 1.4vw, 1.9rem); line-height: 1.3;
  letter-spacing: -.01em; color: var(--on-dark);
  border-left: 3px solid var(--gold); padding-left: 1.3rem; margin: 0 0 2rem;
}
.stats { display: grid; gap: 1px; background: var(--panel-line); border: 1px solid var(--panel-line); border-radius: var(--radius); overflow: hidden; }
.stat { background: var(--espresso-2); padding: 1.8rem 1.6rem; }
.stat .num {
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  font-size: clamp(2.4rem, 1.6rem + 3vw, 3.6rem); line-height: 1;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat .lab { font-family: "Space Mono", monospace; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--on-dark-dim); margin-top: .55rem; }
@media (min-width: 720px) { .stats { grid-template-columns: repeat(3, 1fr); } }

/* =========================================================================
   SERVICES overview
   ========================================================================= */
.sect-head { max-width: 56ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.cards-3 { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }
.card {
  background: var(--cream);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.on-dark .card { background: var(--espresso-2); border-color: var(--panel-line); }
.card:hover { transform: translateY(-6px); box-shadow: 0 22px 40px -24px rgba(91, 58, 30, .55); border-color: var(--gold); }
.on-dark .card:hover { box-shadow: 0 22px 50px -22px rgba(0,0,0,.7); }
.icon-badge {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 1.3rem;
  background: rgba(230, 164, 17, .12); color: var(--gold-deep);
  border: 1px solid rgba(230, 164, 17, .25);
}
.on-dark .icon-badge { color: var(--gold-2); }
.icon-badge svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: .6rem; }
.card p { font-size: .98rem; }
.card .more {
  margin-top: auto; padding-top: 1.2rem;
  font-family: "Space Mono", monospace; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-deep); display: inline-flex; align-items: center; gap: .45rem;
  transition: gap .25s var(--ease);
}
.card .more svg { width: 1.15em; height: 1.15em; flex: none; }
.on-dark .card .more { color: var(--gold-2); }
.card:hover .more { gap: .8rem; }

/* =========================================================================
   SOCIAL MEDIA — packages
   ========================================================================= */
.pkg-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-top: 1rem; }
.pkg {
  border: 1px solid var(--cream-line); border-radius: var(--radius);
  padding: 2rem 1.8rem; background: var(--cream); color: var(--ink); position: relative;
  display: flex; flex-direction: column; gap: .9rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pkg:hover { transform: translateY(-6px); box-shadow: 0 22px 40px -24px rgba(91,58,30,.5); }
.pkg.feature { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold) inset; }
.pkg .tier {
  font-family: "Space Mono", monospace; font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-deep);
}
.pkg .tier-name { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.6rem; letter-spacing: -.01em; }
.pkg ul { list-style: none; padding: 0; display: grid; gap: .55rem; font-size: .95rem; color: var(--ink-soft); }
.pkg li { display: flex; gap: .6rem; align-items: flex-start; }
.pkg li svg { width: 1.05em; height: 1.05em; color: var(--gold-deep); flex: none; margin-top: .28em; }
.badge-pop {
  position: absolute; top: -11px; right: 1.4rem;
  background: var(--grad-gold); color: #2A1B06;
  font-family: "Space Mono", monospace; font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 100px;
}
.pdf-row { margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }

/* =========================================================================
   SCHULUNG — two courses
   ========================================================================= */
.course-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.course {
  background: var(--espresso-2); border: 1px solid var(--panel-line);
  border-radius: var(--radius); padding: clamp(1.8rem, 4vw, 2.6rem);
  display: flex; flex-direction: column;
}
.course h3 { margin-bottom: .9rem; }
.course .num {
  font-family: "Space Mono", monospace; font-size: .74rem; letter-spacing: .2em; color: var(--gold-2);
  margin-bottom: 1rem;
}
.facts { list-style: none; padding: 0; margin-top: 1.5rem; display: grid; gap: .7rem; border-top: 1px solid var(--panel-line); padding-top: 1.4rem; }
.facts li { display: flex; justify-content: space-between; gap: 1rem; font-size: .92rem; }
.facts .k { color: var(--on-dark-dim); font-family: "Space Mono", monospace; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.facts .v { color: var(--on-dark); font-weight: 600; text-align: right; }
.facts .v .gold { color: var(--gold-2); }

/* =========================================================================
   PRODUKTION
   ========================================================================= */
.prod-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 880px) { .prod-grid { grid-template-columns: .95fr 1.05fr; } }
.prod-media { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.prod-media figure { border-radius: 14px; overflow: hidden; aspect-ratio: 1 / 2.1; border: 1px solid var(--cream-line); }
.prod-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.prod-media figure:hover img { transform: scale(1.06); }
.prod-media figure:nth-child(2) { transform: translateY(1.4rem); }

.chips { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.6rem 0 0; }
.chip {
  border: 1px solid var(--cream-line); border-radius: 100px;
  padding: .5rem 1rem; font-size: .9rem; color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: .5rem;
  transition: border-color .25s, color .25s, background .25s;
}
.chip::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.chip:hover { border-color: var(--gold); color: var(--ink); background: rgba(230,164,17,.06); }

.spinoffs { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-top: 2.2rem; }
.spin {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  border: 1px solid var(--cream-line); border-radius: var(--radius);
  padding: 1.3rem 1.5rem; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.spin:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 18px 34px -22px rgba(91,58,30,.5); }
.spin .t { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.1rem; }
.spin .u { font-family: "Space Mono", monospace; font-size: .78rem; color: var(--gold-deep); letter-spacing: .04em; }
.spin svg { color: var(--gold-deep); flex: none; }

/* =========================================================================
   PORTFOLIO — logo wall
   ========================================================================= */
.logo-grid {
  display: grid; gap: 1px; background: var(--panel-line);
  border: 1px solid var(--panel-line); border-radius: var(--radius); overflow: hidden;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 560px) { .logo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 820px) { .logo-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1040px){ .logo-grid { grid-template-columns: repeat(5, 1fr); } }
.logo-cell {
  background: var(--cream);
  aspect-ratio: 3 / 2;
  display: grid; place-items: center; padding: 1.4rem 1.2rem .9rem;
  position: relative; overflow: hidden;
}
.logo-cell img {
  max-height: 56px; max-width: 80%; width: auto; object-fit: contain;
  filter: grayscale(1); opacity: .62;
  transition: filter .35s var(--ease), opacity .35s var(--ease), transform .35s var(--ease);
}
.logo-cell:hover img, .logo-cell:focus-within img { filter: grayscale(0); opacity: 1; transform: scale(1.05); }
.logo-cell figcaption {
  position: absolute; inset: auto 0 0 0;
  font-family: "Space Mono", monospace; font-size: .62rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-soft);
  padding: .5rem; text-align: center;
  opacity: 0; transform: translateY(4px); transition: opacity .3s, transform .3s;
  background: linear-gradient(transparent, var(--cream-2));
}
.logo-cell:hover figcaption, .logo-cell:focus-within figcaption { opacity: 1; transform: translateY(0); }

.yt-row { margin-top: 2.4rem; display: flex; justify-content: center; }

/* =========================================================================
   KONTAKT
   ========================================================================= */
.contact-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr; }

.addr-block { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); align-items: start; }
.addr {
  border: 1px solid var(--panel-line); border-radius: var(--radius);
  padding: 1.5rem 1.6rem; background: var(--espresso-2);
}
.addr .k { font-family: "Space Mono", monospace; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-2); margin-bottom: .6rem; }
.addr address { font-style: normal; line-height: 1.6; color: var(--on-dark); }
.addr a { color: var(--gold-2); }
.addr a:hover { text-decoration: underline; }

.form-note { font-size: .8rem; color: var(--on-dark-dim); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-foot { background: var(--espresso-2); color: var(--on-dark); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; border-top: 1px solid var(--panel-line); }
.foot-top { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .foot-top { grid-template-columns: 1.4fr 1fr 1fr; } }
.foot-brand img { height: 47px; margin-bottom: 1rem; }
.foot-brand p { font-size: .9rem; max-width: 34ch; }
.foot-col h4 { font-family: "Space Mono", monospace; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 1rem; font-weight: 700; }
.foot-col a { display: block; padding-block: .35rem; color: var(--on-dark-dim); font-size: .95rem; transition: color .2s; }
.foot-col a:hover { color: var(--gold-2); }
.foot-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--panel-line);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-family: "Space Mono", monospace; font-size: .72rem; letter-spacing: .08em; color: var(--on-dark-dim);
}

/* =========================================================================
   SCROLL REVEAL
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* =========================================================================
   MOBILE NAV + responsive
   ========================================================================= */
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 0; z-index: 105;
    flex-direction: column; justify-content: center; gap: 1.6rem;
    background: rgba(22, 16, 11, .97); backdrop-filter: blur(8px);
    transform: translateX(100%); transition: transform .4s var(--ease);
  }
  body.menu-open .nav { transform: none; }
  .nav a { font-size: 1.4rem; opacity: 1; }
  .nav a::after { bottom: -4px; }
  .nav .btn { font-size: 1.05rem; padding: .8rem 1.8rem; }
}

@media (max-width: 760px) {
  .story-grid { grid-template-columns: 1fr; }
  .prod-media figure:nth-child(2) { transform: none; }
}

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