/* ============================================
   DUDE JUICE — styles.css
   Charleston-inspired apparel launch page
   ============================================ */

/* --- FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Barlow:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* --- TOKENS --- */
:root {
  --cream:        #F5F0E8;
  --cream-dark:   #EDE5D5;
  --blue:         #4A7FA5;
  --blue-light:   #C8DCE8;
  --blue-wash:    #E8F1F7;
  --tan:          #C4A882;
  --tan-light:    #EAD9C0;
  --orange:       #E07A35;
  --orange-dark:  #C4612A;
  --navy:         #1E2E3D;
  --charcoal:     #2E3D4A;
  --warm-gray:    #8A7B6E;

  --font-display: 'Barlow Condensed', 'Impact', sans-serif;
  --font-body:    'Barlow', 'Georgia', sans-serif;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-pill:  999px;

  --shadow-sm:    0 2px 8px rgba(30,46,61,.08);
  --shadow-md:    0 4px 20px rgba(30,46,61,.12);
  --shadow-lg:    0 8px 40px rgba(30,46,61,.16);

  --max-w:        1160px;
  --section-py:   96px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font-family: inherit; }

/* --- UTILITY --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* Subtle grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); }

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--cream); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.btn-sm {
  font-size: .8rem;
  padding: 9px 18px;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245,240,232,.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--tan-light);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.65rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
}
.wordmark span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: .75;
  transition: opacity .15s, color .15s;
}
.nav-links a:hover { opacity: 1; color: var(--orange); }

.nav-cta { margin-left: 8px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid var(--tan-light);
  padding: 12px 24px 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 13px 0;
  border-bottom: 1px solid var(--tan-light);
  transition: color .15s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--orange); }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding-top: 68px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

/* Wave divider into next section */
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 72px;
  background: var(--blue-wash);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* Background decorative rings */
.hero-bg-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--tan-light);
  pointer-events: none;
}
.hero-bg-ring-1 { width: 600px; height: 600px; top: -200px; right: -160px; opacity: .4; }
.hero-bg-ring-2 { width: 900px; height: 900px; top: -350px; right: -350px; opacity: .2; }

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0 120px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tan-light);
  color: var(--charcoal);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}
.hero-badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--orange); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--warm-gray);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .83rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .15s;
}
.hero-link:hover { color: var(--orange); }

/* Hero inline form */
.hero-form-wrap {
  background: #fff;
  border: 1px solid var(--tan-light);
  border-radius: var(--radius-lg);
  padding: 24px 26px 20px;
  box-shadow: var(--shadow-sm);
}
.hero-form-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 12px;
}
.email-form {
  display: flex;
  gap: 10px;
}
.email-form input[type="email"] {
  flex: 1;
  padding: 13px 18px;
  border: 1.5px solid var(--tan-light);
  border-radius: var(--radius-pill);
  background: var(--cream);
  font-size: .93rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color .15s;
  min-width: 0;
}
.email-form input[type="email"]:focus { border-color: var(--blue); }
.email-form input[type="email"]::placeholder { color: var(--warm-gray); }
.email-form .btn { flex-shrink: 0; }

.form-micro {
  margin-top: 10px;
  font-size: .78rem;
  color: var(--warm-gray);
  text-align: center;
}

/* Form success state (light) */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px;
  border-radius: var(--radius-md);
  text-align: center;
  background: var(--blue-wash);
  border: 1px solid var(--blue-light);
}
.form-success.visible { display: flex; }
.form-success .success-icon {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
}
.form-success strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-success p { font-size: .85rem; color: var(--warm-gray); }

