/* =========================================
   CIMMANON — Handcrafted Cinnamon Rolls
   Main Stylesheet — Full Multi-Page Site
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Inter:wght@400;500;600;700&family=Caveat:wght@700&display=swap');

/* --- CUSTOM PROPERTIES --- */
:root {
  --ink:           #0D0245;
  --navy:          #0D1D3E;
  --pink:          #FF7F92;
  --pink-dark:     #F0637A;
  --pink-soft:     #F8A4B4;
  --pink-product:  #F7B8C0; /* Warm muted blush — standardized product photo background, per client */
  --pink-tint:     #FFEFF1;
  --cream:         #FFF9F6;
  --white:         #FFFFFF;
  --off-white:     #FAF7F5;
  --countertop:    #BDC8CE;
  --gray-light:    #F0EDE8;
  --gray-mid:      #8B8892;
  --gray-dark:     #5A5768;
  --black-text:    #1B1B24;
  --font-display:  'Playfair Display', serif;
  --font-body:     'Inter', sans-serif;
  --font-script:   'Caveat', cursive;
  --header-h:      86px;
  --radius:        11px;
  --radius-lg:     20px;
  --radius-pill:   51px;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:        0 8px 40px rgba(13,2,69,0.14);
  --shadow-sm:     0 2px 16px rgba(13,2,69,0.08);
  --shadow-card:   7px 9px 18px 2px rgba(0,0,0,0.08);
  --max-w:         1280px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body); color: var(--black-text); background: var(--white); line-height: 1.65; overflow-x: hidden;
  display: flex; flex-direction: column; min-height: 100vh; min-height: 100dvh;
}
.site-footer-mini { margin-top: auto; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--ink); }

/* --- UTILITY --- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 60px 0; }
.bg-white { background: var(--white); }
.bg-off { background: var(--off-white); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-ink { background: var(--ink); color: var(--white); }
.bg-pink { background: var(--pink); color: var(--white); }
.text-center { text-align: center; }
.text-pink { color: var(--pink); }

.eyebrow-script {
  display: block; font-family: var(--font-script); font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4.4rem); color: var(--pink-soft); line-height: 1;
  margin: -6px 0 10px;
}

.section-title { font-size: clamp(2rem, 3.6vw, 3rem); text-align: center; margin-bottom: 12px; }
.section-sub { font-size: 1.05rem; color: var(--gray-dark); text-align: center; max-width: 640px; margin: 0 auto 56px; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }

.divider-line { border: none; border-top: 2px solid var(--pink); max-width: 1200px; margin: 0 auto; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 30px; border-radius: var(--radius); border: 2px solid transparent;
  font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
  text-transform: uppercase; letter-spacing: 0.02em; white-space: nowrap;
  transition: all var(--transition); cursor: pointer;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: #17036b; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,2,69,0.3); }
.btn-pink { background: var(--pink); color: var(--white); }
.btn-pink:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,127,146,0.4); }
.btn-white { background: var(--white); color: var(--ink); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-outline-pink { background: transparent; color: var(--pink-dark); border-color: var(--pink); }
.btn-outline-pink:hover { background: var(--pink); color: var(--white); }
.btn-sm { padding: 12px 20px; font-size: 0.8rem; border-radius: 9px; }
.btn-full { width: 100%; }

.wa-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* --- HEADER / NAV --- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(13,2,69,0.06);
  transition: box-shadow var(--transition), height var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); height: 72px; }

.nav-inner { display: flex; align-items: center; height: 100%; padding: 0 40px; width: 100%; }
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 42px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 6px; flex: 1; justify-content: center; }
.nav-link {
  padding: 10px 18px; font-size: 1.05rem; font-weight: 400; color: var(--black-text);
  border-radius: 8px; transition: all var(--transition); white-space: nowrap;
}
.nav-link:hover { color: var(--pink); }
.nav-link.active { color: var(--pink-product); font-weight: 700; }

.nav-cta {
  flex-shrink: 0; background: var(--pink); color: var(--white);
  border-radius: var(--radius); padding: 13px 26px;
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all var(--transition);
}
.nav-cta:hover { background: var(--pink-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(255,127,146,0.4); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; margin-left: auto; }
.corp-enquire-btn { display: none; }
.flavour-list-order-btn { display: none; }
.flavour-item-order-btn { display: none; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; top: var(--header-h-current, var(--header-h)); left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid rgba(13,2,69,0.08);
  padding: 12px 20px 24px; z-index: 999; box-shadow: var(--shadow);
  max-height: calc(100vh - var(--header-h-current, var(--header-h))); overflow-y: auto;
  transform: translateY(-8px); opacity: 0; transition: opacity 0.25s ease, transform 0.25s ease, top 0.2s ease; pointer-events: none;
}
.mobile-nav.open { display: block; opacity: 1; transform: translateY(0); pointer-events: all; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav ul li a { display: block; padding: 13px 14px; font-size: 1rem; font-weight: 500; color: var(--black-text); border-radius: 8px; }
.mobile-nav ul li a:hover, .mobile-nav ul li a.active { color: var(--pink-product); }
.mobile-nav-cta { margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(13,2,69,0.08); text-align: center; }

/* --- ICON CIRCLES (line icons) --- */
.icon-circle {
  width: 78px; height: 78px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--pink); color: var(--pink);
  margin: 0 auto 18px; background: var(--white); flex-shrink: 0;
}
.icon-circle svg { width: 36px; height: 36px; stroke: var(--pink); fill: none; }
.icon-circle-sm { width: 60px; height: 60px; }
.icon-circle-sm svg { width: 26px; height: 26px; }
.icon-navy { border-color: var(--navy); color: var(--navy); }
.icon-navy svg { stroke: var(--navy); }

