/* ===========================================
   Mister Ceaunescu — Styles
   =========================================== */

/* === DESIGN TOKENS (inlined from variables.css) === */
:root {
  --gold: #ff6a00;
  --gold-light: #ffd200;
  --gold-dim: rgba(255, 106, 0, 0.2);
  --fire: #ee0979;
  --dark-bg: #000;
  --dark-surface: #0a0a0a;
  --dark-overlay: rgba(0, 0, 0, 0.8);
  --white: #fff;
  --cream: #bbb;
  --cream-light: #fff;
  --font-display: 'IntroRust', serif;
  --font-script: 'Selima', cursive;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 3.5rem;
  --space-2xl: 5rem;
  --container: 1200px;
  --container-narrow: 900px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.4s;
  --duration-slow: 0.8s;
  --radius: 4px;
  --radius-lg: 8px;
}

/* --- Fonts --- */
@font-face {
  font-family: 'IntroRust';
  src: url('../fonts/introrust.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Selima';
  src: url('../fonts/selima.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* Barlow + Barlow Condensed loaded via <link> in HTML head */


/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cream-light);
  background: var(--dark-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--duration) var(--ease); }
a:hover { color: var(--gold-light); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea { font: inherit; }

/* --- Screen reader only --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Global focus-visible --- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* --- Skip link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark-bg);
  padding: 0.5rem 1.5rem;
  z-index: 1000;
  border-radius: var(--radius);
  font-weight: 700;
}
.skip-link:focus { top: 1rem; }

/* --- Container --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-md); }
.container--narrow { max-width: var(--container-narrow); }

/* --- Section --- */
.section {
  padding: var(--space-2xl) 0;
  position: relative;
}
#brand {
  padding-top: var(--space-md);
  padding-bottom: 0;
}
#contact {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}
.section--dark { background: var(--dark-bg); }
.section--surface { background: var(--dark-surface); }

/* --- Typography --- */
/* Fire gradient text effect */
.fire-text {
  background: linear-gradient(135deg, #ff6a00 0%, #ee0979 40%, #ff6a00 70%, #ffd200 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.heading {
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-sm);
  background: linear-gradient(135deg, #ff6a00 0%, #ee0979 40%, #ff6a00 70%, #ffd200 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.heading--display {
  font-family: var(--font-display);
  text-transform: uppercase;
}
.subheading {
  font-family: var(--font-heading);
  color: var(--cream-light);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.5;
  margin-bottom: var(--space-md);
  font-weight: 400;
}
/* Section counter */
.section-counter {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--fire);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xs);
  display: block;
}
.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff6a00, #ee0979, #ffd200);
  margin: var(--space-sm) auto var(--space-md);
  border-radius: 2px;
}
.text-center { text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.875rem 2.5rem;
  border: 2px solid var(--gold);
  color: var(--white);
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}
.btn:hover {
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  border-color: #ff6a00;
  color: var(--white);
}
.btn--solid {
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  border-color: transparent;
  color: var(--white);
}
.btn--solid:hover {
  background: linear-gradient(135deg, #ff8533, #ff1a8c);
  color: var(--white);
}

/* ===========================
   HEADER / NAV
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.75rem 0;
  background: var(--dark-bg);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.header__logo {
  height: 36px;
  width: auto;
  image-rendering: -webkit-optimize-contrast;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
}
.header__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header__brand-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  background: linear-gradient(135deg, #ff6a00, #ee0979, #ff6a00, #ffd200);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.header__brand-emoji {
  font-size: 1rem;
  -webkit-text-fill-color: initial;
}

.nav__list {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}
.nav__link {
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--duration) var(--ease), left var(--duration) var(--ease);
}
.nav__link:hover::after,
.nav__link:focus::after {
  width: 100%;
  left: 0;
}
.nav__link:hover, .nav__link:focus { color: var(--gold); }

.nav__lang {
  font-size: 0.75rem;
  color: var(--cream);
  border: 1px solid var(--cream);
  padding: 0.5rem 0.75rem;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}
.nav__lang:hover { border-color: var(--gold); color: var(--gold); }

.nav__social {
  display: flex;
  gap: 0.75rem;
  margin-left: var(--space-sm);
}
.nav__social a { color: #fff; padding: 8px; min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
.nav__social a:hover { color: var(--gold); }
.nav__social svg { width: 18px; height: 18px; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 10px 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: all var(--duration) var(--ease);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--dark-bg);
  padding: var(--space-lg) var(--space-md);
  transition: right var(--duration-slow) var(--ease-out);
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  overflow-y: auto;
}
.mobile-nav--open { right: 0; }
.mobile-nav__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  z-index: 10;
  transition: color var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.mobile-nav__close:hover {
  color: var(--fire);
  transform: rotate(90deg);
}
.mobile-nav .nav__link {
  display: block;
  font-size: 1.1rem;
  padding: 0.4rem 0;
}
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration) var(--ease);
}
.mobile-overlay--visible { opacity: 1; pointer-events: auto; }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    var(--dark-bg) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-md);
}
.hero__logo {
  width: 250px;
  height: auto;
  margin: 0 auto var(--space-md);
  animation: fadeIn 1s var(--ease) both;
  filter: drop-shadow(0 4px 12px rgba(255, 106, 0, 0.3));
}
.hero__title {
  font-family: var(--font-script);
  font-size: clamp(3rem, 10vw, 7rem);
  background: linear-gradient(135deg, #ff6a00 0%, #ee0979 40%, #ff6a00 70%, #ffd200 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: var(--space-sm);
  animation: fadeIn 1s var(--ease) 0.2s both;
}
.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.75rem);
  color: var(--white);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  animation: fadeIn 1s var(--ease) 0.4s both;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  z-index: 2;
  color: var(--cream);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  animation: fadeIn 1s var(--ease) 1.5s both;
  text-align: center;
}
.hero__scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: scrollBounce 2s var(--ease) infinite;
}

/* Ember particles */
.embers {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.ember {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  filter: blur(0.5px);
  animation: emberFloat 6s var(--ease) infinite;
}
.ember:nth-child(1) { left: 15%; bottom: 0; animation-delay: 0s; animation-duration: 5s; }
.ember:nth-child(2) { left: 35%; bottom: 0; animation-delay: 1.5s; animation-duration: 7s; }
.ember:nth-child(3) { left: 60%; bottom: 0; animation-delay: 3s; animation-duration: 6s; }
.ember:nth-child(4) { left: 80%; bottom: 0; animation-delay: 4.5s; animation-duration: 5.5s; }
.ember:nth-child(5) { left: 45%; bottom: 0; animation-delay: 2s; animation-duration: 8s; width: 2px; height: 2px; }
.ember:nth-child(6) { left: 70%; bottom: 0; animation-delay: 0.5s; animation-duration: 6.5s; width: 4px; height: 4px; }

/* ===========================
   BRAND STATEMENT
   =========================== */
.brand {
  padding: var(--space-2xl) 0;
}
.brand__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.brand__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 2px solid rgba(255, 106, 0, 0.5);
  box-shadow:
    0 0 12px rgba(255, 106, 0, 0.4),
    0 0 30px rgba(255, 106, 0, 0.2),
    0 0 50px rgba(238, 9, 121, 0.12);
  animation: fireGlow 3s ease-in-out infinite alternate;
}
.brand__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand__text {
  text-align: center;
}
.brand__text p {
  margin-bottom: var(--space-sm);
  font-size: 1.05rem;
}
.brand__cta {
  margin-top: var(--space-md);
}

/* Social proof bar */
.proof-bar {
  display: flex;
  justify-content: space-between;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  margin-top: var(--space-lg);
  margin-bottom: 0;
}
.proof-item {
  text-align: center;
  flex: 1;
}
.proof-item__value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(135deg, #ff6a00 0%, #ee0979 40%, #ff6a00 70%, #ffd200 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.proof-item__label {
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream);
}

