/* FIJS — compiled from "FIJS Website.dc.html".
   The design used inline styles plus style-hover attributes, which only work
   inside the Design Component runtime. Those are real CSS rules here. */

:root {
  --ink: #2E2A28;
  --ink-soft: #6B615B;
  --cream: #FFF7F0;
  --warm: #FFFDFB;
  --accent: #E8695E;
  --accent-deep: #C2456B;
  --pink: #FBE3E4;
  --vanilla: #FBEFCB;
  --mint: #DDEDE3;
  --choc: #7A5238;
  --melon: #DFEBCF;
  --line: rgba(46, 42, 40, .10);
  --sans: Quicksand, system-ui, sans-serif;
  --body: Nunito, system-ui, sans-serif;
  --hand: Caveat, cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-deep); }
/* height:auto is load-bearing. The <img> tags carry width/height attributes so
   the browser can reserve space (no layout shift), but a bare CSS `width`
   would otherwise leave the height attribute applied as a presentational
   hint and stretch every cone to 352px tall. */
img { display: block; max-width: 100%; height: auto; }

h1, h2, h3 { font-family: var(--sans); font-weight: 700; letter-spacing: -.03em; }

.wrap { max-width: 1280px; margin: 0 auto; padding-inline: clamp(16px, 4vw, 40px); }
.wrap-wide { max-width: 1400px; }
.wrap-narrow { max-width: 1180px; }

.script { font-family: var(--hand); color: var(--accent); margin: 0 0 6px; font-size: 26px; }
.eyebrow { font-family: var(--sans); font-weight: 700; font-size: 13px; letter-spacing: .24em; text-transform: uppercase; color: var(--accent); margin: 0 0 18px; }

/* Skip link — not in the design, but a keyboard user needs a way past the nav. */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 0 0 12px 0;
  font-family: var(--sans); font-weight: 700;
}
.skip:focus { left: 0; color: #fff; }

:where(a, button):focus-visible {
  outline: 3px solid var(--accent-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); }
.revealed[data-reveal] {
  opacity: 1; transform: none;
  transition: opacity .8s cubic-bezier(.22, .7, .3, 1), transform .8s cubic-bezier(.22, .7, .3, 1);
}

/* ---------- animations ---------- */
@keyframes fijsWiggle {
  0%, 100% { transform: rotate(0) translateY(0); }
  25% { transform: rotate(-9deg) translateY(-2px); }
  55% { transform: rotate(7deg) translateY(-3px); }
  80% { transform: rotate(-3deg) translateY(-1px); }
}
@keyframes fijsFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes fijsSprinkle {
  0% { opacity: 0; transform: translateY(-14px) rotate(0); }
  25% { opacity: 1; }
  100% { opacity: 0; transform: translateY(46px) rotate(220deg); }
}
@keyframes fijsRipple { to { transform: scale(2.6); opacity: 0; } }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(14px);
  background: rgba(255, 247, 240, .86);
  border-bottom: 1px solid var(--line);
}
.header-bar {
  max-width: 1280px; margin: 0 auto;
  padding: 12px clamp(16px, 4vw, 40px);
  display: flex; align-items: center; gap: 20px; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 2px; color: var(--ink); flex-shrink: 0; }
.logo:hover { color: var(--ink); }
.logo span { font-family: var(--sans); font-weight: 700; font-size: clamp(28px, 5vw, 38px); letter-spacing: -.03em; line-height: 1; }
.logo img { width: clamp(22px, 4vw, 30px); height: auto; margin: 0 1px 6px; transform-origin: 50% 90%; }
.logo .wiggle { animation: fijsWiggle .7s ease; }
.tagline { margin-left: 10px; font-family: var(--hand); font-size: 17px; color: var(--ink-soft); white-space: nowrap; }

.nav { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 32px); font-family: var(--sans); font-weight: 600; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; flex-shrink: 0; }
.nav a { color: var(--ink); padding: 6px 0; border-bottom: 2px solid transparent; }
.nav a:hover { color: var(--accent); border-bottom-color: rgba(232, 105, 94, .4); }
.nav a.active { color: var(--accent); border-bottom-color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.ig {
  width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink); transition: all .25s;
}
.ig svg { width: 17px; height: 17px; display: block; }
.ig:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.burger {
  width: 44px; height: 44px; border-radius: 14px; border: 1.5px solid var(--line);
  background: var(--warm); display: grid; place-items: center; gap: 4px; cursor: pointer; padding: 11px 10px;
}
.burger span { display: block; width: 100%; height: 2px; border-radius: 2px; background: var(--ink); }
.burger span:last-child { width: 70%; margin-right: auto; }