/* --- PLAIN ICON IMAGES (extracted from Figma) --- */
.icon-img { display: block; margin: 0 auto 16px; }
.icon-img img { width: 100%; height: 100%; object-fit: contain; }
.icon-img-lg { width: 84px; height: 84px; }
.icon-img-md { width: 66px; height: 66px; }
.icon-img-sm { width: 50px; height: 50px; margin: 0; flex-shrink: 0; }

/* =========================================
   HOME HERO
   ========================================= */
.hero-home {
  position: relative; 
  margin-top: var(--header-h);
  height: calc(100vh - var(--header-h)); 
  min-height: 560px; 
  max-height: 900px;
  overflow: hidden; 
  background: var(--cream);
}

/* DESKTOP LAYOUT: Hero always fills the full device screen height */
@media (min-width: 768px) {
  .hero-home:not(.flavour-hero-full) {
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    aspect-ratio: auto;
    max-height: none;
    min-height: 0;
  }
}

/* Ensures inner content limits match your container needs */
.hero-home-inner { 
  position: relative; 
  width: 100%; 
  height: 100%; 
  overflow: hidden; 
}

.hero-home-media { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; }
.hero-home-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-home-fade {
  position: absolute; inset: 0;
  background: none;
}
.hero-home-text { position: absolute; top: 0; left: 0; height: 100%; width: 100%; display: flex; align-items: center; padding: 0 64px; }
.hero-home-text-inner { max-width: 620px; }
.hero-home-title { font-size: clamp(2.6rem, 5.4vw, 5.2rem); line-height: 1.05; color: var(--ink); text-shadow: 0 2px 24px rgba(255,255,255,0.5); }
.hero-home-title .script { display: block; font-family: var(--font-script); color: #f0637a; font-weight: 700; font-size: clamp(2.6rem, 6vw, 5.6rem); line-height: 1.05; margin-top: -6px; }
.hero-home-sub { font-size: clamp(1.1rem, 1.6vw, 1.5rem); color: var(--black-text); margin: 22px 0 34px; max-width: 460px; text-shadow: 0 1px 16px rgba(255,255,255,0.6); }

/* --- MARQUEE / FLAVOUR STRIP --- */
.flavour-strip { padding: 90px 0 40px; }
.flavour-strip-title { text-align: center; font-size: clamp(2rem, 3.6vw, 3rem); margin-bottom: 52px; }
.flavour-strip-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.flavour-strip-item { text-align: center; }
.flavour-strip-circle {
  width: 100%; aspect-ratio: 1/1; border-radius: 50%; overflow: hidden;
  box-shadow: var(--shadow-sm); margin-bottom: 16px; transition: transform var(--transition);
}
.flavour-strip-item:hover .flavour-strip-circle { transform: translateY(-6px) scale(1.03); }
.flavour-strip-circle img { width: 100%; height: 100%; object-fit: cover; }
.flavour-strip-name { font-weight: 700; font-size: 0.95rem; text-transform: uppercase; color: var(--ink); letter-spacing: 0.02em; }
.flavour-strip-desc { font-size: 0.7rem; text-transform: uppercase; color: var(--gray-mid); margin-top: 4px; letter-spacing: 0.02em; }

/* --- FEATURE CARDS (replaces "Baked with love" section) --- */
.feature-cards-section { padding-top: 60px; }
.feature-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.feature-card { display: flex; flex-direction: column; align-items: center; }
.feature-card h3 { font-size: 1.15rem; color: var(--ink); margin-top: 4px; }

/* --- CLIENT STORIES --- */
.stories-section { background: linear-gradient(135deg, rgba(255,127,146,0.2) 0%, rgba(255,127,146,0.08) 100%), var(--white); }
.stories-header { text-align: center; margin-bottom: 40px; }
.eyebrow-label {
  display: inline-block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--pink-dark); margin-bottom: 10px;
}
.story-spotlight {
  max-width: 720px; margin: 0 auto 40px; text-align: center;
  background: rgba(255,127,146,0.4); border-radius: 24px;
  box-shadow: var(--shadow-card); border: 1px solid rgba(13,2,69,0.06);
  position: relative; overflow: hidden;
}
.story-spotlight-content { padding: 52px 48px; }
.story-spotlight-quote-mark { width: 40px; height: 30px; color: var(--pink-tint); margin-bottom: 12px; }
.story-spotlight-quote {
  font-family: var(--font-display); font-size: clamp(1.15rem, 2vw, 1.45rem); line-height: 1.55;
  color: var(--ink); margin-bottom: 26px; min-height: 4.6em; display: flex; align-items: center; justify-content: center;
  transition: opacity 0.25s ease;
}
.story-spotlight-person { transition: opacity 0.25s ease; }
.story-spotlight-name { font-weight: 700; font-size: 1rem; color: var(--ink); }
.story-spotlight-loc { font-size: 0.88rem; color: var(--gray-mid); margin-top: 2px; }
.story-spotlight.fading .story-spotlight-quote,
.story-spotlight.fading .story-spotlight-person { opacity: 0; }