/* Dark theme success (signup section) */
.form-success.dark {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.15);
}
.form-success.dark strong { color: #fff; }
.form-success.dark p { color: rgba(255,255,255,.55); }

/* ============================================
   HERO VISUAL PANEL
   ============================================ */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-main {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  background: var(--blue-wash);
  border-radius: var(--radius-lg);
  border: 1px solid var(--blue-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Diagonal stripe pattern */
.hero-visual-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 22px,
    rgba(74,127,165,.06) 22px,
    rgba(74,127,165,.06) 23px
  );
}

/* Retro stamp / badge in center */
.hero-stamp {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px;
}
.hero-stamp-border {
  border: 3px solid var(--blue);
  border-radius: 4px;
  padding: 22px 36px;
  position: relative;
}
.hero-stamp-border::before,
.hero-stamp-border::after {
  content: '✦';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: .6rem;
  color: var(--blue);
  opacity: .5;
}
.hero-stamp-border::before { left: -14px; }
.hero-stamp-border::after  { right: -14px; }
.stamp-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.8rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.stamp-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 6px;
  display: block;
}
.stamp-divider {
  width: 40px;
  height: 2px;
  background: var(--orange);
  margin: 10px auto;
}
.stamp-location {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--warm-gray);
  display: block;
}

/* Floating sticker badges */
.hero-sticker {
  position: absolute;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 3px 12px rgba(0,0,0,.15);
  white-space: nowrap;
}
.hero-sticker.s1 { top: 22px; right: -14px; transform: rotate(5deg);  background: var(--orange); color: #fff; }
.hero-sticker.s2 { bottom: 44px; left: -16px; transform: rotate(-3deg); background: var(--navy);   color: #fff; }
.hero-sticker.s3 { top: 48%; right: -20px; transform: translateY(-50%) rotate(2deg); background: var(--tan-light); color: var(--navy); }

/* Bottom product row */
.hero-products {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
  padding: 0 16px;
}
.hero-product-chip {
  background: #fff;
  border: 1px solid var(--blue-light);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .65rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--charcoal);
  white-space: nowrap;
}

/* ============================================
   SECTION HELPERS
   ============================================ */
.section-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 10px;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  letter-spacing: .03em;
  text-transform: uppercase;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-copy {
  font-size: 1rem;
  color: var(--warm-gray);
  max-width: 560px;
  line-height: 1.72;
  margin-bottom: 48px;
}

/* ============================================
   FIRST DROP
   ============================================ */
.first-drop {
  background: var(--blue-wash);
  padding: var(--section-py) 0;
}

.first-drop-header {
  text-align: center;
  margin-bottom: 52px;
}
.first-drop-header .section-copy {
  margin: 0 auto;
}

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

.product-card {
  background: #fff;
  border: 1px solid var(--blue-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.product-card-img {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Diagonal stripe on card art */
.product-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 14px,
    rgba(0,0,0,.04) 14px,
    rgba(0,0,0,.04) 15px
  );
}

.product-card:nth-child(1) .product-card-img { background: #EDDFC8; }
.product-card:nth-child(2) .product-card-img { background: #C8DCE8; }
.product-card:nth-child(3) .product-card-img { background: #E8E0D5; }
.product-card:nth-child(4) .product-card-img { background: #D5E8D8; }

.product-icon {
  position: relative;
  z-index: 1;
  text-align: center;
}
.product-icon-glyph {
  font-size: 3.2rem;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.product-icon-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: .4;
}

.product-card-body {
  padding: 18px 20px 22px;
}
.product-card-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.product-card-body p {
  font-size: .875rem;
  color: var(--warm-gray);
  line-height: 1.55;
}

.first-drop-footer {
  text-align: center;
  margin-top: 48px;
}
.drop-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
}
.drop-note::before {
  content: '★';
  font-size: .7rem;
}

/* ============================================
   THE VIBE
   ============================================ */
.vibe {
  background: var(--cream);
  padding: var(--section-py) 0;
}

.vibe-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.vibe-content .section-copy { margin-bottom: 0; }

.vibe-pillars {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.vibe-pillar {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.vibe-pillar-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: var(--tan-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}
.vibe-pillar-text h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}
.vibe-pillar-text p {
  font-size: .875rem;
  color: var(--warm-gray);
  line-height: 1.55;
}

/* Decorative stacked cards on right side of vibe */
.vibe-visual {
  position: relative;
  min-height: 420px;
}
.vibe-card-stack {
  position: relative;
  width: 100%;
  height: 420px;
}
.vibe-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--tan-light);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-md);
  width: 260px;
}
.vibe-card:nth-child(1) { top: 20px;  left: 0;   transform: rotate(-5deg); z-index: 1; background: var(--tan-light); }
.vibe-card:nth-child(2) { top: 60px;  left: 60px; transform: rotate(2deg);  z-index: 2; }
.vibe-card:nth-child(3) { top: 120px; left: 30px; transform: rotate(-1deg); z-index: 3; background: var(--blue-wash); }

.vibe-card-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.vibe-card-tag {
  display: inline-block;
  background: var(--blue-wash);
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}
.vibe-card p {
  font-size: .83rem;
  color: var(--warm-gray);
  line-height: 1.5;
}

/* ============================================
   EMAIL SIGNUP (DARK)
   ============================================ */
.signup {
  background: var(--navy);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
.signup::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -60deg,
    transparent,
    transparent 28px,
    rgba(255,255,255,.018) 28px,
    rgba(255,255,255,.018) 29px
  );
  pointer-events: none;
}

.signup-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.signup-inner .section-label { color: var(--tan); }
.signup-inner .section-heading { color: #fff; }
.signup-inner .section-copy {
  color: rgba(255,255,255,.6);
  margin: 0 auto 40px;
}

.signup-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}
.signup-form input[type="email"] {
  flex: 1;
  padding: 15px 20px;
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.07);
  color: #fff;
  font-size: .93rem;
  outline: none;
  transition: border-color .15s;
  min-width: 0;
}
.signup-form input[type="email"]:focus { border-color: var(--orange); }
.signup-form input[type="email"]::placeholder { color: rgba(255,255,255,.38); }

.signup-micro {
  margin-top: 14px;
  font-size: .78rem;
  color: rgba(255,255,255,.38);
  text-align: center;
}

/* ============================================
   INSTAGRAM
   ============================================ */
.instagram {
  background: var(--tan-light);
  padding: var(--section-py) 0;
}

.instagram-inner {
  text-align: center;
}
.instagram-inner .section-copy { margin: 0 auto 28px; }

.ig-handle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: .04em;
  color: var(--navy);
  margin-bottom: 28px;
}
.ig-icon { font-size: 1.4rem; }