.mobile-nav {
  padding: 8px clamp(16px, 4vw, 40px) 24px;
  display: none; gap: 4px;
  font-family: var(--sans); font-weight: 600; font-size: 19px;
  border-top: 1px solid var(--line);
}
.mobile-nav.open { display: grid; }
.mobile-nav a { color: var(--ink); padding: 14px 4px; border-bottom: 1px solid var(--line); }
.mobile-nav a:last-child { border-bottom: 0; }

/* ---------- buttons ---------- */
.btn {
  position: relative; overflow: hidden;
  font-family: var(--sans); font-weight: 700; letter-spacing: .05em;
  border-radius: 999px; display: inline-block;
}
.btn-sm { font-size: 13px; letter-spacing: .07em; text-transform: uppercase; padding: 13px 22px; }
.btn-lg { font-size: 15px; padding: 18px 32px; }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 14px 30px -12px rgba(232, 105, 94, .95); transition: transform .28s cubic-bezier(.34, 1.56, .64, 1), box-shadow .28s; }
.btn-accent:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 20px 36px -14px rgba(232, 105, 94, 1); }
.btn-sm.btn-accent { box-shadow: 0 8px 20px -8px rgba(232, 105, 94, .9); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid rgba(46, 42, 40, .22); transition: all .28s; }
.btn-ghost:hover { border-color: var(--ink); background: rgba(255, 255, 255, .6); transform: translateY(-3px); color: var(--ink); }
.btn-ink { background: var(--ink); color: #fff; font-size: 16px; padding: 20px 42px; box-shadow: 0 18px 34px -16px rgba(46, 42, 40, .9); transition: transform .28s cubic-bezier(.34, 1.56, .64, 1); }
.btn-ink:hover { color: #fff; transform: translateY(-3px) scale(1.02); }

/* ---------- hero ---------- */
.hero { position: relative; background: linear-gradient(180deg, var(--cream) 0%, #FFF1E7 100%); overflow: hidden; }
.hero-grid {
  max-width: 1280px; margin: 0 auto;
  padding: clamp(28px, 5vw, 64px) clamp(16px, 4vw, 40px) clamp(40px, 6vw, 80px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(24px, 4vw, 56px); align-items: center;
}
.hero h1 { font-size: clamp(38px, 6.6vw, 72px); line-height: 1.02; letter-spacing: -.035em; margin: 0 0 22px; text-wrap: balance; }
.hero h1 .heart { color: var(--accent); font-size: .7em; margin-left: 10px; }
.hero p.lead { font-size: clamp(16px, 1.4vw, 19px); line-height: 1.75; color: var(--ink-soft); max-width: 44ch; margin: 0 0 32px; text-wrap: pretty; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-note { font-family: var(--hand); font-size: 23px; color: var(--ink-soft); margin: 0; display: flex; align-items: center; gap: 10px; }
.hero-note span { color: var(--accent); }

.hero-art { position: relative; min-height: clamp(340px, 44vw, 520px); }
.hero-blob { position: absolute; inset: 6% 4% 4% 2%; background: linear-gradient(140deg, #FDE7D9, #FBEFCB); border-radius: 52% 48% 44% 56% / 54% 46% 54% 46%; filter: blur(2px); }
.hero-photo { position: relative; width: 100%; height: auto; border-radius: 50% 50% 46% 54% / 52% 48% 52% 48%; object-fit: cover; filter: drop-shadow(0 30px 50px rgba(46, 42, 40, .16)); }
.badge {
  position: absolute; border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  font-family: var(--sans); font-weight: 700; font-size: clamp(9px, 1vw, 11px);
  letter-spacing: .1em; line-height: 1.55; text-transform: uppercase; padding: 12px;
}
.badge-2 { bottom: 6%; right: 2%; width: clamp(86px, 11vw, 120px); height: clamp(86px, 11vw, 120px); background: var(--pink); border: 1.5px dashed rgba(194, 69, 107, .3); color: var(--accent-deep); animation: fijsFloat 7.5s ease-in-out infinite .8s; }
.hero-heart { position: absolute; left: 2%; top: 26%; font-size: 26px; color: rgba(232, 105, 94, .5); }
.hero-mmm { position: absolute; left: 12%; bottom: 8%; font-family: var(--hand); font-size: 26px; color: rgba(46, 42, 40, .28); transform: rotate(-8deg); }

/* ---------- section shells ---------- */
.section { padding-block: clamp(48px, 7vw, 96px); }
.section-warm { background: var(--warm); border-top: 1px solid var(--line); }
.section-cream { background: var(--cream); }
.section-head { text-align: center; margin-bottom: clamp(32px, 4vw, 56px); }
.section-head h2 { font-size: clamp(28px, 3.8vw, 46px); margin: 0; }
.section-head p.sub { margin: 14px auto 0; max-width: 52ch; font-size: 17px; line-height: 1.7; color: var(--ink-soft); }

/* ---------- why cards ---------- */
.why { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr)); gap: clamp(18px, 2.4vw, 30px); }
.why-card {
  border-radius: 32px; padding: clamp(28px, 3vw, 40px);
  transition: transform .35s cubic-bezier(.34, 1.4, .64, 1), box-shadow .35s;
}
.why-card:hover { transform: translateY(-8px); box-shadow: 0 26px 44px -22px rgba(46, 42, 40, .4); }
.why-card h3 { font-size: 24px; letter-spacing: -.02em; margin: 0 0 10px; }
.why-card p { margin: 0; font-size: 16px; line-height: 1.7; color: var(--ink-soft); }
.why-icon { width: 60px; height: 60px; border-radius: 50%; background: rgba(255, 255, 255, .75); display: grid; place-items: center; font-size: 26px; margin-bottom: 22px; }
.why-icon img { width: 26px; }
.bg-pink { background: var(--pink); }
.bg-vanilla { background: var(--vanilla); }
.bg-mint { background: var(--mint); }

/* ---------- flavours ---------- */
.flavour-row { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(16px, 2.2vw, 34px); }
.flavour-row + .flavour-row { margin-top: clamp(16px, 2.2vw, 34px); }
.flavour { flex: 0 0 clamp(150px, 20vw, 250px); position: relative; text-align: center; }
/* The labels are pre-cropped circles on transparency (568x627), so there is no
   circular crop, no tint layer and no forced square ratio here — the artwork
   already is the shape. The shadow must follow the alpha silhouette, which is
   what drop-shadow does and box-shadow cannot: box-shadow would draw a
   rectangle behind a circle. */
.flavour-disc {
  position: relative;
  transition: transform .4s cubic-bezier(.34, 1.5, .64, 1);
}
.flavour:hover .flavour-disc { transform: translateY(-14px) scale(1.035); }
.flavour-disc img {
  position: relative; width: 100%; height: auto; display: block;
  filter: drop-shadow(0 10px 14px rgba(46, 42, 40, .22));
  transition: filter .4s;
}
.flavour:hover .flavour-disc img { filter: drop-shadow(0 24px 22px rgba(46, 42, 40, .30)); }
.flavour-name { font-family: var(--sans); font-weight: 700; font-size: 17px; letter-spacing: .04em; margin: 16px 0 2px; }
.flavour-note { font-family: var(--hand); font-size: 19px; color: var(--ink-soft); margin: 0; }
.sprinkle { position: absolute; top: 0; border-radius: 3px; opacity: 0; }

/* ---------- badge strip ---------- */
.strip { background: var(--warm); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.strip-grid {
  max-width: 1280px; margin: 0 auto;
  padding: clamp(26px, 3vw, 38px) clamp(16px, 4vw, 40px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr)); gap: clamp(16px, 2vw, 28px);
}
.strip-item { display: flex; align-items: center; gap: 14px; }
.strip-item span.label { font-family: var(--sans); font-weight: 600; font-size: 13px; letter-spacing: .09em; text-transform: uppercase; line-height: 1.5; }
.icon-heart { font-size: 22px; color: var(--accent); }
.icon-milk { width: 16px; height: 24px; border-radius: 4px 4px 6px 6px; border: 2px solid #8FB8D6; display: block; }
.icon-ring { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--accent-deep); display: block; }
.strip-item img { width: 20px; }

/* ---------- story ---------- */
.story-section { background: linear-gradient(180deg, var(--cream), #FFF2E9); }
.story-intro { max-width: 620px; margin-bottom: clamp(34px, 4.5vw, 56px); }
.story-intro h2 { font-size: clamp(28px, 3.8vw, 46px); margin: 0 0 18px; text-wrap: balance; }
.story-intro p { margin: 0; font-size: 17px; line-height: 1.8; color: var(--ink-soft); text-wrap: pretty; }
.story-intro strong { font-weight: 700; color: var(--ink); }
.story-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); gap: clamp(18px, 2.4vw, 28px); }
.story-card {
  background: var(--warm); border-radius: 28px; padding: 30px 26px;
  border: 1px solid var(--line); position: relative;
  transition: transform .35s cubic-bezier(.34, 1.4, .64, 1);
}
.story-card:hover { transform: translateY(-6px); }
.story-step { width: 44px; height: 44px; border-radius: 50%; background: var(--cream); border: 1.5px dashed rgba(46, 42, 40, .22); display: grid; place-items: center; font-family: var(--hand); font-size: 22px; color: var(--accent); margin-bottom: 18px; }
.story-year { font-family: var(--sans); font-weight: 700; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin: 0 0 8px; }
.story-card h3 { font-size: 20px; letter-spacing: -.02em; margin: 0 0 10px; }
.story-card p { margin: 0; font-size: 15.5px; line-height: 1.7; color: var(--ink-soft); }
.pullquote { font-family: var(--hand); font-size: clamp(26px, 3.4vw, 40px); text-align: center; color: var(--ink); margin: clamp(40px, 5vw, 64px) auto 0; max-width: 22ch; line-height: 1.35; }

/* ---------- CTA ---------- */
.cta-section { background: var(--cream); padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 40px); }
.cta {
  max-width: 1180px; margin: 0 auto;
  background: linear-gradient(135deg, #FBE3E4 0%, #FBEFCB 55%, #DDEDE3 100%);
  border-radius: clamp(28px, 4vw, 48px);
  padding: clamp(40px, 6vw, 84px) clamp(24px, 4vw, 64px);
  text-align: center; position: relative; overflow: hidden;
}
.cta h2 { font-size: clamp(30px, 5vw, 60px); letter-spacing: -.035em; margin: 0 0 20px; text-wrap: balance; }
.cta h2 .sub { font-family: var(--hand); font-weight: 600; font-size: .5em; color: var(--ink-soft); }
.cta .script { font-size: clamp(24px, 3vw, 32px); color: var(--accent-deep); margin: 0 0 10px; }
.cta p { margin: 0 auto 34px; max-width: 46ch; font-size: 17px; line-height: 1.7; color: var(--ink-soft); }
.cta-cone { position: absolute; opacity: .75; }
.cta-cone-1 { left: 6%; top: 16%; width: clamp(44px, 6vw, 74px); animation: fijsFloat 7s ease-in-out infinite; }
.cta-cone-2 { right: 7%; bottom: 14%; width: clamp(40px, 5.5vw, 68px); animation: fijsFloat 8s ease-in-out infinite 1.2s; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: #F7F1EC; }
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 40px) 32px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); gap: clamp(28px, 4vw, 48px);
}
.footer-logo { display: flex; align-items: center; gap: 2px; margin-bottom: 14px; }
.footer-logo span { font-family: var(--sans); font-weight: 700; font-size: 38px; letter-spacing: -.03em; line-height: 1; }
.footer-logo img { width: 30px; margin: 0 1px 6px; }
.footer-tag { font-family: var(--hand); font-size: 23px; color: #D9CEC6; margin: 0 0 20px; }
.footer h2 { font-family: var(--sans); font-weight: 700; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: #A79B93; margin: 0 0 16px; }
.footer-links { display: grid; gap: 10px; font-size: 16px; }
.footer a { color: #F7F1EC; }
.footer a:hover { color: var(--accent); }
.footer p.note { margin: 0 0 16px; font-size: 16px; line-height: 1.7; color: #D9CEC6; }
.footer .ig { width: 38px; height: 38px; border-color: rgba(247, 241, 236, .28); color: #F7F1EC; }
.footer .ig svg { width: 19px; height: 19px; }
.footer .ig:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-end { border-top: 1px solid rgba(247, 241, 236, .14); padding: 22px clamp(16px, 4vw, 40px); text-align: center; }
.footer-end p { font-family: var(--hand); font-size: 21px; color: #C9BDB4; margin: 0; }

/* ---------- mobile sticky CTA ---------- */
.sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 247, 240, .94); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line); display: none; gap: 10px;
}
.sticky a { flex: 1; text-align: center; font-size: 15px; padding: 17px 12px; min-height: 52px; display: grid; place-items: center; }
.sticky a.secondary { flex: 0 0 auto; padding-inline: 20px; }

/* ---------- responsive ---------- */
/* The design showed the tagline from 1320px, but logo + nav + CTA overflow and
   collide until about 1500px. Hide it until there is genuinely room. */
@media (max-width: 1499px) { .tagline { display: none; } }

@media (max-width: 1120px) {
  .nav, .header-actions { display: none; }
  .sticky { display: flex; }
  .footer-end { padding-bottom: calc(104px + env(safe-area-inset-bottom)); }
}

@media (min-width: 1121px) {
  .burger, .mobile-nav { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
