/* ============================================================
   SHIRT HAPPENS BY JENNY — Design System
   Stripe-inspired · Multi-color · Bold · Real · Jenny
   ============================================================ */

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   CSS VARIABLES — Jenny's full palette, not just one color
   ============================================================ */
/* Bangers font used for the comic-boom logo */
:root {
  /* Base */
  --bg-hero:    #FFFBF5;    /* warm cream hero */
  --bg-product: #FFF6ED;    /* soft sand products */
  --bg-about:   #F2F0FF;    /* cool lavender about */
  --bg-email:   #FFF1EE;    /* warm coral email */
  --bg-card:    #FFFFFF;
  --bg-nav:     rgba(255,251,245,0.88);

  /* Brand colors */
  --black:      #111111;
  --white:      #FFFFFF;
  --red:        #E31E24;
  --red-dark:   #B8151A;
  --red-glow:   rgba(227,30,36,0.18);

  /* Section accent colors — Stripe-inspired */
  --coral:      #FF5A4E;
  --orange:     #FF7A35;
  --gold:       #F59E0B;
  --teal:       #0D9488;
  --purple:     #7C3AED;
  --lavender:   #A78BFA;
  --mint:       #10B981;

  /* Grays */
  --gray-dark:  #3D3D3D;
  --gray-mid:   #888888;
  --gray-light: #E2E0DC;
  --gray-xlt:   #F5F3EF;

  /* Typography */
  --font-head:  'Bebas Neue', sans-serif;
  --font-body:  'Inter', sans-serif;

  /* Layout */
  --nav-h:      72px;
  --container:  1280px;
  --radius:     10px;
  --radius-lg:  18px;
  --radius-xl:  28px;
  --shadow:     0 2px 16px rgba(0,0,0,0.06);
  --shadow-md:  0 6px 28px rgba(0,0,0,0.10);
  --shadow-lg:  0 16px 56px rgba(0,0,0,0.13);
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   BASE
   ============================================================ */
body {
  font-family: var(--font-body);
  background: var(--bg-hero);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-red     { color: var(--red); }
.text-red-inv { color: rgba(255,255,255,0.6); }
.desktop-break { display: inline; }
@media (max-width: 768px) { .desktop-break { display: none; } }

/* Red square brand signature */
.red-square {
  display: inline-block;
  width: 13px;
  height: 13px;
  background: var(--red);
  flex-shrink: 0;
  border-radius: 2px;
}
.red-square.small { width: 8px;  height: 8px; }
.red-square.large { width: 28px; height: 28px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 100px;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: none;
  text-decoration: none;
}

.btn--primary {
  background: var(--black);
  color: var(--white);
  padding: 14px 28px;
}
.btn--primary:hover {
  background: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(227,30,36,0.3);
}

.btn--red {
  background: var(--red);
  color: var(--white);
  padding: 14px 28px;
}
.btn--red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(227,30,36,0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--black);
  padding: 13px 27px;
  border: 1.5px solid rgba(17,17,17,0.18);
}
.btn--ghost:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.btn--ghost-white {
  background: transparent;
  color: var(--white);
  padding: 13px 27px;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--ghost-white:hover {
  background: var(--white);
  color: var(--black);
}

.btn--white {
  background: var(--white);
  color: var(--black);
  padding: 14px 28px;
}
.btn--white:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--nav {
  background: var(--red);
  color: var(--white);
  padding: 9px 20px;
  font-size: 0.8rem;
  border-radius: 100px;
}
.btn--nav:hover { background: var(--red-dark); }

.btn--small {
  background: var(--black);
  color: var(--white);
  padding: 9px 18px;
  font-size: 0.78rem;
  border-radius: 100px;
}
.btn--small:hover {
  background: var(--red);
  transform: translateY(-1px);
}

.btn--lg { padding: 18px 40px; font-size: 0.95rem; }

/* ============================================================
   NAVIGATION — frosted glass on cream
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(255,251,245,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 40px;
  max-width: var(--container);
  margin: 0 auto;
}
@media (max-width: 768px) { .nav__inner { padding: 0 20px; } }

/* Hero starburst logo */
.hero__logo-burst {
  position: relative;
  width: 200px;
  height: 164px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__burst-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 24px rgba(255,230,0,0.5));
  animation: heroBurstSpin 18s linear infinite;
}
@keyframes heroBurstSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero__burst-words {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.85;
  user-select: none;
}
.hero__burst-shirt {
  font-family: 'Bangers', cursive;
  font-size: 2.8rem;
  color: var(--black);
  letter-spacing: 3px;
  -webkit-text-stroke: 1.5px var(--black);
  line-height: 1;
}
.hero__burst-happens {
  font-family: 'Bangers', cursive;
  font-size: 2.8rem;
  color: var(--red);
  letter-spacing: 3px;
  -webkit-text-stroke: 1.5px var(--black);
  line-height: 1;
}
.hero__burst-exclaim {
  position: absolute;
  top: -8px;
  right: -18px;
  font-family: 'Bangers', cursive;
  font-size: 1.8rem;
  color: var(--red);
  -webkit-text-stroke: 1px var(--black);
  animation: exclaim 1.6s ease-in-out infinite;
  z-index: 3;
}
@keyframes exclaim {
  0%, 100% { transform: rotate(10deg) scale(1);    }
  50%       { transform: rotate(22deg) scale(1.15); }
}

/* ── Nav Starburst Logo ── */
.nav__logo { display: flex; align-items: center; gap: 4px; text-decoration: none; }

/* The starburst mark in the nav */
.nav__logo-burst {
  position: relative;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav__burst-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: burstSpin 12s linear infinite;
}
@keyframes burstSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.nav__burst-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.85;
  margin-top: 1px;
}
.nav__burst-shirt {
  font-family: 'Bangers', cursive;
  font-size: 10px;
  color: var(--black);
  letter-spacing: 0.5px;
  line-height: 1;
}
.nav__burst-happens {
  font-family: 'Bangers', cursive;
  font-size: 10px;
  color: var(--red);
  letter-spacing: 0.5px;
  line-height: 1;
}

