/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:    #FFFBF4;
  --cream2:   #FFF4E0;
  --yellow:   #F5C842;
  --yellow2:  #FFD93D;
  --yolk:     #E09800;
  --dark:     #1C1A17;
  --dark2:    #2E2B26;
  --mid:      #6B6558;
  --light:    #F5F0E8;
  --white:    #FFFFFF;
  --border:   #E8E0D0;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --radius:   16px;
  --radius-lg: 32px;
  --shadow:   0 4px 24px rgba(28,26,23,0.08);
  --shadow-lg: 0 12px 48px rgba(28,26,23,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-serif); line-height: 1.15; }
h1 { font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
em { font-style: italic; color: var(--yolk); }
p  { font-size: 1.05rem; color: var(--mid); line-height: 1.75; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yolk);
  margin-bottom: 1rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--dark); color: var(--cream); border-color: var(--dark); }
.btn-primary:hover { background: var(--dark2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(28,26,23,0.22); }
.btn-ghost { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-ghost:hover { background: var(--dark); color: var(--cream); }
.btn-outline { background: transparent; color: var(--dark); border-color: var(--border); }
.btn-outline:hover { border-color: var(--dark); }
.btn-nav { background: var(--yellow2); color: var(--dark); border-color: var(--yellow2); padding: 0.6rem 1.4rem; font-size: 0.88rem; }
.btn-nav:hover { background: var(--yolk); border-color: var(--yolk); color: white; transform: translateY(-1px); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,251,244,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled { border-color: var(--border); box-shadow: 0 2px 20px rgba(28,26,23,0.07); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  height: 72px; display: flex; align-items: center; gap: 2.5rem;
}
.nav-logo {
  font-family: var(--font-serif); font-size: 1.9rem; font-weight: 900;
  color: var(--dark); letter-spacing: -0.03em; flex-shrink: 0;
}
.nav-links { display: flex; list-style: none; gap: 2rem; margin-left: auto; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--mid); transition: color 0.2s; }
.nav-links a:hover { color: var(--dark); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }
.nav-mobile { display: none; flex-direction: column; padding: 1rem 2rem 1.5rem; border-top: 1px solid var(--border); gap: 1rem; }
.nav-mobile a { font-size: 1rem; font-weight: 500; color: var(--dark); }
.nav-mobile .btn-nav { align-self: flex-start; margin-top: 0.5rem; }
.nav-mobile.open { display: flex; }

/* ── HERO ── */
.hero {
  min-height: 100svh;
  padding: 120px 2rem 80px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  position: relative;
}

/* Hero background art */
.hero-bg-art {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0;
}
.bg-egg { position: absolute; }
.egg-1 { width: 180px; top: 8%; right: 2%; animation: floatY 7s ease-in-out infinite; opacity: 0.5; }
.egg-2 { width: 100px; top: 65%; right: 8%; animation: floatY 9s 1s ease-in-out infinite; }
.egg-3 { width: 80px; top: 15%; left: 5%; animation: floatY 8s 0.5s ease-in-out infinite; }
.egg-4 { width: 60px; bottom: 15%; left: 12%; animation: floatY 6s 2s ease-in-out infinite; }
.bg-dot { position: absolute; }
.dot-1 { width: 28px; top: 30%; left: 3%; animation: floatY 5s 0.3s ease-in-out infinite; }
.dot-2 { width: 18px; top: 55%; right: 3%; animation: floatY 7s 1.2s ease-in-out infinite; }
.dot-3 { width: 14px; bottom: 25%; right: 15%; animation: floatY 6s 0.8s ease-in-out infinite; }
.bg-squiggle { position: absolute; width: 250px; bottom: 12%; left: 0%; animation: floatY 10s 1s ease-in-out infinite; }

@keyframes floatY {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-18px) rotate(3deg); }
}

.hero-content, .hero-visual { position: relative; z-index: 1; }

.hero-eyebrow {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--yolk); margin-bottom: 1.25rem;
}
.hero-headline { margin-bottom: 1.5rem; color: var(--dark); }
.hero-sub { font-size: 1.15rem; max-width: 480px; margin-bottom: 2.5rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.5rem; }
.hero-pill { background: var(--white); border: 1px solid var(--border); border-radius: 100px; padding: 0.3rem 0.9rem; font-size: 0.8rem; font-weight: 600; color: var(--dark2); }