/* ===========================
   VIDEOS
   =========================== */
.videos {
  background: var(--dark-surface);
  padding: var(--space-2xl) 0;
}
.videos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  background: var(--dark-bg);
  border: 2px solid rgba(255, 106, 0, 0.5);
  box-shadow:
    0 0 12px rgba(255, 106, 0, 0.4),
    0 0 30px rgba(255, 106, 0, 0.2),
    0 0 50px rgba(238, 9, 121, 0.12),
    inset 0 0 15px rgba(255, 106, 0, 0.05);
  transition: box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
  animation: fireGlow 3s ease-in-out infinite alternate;
}
@keyframes fireGlow {
  0% {
    box-shadow:
      0 0 12px rgba(255, 106, 0, 0.4),
      0 0 30px rgba(255, 106, 0, 0.2),
      0 0 50px rgba(238, 9, 121, 0.12),
      inset 0 0 15px rgba(255, 106, 0, 0.05);
    border-color: rgba(255, 106, 0, 0.5);
  }
  100% {
    box-shadow:
      0 0 18px rgba(255, 106, 0, 0.55),
      0 0 40px rgba(255, 106, 0, 0.3),
      0 0 60px rgba(238, 9, 121, 0.2),
      inset 0 0 20px rgba(255, 106, 0, 0.08);
    border-color: rgba(255, 140, 0, 0.7);
  }
}
.video-card:hover {
  border-color: rgba(255, 106, 0, 0.8);
  box-shadow:
    0 0 20px rgba(255, 106, 0, 0.5),
    0 0 45px rgba(255, 106, 0, 0.3),
    0 0 70px rgba(238, 9, 121, 0.2),
    0 4px 20px rgba(0,0,0,0.4);
  animation: none;
}
.video-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease);
}
.video-card:hover .video-card__thumb { transform: scale(1.05); }
.video-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-md);
}
.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration) var(--ease);
}
.video-card:hover .video-card__play {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
}
.video-card__play svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
  margin-left: 3px;
}
.video-card:hover .video-card__play svg { fill: var(--dark-bg); }
.video-card__title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.3;
}
.video-card__desc {
  font-size: 0.8rem;
  color: var(--cream);
  margin-top: 0.25rem;
}
/* iframe loaded state */
.video-card--playing {
  cursor: default;
  position: relative;
}
.video-card--playing iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-lg);
}
.videos__cta {
  text-align: center;
  margin-top: var(--space-lg);
}

