:root {
  --blue: #74dcfb;
  --blue-2: #9cecff;
  --blue-3: #dff8ff;
  --cream: #fff3dd;
  --cream-2: #fff9ee;
  --cream-3: #f8dfb6;
  --brown: #6a3515;
  --brown-2: #3a1608;
  --caramel: #b56a2e;
  --caramel-2: #8a4119;
  --gold: #e8a451;
  --text: #3b1a0a;
  --white: #ffffff;
  --shadow-soft: 0 24px 60px rgba(74, 32, 8, .16);
  --shadow-card: 0 16px 36px rgba(74, 32, 8, .18);
  --shadow-blue: 0 18px 40px rgba(18, 112, 145, .17);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --page: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 8% 11%, rgba(255,255,255,.72) 0 9%, transparent 23%),
    radial-gradient(circle at 88% 8%, rgba(255,255,255,.48) 0 6%, transparent 19%),
    linear-gradient(180deg, #66d2f4 0%, #91eaff 34%, #73ddfb 72%, #65d2f3 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: 0;
  pointer-events: none;
}

body::before {
  top: 98px;
  right: -120px;
  width: 270px;
  height: 520px;
  border-radius: 55% 45% 48% 52%;
  background:
    radial-gradient(circle at 35% 14%, rgba(255,255,255,.52), transparent 8%),
    linear-gradient(145deg, #2e0e03 0%, #622106 35%, #b75a19 62%, #3a1104 100%);
  transform: rotate(28deg);
  filter: blur(.2px) drop-shadow(0 18px 30px rgba(57, 17, 3, .28));
  opacity: .78;
}

body::after {
  left: -130px;
  bottom: 200px;
  width: 220px;
  height: 400px;
  border-radius: 52% 48% 60% 40%;
  background:
    radial-gradient(circle at 28% 16%, rgba(255,255,255,.42), transparent 8%),
    linear-gradient(145deg, #421606 0%, #8b3510 54%, #d77b2a 72%, #421606 100%);
  transform: rotate(-34deg);
  filter: blur(.2px) drop-shadow(0 18px 30px rgba(57, 17, 3, .18));
  opacity: .42;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.crumb,
.chocolate-drop {
  position: absolute;
  display: block;
  border-radius: 999px;
  opacity: .8;
  animation: floatCrumb 7s ease-in-out infinite;
}

.crumb {
  width: 14px;
  height: 11px;
  background: linear-gradient(135deg, #d99642, #8d4317);
  box-shadow: 0 5px 10px rgba(70, 24, 7, .15);
}

.chocolate-drop {
  width: 18px;
  height: 18px;
  background: radial-gradient(circle at 32% 24%, #e7a466 0 12%, #7b2a0a 45%, #391104 100%);
  box-shadow: 0 8px 12px rgba(57, 17, 3, .22);
}

.crumb-1 { left: 7%; top: 18%; animation-delay: .1s; }
.crumb-2 { left: 18%; top: 55%; width: 11px; height: 9px; animation-delay: 1.4s; }
.crumb-3 { right: 10%; top: 39%; width: 10px; height: 8px; animation-delay: 2.2s; }
.crumb-4 { right: 20%; bottom: 11%; width: 16px; height: 12px; animation-delay: 3.1s; }
.drop-1 { left: 11%; top: 36%; animation-delay: .7s; }
.drop-2 { right: 7%; top: 26%; width: 13px; height: 13px; animation-delay: 1.7s; }
.drop-3 { right: 13%; bottom: 27%; width: 21px; height: 21px; animation-delay: 2.6s; }

.header,
main,
.footer {
  position: relative;
  z-index: 1;
  width: var(--page);
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  margin-top: 14px;
  padding: 8px 18px 8px 22px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 24px;
  background: rgba(232, 250, 255, .78);
  box-shadow: var(--shadow-blue);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 180px;
}

.brand img {
  width: 178px;
  height: auto;
  filter: drop-shadow(0 4px 0 rgba(255,255,255,.28));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.3vw, 30px);
  color: var(--brown-2);
  font-size: 15px;
  font-weight: 900;
}

.nav a {
  position: relative;
  padding: 12px 0;
  transition: color .2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--caramel));
  transform: translateX(-50%);
  transition: width .25s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--caramel-2);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 16px;
  color: var(--brown);
  background: rgba(255,255,255,.58);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 23px;
  height: 3px;
  border-radius: 999px;
  background: var(--brown);
  margin: 3px auto;
  transition: transform .22s ease, opacity .22s ease;
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  font-size: 16px;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
  transform: translateX(-100%);
}

.btn:hover::before {
  animation: buttonShine .7s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.05);
}