/* Hero egg shape + cup */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-egg-shape {
  position: relative;
  width: 420px;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.egg-outline-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  filter: drop-shadow(0 20px 60px rgba(240,165,0,0.3));
  animation: blobMorph 9s ease-in-out infinite;
}
@keyframes blobMorph {
  0%,100% { transform: scale(1) rotate(0deg); }
  33%      { transform: scale(1.03) rotate(1.5deg); }
  66%      { transform: scale(0.97) rotate(-1deg); }
}

.yogurt-cup-wrap {
  position: relative; z-index: 2;
  filter: drop-shadow(0 16px 40px rgba(28,26,23,0.18));
  animation: floatY 6s ease-in-out infinite;
}

/* Floating berries around cup */
.float-berry { position: absolute; z-index: 3; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15)); }
.berry-1 { width: 44px; top: 10%; right: 8%; animation: floatY 5s 0.2s ease-in-out infinite; }
.berry-2 { width: 36px; bottom: 22%; left: 6%; animation: floatY 7s 1s ease-in-out infinite; }
.berry-3 { width: 32px; top: 28%; left: 4%; animation: floatY 6s 0.5s ease-in-out infinite; }
.berry-4 { width: 28px; bottom: 12%; right: 10%; animation: floatY 8s 1.5s ease-in-out infinite; }

/* Badges */
.protein-badge {
  position: absolute; top: 12%; right: 2%; z-index: 4;
  background: var(--dark);
  color: var(--cream);
  border-radius: 50%;
  width: 80px; height: 80px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(28,26,23,0.25);
  animation: floatY 7s 0.3s ease-in-out infinite;
}
.badge-num { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 900; line-height: 1; }
.badge-sub { font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.7; }

.cal-badge {
  position: absolute; top: 12%; left: 2%; z-index: 4;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--dark);
  border-radius: 50%;
  width: 68px; height: 68px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(28,26,23,0.1);
  animation: floatY 6s 1.5s ease-in-out infinite;
}
.cal-badge .badge-num { color: var(--dark); font-size: 1.15rem; }
.cal-badge .badge-sub { opacity: 0.55; }

.dairy-free-badge {
  position: absolute; bottom: 18%; left: 0%; z-index: 4;
  background: var(--white);
  color: var(--dark);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; font-weight: 700;
  box-shadow: 0 4px 16px rgba(28,26,23,0.12);
  animation: floatY 8s 2s ease-in-out infinite;
}
.dairy-free-badge svg { color: var(--yolk); }

.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: var(--mid);
  z-index: 1;
}
.hero-scroll-hint span { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--mid), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse {
  0%,100% { opacity: 1; transform: scaleY(1); }
  50%      { opacity: 0.4; transform: scaleY(0.7); }
}