.story-avatars-viewport { max-width: 240px; margin: 0 auto; overflow: hidden; padding: 14px 0; }
.story-avatars-track { display: flex; align-items: center; gap: 26px; width: max-content; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.story-avatar {
  width: 52px; height: 52px; border-radius: 50%; background: var(--white);
  color: var(--pink-dark); font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
  border: 2px solid transparent; display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 2px 6px rgba(13,2,69,0.08); transition: all var(--transition); opacity: 0.6; flex-shrink: 0;
}
.story-avatar:hover { opacity: 0.85; }
.story-avatar.active { opacity: 1; border-color: var(--pink); transform: scale(1.05); box-shadow: 0 3px 8px rgba(255,127,146,0.3); }

/* --- STATS BAND --- */
.stats-band { padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat-item { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 0 20px; text-align: left; position: relative; }
.stat-item + .stat-item::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 2px; height: 60px; background: rgba(255,255,255,0.25);
}
.stat-icon { width: 52px; height: 52px; flex-shrink: 0; }
.stat-icon svg { width: 100%; height: 100%; stroke: var(--white); fill: none; }
.stat-number { font-family: var(--font-display); font-size: clamp(1.8rem, 2.6vw, 2.4rem); font-weight: 700; color: var(--white); line-height: 1; }
.stat-label { font-size: 0.95rem; color: rgba(255,255,255,0.8); margin-top: 4px; text-transform: capitalize; }

/* --- CTA BAND --- */
.cta-band { background: var(--pink-product); padding: 52px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: center; gap: 30px; flex-wrap: wrap; }
.cta-band-left { display: flex; align-items: center; gap: 24px; }
.cta-band-icon {
  width: 84px; height: 84px; border-radius: 50%; background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  border: none; padding: 0; cursor: pointer; transition: background var(--transition);
}
.cta-band-icon:hover { background: rgba(255,255,255,0.3); }
.cta-band-icon svg { width: 42px; height: 42px; stroke: var(--white); fill: none; }
.cta-band-title { color: var(--ink); font-size: clamp(1.4rem, 2.4vw, 2rem); margin-bottom: 6px; }
.cta-band-sub { color: var(--ink); font-size: 1.05rem; opacity: 0.85; }

/* =========================================
   FOOTER (minimal)
   ========================================= */
.site-footer-mini { background: var(--navy); color: var(--white); padding: 42px 0 20px; }
.footer-mini-inner { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; padding-bottom: 28px; text-align: center; }
.footer-logo { height: 38px; width: auto; filter: brightness(0) invert(1); }
.footer-phone-icon {
  height: 44px; padding: 0 22px; border-radius: 999px; background: var(--pink);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  color: var(--white); font-weight: 700; font-size: 0.9rem; white-space: nowrap;
  transition: all var(--transition);
}
.footer-phone-icon svg { width: 18px; height: 18px; stroke: var(--white); fill: none; flex-shrink: 0; }
.footer-phone-icon:hover { background: var(--pink-dark); transform: translateY(-2px); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.82rem; color: rgba(255,255,255,0.5); flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,0.65); }
.footer-bottom a:hover { color: var(--pink); }
.footer-legal-links { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.footer-legal-sep { color: rgba(255,255,255,0.25); }
.footer-credit { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.footer-credit-tb:hover { color: #AA2CA5 !important; }
.footer-credit-bt:hover { color: #BCD35F !important; }

/* =========================================
   AUTO-SCROLLING ROLL CAROUSEL (Home)
   ========================================= */
.roll-marquee { padding: 70px 0 20px; overflow: hidden; }
.roll-marquee-title { text-align: center; font-size: clamp(2rem, 3.6vw, 3rem); margin-bottom: 44px; }
.roll-marquee-track-wrap { overflow: hidden; }
.roll-marquee-track {
  display: flex; align-items: center; gap: 0; width: max-content; will-change: transform;
}
.roll-marquee-track img.roll-marquee-wide {
  flex: none; height: auto; width: 86.6vw; max-width: 1500px; aspect-ratio: 1.63; object-fit: cover;
  border-radius: 0; box-shadow: none; display: block;
}
/* Tablet and up: 40% smaller than the mobile proportion (mobile size is unchanged) */
@media (min-width: 700px) {
  .roll-marquee-track img.roll-marquee-wide { width: 52vw; max-width: 900px; }
}

/* =========================================
   HERO CTA ROW
   ========================================= */
.hero-cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-cta-row .btn { background: rgba(255,249,246,0.7); }

/* (legacy review-photo block removed — replaced by agency-style testimonial cards above) */

/* =========================================
   PAGE HERO (Flavour / Corporate / Story — shared)
   ========================================= */
.page-hero { padding-top: var(--header-h); }

/* Flavour hero */
/* Full-width Hero variant (75% viewport height on every device) */
.hero-home.flavour-hero-full {
  width: 100%; 
  height: 75vh; 
  height: 75dvh; /* Modern mobile-safe viewport height fallback */
  max-height: none; /* Removes the old 900px limitation */
  aspect-ratio: auto; 
  background: var(--ink);
}

.flavour-hero-full .hero-home-media img { 
  object-fit: cover; 
}

.flavour-hero-full .hero-home-fade { 
  background: linear-gradient(90deg, rgba(13,2,69,0.5) 0%, rgba(13,2,69,0.15) 35%, rgba(13,2,69,0) 55%); 
}

.flavour-hero-full .hero-home-title, 
.flavour-hero-full .hero-home-sub { 
  color: var(--white); 
  text-shadow: none; 
}

.flavour-hero-full .hero-home-title .script { 
  color: #f0637a; 
}

.flavour-hero-full .hero-home-sub { 
  color: rgba(255,255,255,0.85); 
}

/* Split-Grid Hero variant */
.flavour-hero { 
  background: var(--ink); 
  padding: calc(var(--header-h) + 40px) 0 0; 
  overflow: hidden; 
}

.flavour-hero-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  align-items: center; 
  gap: 40px; 
}

.flavour-hero-title { 
  color: var(--white); 
  font-size: clamp(2.6rem, 5vw, 4.6rem); 
  line-height: 1.05; 
}

.flavour-hero-sub { 
  color: rgba(255,255,255,0.82); 
  font-size: 1.2rem; 
  margin-top: 20px; 
  max-width: 460px; 
}

.flavour-hero-img { 
  border-radius: var(--radius-lg) var(--radius-lg) 0 0; 
  overflow: hidden; 
  align-self: flex-end; 
}

.flavour-hero-img img { 
  width: 100%; 
  display: block; 
}


/* Flavour list — 3-column grid */
.flavour-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 44px 40px; }
.flavour-row { flex: 0 0 calc((100% - 80px) / 3); max-width: calc((100% - 80px) / 3); }
.flavour-row { display: flex; flex-direction: column; padding: 0; border-bottom: none; }
.flavour-row-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-sm); margin-bottom: 22px; }
.flavour-row-img img { width: 100%; height: 100%; object-fit: cover; }
.flavour-row-name { font-size: clamp(1.5rem, 2vw, 1.9rem); margin-bottom: 8px; }
.flavour-row-desc { font-size: 1.05rem; color: var(--gray-dark); margin-bottom: 12px; max-width: 420px; }
.flavour-row-price { font-weight: 700; font-size: 1.2rem; color: var(--black-text); margin-bottom: 16px; display: block; }