/* ===========================
   OUR STORY
   =========================== */
.story {
  padding: var(--space-2xl) 0;
}
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: var(--space-lg);
  align-items: center;
}
.story__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 7 / 4;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 106, 0, 0.5);
    box-shadow:
      0 0 12px rgba(255, 106, 0, 0.4),
      0 0 30px rgba(255, 106, 0, 0.2),
      0 0 50px rgba(238, 9, 121, 0.12);
    animation: fireGlow 3s ease-in-out infinite alternate;
  }
.story__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
  }
.story__text {
  text-align: center;
}
.story__text p {
  margin-bottom: var(--space-sm);
  font-size: 1.05rem;
}
.story__badges {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  margin-top: var(--space-md);
  flex-wrap: wrap;
}
.story__badges img {
  height: 50px;
  width: auto;
  opacity: 0.8;
  transition: opacity var(--duration) var(--ease);
}
.story__badges img:hover { opacity: 1; }

/* ===========================
   CONTACT
   =========================== */
.contact {
  background: var(--dark-surface);
  padding: var(--space-2xl) 0;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}
.contact__form { display: flex; flex-direction: column; gap: var(--space-sm); }
.form-group { display: flex; flex-direction: column; gap: 0.25rem; }
.contact__label {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream);
}
.contact__input,
.contact__textarea {
  background: var(--dark-bg);
  border: 1px solid rgba(189, 165, 73, 0.2);
  color: var(--white);
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  transition: border-color var(--duration) var(--ease);
}
.contact__input:focus,
.contact__textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-color: var(--gold);
}
.contact__input::placeholder,
.contact__textarea::placeholder { color: var(--cream); }
.contact__textarea { min-height: 140px; resize: vertical; }
.contact__consent {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: #fff;
  line-height: 1.5;
  padding: 0.5rem 0;
}
.contact__consent input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}
.contact__consent a { color: var(--gold); }
/* Honeypot - hidden from humans */
.contact__hp { position: absolute; left: -9999px; opacity: 0; height: 0; }