/* ── MARQUEE ── */
.marquee-strip { background: var(--dark); overflow: hidden; padding: 14px 0; }
.marquee-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-track span { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream); padding: 0 1.4rem; }
.marquee-track .dot { color: var(--yellow2); padding: 0 0.2rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── ABOUT ── */
.about { padding: 100px 2rem; background: var(--white); position: relative; overflow: hidden; }
.about-bg-art { position: absolute; pointer-events: none; }
.about-egg-bg { position: absolute; width: 600px; right: -150px; top: -80px; opacity: 1; }
.about-dots { position: absolute; width: 160px; bottom: 30px; left: 30px; }

.about-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; position: relative; z-index: 1; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p  { margin-bottom: 1rem; }
.about-text .btn { margin-top: 1.5rem; }
.about-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-card { background: var(--cream); border-radius: var(--radius); padding: 1.75rem 1.5rem; border: 1px solid var(--border); transition: transform 0.3s, box-shadow 0.3s; }
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.card-num { font-family: var(--font-serif); font-size: 2.4rem; font-weight: 900; color: var(--dark); margin-bottom: 0.25rem; line-height: 1; }
.card-label { font-size: 0.85rem; font-weight: 500; color: var(--mid); }

/* ── PRODUCTS ── */
.products { padding: 100px 2rem; max-width: 1280px; margin: 0 auto; position: relative; }
.products-bg-art { position: absolute; pointer-events: none; z-index: 0; }
.prod-bg-egg { position: absolute; }
.pe1 { width: 280px; top: 0; right: -60px; }
.pe2 { width: 200px; bottom: 100px; left: -60px; }

.products-header { text-align: center; margin-bottom: 4rem; position: relative; z-index: 1; }
.products-header h2 { margin-top: 0.5rem; }
.products-subhead { font-size: 1rem; color: var(--mid); margin-top: 0.75rem; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; position: relative; z-index: 1; }
.products-grid.three-up { max-width: 960px; margin: 0 auto; }
.nutrition-note { text-align: center; font-size: 0.75rem; color: var(--mid); margin-top: 2.5rem; opacity: 0.65; }

/* Coming soon card */
.product-card-tbd { opacity: 0.75; }
.product-card-tbd:hover { opacity: 1; }
.tbd-bg { background: linear-gradient(135deg, #F8F7F5 0%, #EEEBE6 100%); }
.coming-soon-tag { background: var(--mid) !important; color: white !important; }
.tbd-title { color: var(--mid); }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.88rem; }

.product-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-img {
  height: 240px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.original-bg   { background: linear-gradient(135deg, #FAFAF8 0%, #F0EDE6 100%); }
.vanilla-bg    { background: linear-gradient(135deg, #FFFAF2 0%, #F5E8CC 100%); }
.vanilla-bg    { background: linear-gradient(135deg, #FFFAF2 0%, #F5E8CC 100%); }
.strawberry-bg { background: linear-gradient(135deg, #FFF0F5 0%, #FFCCD8 100%); }
.matcha-bg     { background: linear-gradient(135deg, #F0FAF0 0%, #B8E8B8 100%); }
.peach-bg      { background: linear-gradient(135deg, #FFF5EC 0%, #FFD0A8 100%); }
.plain-bg      { background: linear-gradient(135deg, #FAFAF8 0%, #E8E0D0 100%); }
.blueberry-bg  { background: linear-gradient(135deg, #F5F0FF 0%, #D0B8F8 100%); }

.product-cup-art {
  filter: drop-shadow(0 12px 28px rgba(28,26,23,0.16));
  transition: transform 0.3s;
}
.product-card:hover .product-cup-art { transform: translateY(-6px) scale(1.04); }

.product-tag { position: absolute; top: 1rem; left: 1rem; background: var(--dark); color: var(--cream); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3rem 0.75rem; border-radius: 100px; }
.product-tag.new { background: var(--yellow2); color: var(--dark); }

.product-info { padding: 1.5rem; }
.product-info h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.product-info p  { font-size: 0.9rem; margin-bottom: 1rem; }
.product-macros { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.product-macros span { background: var(--light); color: var(--dark2); font-size: 0.75rem; font-weight: 600; padding: 0.3rem 0.7rem; border-radius: 100px; }

/* ── WHY EGGIE ── */
.why { padding: 100px 2rem; background: var(--dark); color: var(--cream); position: relative; overflow: hidden; }
.why::before {
  content: '';
  position: absolute;
  width: 600px; height: 750px;
  background: radial-gradient(ellipse, rgba(245,200,66,0.08) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.why-inner { max-width: 1000px; margin: 0 auto; position: relative; z-index: 1; }
.why-header { margin-bottom: 4rem; display: flex; flex-direction: column; gap: 0; }
.why-header .section-label { color: var(--yellow2); }
.why-header h2 { color: var(--cream); }
.why-header h2 em { color: var(--yellow2); }
.why-egg-deco { margin-top: 1.5rem; opacity: 0.7; }

.why-compare { display: flex; flex-direction: column; gap: 1.5rem; }
.compare-brand { font-size: 0.85rem; font-weight: 600; color: rgba(255,251,244,0.55); margin-bottom: 0.5rem; letter-spacing: 0.05em; }
.eggie-col .compare-brand { color: var(--yellow2); font-size: 1rem; letter-spacing: 0.08em; }
.compare-bar-wrap { width: 100%; background: rgba(255,255,255,0.07); border-radius: 100px; overflow: hidden; height: 52px; }
.compare-bar { height: 100%; background: var(--yellow2); border-radius: 100px; display: flex; align-items: center; padding: 0 1.25rem; transition: width 1.2s cubic-bezier(0.16,1,0.3,1); }
.compare-bar span { font-size: 0.85rem; font-weight: 700; color: var(--dark); white-space: nowrap; }
.compare-bar.other { background: rgba(255,255,255,0.12); }
.compare-bar.other span { color: rgba(255,251,244,0.65); }
.compare-ratio { font-size: 0.78rem; color: rgba(255,251,244,0.35); margin-top: 0.4rem; font-style: italic; }

/* ── BENEFITS ── */
.benefits { padding: 100px 2rem; background: var(--cream2); }
.benefits-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.benefit-item { background: var(--white); border-radius: var(--radius); padding: 2.5rem 2rem; border: 1px solid var(--border); transition: transform 0.3s, box-shadow 0.3s; }
.benefit-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.benefit-item h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.benefit-item p { font-size: 0.9rem; }

/* ── TESTIMONIALS ── */
.testimonials { padding: 100px 2rem; background: var(--white); }
.testimonials-inner { max-width: 1280px; margin: 0 auto; }
.testimonials-inner > .section-label { text-align: center; display: block; margin-bottom: 3rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial { background: var(--cream); border-radius: var(--radius); padding: 2rem; border: 1px solid var(--border); }
.testimonial.featured { background: var(--dark); border-color: var(--dark); }
.testimonial.featured p, .testimonial.featured .testimonial-author { color: rgba(255,251,244,0.8); }
.testimonial.featured .stars { color: var(--yellow2); }
.stars { font-size: 1rem; color: var(--yolk); margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial p { font-size: 0.95rem; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { font-size: 0.82rem; font-weight: 600; color: var(--mid); }

/* ── FIND US ── */
.find { padding: 100px 2rem; background: var(--cream); position: relative; overflow: hidden; }
.find-bg-art { position: absolute; right: 48%; top: 50%; transform: translateY(-50%); pointer-events: none; opacity: 0.8; width: 300px; }
.find-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; position: relative; z-index: 1; }
.find-text h2 { margin: 0.5rem 0 1.25rem; }
.find-text p  { margin-bottom: 2rem; }
.find-retailers { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-bottom: 2rem; }
.retailer { background: var(--white); border: 1px solid var(--border); border-radius: 100px; padding: 0.45rem 1rem; font-size: 0.85rem; font-weight: 600; color: var(--dark2); }

.email-signup { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 3rem; box-shadow: var(--shadow); }
.signup-label { display: inline-block; background: var(--yellow2); color: var(--dark); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.9rem; border-radius: 100px; margin-bottom: 1rem; }
.email-signup h3 { margin-bottom: 0.75rem; }
.email-signup p  { margin-bottom: 1.75rem; font-size: 0.95rem; }
.signup-form { display: flex; flex-direction: column; gap: 0.75rem; }
.signup-form input { width: 100%; padding: 0.9rem 1.25rem; border: 1.5px solid var(--border); border-radius: 100px; font-family: var(--font-sans); font-size: 0.95rem; color: var(--dark); background: var(--cream); outline: none; transition: border-color 0.2s; }
.signup-form input:focus { border-color: var(--dark); }
.signup-form .btn-primary { width: 100%; justify-content: center; }
.signup-fine { font-size: 0.78rem; color: var(--mid); text-align: center; margin-top: 0.5rem; margin-bottom: 0 !important; }

/* ── FOOTER ── */
.footer { background: var(--dark2); padding: 80px 2rem 0; }
.footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 4rem; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { font-family: var(--font-serif); font-size: 2rem; font-weight: 900; color: var(--cream); display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,251,244,0.5); margin-bottom: 1.5rem; max-width: 260px; line-height: 1.65; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: rgba(255,251,244,0.5); transition: color 0.2s; }
.footer-social a:hover { color: var(--yellow2); }
.footer-links { display: contents; }
.footer-col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col-title { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,251,244,0.4); margin-bottom: 0.25rem; }
.footer-col a { font-size: 0.9rem; color: rgba(255,251,244,0.65); transition: color 0.2s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding: 1.5rem 0; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,251,244,0.3); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.82rem; color: rgba(255,251,244,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,251,244,0.7); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 100px; }
  .hero-cta { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-visual { order: -1; }
  .hero-egg-shape { width: 320px; height: 400px; }
  .hero-scroll-hint { display: none; }
  .about-inner, .find-inner { grid-template-columns: 1fr; gap: 3rem; }
  .benefits-inner { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links, .nav > .btn-nav { display: none; }
  .nav-inner .btn-nav { display: none; }
  .nav-hamburger { display: flex; }
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  .hero-egg-shape { width: 260px; height: 320px; }
  .products-grid { grid-template-columns: 1fr; }
  .benefits-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .about-visual { grid-template-columns: 1fr 1fr; }
  .egg-1 { display: none; }
  .egg-2 { display: none; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .about-visual { grid-template-columns: 1fr; }
  .email-signup { padding: 2rem 1.5rem; }
  .hero-egg-shape { width: 220px; height: 270px; }
}