/* Alternative Options — text-only, no images */
.alt-options { max-width: 720px; margin: 70px auto 0; text-align: center; padding-top: 56px; border-top: 1px solid var(--gray-light); }
.alt-options h3 { font-size: 1.5rem; color: var(--ink); margin-bottom: 30px; }
.alt-options-list { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.alt-option-item { display: flex; flex-direction: column; gap: 4px; }
.alt-option-name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.alt-option-desc { font-size: 0.95rem; color: var(--gray-dark); }
.alt-option-price { font-weight: 700; color: var(--pink-dark); margin-top: 4px; }

/* Corporate hero */
.corp-hero, .corp-section { padding-top: calc(var(--header-h) + 50px); text-align: center; background: var(--cream); }
.corp-section { padding-top: 0; }
.corp-hero-title { font-size: clamp(2.4rem, 5vw, 4.6rem); line-height: 1.1; }
.corp-hero-title .script { display: block; font-family: var(--font-script); color: var(--pink-soft); font-weight: 700; font-size: clamp(2.8rem, 6.2vw, 5.6rem); line-height: 1.1; margin-top: -8px; }
.corp-hero-sub { font-size: 1.2rem; color: var(--black-text); max-width: 560px; margin: 20px auto 40px; }
.corp-hero-media-full { position: relative; width: 100%; aspect-ratio: 1920/850; overflow: hidden; }
.corp-hero-media-full img { width: 100%; height: 100%; display: block; object-fit: cover; }
.corp-hero-badge {
  position: absolute; left: 50%; bottom: 32px; transform: translateX(-50%);
  background: var(--ink); color: var(--white); border-radius: var(--radius);
  padding: 17px 34px; font-weight: 700; font-size: 0.95rem; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px; box-shadow: var(--shadow);
}

/* Multi-box / bulk orders banner */
.corp-multibox-section { width: 100%; }
.corp-multibox-media { position: relative; width: 100%; aspect-ratio: 1920/760; overflow: hidden; }
.corp-multibox-media img { width: 100%; height: 100%; display: block; object-fit: cover; }
.corp-multibox-fade {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(13,2,69,0.78) 0%, rgba(13,2,69,0.3) 45%, rgba(13,2,69,0) 70%);
}
.corp-multibox-text { position: absolute; left: 0; bottom: 0; width: 100%; padding: 0 64px 44px; text-align: center; }
.corp-multibox-text h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--white); margin-bottom: 8px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.corp-multibox-text p { color: rgba(255,255,255,0.88); font-size: 1.05rem; }

