/* ── Brand Tokens ── */
:root {
  --brand-green: #1B5E42;
  --brand-green-dark: #144D36;
  --brand-green-light: #2D7A57;
  --brand-white: #FFFFFF;
  --brand-cream: #FAF8F5;
  --brand-text: #1A1A1A;
  --brand-muted: #6B7280;
  --whatsapp-green: #25D366;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--brand-cream);
  color: var(--brand-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  min-height: 48px;
  border: none;
}

.btn-primary {
  background: white;
  color: var(--brand-green);
}
.btn-primary:hover {
  background: var(--brand-cream);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.btn-outline:hover {
  background: white;
  color: var(--brand-green);
}

.btn-green {
  background: var(--brand-green);
  color: white;
}
.btn-green:hover {
  background: var(--brand-green-dark);
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: white;
  border-radius: 100px;
}
.btn-whatsapp:hover {
  background: #20bb5a;
}
.btn-whatsapp.large {
  padding: 18px 40px;
  font-size: 17px;
}

/* ── Section Headers ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 12px;
}
.section-title.green { color: var(--brand-green); }
.section-title.white { color: white; }
.section-title.italic { font-style: italic; }

.section-sub {
  font-size: 16px;
  color: var(--brand-muted);
}
.section-sub.white-muted { color: rgba(255, 255, 255, 0.7); }

/* ──────────────────────────────
   NAV
────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brand-green);
  height: var(--nav-height);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo svg { display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: white;
  font-size: 15px;
  font-weight: 400;
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: white;
  transition: width 0.2s ease;
}
.nav-link:hover::after { width: 100%; }

.nav-cta {
  background: white;
  color: var(--brand-green);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  animation: navpulse 4s ease-in-out infinite;
  min-height: 40px;
  display: flex;
  align-items: center;
}
.nav-cta:hover {
  background: var(--brand-cream);
}

@keyframes navpulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5); }
  50%       { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-height: 48px;
  min-width: 48px;
  justify-content: center;
  align-items: center;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: var(--nav-height) 0 0 0;
  background: var(--brand-green);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.nav-overlay-link {
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.nav-overlay-link:hover { opacity: 0.7; }
.nav-overlay-cta {
  background: white;
  color: var(--brand-green);
  padding: 16px 40px;
  border-radius: 100px;
  font-size: 17px;
  font-weight: 600;
  margin-top: 8px;
  min-height: 56px;
  display: flex;
  align-items: center;
}

/* ──────────────────────────────
   HERO
────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 55fr 45fr;
  height: 100dvh;
  min-height: 600px;
}

.hero-image {
  overflow: hidden;
  position: relative;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-text {
  background: var(--brand-green);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 52px;
  overflow: hidden;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 500;
  font-style: italic;
  color: white;
  line-height: 1.0;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 420px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Hero fade-up animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.35s; }
.delay-3 { animation-delay: 0.55s; }

/* ──────────────────────────────
   MARQUEE BAR
────────────────────────────── */
.marquee-bar {
  background: var(--brand-green-dark);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  color: white;
  font-size: 13px;
  letter-spacing: 0.1em;
  padding-right: 0;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ──────────────────────────────
   SHOP BY OCCASION
────────────────────────────── */
.occasions {
  padding: 104px 0;
  background: var(--brand-cream);
}

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.occasion-card {
  display: block;
  text-decoration: none;
  color: var(--brand-text);
  cursor: pointer;
}
.occasion-card:focus-visible {
  outline: 3px solid var(--brand-green);
  outline-offset: 4px;
  border-radius: 4px;
}

.occasion-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 16px;
}
.occasion-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.occasion-card:hover .occasion-img img,
.occasion-card:focus-within .occasion-img img {
  transform: scale(1.04);
}

.occasion-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 94, 66, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.occasion-card:hover .occasion-overlay,
.occasion-card:focus-within .occasion-overlay {
  opacity: 1;
}
.occasion-overlay span {
  color: white;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.occasion-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--brand-text);
  text-align: center;
}

/* ──────────────────────────────
   FEATURED COLLECTION
────────────────────────────── */
.collection {
  padding: 104px 0;
  background: var(--brand-green);
}

.collection-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

.collection-main,
.collection-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.collection-main img,
.collection-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.collection-main {
  aspect-ratio: 3 / 4;
}
.collection-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.collection-item {
  flex: 1;
}

.collection-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-green);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(4px);
}

.collection-cta {
  text-align: center;
}

.label-urgent {
  display: inline-block;
  background: #e8472a;
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 100px;
  margin-left: 6px;
  vertical-align: middle;
  font-family: 'DM Sans', sans-serif;
}

/* ──────────────────────────────
   FREE DELIVERY BANNER
────────────────────────────── */
.delivery-banner {
  padding: 104px 0;
  background: var(--brand-cream);
}

.delivery-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.delivery-icon {
  margin-bottom: 8px;
}

.delivery-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 500;
  color: var(--brand-green);
  line-height: 1.15;
}