/* Placeholder IG grid */
.ig-grid-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 640px;
  margin: 0 auto 36px;
}
.ig-grid-cell {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  background: var(--tan);
  opacity: .22;
  transition: opacity .2s;
}
.ig-grid-cell:nth-child(even) { background: var(--blue); opacity: .18; }
.ig-grid-cell:hover { opacity: .38; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.55);
  padding: 56px 0 28px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
}

.footer-brand .wordmark { color: #fff; font-size: 1.4rem; }
.footer-brand .wordmark span { color: var(--orange); }
.footer-brand p {
  margin-top: 8px;
  font-size: .83rem;
  color: rgba(255,255,255,.4);
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
  align-items: center;
}
.footer-links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  transition: color .15s;
}
.footer-links a:hover { color: var(--orange); }

.footer-bottom {
  padding-top: 22px;
  font-size: .78rem;
  color: rgba(255,255,255,.28);
  text-align: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .vibe-inner   { grid-template-columns: 1fr; gap: 56px; }
  .vibe-visual  { display: none; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }

  /* Hide desktop nav, show hamburger */
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 52px 0 100px;
  }
  .hero-visual { display: none; }
  .hero h1 { font-size: 2.3rem; }

  /* Inline email form stacks */
  .email-form { flex-direction: column; }
  .email-form .btn { width: 100%; justify-content: center; }

  /* Product grid */
  .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* Signup form stacks */
  .signup-form { flex-direction: column; }
  .signup-form .btn { width: 100%; justify-content: center; }

  /* IG grid */
  .ig-grid-preview { grid-template-columns: repeat(3, 1fr); }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 24px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .ig-grid-preview { grid-template-columns: repeat(2, 1fr); }
  .hero-badge { font-size: .68rem; }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anim-fade-up {
  opacity: 0;
}
.anim-fade-up.visible {
  animation: fadeUp .55s ease forwards;
}
.anim-fade-up.d1 { animation-delay: .05s; }
.anim-fade-up.d2 { animation-delay: .12s; }
.anim-fade-up.d3 { animation-delay: .20s; }
.anim-fade-up.d4 { animation-delay: .28s; }