/* Perfect For grid (unused - retained for reference) */

/* How it works */
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.how-item { text-align: center; }
.how-number {
  height: clamp(4.5rem, 8vw, 7.2rem); width: auto;
  margin: 0 auto 14px; display: block; overflow: visible;
}
.how-title { font-size: 1.3rem; text-transform: uppercase; margin-bottom: 10px; color: var(--ink); }
.how-desc { color: var(--gray-dark); font-size: 1rem; max-width: 220px; margin: 0 auto; }
.how-grid .reveal { transform: none; }

/* =========================================
   OUR STORY
   ========================================= */
.story-hero {
  position: relative; 
  margin-top: var(--header-h);
  width: 100%; 
  height: auto; 
  aspect-ratio: 3/2; 
  max-height: none; /* Removes the 100vh restriction */
  overflow: hidden; 
  background: var(--ink);
}
.story-hero-media { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; }
.story-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-hero-fade {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,2,69,0.58) 4%, rgba(13,2,69,0.1) 32%, rgba(13,2,69,0.05) 52%, rgba(13,2,69,0) 64%);
}
.story-hero-text { position: absolute; top: 0; left: 0; height: 100%; width: 100%; display: flex; align-items: center; padding: 0 64px; }
.story-hero-text-inner { max-width: 620px; }
.story-hero-eyebrow {
  display: block; color: #f0637a; font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 10px;
}
.story-hero-tagline {
  font-size: clamp(1.8rem, 3.6vw, 3rem); line-height: 1.15; color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.story-hero-tagline .script {
  display: block; font-family: var(--font-script); font-weight: 700; color: #f0637a;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem); line-height: 1.1; margin-top: 2px;
}
.story-intro { position: relative; }

.story-intro-grid { 
  display: grid; 
  grid-template-columns: 1fr 1.1fr; /* Evens out column widths */
  gap: 60px; 
  align-items: center; /* Vertically centers the content */
  margin-top: 0; 
}

.story-portrait { 
  position: relative; 
  border-radius: 16px; /* Rounds the image container corners */
  overflow: hidden; /* Clips the image to the rounded corners */
  box-shadow: var(--shadow); /* Applies standard container shadow */
}
.story-portrait img { 
  width: 100%; 
  height: auto; 
  display: block; 
  /* Removed the drop-shadow filter entirely */
}

.story-text-block { padding-top: 0; }
.story-title { font-size: clamp(2.4rem, 4.6vw, 3.8rem); margin-bottom: 26px; }
.story-text-block p { font-size: 1.08rem; color: var(--black-text); margin-bottom: 16px; line-height: 1.6; }
.story-text-block p.emphasis { color: var(--pink); font-style: italic; }


/* Journey timeline */
.journey-wrap { position: relative; padding-top: 30px; }
.journey-line { position: absolute; top: 113px; left: 0; right: 0; height: 2px; background: var(--pink); z-index: 0; }
.journey-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; position: relative; z-index: 1; }
.journey-item { text-align: center; }
.journey-icon { width: 58px; height: 58px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; }
.journey-icon svg { width: 44px; height: 44px; stroke: var(--pink); fill: none; }
.journey-icon img { width: 100%; height: 100%; object-fit: contain; }
.journey-dot { width: 22px; height: 22px; border-radius: 50%; background: var(--ink); margin: 0 auto 14px; border: 4px solid var(--white); box-shadow: 0 0 0 2px var(--pink); }
.journey-year {
  display: inline-block; background: var(--ink); color: var(--white); font-weight: 700;
  font-size: 0.95rem; padding: 8px 16px; border-radius: 8px; margin-bottom: 12px;
}
.journey-desc { font-size: 0.95rem; color: var(--black-text); max-width: 160px; margin: 0 auto; text-transform: capitalize; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.value-item { text-align: center; padding: 0 24px; position: relative; }
.value-item + .value-item::before {
  content: ''; position: absolute; left: 0; top: 10px; bottom: 10px; width: 2px; background: var(--pink);
}
.value-title { font-size: 1.25rem; text-transform: uppercase; margin-bottom: 12px; color: var(--ink); }
.value-desc { font-size: 0.98rem; color: var(--gray-dark); max-width: 220px; margin: 0 auto; }

/* =========================================
   ORDER NOW MODAL (multi-flavour selector)
   ========================================= */
.order-modal-backdrop {
  position: fixed; inset: 0; z-index: 2000; background: rgba(13,2,69,0.55);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease; backdrop-filter: blur(2px);
}
.order-modal-backdrop.open { opacity: 1; pointer-events: all; }
.order-modal {
  background: var(--white); border-radius: 20px; width: 100%; max-width: 480px;
  max-height: 88vh; overflow-y: auto; padding: 40px 32px 28px; position: relative;
  box-shadow: 0 30px 70px rgba(13,2,69,0.35);
  transform: translateY(16px) scale(0.98); transition: transform 0.25s ease;
}
.order-modal-backdrop.open .order-modal { transform: translateY(0) scale(1); }
.order-modal-close {
  position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%;
  background: var(--gray-light); border: none; font-size: 1.4rem; line-height: 1; color: var(--ink);
  cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.order-modal-close:hover { background: var(--pink-tint); }
.order-modal h2 { font-size: 1.6rem; margin-bottom: 6px; padding-right: 30px; }
.order-modal-sub { color: var(--gray-dark); font-size: 0.95rem; margin-bottom: 26px; }
.order-modal-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 26px; padding-bottom: 26px; border-bottom: 1px solid rgba(13,2,69,0.08); }
.order-modal-field { display: flex; flex-direction: column; gap: 6px; }
.order-modal-field label { font-size: 0.85rem; font-weight: 700; color: var(--ink); }
.order-modal-field input, .order-modal-field select {
  font-family: var(--font-body); font-size: 0.95rem; padding: 13px 16px;
  border: 1.5px solid rgba(13,2,69,0.15); border-radius: var(--radius); background: var(--white);
  color: var(--black-text); outline: none; transition: border-color var(--transition);
}
.order-modal-field input:focus, .order-modal-field select:focus { border-color: var(--pink); }
.order-modal-field select { cursor: pointer; }
.order-modal-list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 22px; }
.order-modal-item {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 4px; border-bottom: 1px solid var(--gray-light);
}
.order-modal-item-info { display: flex; flex-direction: column; }
.order-modal-item-name { font-weight: 700; color: var(--ink); font-size: 1rem; }
.order-modal-item-price { font-size: 0.85rem; color: var(--gray-mid); }
.order-modal-qty { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.qty-btn {
  width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--pink);
  background: var(--white); color: var(--pink-dark); font-size: 1.1rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s;
}
.qty-btn:hover { background: var(--pink); color: var(--white); }
.qty-value { min-width: 20px; text-align: center; font-weight: 700; color: var(--ink); }
.order-modal-footer { text-align: center; }
.order-modal-count { display: block; font-size: 0.9rem; color: var(--gray-dark); margin-bottom: 14px; }
.order-modal-submit.disabled { opacity: 0.5; pointer-events: none; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1080px) {
  .flavour-strip-grid { grid-template-columns: repeat(3, 1fr); gap: 30px 20px; }
  .how-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .feature-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .value-item:nth-child(3)::before { display: none; }
  .journey-grid { grid-template-columns: repeat(3, 1fr); gap: 30px 10px; }
  .journey-line { display: none; }
}