.contact__info {
  text-align: center;
}
.contact__info h3 {
  font-family: var(--font-script);
  font-size: 2rem;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, #ff6a00 0%, #ee0979 40%, #ff6a00 70%, #ffd200 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact__detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: var(--space-sm);
  color: var(--cream-light);
}
.contact__detail svg { width: 20px; height: 20px; color: #fff; flex-shrink: 0; }
.contact__collab {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--gold-dim);
}
.contact__collab h4 {
  font-family: var(--font-script);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ff6a00 0%, #ee0979 40%, #ff6a00 70%, #ffd200 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
.contact__social a {
  color: #fff;
  transition: color var(--duration) var(--ease);
}
.contact__social a:hover { color: var(--gold); }
.contact__social svg { width: 24px; height: 24px; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  padding: var(--space-lg) 0 var(--space-md);
  text-align: center;
  border-top: 1px solid var(--gold-dim);
}
.footer__logo {
  height: 80px;
  width: auto;
  display: block;
  margin: 0 auto var(--space-sm);
  transform: translateY(8px);
}
.footer__tagline {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--cream-light);
  margin-bottom: var(--space-md);
}
.footer__social {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.footer__social a { color: #fff; }
.footer__social a:hover { color: var(--gold); }
.footer__social svg { width: 22px; height: 22px; }
.footer__anpc {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
}
.anpc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255,106,0,0.4);
  border-radius: var(--radius);
  color: var(--gold);
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--duration) var(--ease);
}
.anpc-badge:hover {
  background: rgba(255,106,0,0.1);
  border-color: var(--gold);
  color: var(--gold-light);
}
.anpc-badge svg {
  color: var(--gold);
}
.footer__links {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
  font-size: 0.8rem;
}
.footer__links a { color: var(--cream); }
.footer__copy {
  font-size: 0.75rem;
  color: var(--cream);
}