/* Text portion of nav logo */
.nav__logo-mark { flex-shrink: 0; border-radius: 5px; }
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
}
.nav__brand-top {
  font-family: var(--font-head);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1;
}
.nav__brand-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-mid);
  line-height: 1;
}
/* Keep old .nav__brand for other pages */
.nav__brand {
  font-family: var(--font-head);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--black);
  text-transform: uppercase;
}

.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-dark);
  transition: color var(--transition);
  text-decoration: none;
}
.nav__links a:hover { color: var(--black); }

.nav__cart-link { display: flex; align-items: center; gap: 6px; }
.cart-count {
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  transition: all var(--transition);
  border-radius: 2px;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--bg-hero);
  border-top: 1px solid var(--gray-light);
}
.nav__mobile a {
  padding: 16px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-dark);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  text-decoration: none;
}
.nav__mobile.open { display: flex; }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
}

/* ============================================================
   HERO — Split layout. Warm cream left · 3D colorful right
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111;  /* fallback while video loads */
}

/* Full-screen video background */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

/* Dark overlay — keeps text readable against any video frame */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.25) 50%,
    rgba(0,0,0,0.45) 100%
  );
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding: 140px 48px 100px 60px;
  max-width: 620px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 7px 16px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.hero__dot { color: #FF6B6B; font-size: 0.6rem; }

.hero__headline {
  font-family: 'Bangers', cursive;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.88;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  margin-bottom: 28px;
  text-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.text-red-bright { color: #FF4444; }

.hero__sub {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 440px;
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Ghost button variant for light-on-dark */
.btn--ghost-light {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

/* Scroll hint */
.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 44px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  opacity: 0.38;
}
.hero__scroll-indicator span {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--black), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top;    }
  60%  { transform: scaleY(1); transform-origin: top;    }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Sound toggle button */
.hero__sound-btn {
  position: absolute;
  bottom: 32px;
  right: 44px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 9px 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, opacity 0.6s;
  backdrop-filter: blur(6px);
}
.hero__sound-btn:hover { background: rgba(0,0,0,0.65); }
.hero__sound-btn .sound-icon { font-size: 16px; line-height: 1; }
.hero__sound-btn.sound-fade { opacity: 0.28; }
.hero__sound-btn.sound-fade:hover { opacity: 1; }

/* Mobile */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__inner {
    padding: 60px 20px 32px;
    text-align: center;
  }
  .hero__actions { justify-content: center; }
  .hero__eyebrow { margin-left: auto; margin-right: auto; }
  .hero__canvas-wrap { height: 320px; min-height: 320px; }
  .hero__scroll-indicator { display: none; }
}
@media (max-width: 480px) {
  .hero__headline { font-size: 4rem; }
  .hero__canvas-wrap { height: 240px; }
}

/* ============================================================
   TICKER — Black strip with red dots
   ============================================================ */
.ticker {
  overflow: hidden;
  white-space: nowrap;
  background: var(--black);
  padding: 14px 0;
}
.ticker__track {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  animation: ticker 32s linear infinite;
}
.ticker__track span {
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  color: var(--white);
}
.ticker__track .dot { color: var(--red); font-size: 0.5rem; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-header { text-align: center; margin-bottom: 60px; }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: 0.03em;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1;
}
.section-sub { font-size: 1rem; color: var(--gray-mid); }

/* ============================================================
   PRODUCTS — Matching shop page design
   ============================================================ */
.products {
  padding: 0;
  background: var(--bg-hero);
}

/* Dark banner header (matches page-hero style) */
.products__banner {
  background: var(--black);
  color: var(--white);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.products__banner::after {
  content: '';
  position: absolute;
  right: -60px; top: -40px;
  width: 340px; height: 340px;
  border: 60px solid rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}
.products__banner-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  margin-bottom: 12px;
}
.products__banner-sub {
  color: #AAAAAA;
  font-size: 1rem;
  max-width: 500px;
}

/* Body below the banner */
.products__body {
  background: var(--bg-hero);
  padding: 48px 0 80px;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
#homeShopGrid {
  grid-template-columns: repeat(3, 1fr);
}

/* 3D Tilt Cards */
.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
  transform-style: preserve-3d;
  will-change: transform;
  cursor: pointer;
}
.product-card:hover { box-shadow: var(--shadow-lg); }

.product-card__img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gray-xlt);
}
.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.product-card:hover .product-card__img-wrap img { transform: scale(1.05); }

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.product-card__info { padding: 20px; }
.product-card__info h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 6px;
  line-height: 1.2;
}
.product-card__desc {
  font-size: 0.8rem;
  color: var(--gray-mid);
  line-height: 1.5;
  margin-bottom: 16px;
}
.product-card__footer { display: flex; justify-content: space-between; align-items: center; }
.price {
  font-family: var(--font-head);
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: var(--black);
}
.products__cta { text-align: center; margin-top: 52px; }