@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .corp-enquire-btn { display: inline-flex; }
  .flavour-item-order-btn { display: inline-flex; align-self: center; margin-top: 14px; }
  .flavour-list-order-btn { display: flex; width: fit-content; margin: 40px auto 0; }
  .nav-inner { padding: 0 20px; }
  .hero-home { height: 100vh; height: 100dvh; min-height: 0; overflow: hidden; }
  .hero-home-inner { height: 100%; }
  .hero-home-media {
    position: absolute; inset: 0; height: 100%; overflow: hidden;
    display: block; padding: 0;
  }
  .hero-home-media img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover; object-position: 48% center;
    border-radius: 0; margin: 0; display: block;
    box-shadow: none;
  }
  .hero-home-fade { display: block; background: none; }
  .hero-home-text { position: absolute; top: 0; left: 0; height: 100%; width: 100%; display: flex; align-items: center; padding: 0 24px; transform: translateY(-15%); }
  .hero-home-text-inner { max-width: 100%; }
  .hero-home-title, .hero-home-sub { text-align: left; margin-left: 0; margin-right: 0; }
  .hero-cta-row .btn { background: rgba(255,249,246,0.7); }
  .care-grid-bleed { grid-template-columns: 1fr; }
  .care-photo-col { order: -1; min-height: 320px; }
  .care-photo-col img { border-radius: 0; }
  .care-text-col { padding: 48px 24px; }
  .flavour-hero-grid { grid-template-columns: 1fr; text-align: center; padding-bottom: 30px; }
  .flavour-hero-sub { margin-left: auto; margin-right: auto; }
  .flavour-hero-img { align-self: center; border-radius: var(--radius-lg); }
  
  /* Retained your original 900px layout transitions */
  .story-intro-grid { grid-template-columns: 1fr; margin-top: 0; }
  .story-portrait { display: none; }
  .story-text-block { padding-top: 30px; text-align: center; }
  
  .stats-grid { grid-template-columns: 1fr; gap: 28px; }
  .stat-item + .stat-item::before { display: none; }
  .stat-item { justify-content: center; }
  .cta-band-inner { justify-content: center; text-align: center; }
  .cta-band-left { flex-direction: column; }
}