.delivery-body {
  font-size: 16px;
  color: var(--brand-muted);
  margin-bottom: 4px;
}

.payment-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}

.payment-label {
  font-size: 12px;
  color: var(--brand-muted);
  letter-spacing: 0.05em;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

.payment-logo {
  width: 52px;
  height: auto;
  display: block;
}

.payment-badge.ecocash {
  background: white;
  border: 1px solid #e5e7eb;
  padding: 4px 10px;
}

.payment-badge.cash {
  background: #f0f7f0;
  color: var(--brand-green);
  border: 1px solid rgba(27, 94, 66, 0.2);
}

.payment-badge.zig {
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #fcd34d;
}

.payment-badge.swipe {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

/* ──────────────────────────────
   BRAND STORY
────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.about-image {
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text {
  background: var(--brand-green);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}

.about-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 500;
  font-style: italic;
  color: white;
  line-height: 1.1;
  margin-bottom: 32px;
}

.about-body {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.85;
}

/* ──────────────────────────────
   HOW TO ORDER
────────────────────────────── */
.how-to-order {
  padding: 104px 0;
  background: var(--brand-cream);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

/* Connecting line between steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--brand-green-light), transparent);
  opacity: 0.3;
}

.step {
  text-align: center;
  padding: 0 28px;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: white;
  border: 1.5px solid rgba(27, 94, 66, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 2px 16px rgba(27, 94, 66, 0.07);
  position: relative;
  z-index: 1;
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--brand-green);
  opacity: 0.5;
  margin-bottom: 8px;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--brand-green);
  margin-bottom: 12px;
}

.step-body {
  font-size: 15px;
  color: var(--brand-muted);
  line-height: 1.7;
}

.steps-cta {
  text-align: center;
  margin-top: 52px;
}

/* ──────────────────────────────
   TESTIMONIALS
────────────────────────────── */
.testimonials {
  padding: 104px 0;
  background: var(--brand-green);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s;
}
.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.13);
}

.testimonial-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  line-height: 0.6;
  color: rgba(255, 255, 255, 0.25);
  font-style: italic;
  user-select: none;
}

.testimonial-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.testimonial-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.04em;
}

.testimonial-stars {
  color: #FFD700;
  font-size: 14px;
  letter-spacing: 2px;
}

/* ──────────────────────────────
   STORE LOCATIONS
────────────────────────────── */
.stores {
  padding: 104px 0;
  background: var(--brand-cream);
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.store-card {
  background: white;
  border-top: 4px solid var(--brand-green);
  padding: 36px 28px 32px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  border-radius: 0 0 6px 6px;
}

.store-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 400;
  color: rgba(27, 94, 66, 0.1);
  line-height: 1;
  margin-bottom: 16px;
}

.store-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--brand-green);
  margin-bottom: 12px;
}

.store-address {
  font-size: 14px;
  color: var(--brand-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.store-map {
  margin: 16px 0 20px;
  border-radius: 6px;
  overflow: hidden;
  height: 160px;
  background: #e8ede9;
}
.store-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.store-directions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-green);
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1.5px solid var(--brand-green);
  padding-bottom: 2px;
  transition: opacity 0.2s;
  min-height: 48px;
}
.store-directions:hover { opacity: 0.65; }

/* ──────────────────────────────
   WHATSAPP CTA
────────────────────────────── */
.whatsapp-cta {
  padding: 104px 0;
  background: var(--brand-green);
}

.whatsapp-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.wa-icon {
  margin-bottom: 8px;
  opacity: 0.9;
}

.wa-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 500;
  color: white;
  line-height: 1.1;
}

.wa-body {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4px;
  line-height: 1.6;
}

.wa-urgency {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  margin-top: -4px;
}

.wa-response-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: -4px;
}

.wa-social-note {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 4px;
  text-align: center;
}
.wa-social-note > p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}
.wa-social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.wa-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
}
.wa-social-link:hover { color: white; }

.wa-share {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1px;
  transition: color 0.2s;
}
.wa-share:hover { color: rgba(255, 255, 255, 0.8); }

.wa-direct {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 8px;
}

.wa-phone {
  color: white;
  text-decoration: underline;
}
.wa-phone:hover { opacity: 0.8; }

/* ──────────────────────────────
   FOOTER
────────────────────────────── */
.footer {
  background: var(--brand-green-dark);
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 14px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.footer-nav a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-nav a:hover { color: white; }

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background 0.2s;
}
.footer-social-icon:hover { background: rgba(255, 255, 255, 0.2); }

.footer-hours p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  text-align: right;
  line-height: 1.6;
}

.footer-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 24px;
  text-align: center;
}
.footer-strip p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
}

/* ──────────────────────────────
   BACK TO TOP
────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: white;
  color: var(--brand-green);
  border: 1.5px solid rgba(27, 94, 66, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s;
  z-index: 40;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.back-to-top:hover {
  box-shadow: 0 4px 20px rgba(27, 94, 66, 0.2);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .back-to-top {
    bottom: 96px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
}

/* ──────────────────────────────
   MOBILE STICKY BAR
────────────────────────────── */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  background: var(--brand-green);
  color: white;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(27, 94, 66, 0.45);
  min-height: 52px;
}

