/* ============================================================
   BAKED BY BAZZ — main.css
   Full brand stylesheet v1.0
   Palette: Orange #D4602A · Gold #E8A034 · Sage #4A8C6E
            Sage mist #C8E3D8 · Cloud Dancer #F4F0EB
            Near black #1A1A1A · Warm stone #6B5B4E
   ============================================================ */

/* ── 1. DESIGN TOKENS ── */
:root {
  --orange:       #D4602A;
  --orange-light: #FDE8D8;
  --orange-dark:  #B04E20;
  --orange-glow:  rgba(212,96,42,0.15);
  --gold:         #E8A034;
  --gold-light:   #FDF5E4;
  --sage:         #4A8C6E;
  --sage-mist:    #C8E3D8;
  --sage-dark:    #2D6B52;
  --cloud:        #F4F0EB;
  --cloud-dark:   #E8E0D6;
  --near-black:   #1A1A1A;
  --stone:        #6B5B4E;
  --stone-light:  #9C8878;
  --border:       #E0D8CE;
  --serif:        'DM Serif Display', Georgia, serif;
  --sans:         'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:    0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:    0 8px 32px rgba(0,0,0,0.12), 0 4px 8px rgba(0,0,0,0.06);
  --shadow-orange:0 4px 20px rgba(212,96,42,0.3);
  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --radius-full:  999px;
  --transition:   0.18s ease;
}

/* ── 2. RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--cloud);
  color: var(--near-black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--sans); }

/* ── 3. TYPOGRAPHY ── */
h1, h2, h3, h4 { line-height: 1.1; }
.serif { font-family: var(--serif); }

/* ── 4. ANNOUNCE BAR ── */
.announce-bar {
  background: var(--near-black);
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}
.announce-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.85); }
}
.announce-text { font-size: 12px; color: var(--sage-mist); font-weight: 500; }
.announce-link {
  font-size: 12px; color: var(--gold); font-weight: 700;
  white-space: nowrap; cursor: pointer;
  transition: opacity var(--transition);
}
.announce-link:hover { opacity: 0.8; text-decoration: underline; }
.announce-close {
  position: absolute; right: 16px;
  background: none; border: none; color: var(--stone-light);
  font-size: 13px; cursor: pointer; padding: 4px 6px;
  transition: color var(--transition);
}
.announce-close:hover { color: var(--cloud); }