@media (max-width: 700px) {
  /* Screen-filling 2-column grid layout isolated to 700px devices */
  .flavour-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 44px 24px; width: 100%; }
  .flavour-row { flex: 0 0 100%; max-width: 100%; width: 100%; text-align: center; align-items: center; }
  
  .alt-options-list { grid-template-columns: 1fr; gap: 24px; }
  .alt-options { margin-top: 50px; padding-top: 40px; }
  .flavour-row-img { max-width: 320px; margin: 0 auto 20px; }
  .flavour-row-desc { margin-left: auto; margin-right: auto; }
}

@media (max-width: 640px) {
  /* Phone-only home/flavour hero treatment updates */
  .flavour-hero-full { height: 75vh; height: 75dvh; aspect-ratio: auto; }
  /* Zooms out the background image content by 20% */
  .flavour-hero-full .hero-home-media img { 
    object-position: center; 
     
  }
  .flavour-hero-full .hero-home-fade { background: none; } /* Removed overlay */
  .flavour-hero-full .hero-home-text { transform: translateY(-18%); } /* Moved up by 20% */

  /* Stacks to 1 column and fills screen space */
  .flavour-list { display: grid; grid-template-columns: 1fr; gap: 44px; width: 100%; }
  .flavour-row { max-width: 100%; width: 100%; }
  
  /* ONLY "Our Story" Hero section changes applied here */
  .story-hero { height: 75vh; height: 75dvh; aspect-ratio: auto; }
  .story-hero-fade { background: none; } /* Removed the gradient overlay */
  .story-hero-text { 
    transform: translate(7%, 28%); /* Moved text up 5% (from 35% to 28%) */
    justify-content: center; /* Centres the inner wrapper horizontally */
    text-align: center; /* Centres the text alignment internally */
  }

  /* Isolated reduction: Only "From us" decreases by 20% */
  .story-hero-tagline {
    font-size: clamp(1.44rem, 2.88vw, 2.4rem);
  }
  .story-hero-tagline .script {
    text-shadow: none;
  }
}