/* ──────────────────────────────
   REVEAL ANIMATIONS
   Desktop only. Mobile gets no reveal animation — content is always
   visible immediately, which is critical on slow 3G connections.
────────────────────────────── */
@media (min-width: 769px) {
  body.animations-ready .reveal-section {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  }
  body.animations-ready .reveal-section.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ──────────────────────────────
   RESPONSIVE
────────────────────────────── */
@media (max-width: 1024px) {
  .hero-text   { padding: 48px 36px; }
  .about-text  { padding: 64px 48px; }
}

/* ── Tablet + Mobile (≤768px) ── */
@media (max-width: 768px) {
  /* ── Global: clear fixed sticky bar at bottom of page ── */
  body {
    padding-bottom: 84px;
  }
  html {
    scroll-padding-top: var(--nav-height);
    scroll-padding-bottom: 84px;
  }

  /* ── Reduce section padding ── */
  .occasions,
  .collection,
  .delivery-banner,
  .stores,
  .whatsapp-cta {
    padding: 64px 0;
  }
  .section-header {
    margin-bottom: 40px;
  }

  /* ── Nav ── */
  .nav-links    { display: none; }
  .nav-hamburger { display: flex; }

  /* ── Hero — stacked ── */
  .hero {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100svh;
  }
  .hero-image {
    height: 52vmax;
    min-height: 260px;
    flex-shrink: 0;
  }
  .hero-image img {
    object-position: center top;
  }
  .hero-text {
    padding: 40px 20px 32px;
    flex: 1;
  }
  .hero-sub {
    font-size: 16px;
    margin-bottom: 28px;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  /* ── Marquee ── */
  .marquee-bar { padding: 10px 0; }

  /* ── Occasions — single column ── */
  .occasions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .occasion-img {
    aspect-ratio: 3 / 2;
  }
  .occasion-label {
    font-size: 20px;
  }

  /* ── Collection ── */
  .collection-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 32px;
  }
  .collection-main {
    aspect-ratio: 3 / 4;
  }
  .collection-stack {
    flex-direction: row;
    gap: 12px;
  }
  .collection-item {
    flex: 1;
    aspect-ratio: 3 / 4;
  }
  .collection-cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* ── Free delivery ── */
  .delivery-inner { padding: 0 20px; }
  .delivery-headline { font-size: 30px; }
  .delivery-inner .btn {
    width: 100%;
    justify-content: center;
  }

  /* ── Brand story — stacked ── */
  .about {
    display: flex;
    flex-direction: column;
  }
  .about-image {
    height: 56vmax;
    min-height: 280px;
    flex-shrink: 0;
  }
  .about-text {
    padding: 48px 20px 48px;
  }
  .about-body {
    font-size: 16px;
    line-height: 1.75;
  }

  /* ── How to Order ── */
  .how-to-order { padding: 64px 0; }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .steps-grid::before { display: none; }
  .step { padding: 0 8px; }

  /* ── Testimonials — single column ── */
  .testimonials { padding: 64px 0; }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .testimonial-card { padding: 28px 20px 22px; }

  /* ── Stores — single column ── */
  .stores-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .store-card {
    padding: 28px 20px 24px;
  }
  .store-number {
    font-size: 40px;
    margin-bottom: 10px;
  }
  .store-address {
    font-size: 15px;
  }

  /* ── WhatsApp CTA ── */
  .whatsapp-inner { padding: 0 20px; }
  .wa-headline { font-size: 34px; }
  .wa-body { font-size: 15px; }
  .wa-direct {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    font-size: 14px;
  }
  .wa-phone { white-space: nowrap; }
  .btn-whatsapp.large {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 16px 20px;
  }

  /* ── Footer ── */
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
    padding: 52px 20px 40px;
  }
  .footer-nav   { align-items: center; }
  .footer-social { align-items: center; }
  .footer-hours p { text-align: center; }
  .footer-strip {
    padding: 18px 20px;
    margin-bottom: env(safe-area-inset-bottom, 0px);
  }

  /* ── Mobile sticky bar — full-width pill ── */
  .mobile-sticky {
    display: flex;
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom, 12px));
    transform: none;
    width: auto;
    justify-content: center;
  }
}

/* ── Small phones (≤480px) ── */
@media (max-width: 480px) {
  .hero-headline   { font-size: 42px; }
  .about-headline  { font-size: 36px; }
  .section-title   { font-size: 32px; }

  /* Collection stack to single column on very small screens */
  .collection-stack { flex-direction: column; }
  .collection-item  { aspect-ratio: 3 / 2; }

  /* Tighter section padding */
  .occasions,
  .collection,
  .delivery-banner,
  .stores,
  .whatsapp-cta {
    padding: 52px 0;
  }

  /* Store cards full padding */
  .store-card { padding: 24px 16px 20px; }

  /* Nav logo slightly smaller */
  .nav-logo svg { width: 168px; height: 40px; }
}