.placeholder-img {
  background: var(--gray-xlt);
  display: flex; align-items: center; justify-content: center;
}
.placeholder-img__inner {
  display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 24px;
}
.placeholder-img__inner p {
  font-family: var(--font-head);
  font-size: 0.9rem; letter-spacing: 0.1em; color: var(--gray-mid); text-transform: uppercase;
}

@media (max-width: 1024px) { .products__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .products__grid { grid-template-columns: 1fr; } }

/* ============================================================
   STATEMENT — Bold red section
   ============================================================ */
.statement {
  background: var(--red);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Background color echo */
.statement::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,90,78,0.4) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(180,10,15,0.4) 0%, transparent 55%);
  pointer-events: none;
}
.statement::after {
  content: '■';
  position: absolute;
  bottom: -70px;
  right: -20px;
  font-size: 340px;
  color: rgba(0,0,0,0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.statement__square { display: none; }
.statement blockquote {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.statement p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.statement .btn { position: relative; z-index: 1; }

/* ============================================================
   ABOUT — Cool lavender/purple vibe
   ============================================================ */
.about {
  padding: 100px 0;
  background: var(--bg-about);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 20px;
}
.about__text h2 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.02em;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1;
}
.about__text p { font-size: 1rem; color: var(--gray-dark); line-height: 1.8; margin-bottom: 16px; }
.about__text strong { color: var(--black); }
.about__text .btn { margin-top: 8px; }

.about__visual { display: flex; justify-content: center; }
.about__square-stack { position: relative; width: 280px; height: 280px; }
.sq { position: absolute; border-radius: var(--radius); }
.sq--1 { inset: 0;    background: var(--purple);              transform: rotate(-8deg); }
.sq--2 { inset: 20px; background: rgba(255,255,255,0.7); transform: rotate(-2deg); border: 1px solid rgba(124,58,237,0.15); backdrop-filter: blur(4px); }
.sq--3 { inset: 40px; background: var(--bg-about);            transform: rotate(5deg); border: 1px solid rgba(124,58,237,0.1); }
.about__initials {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 5rem; letter-spacing: 0.08em; color: var(--black);
}

@media (max-width: 768px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__visual { display: none; }
}

/* ============================================================
   EMAIL SIGNUP — Warm coral gradient
   ============================================================ */
.email-signup {
  padding: 96px 40px;
  text-align: center;
  position: relative;
  background: var(--bg-email);
  overflow: hidden;
}
.email-signup::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255,90,78,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(255,122,53,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.email-signup h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.email-signup > p {
  font-size: 1rem;
  color: var(--gray-dark);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.email-signup__form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 100px;
  overflow: hidden;
  border: 1.5px solid rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
  backdrop-filter: blur(8px);
}
.email-signup__form input {
  flex: 1;
  padding: 16px 24px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  background: transparent;
  border: none;
  outline: none;
  color: var(--black);
}
.email-signup__form input::placeholder { color: var(--gray-mid); }
.email-signup__form button {
  padding: 14px 28px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 100px;
  margin: 4px;
  transition: background var(--transition);
  white-space: nowrap;
}
.email-signup__form button:hover { background: var(--red-dark); }

.email-signup__note {
  font-size: 0.78rem;
  color: var(--gray-mid);
  margin-top: 16px;
  position: relative;
  z-index: 1;
}
.email-signup__success {
  display: none;
  margin-top: 20px;
  color: var(--red);
  font-family: var(--font-head);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* ============================================================
   FOOTER — Deep charcoal
   ============================================================ */
.footer {
  background: #0F0F0F;
  padding: 64px 0 40px;
}
.footer__inner {
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 20px;
}
.footer__brand { display: flex; align-items: center; gap: 12px; }
.footer__name {
  font-family: var(--font-head);
  font-size: 1.35rem; letter-spacing: 0.08em;
  color: var(--white); text-transform: uppercase;
}
.footer__tagline {
  font-size: 0.8rem; color: var(--gray-mid);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.footer__social { display: flex; gap: 24px; align-items: center; margin: 8px 0; }
.footer__social a {
  color: var(--gray-mid);
  transition: color var(--transition), transform var(--transition);
}
.footer__social a:hover { color: var(--white); transform: translateY(-2px); }
.footer__bottom {
  margin-top: 12px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  width: 100%; display: flex; flex-direction: column; gap: 8px;
}
.footer__bottom p  { font-size: 0.78rem; color: var(--gray-mid); }
.footer__bottom a  { color: var(--gray-mid); transition: color var(--transition); }
.footer__bottom a:hover { color: var(--white); }

/* ============================================================
   FADE-UP ANIMATION
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