@media (max-width: 620px) {
  .container { padding: 0 18px; }
  .section-pad { padding: 64px 0; }
  .flavour-strip-grid { grid-template-columns: repeat(2, 1fr); }
  
  /* Flavours Hero Alignment down to 620px */
  .flavour-hero-full .hero-home-fade { background: none; }
  .flavour-hero-full .hero-home-text { transform: translateY(-18%); }

  /* Enforces 1-column layout properties */
  .flavour-list { display: grid; grid-template-columns: 1fr; width: 100%; }
  .flavour-row { max-width: 100%; width: 100%; }
  
  /* Our Story Hero Centering and Alignment */
  .story-hero-fade { background: none; }
  .story-hero-text { 
    display: flex;
    justify-content: center;
    text-align: center;
    transform: translate(7%, 28%);
  }
  
  /* Isolated reduction: Only "From us" decreases by 20% */
  .story-hero-tagline {
    font-size: clamp(1.44rem, 2.88vw, 2.4rem);
  }

  .story-spotlight-content { padding: 36px 24px; }
  .story-avatars-track { gap: 16px; }
  .story-avatars-viewport { max-width: 206px; padding: 14px 0; }
  .story-avatar { width: 48px; height: 48px; font-size: 1.3rem; }
  .values-grid { grid-template-columns: 1fr; }
  .value-item::before { display: none !important; }
  .journey-grid { grid-template-columns: 1fr 1fr; }
  .footer-mini-inner { flex-direction: column; gap: 16px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-legal-links { order: -1; }
  .hero-cta-row { justify-content: center; }
}


@media (max-width: 480px) {
  .hero-home-title { font-size: clamp(2.1rem, 9vw, 2.8rem); }
  .hero-home-title .script { font-size: clamp(2.3rem, 10vw, 3.2rem); }
  .flavour-hero-title { font-size: clamp(2.1rem, 9vw, 2.8rem); }
  
  /* Flavours Hero Alignment down to 480px */
  .flavour-hero-full .hero-home-fade { background: none; }
  .flavour-hero-full .hero-home-text { transform: translateY(-18%); }
  
  
  /* Enforce Story Hero rules down to extra-small devices */
  .story-hero-fade { background: none; }
  .story-hero-text { 
    display: flex;
    justify-content: center;
    text-align: center;
    transform: translate(7%, 28%);
  }
  
  .story-title { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .section-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .btn { padding: 14px 22px; font-size: 0.82rem; }
  .roll-marquee-track { gap: 0; }
  .journey-grid { grid-template-columns: 1fr; }
  .how-grid { gap: 40px; }
  .feature-cards-grid { gap: 40px; }
  .cta-band-title { font-size: 1.25rem; }
  .corp-hero-badge { padding: 12px 18px; font-size: 0.75rem; white-space: nowrap; bottom: 18px; gap: 8px; }
  
  /* Updated Corporate Block Settings */
  .corp-multibox-text { padding: 0 24px 28px; }
  .corp-multibox-media { aspect-ratio: auto; min-height: 460px; }
  .corp-multibox-fade { background: none; }
  .corp-multibox-text h3 { color: var(--ink); text-shadow: none; }
  .corp-multibox-text p { color: var(--ink); opacity: 0.85; }
}