.btn-primary {
  background: linear-gradient(180deg, #bc7335 0%, #873b13 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 12px 22px rgba(70, 27, 7, .28);
}

.btn-cream {
  color: var(--brown);
  background: linear-gradient(180deg, #fffaf1 0%, #f8ddb1 100%);
  box-shadow: 0 12px 22px rgba(70, 27, 7, .12);
}

.btn-icon,
.arrow {
  font-size: 19px;
  line-height: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 1.12fr);
  align-items: center;
  gap: 18px;
  padding: 68px 0 28px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-left: 8px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 9px 15px;
  border-radius: 999px;
  color: var(--brown);
  background: rgba(255, 245, 226, .88);
  box-shadow: 0 10px 22px rgba(86, 38, 10, .12);
  font-size: 14px;
  font-weight: 900;
}

.eyebrow strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.eyebrow strong::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #16ad5b;
  box-shadow: 0 0 0 6px rgba(22,173,91,.12);
}

.hero h1 {
  max-width: 600px;
  color: var(--brown-2);
  font-weight: 950;
  line-height: .9;
  letter-spacing: -2px;
  text-shadow: 0 4px 0 rgba(255,255,255,.5);
}

.hero h1 span {
  display: block;
  margin-bottom: 5px;
  font-size: clamp(35px, 5vw, 68px);
}

.hero h1 strong {
  display: block;
  margin: 2px 0 4px;
  color: var(--caramel);
  font-size: clamp(52px, 7.6vw, 104px);
  letter-spacing: -4px;
  line-height: .82;
  text-transform: uppercase;
  text-shadow:
    0 3px 0 #fff4dd,
    0 8px 0 rgba(91, 42, 14, .18),
    0 18px 32px rgba(71, 29, 8, .22);
  -webkit-text-stroke: 4px rgba(255, 239, 211, .85);
}

.hero h1 em {
  display: block;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6.2vw, 82px);
  font-style: italic;
  font-weight: 950;
  letter-spacing: -2px;
}

.hero-pill {
  width: fit-content;
  max-width: 540px;
  margin: 22px 0 24px;
  padding: 16px 22px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 18px;
  color: #4b240f;
  background: linear-gradient(180deg, #fff8e9, #f7ddb1);
  box-shadow: 0 12px 26px rgba(78, 33, 8, .16);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-media {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-media::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 80px 4% 30px 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.62), transparent 64%);
  filter: blur(6px);
}

.hero-media img,
.hero-media video {
  width: min(730px, 112%);
  max-width: none;
  border-radius: 22px;
  object-fit: cover;
  transform: translateX(18px);
  mix-blend-mode: multiply;
  filter: drop-shadow(0 28px 34px rgba(87, 35, 8, .22));
  animation: floatHero 5.8s ease-in-out infinite;
}

.hero-badge,
.footer-seal {
  display: grid;
  place-items: center;
  color: #fff3dd;
  text-align: center;
  font-weight: 950;
  line-height: .98;
  text-transform: uppercase;
  background:
    radial-gradient(circle at 35% 20%, rgba(255,255,255,.2), transparent 16%),
    linear-gradient(145deg, #ba7134 0%, #7d3511 100%);
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.45), inset 0 0 0 8px rgba(255,255,255,.08), 0 16px 30px rgba(76, 31, 7, .22);
}