/* ===========================
   COOKIE CONSENT
   =========================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-surface);
  border-top: 1px solid var(--gold-dim);
  padding: var(--space-sm) var(--space-md);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.cookie-banner--visible { display: flex; }
.cookie-banner__text {
  font-size: 0.85rem;
  color: var(--cream-light);
  max-width: 600px;
}
.cookie-banner__text a { color: var(--gold); }
.cookie-banner__actions {
  display: flex;
  gap: var(--space-xs);
}
.cookie-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--duration) var(--ease);
}
.cookie-btn--accept {
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  color: var(--white);
}
.cookie-btn--accept:hover { background: linear-gradient(135deg, #ff8533, #ff1a8c); }
.cookie-btn--decline {
  border: 1px solid var(--cream);
  color: var(--cream);
}
.cookie-btn--decline:hover { border-color: var(--gold); color: var(--gold); }

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(8px); }
}
@keyframes emberFloat {
  0% { opacity: 0; transform: translateY(0) scale(1); }
  10% { opacity: 0.8; }
  50% { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-80vh) translateX(30px) scale(0.3); }
}

/* Fire section with animated flames */
.fire-section {
  position: relative;
  overflow: hidden;
  background: var(--dark-bg);
  margin-top: 0;
  padding-top: var(--space-md);
}
.fire-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
/* Bottom fire glow */
.fire-particles::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top,
    rgba(255, 80, 0, 0.25) 0%,
    rgba(255, 106, 0, 0.12) 30%,
    rgba(238, 9, 121, 0.05) 60%,
    transparent 100%);
  animation: fireBaseGlow 2s ease-in-out infinite alternate;
}
/* Top fire glow */
.fire-particles::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom,
    rgba(255, 80, 0, 0.15) 0%,
    rgba(255, 106, 0, 0.06) 40%,
    transparent 100%);
  animation: fireBaseGlow 2.5s ease-in-out infinite alternate-reverse;
}
@keyframes fireBaseGlow {
  0%   { opacity: 0.6; }
  100% { opacity: 1; }
}
/* Flame tongues */
.spark {
  position: absolute;
  bottom: -20px;
  width: 20px;
  height: 60px;
  border-radius: 50% 50% 50% 50% / 70% 70% 30% 30%;
  background: linear-gradient(to top, #ff4500, #ff6a00 40%, #ffd200 80%, transparent);
  filter: blur(4px);
  opacity: 0;
  animation: flameRise ease-in-out infinite;
}
.spark:nth-child(1)  { left: 3%;  width: 18px; height: 70px; animation-duration: 1.8s; animation-delay: 0s; }
.spark:nth-child(2)  { left: 12%; width: 14px; height: 50px; animation-duration: 2.2s; animation-delay: 0.3s; }
.spark:nth-child(3)  { left: 22%; width: 22px; height: 80px; animation-duration: 1.5s; animation-delay: 0.7s; }
.spark:nth-child(4)  { left: 32%; width: 16px; height: 55px; animation-duration: 2.0s; animation-delay: 0.1s; }
.spark:nth-child(5)  { left: 42%; width: 20px; height: 65px; animation-duration: 1.7s; animation-delay: 0.5s; }
.spark:nth-child(6)  { left: 52%; width: 24px; height: 90px; animation-duration: 1.4s; animation-delay: 0.9s; }
.spark:nth-child(7)  { left: 62%; width: 15px; height: 45px; animation-duration: 2.3s; animation-delay: 0.2s; }
.spark:nth-child(8)  { left: 72%; width: 20px; height: 75px; animation-duration: 1.6s; animation-delay: 0.6s; }
.spark:nth-child(9)  { left: 82%; width: 18px; height: 60px; animation-duration: 1.9s; animation-delay: 0.4s; }
.spark:nth-child(10) { left: 90%; width: 22px; height: 70px; animation-duration: 1.5s; animation-delay: 0.8s; }
.spark:nth-child(11) { left: 47%; width: 16px; height: 55px; animation-duration: 2.1s; animation-delay: 1.0s; }
.spark:nth-child(12) { left: 7%;  width: 14px; height: 40px; animation-duration: 2.4s; animation-delay: 1.2s; }
@keyframes flameRise {
  0%   { opacity: 0; transform: translateY(0) scaleY(0.5) scaleX(1); }
  20%  { opacity: 0.7; transform: translateY(-10px) scaleY(1) scaleX(1.1); }
  40%  { opacity: 0.9; transform: translateY(-25px) scaleY(1.2) scaleX(0.8); }
  60%  { opacity: 0.6; transform: translateY(-45px) scaleY(0.9) scaleX(1.2); }
  80%  { opacity: 0.3; transform: translateY(-65px) scaleY(0.6) scaleX(0.7); }
  100% { opacity: 0; transform: translateY(-90px) scaleY(0.3) scaleX(0.4); }
}
/* Embers (small floating fire bits) */
.ember {
  position: absolute;
  bottom: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffd200, #ff6a00);
  box-shadow: 0 0 8px 3px rgba(255,106,0,0.5);
  filter: blur(1px);
  opacity: 0;
  animation: emberDrift ease-out infinite;
}
.ember:nth-child(13) { left: 10%; animation-duration: 3.5s; animation-delay: 0.5s; }
.ember:nth-child(14) { left: 35%; animation-duration: 4.0s; animation-delay: 1.5s; }
.ember:nth-child(15) { left: 55%; animation-duration: 3.2s; animation-delay: 0.8s; }
.ember:nth-child(16) { left: 75%; animation-duration: 3.8s; animation-delay: 2.0s; }
.ember:nth-child(17) { left: 25%; animation-duration: 4.5s; animation-delay: 0.2s; }
.ember:nth-child(18) { left: 85%; animation-duration: 3.0s; animation-delay: 1.0s; }
@keyframes emberDrift {
  0%   { opacity: 0; transform: translateY(0) translateX(0); }
  15%  { opacity: 0.8; }
  50%  { opacity: 0.5; transform: translateY(-120px) translateX(20px); }
  100% { opacity: 0; transform: translateY(-250px) translateX(-10px); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out);
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children */
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.2s; }

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

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .brand__grid { grid-template-columns: 1fr; }
  .story__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .proof-bar { gap: var(--space-md); flex-wrap: wrap; }
}

/* Mobile nav brand logo */
.mobile-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--gold-dim);
  margin-bottom: 0.25rem;
}
.mobile-nav__brand img {
  width: 40px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(255, 106, 0, 0.3));
  flex-shrink: 0;
}
.mobile-nav__brand .header__brand-text {
  font-size: 1.1rem;
  display: block;
}

@media (max-width: 1000px) {
  .nav__list { display: none; }
  .hamburger { display: flex; }
  .header__brand-text { font-size: 1rem; }
  .header__brand-emoji { display: none; }
}

@media (max-width: 768px) {
  .videos__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(2rem, 10vw, 3.5rem); }
  .section { padding: var(--space-xl) 0; }
  .proof-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
  .proof-item__value { font-size: clamp(2rem, 8vw, 3rem); }
  .proof-item__label { font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--space-sm); }
  .hero__logo { width: 150px; }
  .header__brand-text { font-size: 0.85rem; }
  .cookie-banner { flex-direction: column; text-align: center; }
}