/* ── 5. NAVBAR ── */
.site-header { position: sticky; top: 0; z-index: 200; }
.navbar {
  background: var(--orange);
  padding: 0 40px;
  height: 62px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 12px rgba(212,96,42,0.25);
}
.nav-brand {
  display: flex; flex-direction: column; gap: 1px;
  text-decoration: none;
}
.nav-brand-name {
  font-family: var(--serif);
  font-size: 20px; color: var(--cloud);
  letter-spacing: 0.01em; line-height: 1.1;
}
.nav-brand-loc {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #FCCFB8;
}
.nav-links {
  display: flex; gap: 26px;
  margin-left: auto; align-items: center;
}
.nav-link, .nav-links a {
  font-size: 13px; font-weight: 600;
  color: #FCCFB8; cursor: pointer;
  transition: color var(--transition);
  text-decoration: none;
}
.nav-link:hover, .nav-links a:hover { color: var(--cloud); }
.nav-cta {
  background: var(--cloud); color: var(--orange);
  font-size: 12px; font-weight: 700;
  padding: 9px 20px; border-radius: var(--radius-full);
  cursor: pointer; margin-left: 8px;
  transition: background var(--transition), transform 0.1s;
  white-space: nowrap; border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.nav-cta:hover { background: #fff; transform: scale(1.03); }

/* Hamburger */
.nav-hamburger {
  display: none; background: none; border: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; margin-left: auto;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--cloud); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* WP nav menu reset */
.nav-menu { display: contents; list-style: none; }
.nav-menu li { display: contents; }
.nav-menu li a {
  font-size: 13px; font-weight: 600;
  color: #FCCFB8; transition: color var(--transition);
}
.nav-menu li a:hover { color: var(--cloud); }

/* ── 6. PICKUP BAR ── */
.pickup-bar {
  background: var(--sage);
  padding: 11px 40px;
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
}
.pickup-icon { color: var(--sage-mist); flex-shrink: 0; }
.pickup-label { font-size: 12px; font-weight: 600; color: var(--sage-mist); }
.pickup-time  { font-size: 12px; font-weight: 700; color: var(--cloud); }
.pickup-sep   { width: 1px; height: 14px; background: var(--sage-dark); margin: 0 4px; }
.pickup-cta {
  margin-left: auto;
  background: var(--cloud); color: var(--sage-dark);
  font-size: 11px; font-weight: 700;
  padding: 6px 16px; border-radius: var(--radius-full);
  cursor: pointer; white-space: nowrap;
  transition: background var(--transition);
  text-decoration: none;
}
.pickup-cta:hover { background: var(--sage-mist); }

/* ── 7. BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange); color: var(--cloud);
  font-size: 14px; font-weight: 700;
  padding: 14px 30px; border-radius: var(--radius-full);
  border: none; cursor: pointer;
  transition: background var(--transition), transform 0.1s, box-shadow var(--transition);
  box-shadow: var(--shadow-orange);
  white-space: nowrap; text-decoration: none;
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212,96,42,0.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: var(--sage);
  font-size: 14px; font-weight: 700;
  padding: 13px 26px; border-radius: var(--radius-full);
  border: 2px solid var(--sage); cursor: pointer;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap; text-decoration: none;
}
.btn-secondary:hover { background: var(--sage); color: var(--cloud); }

.btn-light {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--cloud); color: var(--orange);
  font-size: 14px; font-weight: 700;
  padding: 14px 32px; border-radius: var(--radius-full);
  border: none; cursor: pointer;
  transition: background var(--transition), transform 0.1s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  text-decoration: none;
}
.btn-light:hover { background: #fff; transform: translateY(-2px); }

.btn-outline-light {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: var(--cloud);
  font-size: 14px; font-weight: 700;
  padding: 13px 28px; border-radius: var(--radius-full);
  border: 2px solid var(--cloud); cursor: pointer;
  transition: background var(--transition);
  text-decoration: none;
}
.btn-outline-light:hover { background: rgba(244,240,235,0.15); }

/* ── 8. CHIPS / TAGS ── */
.chip-sage, .chip-warm, .chip-gold {
  display: inline-block;
  padding: 6px 14px; border-radius: var(--radius-full);
  font-size: 12px; font-weight: 600;
  text-decoration: none; transition: transform var(--transition);
}
.chip-sage:hover, .chip-warm:hover { transform: translateY(-1px); }
.chip-sage { background: var(--sage-mist); color: var(--sage-dark); }
.chip-warm { background: var(--orange-light); color: #8B3A1A; }
.chip-gold { background: var(--gold-light); color: #7A5A0A; }

/* ── 9. SECTION HELPERS ── */
.section-eyebrow, .sec-eyebrow {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.section-eyebrow::before, .sec-eyebrow::before {
  content: '';
  display: inline-block; width: 16px; height: 2px;
  background: var(--gold); border-radius: 2px;
}
.section-title, .sec-title {
  font-family: var(--serif);
  font-size: 36px; color: var(--near-black);
  margin-bottom: 8px; line-height: 1.1;
}
.section-sub, .sec-sub {
  font-size: 15px; color: var(--stone);
  line-height: 1.7; margin-bottom: 36px; max-width: 520px;
}
.section { padding: 64px 40px; border-bottom: 1px solid var(--border); }
.site-main { background: var(--cloud); }

/* ── 10. HERO ── */
.hero {
  background: var(--cloud);
  padding: 72px 40px 64px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px; align-items: center;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: var(--orange-light); opacity: 0.45;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -60px; left: 40%;
  width: 240px; height: 240px; border-radius: 50%;
  background: var(--sage-mist); opacity: 0.3;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block; width: 20px; height: 2px;
  background: var(--sage); border-radius: 2px;
}
.hero-h1 {
  font-family: var(--serif);
  font-size: 54px; color: var(--near-black);
  line-height: 1.02; display: block;
}
.hero-h1i {
  font-family: var(--serif);
  font-size: 54px; font-style: italic;
  color: var(--orange); line-height: 1.02;
  display: block; margin-bottom: 22px;
}
.hero-body {
  font-size: 15px; color: var(--stone);
  line-height: 1.75; max-width: 440px; margin-bottom: 28px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-chips { display: flex; gap: 8px; flex-wrap: wrap; }

/* Hero social proof urgency bar */
.hero-proof {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap; margin-top: 20px;
  padding: 12px 16px;
  background: var(--orange-light);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--orange);
}
.hero-proof-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
.hero-proof-text { font-size: 12px; font-weight: 600; color: #8B3A1A; }
.hero-proof-text strong { color: var(--orange); }

/* Hero info cards */
.hero-cards { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.info-card {
  background: var(--cloud);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.info-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.info-card-hot  { border-left: 3px solid var(--orange); border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.info-card-sage { border-left: 3px solid var(--sage);   border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.info-card-gold { border-left: 3px solid var(--gold);   border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.info-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 5px;
}
.info-value {
  font-family: var(--serif);
  font-size: 24px; color: var(--near-black); line-height: 1;
}
.info-sub { font-size: 11px; color: var(--stone); margin-top: 4px; }

/* ── 11. FEATURES STRIP ── */
.features-strip {
  background: var(--near-black);
  padding: 14px 40px;
  display: flex; align-items: center; gap: 6px;
  flex-wrap: wrap; overflow: hidden;
}
.feat-item { display: flex; align-items: center; gap: 7px; }
.feat-dot  { width: 4px; height: 4px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.feat-text { font-size: 12px; font-weight: 500; color: var(--sage-mist); white-space: nowrap; }
.feat-sep  { width: 1px; height: 14px; background: #2A2A2A; margin: 0 8px; }

/* ── 12. CATEGORY GRID ── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.cat-card {
  background: var(--cloud);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.cat-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.cat-card-link { display: block; text-decoration: none; color: inherit; }
.cat-img {
  height: 110px;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; transition: transform 0.3s;
}
.cat-card:hover .cat-img { transform: scale(1.04); }
.cat-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-body { padding: 16px 18px; }
.cat-name {
  font-family: var(--serif);
  font-size: 18px; color: var(--near-black); margin-bottom: 5px;
}
.cat-desc { font-size: 13px; color: var(--stone); line-height: 1.5; margin-bottom: 12px; }
.cat-link {
  font-size: 12px; font-weight: 700; color: var(--orange);
  display: flex; align-items: center; gap: 4px;
  transition: gap var(--transition);
}
.cat-link::after { content: '→'; transition: transform var(--transition); }
.cat-card:hover .cat-link::after { transform: translateX(3px); }

/* ── 13. COUNTDOWN TIMER ── */
.timer-bar {
  background: var(--near-black);
  padding: 16px 40px;
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap; border-top: 2px solid var(--orange);
}
.timer-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--stone-light); white-space: nowrap;
}
.timer-units { display: flex; align-items: center; gap: 4px; }
.timer-unit  { text-align: center; min-width: 48px; }
.timer-num {
  font-family: var(--serif);
  font-size: 32px; color: var(--gold); line-height: 1;
  transition: transform 0.15s;
}
.timer-tag {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--stone-light);
}
.timer-colon {
  font-family: var(--serif);
  font-size: 28px; color: var(--sage);
  padding-bottom: 10px; animation: blink 1s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.timer-info { margin-left: auto; text-align: right; }
.timer-info-line { font-size: 12px; color: var(--stone-light); }
.timer-info-line strong { color: var(--gold); }

/* ── 14. WEEKLY DROP SECTION ── */
.drop-section {
  padding: 64px 40px;
  background: var(--cloud);
  border-bottom: 1px solid var(--border);
}
.drop-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 28px;
}
.drop-badge {
  display: inline-block;
  background: var(--orange); color: var(--cloud);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: var(--radius-full);
  margin-bottom: 10px;
  animation: badge-pulse 3s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,96,42,0); }
  50%       { box-shadow: 0 0 0 6px rgba(212,96,42,0.15); }
}
.drop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* Drop card */
.drop-card {
  background: var(--cloud);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.drop-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.drop-card-featured {
  border: 2px solid var(--orange);
  box-shadow: var(--shadow-orange);
}
.drop-img {
  height: 100px;
  display: flex; align-items: center; justify-content: center;
  font-size: 44px; overflow: hidden;
  transition: transform 0.3s;
}
.drop-card:hover .drop-img { transform: scale(1.04); }
.drop-img img { width: 100%; height: 100%; object-fit: cover; }
.drop-body { padding: 16px 18px; }
.drop-featured-tag {
  background: var(--orange-light); color: #8B3A1A;
  font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: var(--radius-full);
  display: inline-block; margin-bottom: 7px;
}
.drop-name {
  font-family: var(--serif);
  font-size: 19px; color: var(--near-black); margin-bottom: 4px;
}
.drop-flavor { font-size: 12px; color: var(--sage); font-weight: 600; margin-bottom: 10px; }
.drop-price { font-size: 22px; font-weight: 700; color: var(--orange); margin-bottom: 2px; }
.drop-price span { font-size: 13px; font-weight: 500; color: var(--stone); }
.drop-btn {
  display: block; width: 100%;
  background: var(--orange); color: var(--cloud);
  font-size: 13px; font-weight: 700;
  padding: 11px; border: none; border-radius: var(--radius-sm);
  margin-top: 12px; cursor: pointer;
  transition: background var(--transition), transform 0.1s;
  text-align: center; text-decoration: none;
  font-family: var(--sans);
}
.drop-btn:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* FOMO: stock indicators */
.stock-bar-wrap {
  margin: 8px 0 10px;
}
.stock-bar-label {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; font-weight: 600;
  color: var(--stone); margin-bottom: 4px;
}
.stock-bar-label .stock-left {
  color: var(--orange); font-weight: 700;
}
.stock-bar-label .stock-left.critical { color: #C0392B; animation: flash-text 1s ease-in-out infinite; }
@keyframes flash-text { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }
.stock-bar-track {
  height: 5px; background: var(--cloud-dark);
  border-radius: var(--radius-full); overflow: hidden;
}
.stock-bar-fill {
  height: 100%; border-radius: var(--radius-full);
  transition: width 1s ease;
  background: var(--sage);
}
.stock-bar-fill.low    { background: var(--gold); }
.stock-bar-fill.critical { background: var(--orange); }

/* FOMO: social proof buyers count */
.drop-buyers {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--stone);
  margin-top: 6px;
}
.drop-buyers-avatars {
  display: flex;
}
.drop-buyers-avatars span {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--sage-mist);
  border: 2px solid var(--cloud);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; color: var(--sage-dark);
  margin-left: -4px;
}
.drop-buyers-avatars span:first-child { margin-left: 0; }
.drop-buyers strong { color: var(--near-black); font-weight: 700; }

/* FOMO: Order-now urgency badge on featured */
.urgency-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--orange); color: var(--cloud);
  font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(212,96,42,0.4);
  animation: badge-pulse 2s ease-in-out infinite;
}

/* ── 15. SUBSCRIPTION STRIP ── */
.sub-strip {
  background: var(--orange);
  padding: 64px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.sub-strip::before {
  content: '';
  position: absolute; top: -80px; left: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(244,240,235,0.06); pointer-events: none;
}
.sub-strip::after {
  content: '';
  position: absolute; bottom: -60px; right: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(244,240,235,0.06); pointer-events: none;
}
.sub-strip-eyebrow {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #FCCFB8; margin-bottom: 10px;
}
.sub-strip-title {
  font-family: var(--serif);
  font-size: 38px; color: var(--cloud); margin-bottom: 4px;
}
.sub-strip-italic {
  font-family: var(--serif); font-style: italic;
  font-size: 38px; color: var(--gold);
  display: block; margin-bottom: 16px;
}
.sub-strip-body {
  font-size: 15px; color: #FCCFB8; line-height: 1.7;
  margin-bottom: 12px; max-width: 520px; margin-inline: auto;
}
.sub-strip-urgency {
  font-size: 13px; font-weight: 700; color: var(--gold);
  margin-bottom: 28px; letter-spacing: 0.02em;
}
.sub-strip-btns {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
/* Subscription perks */
.sub-perks {
  display: flex; justify-content: center; gap: 28px;
  flex-wrap: wrap; margin-bottom: 32px; position: relative; z-index: 1;
}
.sub-perk {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: #FCCFB8; font-weight: 500;
}
.sub-perk-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(244,240,235,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}

/* ── 16. ABOUT SECTION ── */
.about-strip {
  background: var(--cloud);
  padding: 64px 40px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  border-bottom: 1px solid var(--border);
}
.about-eyebrow {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.about-eyebrow::before {
  content: '';
  display: inline-block; width: 16px; height: 2px;
  background: var(--sage); border-radius: 2px;
}
.about-title {
  font-family: var(--serif);
  font-size: 34px; color: var(--near-black);
  margin-bottom: 8px; line-height: 1.1;
}
.about-italic { font-style: italic; color: var(--orange); }
.about-body {
  font-size: 14px; color: var(--stone);
  line-height: 1.8; margin-bottom: 20px;
}
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 8px; }
.about-stat {
  text-align: center; padding: 16px 8px;
  border: 1px solid var(--border); border-radius: var(--radius-md);
  transition: border-color var(--transition), transform var(--transition);
}
.about-stat:hover { border-color: var(--orange); transform: translateY(-2px); }
.about-stat-num {
  font-family: var(--serif);
  font-size: 28px; color: var(--orange); line-height: 1; margin-bottom: 4px;
}
.about-stat-label { font-size: 11px; color: var(--stone); font-weight: 600; }
.about-visual {
  background: var(--orange-light);
  border-radius: var(--radius-xl); padding: 36px;
  border: 1px solid #F0C4A8;
  box-shadow: var(--shadow-md);
}
.about-quote-mark {
  font-family: var(--serif); font-size: 64px; color: var(--orange);
  line-height: 0.7; display: block; margin-bottom: 10px;
  opacity: 0.6;
}
.about-quote {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; color: var(--near-black);
  line-height: 1.5; margin-bottom: 18px;
}
.about-sig { font-size: 13px; font-weight: 700; color: var(--stone); }
.about-sig span { color: var(--sage); font-weight: 600; }

/* ── 17. CLASSES SECTION ── */
.classes-section {
  background: var(--sage-mist);
  padding: 64px 40px;
  border-bottom: 1px solid #A8CEBF;
}
.classes-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 14px;
}
.class-card {
  background: var(--cloud); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 20px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}
.class-card:hover {
  border-color: var(--sage); transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.class-icon {
  font-size: 26px; margin-bottom: 14px;
  width: 52px; height: 52px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.class-name {
  font-family: var(--serif); font-size: 18px;
  color: var(--near-black); margin-bottom: 7px;
}
.class-desc { font-size: 13px; color: var(--stone); line-height: 1.6; margin-bottom: 14px; }
.class-tag {
  font-size: 11px; font-weight: 700;
  color: var(--sage-dark); background: var(--sage-mist);
  padding: 4px 12px; border-radius: var(--radius-full);
  display: inline-block;
}

/* ── 18. FOOTER ── */
.site-footer { background: var(--near-black); }
.footer-inner { padding: 44px 40px 28px; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 36px;
  padding-bottom: 36px; border-bottom: 1px solid #2A2A2A;
}
.footer-brand-name {
  font-family: var(--serif); font-size: 22px; color: var(--cloud); margin-bottom: 4px;
}
.footer-brand-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.footer-brand-body { font-size: 13px; color: #4A4A4A; line-height: 1.6; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social-icon {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid #2A2A2A;
  display: flex; align-items: center; justify-content: center;
  color: #4A4A4A; cursor: pointer;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.footer-social-icon:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.footer-col-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cloud); margin-bottom: 14px;
}
.footer-col-link, .footer-nav-list a {
  display: block; font-size: 13px; color: #4A4A4A;
  margin-bottom: 9px; cursor: pointer;
  transition: color var(--transition);
  text-decoration: none; list-style: none;
}
.footer-col-link:hover, .footer-nav-list a:hover { color: var(--cloud); }
.footer-nav-list { list-style: none; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-copy { font-size: 12px; color: #3A3A3A; }
.footer-world { font-size: 11px; color: var(--gold); font-weight: 600; }

/* ── 19. FOMO: SOCIAL PROOF POPUP ── */
.fomo-popup {
  position: fixed; bottom: 24px; left: 24px; z-index: 9999;
  background: var(--cloud);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg);
  max-width: 300px;
  animation: slide-in-left 0.4s ease both;
  border-left: 3px solid var(--orange);
}
.fomo-popup.hiding { animation: slide-out-left 0.4s ease both; }
@keyframes slide-in-left {
  from { transform: translateX(-120%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
@keyframes slide-out-left {
  from { transform: translateX(0); opacity: 1; }
  to   { transform: translateX(-120%); opacity: 0; }
}
.fomo-popup-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.fomo-popup-text { font-size: 12px; color: var(--stone); line-height: 1.4; }
.fomo-popup-text strong { color: var(--near-black); font-weight: 700; }
.fomo-popup-text em { color: var(--orange); font-style: normal; font-weight: 600; }
.fomo-popup-time { font-size: 10px; color: var(--stone-light); margin-top: 2px; }

/* ── 20. FOMO: STICKY BOTTOM BAR (mobile) ── */
.sticky-order-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: var(--near-black);
  padding: 12px 20px;
  border-top: 2px solid var(--orange);
  align-items: center; gap: 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.sticky-order-bar-text { font-size: 12px; color: var(--sage-mist); flex: 1; }
.sticky-order-bar-text strong { color: var(--gold); }
.sticky-order-bar .btn-primary { font-size: 13px; padding: 11px 22px; flex-shrink: 0; }

/* ── 21. FOMO: SHARE SECTION ── */
.share-section {
  background: var(--gold-light);
  padding: 40px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.share-title {
  font-family: var(--serif);
  font-size: 22px; color: var(--near-black); margin-bottom: 6px;
}
.share-sub { font-size: 13px; color: var(--stone); margin-bottom: 20px; }
.share-btns { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.share-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 18px; border-radius: var(--radius-full);
  font-size: 12px; font-weight: 700;
  border: none; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none; font-family: var(--sans);
}
.share-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.share-btn-ig   { background: #E1306C; color: #fff; }
.share-btn-fb   { background: #1877F2; color: #fff; }
.share-btn-tk   { background: #010101; color: #fff; }
.share-btn-copy { background: var(--stone); color: #fff; }
.share-btn-wa   { background: #25D366; color: #fff; }
.share-btn svg  { width: 14px; height: 14px; }

/* ── 22. FOMO: SOLD OUT OVERLAY ── */
.drop-card.sold-out { opacity: 0.65; pointer-events: none; }
.drop-card.sold-out .drop-img::after {
  content: 'SOLD OUT';
  position: absolute; inset: 0;
  background: rgba(26,26,26,0.55);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--cloud);
  letter-spacing: 0.1em;
}
.drop-card { position: relative; }
.drop-img  { position: relative; }

/* ── 23. FOMO: WAITLIST FORM ── */
.waitlist-strip {
  background: var(--near-black);
  padding: 36px 40px;
  display: flex; align-items: center; gap: 24px;
  border-bottom: 1px solid #2A2A2A;
  flex-wrap: wrap;
}
.waitlist-text { flex: 1; }
.waitlist-title {
  font-family: var(--serif);
  font-size: 22px; color: var(--cloud); margin-bottom: 4px;
}
.waitlist-sub { font-size: 13px; color: var(--stone-light); }
.waitlist-form {
  display: flex; gap: 8px; flex-shrink: 0;
}
.waitlist-input {
  padding: 11px 16px; border-radius: var(--radius-full);
  border: 1px solid #3A3A3A; background: #2A2A2A;
  color: var(--cloud); font-size: 13px; font-family: var(--sans);
  min-width: 220px;
  transition: border-color var(--transition);
}
.waitlist-input::placeholder { color: var(--stone-light); }
.waitlist-input:focus { outline: none; border-color: var(--orange); }
.waitlist-btn {
  background: var(--orange); color: var(--cloud);
  font-size: 13px; font-weight: 700;
  padding: 11px 22px; border-radius: var(--radius-full);
  border: none; cursor: pointer; font-family: var(--sans);
  transition: background var(--transition), transform 0.1s;
  white-space: nowrap;
}
.waitlist-btn:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* ── 24. WOOCOMMERCE CART WIDGET ── */
.woocommerce-mini-cart .mini_cart_item { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.widget_shopping_cart .woocommerce-mini-cart__total { font-weight: 700; padding: 12px 0; }
.widget_shopping_cart .button { display: block; text-align: center; }

/* ── 25. TRUST BADGES ── */
.trust-strip {
  background: var(--cloud-dark);
  padding: 20px 40px;
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--stone);
}
.trust-icon {
  font-size: 18px;
}

/* ── 26. ANIMATIONS (respect reduced motion) ── */
@media (prefers-reduced-motion: no-preference) {
  @keyframes fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow { animation: fade-up 0.5s ease both 0.1s; }
  .hero-h1      { animation: fade-up 0.5s ease both 0.2s; }
  .hero-h1i     { animation: fade-up 0.5s ease both 0.3s; }
  .hero-body    { animation: fade-up 0.5s ease both 0.4s; }
  .hero-btns    { animation: fade-up 0.5s ease both 0.5s; }
  .hero-chips   { animation: fade-up 0.5s ease both 0.6s; }
  .hero-proof   { animation: fade-up 0.5s ease both 0.7s; }
  .hero-cards   { animation: fade-up 0.5s ease both 0.4s; }
}

/* ── 27. RESPONSIVE ── */
@media (max-width: 900px) {
  .hero            { grid-template-columns: 1fr; padding: 48px 20px 40px; }
  .hero::before, .hero::after { display: none; }
  .hero-h1, .hero-h1i { font-size: 40px; }
  .hero-cards      { flex-direction: row; flex-wrap: wrap; }
  .info-card       { flex: 1; min-width: 130px; }
  .cat-grid        { grid-template-columns: 1fr 1fr; }
  .classes-grid    { grid-template-columns: 1fr; }
  .about-strip     { grid-template-columns: 1fr; gap: 32px; }
  .footer-top      { grid-template-columns: 1fr 1fr; gap: 24px; }
  .timer-bar       { padding: 14px 20px; }
  .sticky-order-bar{ display: flex; }
}
@media (max-width: 600px) {
  .navbar          { padding: 0 20px; }
  .nav-hamburger   { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 62px; left: 0; right: 0;
    background: var(--orange-dark); flex-direction: column;
    padding: 16px 20px; gap: 14px; border-bottom: 2px solid var(--orange);
  }
  .nav-links.nav-open { display: flex; }
  .nav-menu { display: contents; }
  .nav-menu li { display: contents; }
  .announce-bar    { padding: 10px 20px; flex-wrap: wrap; justify-content: center; }
  .pickup-bar      { padding: 10px 20px; }
  .features-strip  { padding: 12px 20px; }
  .section         { padding: 48px 20px; }
  .drop-section    { padding: 48px 20px; }
  .drop-grid       { grid-template-columns: 1fr; }
  .sub-strip       { padding: 48px 20px; }
  .sub-strip-title, .sub-strip-italic { font-size: 28px; }
  .about-strip     { padding: 48px 20px; }
  .classes-section { padding: 48px 20px; }
  .footer-inner    { padding: 32px 20px 24px; }
  .footer-top      { grid-template-columns: 1fr; gap: 24px; }
  .share-section   { padding: 32px 20px; }
  .waitlist-strip  { padding: 28px 20px; flex-direction: column; }
  .waitlist-form   { width: 100%; flex-direction: column; }
  .waitlist-input  { min-width: 0; width: 100%; }
  .trust-strip     { padding: 16px 20px; gap: 16px; }
  .fomo-popup      { bottom: 76px; left: 12px; right: 12px; max-width: none; }
  .section-title, .sec-title { font-size: 28px; }
}

/* ── 28. PRINT ── */
@media print {
  .announce-bar, .pickup-bar, .features-strip,
  .timer-bar, .sub-strip, .fomo-popup,
  .sticky-order-bar, .share-section { display: none; }
}