.hero-badge {
  position: absolute;
  top: 22px;
  right: 8px;
  z-index: 5;
  width: 128px;
  height: 128px;
  border-radius: 34% 42% 34% 42%;
  font-size: 18px;
  transform: rotate(7deg);
  animation: badgePulse 3.6s ease-in-out infinite;
}

.section-panel {
  margin-top: -10px;
  padding: 28px 26px 30px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.54);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.section-heading {
  margin-bottom: 22px;
  text-align: center;
}

.section-heading span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--caramel-2);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.section-heading h2 {
  color: var(--brown);
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1;
  letter-spacing: -1px;
  text-shadow: 0 3px 0 rgba(255,255,255,.5);
}

.flavor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.flavor-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.96), rgba(255,255,255,.45) 38%, transparent 72%),
    linear-gradient(180deg, #fff8ec 0%, #f8dfb8 100%);
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}

.flavor-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(125deg, transparent 25%, rgba(255,255,255,.34) 50%, transparent 76%);
  opacity: 0;
  transform: translateX(-60%);
  pointer-events: none;
}

.flavor-card:hover {
  transform: translateY(-7px) rotate(-.5deg);
  box-shadow: 0 24px 44px rgba(72, 30, 8, .24);
}

.flavor-card:hover::before {
  animation: cardSweep .85s ease;
}

.flavor-image {
  position: relative;
  height: 198px;
  display: grid;
  place-items: center;
  padding: 13px 14px 0;
}

.flavor-image img {
  width: 100%;
  height: 188px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(75, 31, 8, .18));
  transform: scale(1.04);
  transition: transform .3s ease;
}

.flavor-card:hover .flavor-image img {
  transform: scale(1.11) rotate(1deg);
}

.flavor-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 62px;
  padding: 12px 16px 14px;
  color: var(--brown-2);
  background: rgba(255,255,255,.68);
  border-top: 1px solid rgba(114, 55, 20, .12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
}

.flavor-label h3 {
  font-size: 16px;
  line-height: 1.1;
  font-weight: 950;
}

.flavor-label span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(106, 53, 21, .32);
  border-radius: 999px;
  color: var(--brown);
  font-size: 22px;
  background: rgba(255,255,255,.52);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 22px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 28px;
  background: rgba(106,53,21,.16);
  box-shadow: var(--shadow-card);
}

.feature-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 18px;
  padding: 26px;
  background: linear-gradient(180deg, #fff6e7 0%, #f8dfb6 100%);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 21px;
  background: rgba(255,255,255,.58);
  color: var(--brown);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
}

.feature-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  color: var(--brown);
  font-size: 20px;
  line-height: 1.05;
  margin-bottom: 6px;
}

.feature-card p {
  color: #5a301a;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.36;
}

.gift-section {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  padding: 25px 30px;
  border: 2px dashed rgba(34, 145, 181, .45);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.52), transparent 28%),
    linear-gradient(180deg, rgba(185,241,255,.92), rgba(139,226,250,.82));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.68), var(--shadow-blue);
}

.gift-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.gift-visual::after {
  content: "♡";
  position: absolute;
  right: -5px;
  top: 8px;
  color: var(--brown);
  font-size: 34px;
  font-weight: 900;
  transform: rotate(12deg);
  opacity: .72;
}

.gift-visual img {
  width: 155px;
  height: auto;
  filter: drop-shadow(0 18px 18px rgba(34, 97, 122, .2));
  animation: floatGift 5.3s ease-in-out infinite;
}

.gift-copy h2 {
  color: var(--brown);
  font-size: clamp(27px, 3.3vw, 42px);
  line-height: 1.05;
  letter-spacing: -1px;
  text-align: center;
}

.gift-copy h2 span {
  color: #0e7fa8;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.gift-copy p {
  max-width: 700px;
  margin: 12px auto 0;
  color: #4b2510;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}

.testimonials {
  margin-top: 34px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-card {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 22px;
  background: rgba(255,255,255,.74);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(8px);
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.person > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--white);
  font-size: 21px;
  font-weight: 950;
  background:
    radial-gradient(circle at 34% 26%, rgba(255,255,255,.3), transparent 14%),
    linear-gradient(145deg, #c77a39, #74300f);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25);
}

.person strong {
  display: block;
  color: var(--brown-2);
  font-size: 15px;
}

.person small {
  display: block;
  margin-top: 3px;
  color: #ffb400;
  letter-spacing: 1px;
}

.testimonial-card p {
  color: #512b17;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.52;
}

.order-banner {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  margin-top: 28px;
  padding: 42px 32px 30px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 30px;
  background:
    radial-gradient(circle at 8% 40%, rgba(117,48,14,.22), transparent 19%),
    radial-gradient(circle at 91% 40%, rgba(117,48,14,.18), transparent 18%),
    linear-gradient(180deg, #fff4e0 0%, #f7dbac 100%);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.order-banner::before,
.order-banner::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 25%, #d58a3a 0 14%, #7b2a0a 42%, #361104 100%);
  opacity: .55;
}

.order-banner::before { width: 15px; height: 15px; left: 27%; top: 22%; }
.order-banner::after { width: 22px; height: 22px; right: 23%; bottom: 22%; }

.order-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.order-content h2 {
  color: var(--brown);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -1px;
  text-shadow: 0 3px 0 rgba(255,255,255,.56);
}

.order-content p {
  margin: 8px 0 20px;
  color: #53280f;
  font-size: clamp(18px, 2.2vw, 25px);
  font-weight: 800;
}

.order-cookie {
  position: absolute;
  z-index: 1;
  width: 300px;
  filter: drop-shadow(0 20px 22px rgba(74, 32, 8, .18));
  pointer-events: none;
}

.order-cookie-left {
  left: -82px;
  bottom: -58px;
  transform: rotate(-8deg);
}

.order-cookie-right {
  right: -70px;
  bottom: -70px;
  transform: rotate(10deg);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px auto 0;
}

.trust-row span {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--brown);
  background: rgba(255,255,255,.6);
  font-size: 13px;
  font-weight: 950;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
}

.footer {
  display: grid;
  grid-template-columns: 1.25fr .75fr .95fr 1.1fr auto;
  gap: 24px;
  align-items: start;
  margin-top: 22px;
  margin-bottom: 34px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 30px;
  background: rgba(213, 247, 255, .78);
  box-shadow: var(--shadow-blue);
  backdrop-filter: blur(10px);
}

.footer-brand img {
  width: 178px;
  height: auto;
  margin-bottom: 10px;
}

.footer-brand p {
  max-width: 250px;
  color: #4b2612;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: white;
  background: var(--brown);
  font-size: 12px;
  font-weight: 950;
  transition: transform .2s ease, background .2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: var(--caramel-2);
}

.footer-col {
  display: grid;
  gap: 8px;
  color: #4d2713;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.footer-col h3 {
  margin-bottom: 6px;
  color: var(--brown);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
  font-size: 16px;
}

.footer-col a,
.footer-col span {
  line-height: 1.35;
}

.footer-col a:hover {
  color: var(--caramel-2);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.footer-seal {
  align-self: center;
  justify-self: end;
  width: 132px;
  height: 132px;
  border-radius: 34% 42% 34% 42%;
  font-size: 18px;
  transform: rotate(5deg);
}

.js [data-animate] {
  opacity: 0;
  transform: translateY(26px) scale(.985);
  transition: opacity .58s ease, transform .58s cubic-bezier(.2,.8,.2,1);
}

.js [data-animate].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.flavor-card:nth-child(2) { transition-delay: .05s; }
.flavor-card:nth-child(3) { transition-delay: .1s; }
.flavor-card:nth-child(4) { transition-delay: .15s; }
.flavor-card:nth-child(5) { transition-delay: .05s; }
.flavor-card:nth-child(6) { transition-delay: .1s; }
.flavor-card:nth-child(7) { transition-delay: .15s; }
.flavor-card:nth-child(8) { transition-delay: .2s; }

@keyframes floatHero {
  0%, 100% { transform: translateX(18px) translateY(0); }
  50% { transform: translateX(18px) translateY(-12px); }
}

@keyframes floatGift {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

@keyframes floatCrumb {
  0%, 100% { transform: translate3d(0,0,0) rotate(0deg); }
  50% { transform: translate3d(8px,-14px,0) rotate(14deg); }
}

@keyframes buttonShine {
  0% { opacity: 0; transform: translateX(-100%); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateX(120%); }
}

@keyframes cardSweep {
  0% { opacity: 0; transform: translateX(-85%); }
  45% { opacity: 1; }
  100% { opacity: 0; transform: translateX(85%); }
}

@keyframes badgePulse {
  0%, 100% { transform: rotate(7deg) scale(1); }
  50% { transform: rotate(4deg) scale(1.045); }
}

@media (max-width: 1300px) {
  .hero-media img,
  .hero-media video {
    width: 100%;
    max-width: 100%;
    transform: none;
  }
}

@media (max-width: 1200px) {
  .header {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: grid;
    grid-column: 2;
    justify-self: end;
  }

  .nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 10px);
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 20px;
    background: rgba(236, 251, 255, .96);
    box-shadow: var(--shadow-blue);
  }

  .nav.is-open {
    display: grid;
  }

  .nav a {
    padding: 12px;
    border-radius: 14px;
    background: rgba(255,255,255,.5);
    text-align: center;
  }

  .nav a::after {
    display: none;
  }

  .header-cta {
    grid-column: 3;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .hero-copy {
    text-align: center;
    padding-left: 0;
  }

  .hero h1,
  .hero-pill {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-media {
    min-height: auto;
    margin-top: -10px;
  }

  .hero-media img,
  .hero-media video {
    width: 100%;
    max-width: 100%;
    height: auto;
    transform: none;
  }

  @keyframes floatHero {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  .flavor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .features,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .gift-section {
    grid-template-columns: 150px 1fr;
  }

  .gift-section .btn {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-seal {
    justify-self: start;
  }
}

@media (max-width: 700px) {
  :root {
    --page: min(100% - 22px, 1180px);
  }

  html {
    scroll-padding-top: 96px;
  }

  body::before,
  body::after {
    opacity: .28;
  }

  .header {
    top: 8px;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 8px 10px 8px 14px;
    border-radius: 20px;
  }

  .brand img {
    width: 146px;
  }

  .menu-toggle {
    grid-column: 2;
  }

  .header-cta {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 44px;
  }

  .nav {
    left: 8px;
    right: 8px;
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }

  .eyebrow {
    flex-direction: column;
    gap: 6px;
  }

  .hero h1 strong {
    -webkit-text-stroke: 2px rgba(255, 239, 211, .85);
    letter-spacing: -3px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-badge {
    width: 102px;
    height: 102px;
    right: -6px;
    top: 2px;
    font-size: 14px;
  }

  .section-panel {
    padding: 22px 13px 20px;
  }

  .flavor-grid {
    grid-template-columns: 1fr;
  }

  .flavor-card {
    min-height: 250px;
  }

  .features {
    border-radius: 24px;
  }

  .feature-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px 20px;
  }

  .feature-icon {
    margin-inline: auto;
  }

  .gift-section {
    grid-template-columns: 1fr;
    padding: 24px 16px;
    text-align: center;
  }

  .gift-visual img {
    width: 148px;
  }

  .testimonial-grid,
  .trust-row {
    grid-template-columns: 1fr;
  }

  .order-banner {
    padding: 38px 18px 24px;
  }

  .order-cookie {
    opacity: .22;
    width: 230px;
  }

  .footer {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  .footer-seal {
    justify-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .js [data-animate] {
    opacity: 1;
    transform: none;
  }
}
