@layer reset, base, layout, components, motion, responsive;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  html { overflow-x: clip; scroll-behavior: smooth; }
  body, h1, h2, h3, p, figure, dl, dd, ol, ul { margin: 0; }
  ol, ul { padding: 0; list-style: none; }
  img { display: block; max-width: 100%; height: auto; }
  button, input, select { font: inherit; }
  button, a { -webkit-tap-highlight-color: transparent; }
  a { color: inherit; text-decoration: none; }
  summary { list-style: none; }
  summary::-webkit-details-marker { display: none; }
}

@layer base {
  :root {
    --paper: #f4f0ea;
    --paper-2: #fbf9f5;
    --white: #fffdfa;
    --ink: #181313;
    --muted: #6f6865;
    --line: rgba(24, 19, 19, 0.16);
    --raspberry: #b91f52;
    --raspberry-deep: #65182f;
    --apple: #bfd56e;
    --apple-deep: #183c2d;
    --tropical: #f1a05e;
    --sans: "Instrument Sans", "DM Sans", Arial, sans-serif;
    --serif: "Gilda Display", Georgia, serif;
    --ease: cubic-bezier(.22, 1, .36, 1);
    --page: min(92vw, 1500px);
    --pad: clamp(22px, 4.5vw, 72px);
  }

  body {
    min-width: 320px;
    overflow-x: clip;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
  }

  body.menu-open,
  body.drawer-open { overflow: hidden; }

  ::selection { color: var(--white); background: var(--raspberry); }

  :focus-visible {
    outline: 2px solid var(--raspberry);
    outline-offset: 4px;
  }

  .skip-link {
    position: fixed;
    z-index: 999;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    color: var(--white);
    background: var(--ink);
    transform: translateY(-160%);
    transition: transform 180ms ease;
  }

  .skip-link:focus { transform: translateY(0); }

  h1, h2, h3 { font-weight: 500; line-height: .93; letter-spacing: -.055em; }
  h2 { font-size: clamp(3.2rem, 7.4vw, 8.8rem); }
  h2 em { color: var(--raspberry); font-family: var(--serif); font-weight: 400; }
  p { color: var(--muted); }

  .section-kicker,
  .eyebrow {
    color: var(--ink);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .18em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .text-link {
    display: inline-flex;
    width: fit-content;
    padding-bottom: 5px;
    border-bottom: 1px solid currentColor;
    font-size: .92rem;
    font-weight: 600;
  }
}

@layer layout {
  .announcement {
    display: flex;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 4vw, 72px);
    padding: 7px 20px;
    color: var(--white);
    background: var(--ink);
    font-size: .63rem;
    font-weight: 600;
    letter-spacing: .19em;
    line-height: 1.15;
    text-transform: uppercase;
  }

  .announcement span + span::before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 3px;
    margin: 0 clamp(24px, 4vw, 72px) 2px 0;
    border-radius: 50%;
    background: currentColor;
    opacity: .7;
  }

  .header {
    position: relative;
    z-index: 40;
    display: grid;
    min-height: 88px;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 var(--pad);
    border-bottom: 1px solid var(--line);
    background: rgba(244, 240, 234, .94);
    backdrop-filter: blur(14px);
  }

  .brand {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 14px;
    justify-self: start;
  }

  .brand__monogram {
    position: relative;
    display: block;
    width: 39px;
    height: 40px;
    font-family: var(--serif);
    font-size: 2.45rem;
    line-height: 1;
  }

  .brand__monogram > span { position: absolute; }
  .brand__monogram > span:first-child { top: -3px; left: 0; }
  .brand__monogram > span:last-child { top: 8px; left: 16px; font-size: 2.05rem; }

  .brand__wordmark {
    font-family: var(--serif);
    font-size: 1.05rem;
    letter-spacing: .22em;
    text-transform: uppercase;
  }

  .nav {
    display: flex;
    align-items: center;
    gap: clamp(22px, 2.6vw, 46px);
    justify-self: center;
  }

  .nav a {
    position: relative;
    font-size: .76rem;
    font-weight: 500;
  }

  .nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 320ms var(--ease);
  }

  .nav a:hover::after,
  .nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
  .nav__account-mobile { display: none; }

  .header__actions {
    display: flex;
    align-items: center;
    gap: 22px;
    justify-self: end;
  }

  .account-button {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
  }

  .account-button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.4; }

  .cart-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    border: 0;
    color: inherit;
    background: none;
    cursor: pointer;
    font-size: .78rem;
  }

  .cart-button__count {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--raspberry);
    font-size: .68rem;
  }

  .menu-button { display: none; }

  .campaign {
    overflow: clip;
    background: var(--paper);
  }

  .campaign__heading {
    display: grid;
    min-height: clamp(280px, 25vw, 360px);
    grid-template-columns: minmax(0, 1.65fr) minmax(280px, .8fr);
    gap: 6vw;
    align-items: end;
    padding: clamp(32px, 4vw, 58px) var(--pad) clamp(30px, 3.4vw, 48px);
  }

  .campaign__eyebrow { margin-bottom: clamp(16px, 2vw, 28px); }

  .campaign__title-group h1 {
    max-width: 11ch;
    font-size: clamp(4.2rem, 7.8vw, 9.2rem);
    line-height: .78;
    letter-spacing: -.075em;
  }

  .campaign__title-group h1 span { display: block; }
  .campaign__title-group h1 span:last-child { margin-left: .78em; white-space: nowrap; }

  .campaign__pitch {
    display: grid;
    max-width: 390px;
    gap: 22px;
    padding-bottom: 4px;
  }

  .campaign__pitch > p { max-width: 36ch; font-size: 1rem; line-height: 1.65; }

  .campaign__price { display: flex; align-items: baseline; gap: 12px; }
  .campaign__price strong { font-family: var(--serif); font-size: 1.75rem; font-weight: 400; }
  .campaign__price span { color: var(--muted); font-size: .75rem; }

  .campaign__cta {
    display: flex;
    width: min(100%, 280px);
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px 0 20px;
    border-bottom: 1px solid var(--ink);
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
  }

  .campaign__cta svg {
    width: 40px;
    height: 40px;
    padding: 11px;
    border-radius: 50%;
    color: var(--white);
    background: var(--ink);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
    transition: transform 300ms var(--ease), background 300ms ease;
  }

  .campaign__cta:hover svg { background: var(--raspberry); transform: rotate(-10deg) scale(1.05); }

  .flavour-stage {
    display: flex;
    min-height: clamp(480px, 60vw, 760px);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .flavour-panel {
    position: relative;
    overflow: hidden;
    flex: 1 1 0;
    min-width: 0;
    color: var(--white);
    isolation: isolate;
    transition: flex 700ms var(--ease);
  }

  .flavour-panel + .flavour-panel { border-left: 1px solid rgba(255,255,255,.35); }
  .flavour-panel--apple { flex: 1.24 1 0; }
  .flavour-stage:has(.flavour-panel:hover) .flavour-panel { flex: .78 1 0; }
  .flavour-stage .flavour-panel:hover { flex: 1.55 1 0; }

  .flavour-panel::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(12,8,8,.18), transparent 35%, rgba(12,8,8,.55));
    content: "";
  }

  .flavour-panel img {
    position: absolute;
    z-index: -2;
    inset: -3%;
    width: 106%;
    height: 106%;
    max-width: none;
    object-fit: cover;
    transform: translate3d(var(--pointer-x, 0), calc(var(--pointer-y, 0) + var(--scroll-shift, 0px)), 0) scale(1.02);
    transition: transform 900ms var(--ease), filter 600ms ease;
  }

  .flavour-panel:hover img { filter: saturate(1.04) contrast(1.02); transform: translate3d(var(--pointer-x, 0), calc(var(--pointer-y, 0) + var(--scroll-shift, 0px)), 0) scale(1.065); }

  .flavour-panel__top {
    position: absolute;
    top: 22px;
    right: 24px;
    left: 24px;
    display: flex;
    justify-content: space-between;
    font-size: .64rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
  }

  .flavour-panel__caption {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 2px 16px;
  }

  .flavour-panel__caption small { grid-column: 1 / -1; font-size: .65rem; letter-spacing: .13em; text-transform: uppercase; }
  .flavour-panel__caption strong { font-family: var(--serif); font-size: clamp(1.8rem, 3.2vw, 3.8rem); font-weight: 400; line-height: 1; }
  .flavour-panel__caption > span { padding-bottom: 6px; border-bottom: 1px solid currentColor; font-size: .7rem; }

  .campaign__facts {
    display: grid;
    min-height: 92px;
    grid-template-columns: repeat(4, 1fr) auto;
    align-items: center;
    padding: 0 var(--pad);
    border-bottom: 1px solid var(--line);
  }

  .campaign__facts > * { padding: 0 clamp(14px, 2.5vw, 38px); }
  .campaign__facts > *:first-child { padding-left: 0; }
  .campaign__facts span { display: flex; align-items: baseline; gap: 8px; border-right: 1px solid var(--line); color: var(--muted); font-size: .72rem; text-transform: uppercase; }
  .campaign__facts strong { color: var(--ink); font-family: var(--serif); font-size: 1.45rem; font-weight: 400; text-transform: none; }
  .campaign__facts a { padding-right: 0; font-size: .72rem; font-weight: 600; }

  .category {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(24px, 3vw, 48px);
    padding: clamp(82px, 10vw, 160px) var(--pad);
    background: var(--paper-2);
  }

  .category__intro { grid-column: 1 / 8; }
  .category__intro h2 { max-width: 9ch; margin: clamp(28px, 4vw, 58px) 0 38px; }
  .category__intro > p:last-child { max-width: 43ch; margin-left: 24%; font-size: 1.05rem; line-height: 1.7; }

  .category__visual {
    position: relative;
    grid-column: 5 / -1;
    margin-top: clamp(28px, 5vw, 74px);
    overflow: hidden;
  }

  .category__visual img { width: 100%; aspect-ratio: 16 / 8.6; object-fit: cover; transition: transform 900ms var(--ease); }
  .category__visual:hover img { transform: scale(1.018); }
  .category__visual figcaption { max-width: 62ch; padding-top: 12px; color: var(--muted); font-size: .68rem; }

  .category__facts {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
    margin-top: clamp(36px, 5vw, 72px);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .category__facts > div { display: grid; min-height: 210px; grid-template-columns: 46px 1fr; gap: 18px; padding: 34px; }
  .category__facts > div + div { border-left: 1px solid var(--line); }
  .category__facts dt { color: var(--muted); font-size: .7rem; }
  .category__facts dd { display: grid; align-content: space-between; gap: 40px; }
  .category__facts strong { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 4.6rem); font-weight: 400; line-height: 1; }
  .category__facts span { max-width: 30ch; color: var(--muted); font-size: .85rem; }

  .ritual {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 8vw;
    padding: clamp(82px, 10vw, 150px) var(--pad);
    background: #dce5ca;
  }

  .ritual__header h2 { max-width: 8ch; margin-top: 42px; }
  .ritual__header h2 em { color: var(--apple-deep); }
  .ritual__steps { border-top: 1px solid rgba(24,19,19,.28); }
  .ritual__steps li { display: grid; min-height: 162px; grid-template-columns: 58px 1fr; align-items: start; padding: 30px 0; border-bottom: 1px solid rgba(24,19,19,.28); }
  .ritual__steps li > span { font-size: .68rem; }
  .ritual__steps strong { display: block; margin-bottom: 14px; font-family: var(--serif); font-size: clamp(2rem, 3vw, 3.2rem); font-weight: 400; line-height: 1; }
  .ritual__steps p { max-width: 42ch; color: rgba(24,19,19,.7); }

  .collection { padding: clamp(82px, 10vw, 150px) var(--pad); background: var(--paper); }
  .section-header { display: grid; grid-template-columns: 1.5fr .5fr; gap: 6vw; align-items: end; margin-bottom: clamp(52px, 7vw, 100px); }
  .section-header h2 { max-width: 9ch; margin-top: 38px; }
  .section-header > p { max-width: 35ch; padding-bottom: 10px; line-height: 1.7; }

  .flavour-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; align-items: start; }
  .flavour-card { display: grid; gap: 18px; }
  .flavour-card:nth-child(1) { grid-column: 1 / 5; }
  .flavour-card:nth-child(2) { grid-column: 5 / 10; margin-top: 8vw; }
  .flavour-card:nth-child(3) { grid-column: 10 / -1; margin-top: 2vw; }

  .flavour-card__image { position: relative; display: block; overflow: hidden; background: #eee8df; }
  .flavour-card__image img { width: 100%; aspect-ratio: 3 / 4.15; object-fit: cover; transition: transform 900ms var(--ease); }
  .flavour-card__image > span { position: absolute; top: 16px; left: 16px; display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; color: var(--white); background: rgba(24,19,19,.78); font-size: .66rem; }
  .flavour-card__image:hover img { transform: scale(1.035); }
  .flavour-card__body { display: flex; align-items: start; justify-content: space-between; gap: 14px; }
  .flavour-card__body h3 { margin-bottom: 8px; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 3.2rem); font-weight: 400; letter-spacing: -.035em; }
  .flavour-card__body p, .flavour-card__body > span { font-size: .77rem; }
  .flavour-card__body > span { padding-top: 10px; font-weight: 600; white-space: nowrap; }
  .flavour-card__link { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: .78rem; font-weight: 600; }
  .flavour-card__link span { transition: transform 260ms var(--ease); }
  .flavour-card__link:hover span { transform: translate(2px, -2px); }

  .formula {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 8vw;
    padding: clamp(82px, 10vw, 150px) var(--pad);
    border-top: 1px solid var(--line);
    background: #e8e2d9;
  }

  .formula__heading h2 { max-width: 10ch; margin: 40px 0 32px; font-size: clamp(3.2rem, 6vw, 7.2rem); }
  .formula__heading > p:not(.section-kicker) { max-width: 44ch; margin-bottom: 30px; line-height: 1.7; }
  .formula__data { border-top: 1px solid var(--line); }
  .formula__data > div { display: grid; grid-template-columns: 150px 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--line); }
  .formula__data dt { color: var(--muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .13em; }
  .formula__data dd { font-family: var(--serif); font-size: clamp(1.3rem, 2.2vw, 2.2rem); line-height: 1.15; }
  .formula__notice { grid-column: 1 / -1; max-width: 80ch; padding-top: 16px; border-top: 1px solid var(--line); font-size: .7rem; }

  .decision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7vw;
    align-items: end;
    padding: clamp(82px, 10vw, 150px) var(--pad);
    color: var(--white);
    background: var(--raspberry-deep);
  }

  .decision .section-kicker, .decision p { color: rgba(255,255,255,.72); }
  .decision h2 { max-width: 10ch; margin: 38px 0 32px; font-size: clamp(3.3rem, 6.8vw, 8rem); }
  .decision__copy > p:last-child { max-width: 42ch; }
  .decision__actions { border-top: 1px solid rgba(255,255,255,.35); }
  .decision__actions a { display: flex; min-height: 96px; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.35); font-family: var(--serif); font-size: clamp(1.5rem, 2.4vw, 2.7rem); }
  .decision__actions b { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; font-family: var(--sans); font-size: .63rem; font-weight: 500; transition: color 280ms ease, background 280ms ease, transform 280ms var(--ease); }
  .decision__actions a:hover b { color: var(--raspberry-deep); background: var(--white); transform: rotate(12deg); }

  .faq { display: grid; grid-template-columns: .65fr 1.35fr; gap: 8vw; padding: clamp(82px, 9vw, 140px) var(--pad); background: var(--paper-2); }
  .faq header h2 { max-width: 8ch; margin-top: 34px; font-size: clamp(3rem, 5vw, 6.2rem); }
  .faq__list { border-top: 1px solid var(--line); }
  .faq details { border-bottom: 1px solid var(--line); }
  .faq summary { display: grid; min-height: 88px; grid-template-columns: 1fr auto; align-items: center; gap: 24px; cursor: pointer; font-size: 1rem; font-weight: 500; }
  .faq summary span { font-family: var(--serif); font-size: 1.6rem; transition: transform 300ms var(--ease); }
  .faq details[open] summary span { transform: rotate(45deg); }
  .faq details p { max-width: 62ch; padding: 0 50px 28px 0; line-height: 1.7; }

  .footer {
    display: grid;
    grid-template-columns: 1.5fr .55fr .65fr;
    gap: 7vw;
    padding: 72px var(--pad) 34px;
    color: var(--white);
    background: var(--ink);
  }

  .brand--footer { color: var(--white); }
  .footer__brand > p { margin-top: 28px; color: rgba(255,255,255,.58); font-family: var(--serif); font-size: clamp(1.8rem, 3.2vw, 3.4rem); }
  .footer__links { display: grid; align-content: start; gap: 12px; font-size: .76rem; }
  .footer__links strong { margin-bottom: 8px; color: rgba(255,255,255,.48); font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; }
  .footer__links a { width: fit-content; border-bottom: 1px solid transparent; }
  .footer__links a:hover { border-color: currentColor; }
  .footer__status { grid-column: 1 / -1; margin-top: 42px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.42); font-size: .66rem; }
}

@layer components {
  .button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: .76rem;
    font-weight: 600;
  }

  .button--primary { color: var(--white); background: var(--ink); }
  .button--primary:hover { background: var(--raspberry-deep); }

  .cookie-banner {
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 18px var(--pad);
    border-top: 1px solid var(--line);
    background: rgba(255,253,250,.98);
    box-shadow: 0 -16px 40px rgba(24,19,19,.08);
  }

  .cookie-banner[hidden] { display: none; }
  .cookie-banner p { max-width: 76ch; font-size: .83rem; line-height: 1.55; }
  .cookie-banner a { color: var(--raspberry); text-decoration: underline; text-underline-offset: 3px; }
  .cookie-banner__actions { display: flex; gap: 12px; }
  .cookie-button { min-width: 116px; min-height: 46px; border: 1px solid var(--line); border-radius: 999px; cursor: pointer; font-size: .76rem; font-weight: 600; }
  .cookie-button--refuse { color: var(--ink); background: var(--white); }
  .cookie-button--accept { border-color: transparent; color: var(--white); background: var(--raspberry); }

  .cart-layer { position: fixed; z-index: 200; inset: 0; }
  .cart-layer[hidden] { display: none; }
  .cart-scrim { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(24,19,19,.42); backdrop-filter: blur(3px); cursor: pointer; }
  .cart-drawer { position: absolute; top: 0; right: 0; display: grid; width: min(100%, 470px); height: 100%; grid-template-rows: auto 1fr auto; background: var(--paper-2); box-shadow: -28px 0 70px rgba(24,19,19,.16); animation: drawer-in 420ms var(--ease) both; }
  .cart-drawer__header { display: flex; min-height: 92px; align-items: center; justify-content: space-between; padding: 0 28px; border-bottom: 1px solid var(--line); }
  .cart-drawer__header h2 { font-family: var(--serif); font-size: 2rem; font-weight: 400; letter-spacing: -.03em; }
  .cart-close { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; font-size: 1.4rem; }
  .cart-drawer__body { overflow-y: auto; padding: 28px; }
  .cart-drawer__footer { padding: 24px 28px; border-top: 1px solid var(--line); }
  .cart-empty { display: grid; min-height: 70vh; align-content: center; justify-items: start; gap: 20px; }
  .cart-empty h3 { max-width: 8ch; font-family: var(--serif); font-size: 3rem; font-weight: 400; letter-spacing: -.04em; }
  .cart-empty p { max-width: 32ch; }
  .cart-item { display: grid; grid-template-columns: 112px 1fr; gap: 20px; padding: 0 0 24px; border-bottom: 1px solid var(--line); }
  .cart-item + .cart-item { padding-top: 24px; }
  .cart-item img { width: 112px; height: 144px; object-fit: cover; }
  .cart-item__content { display: grid; align-content: start; }
  .cart-item__content h3 { margin-bottom: 8px; font-family: var(--serif); font-size: 1.5rem; font-weight: 400; letter-spacing: -.03em; }
  .cart-item__content > strong { font-size: .82rem; }
  .cart-item__content > p { margin-top: 4px; font-size: .72rem; }
  .cart-item__actions { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 16px; }
  .cart-item__quantity { display: grid; grid-template-columns: repeat(3, 32px); border: 1px solid var(--line); }
  .cart-item__quantity button { height: 32px; border: 0; background: transparent; cursor: pointer; }
  .cart-item__quantity span { display: grid; place-items: center; font-size: .72rem; }
  .cart-remove { padding: 4px 0; border: 0; border-bottom: 1px solid currentColor; color: var(--muted); background: transparent; cursor: pointer; font-size: .68rem; }
  .cart-progress { margin-bottom: 18px; padding: 12px 14px; color: var(--apple-deep); background: rgba(191,213,110,.28); font-size: .72rem; }
  .cart-total { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 6px; }
  .cart-total strong { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
  .cart-drawer__footer > p:not(.cart-progress) { margin-bottom: 18px; font-size: .68rem; }
  .cart-drawer__footer .button { width: 100%; }
  .cart-live { position: fixed; overflow: hidden; width: 1px; height: 1px; clip: rect(0 0 0 0); }
}

@layer motion {
  @keyframes drawer-in { from { transform: translateX(100%); } to { transform: translateX(0); } }

  .js [data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 760ms var(--ease), transform 760ms var(--ease);
  }

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

  .js .flavour-panel {
    opacity: .88;
    animation: panel-reveal 620ms var(--ease) forwards;
  }

  .js .flavour-panel:nth-child(2) { animation-delay: 50ms; }
  .js .flavour-panel:nth-child(3) { animation-delay: 100ms; }
  @keyframes panel-reveal { to { opacity: 1; } }

  @supports (animation-timeline: view()) {
    .category__visual img {
      animation: visual-drift linear both;
      animation-timeline: view();
      animation-range: entry 0% exit 100%;
    }

    @keyframes visual-drift { from { transform: scale(1.06) translateY(-2%); } to { transform: scale(1.01) translateY(2%); } }
  }
}

@layer responsive {
  @media (max-width: 1100px) {
    .header { grid-template-columns: 1fr auto 1fr; }
    .brand__wordmark { display: none; }
    .nav { gap: 22px; }
    .campaign__title-group h1 { font-size: clamp(4.2rem, 9vw, 7rem); }
    .campaign__heading { grid-template-columns: 1.35fr .65fr; }
    .category__intro { grid-column: 1 / 9; }
    .category__visual { grid-column: 3 / -1; }
    .formula { grid-template-columns: .9fr 1.1fr; }
  }

  @media (max-width: 860px) {
    .announcement { justify-content: space-between; gap: 14px; padding-inline: 18px; font-size: .57rem; letter-spacing: .13em; }
    .announcement span + span::before { display: none; }
    .header { position: sticky; top: 0; min-height: 72px; grid-template-columns: 44px 1fr auto; padding-inline: 18px; }
    .menu-button { position: relative; z-index: 42; display: grid; width: 42px; height: 42px; place-content: center; gap: 6px; border: 0; background: transparent; cursor: pointer; }
    .menu-button span { display: block; width: 20px; height: 1px; background: currentColor; transition: transform 280ms var(--ease); }
    .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
    .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
    .brand { justify-self: center; }
    .brand__monogram { width: 34px; height: 36px; font-size: 2.15rem; }
    .brand__monogram > span:last-child { top: 7px; left: 14px; font-size: 1.8rem; }
    .nav { position: fixed; z-index: 40; inset: 0; display: grid; align-content: center; justify-items: center; gap: 24px; padding: 96px 24px 40px; background: var(--paper); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity 280ms ease, transform 380ms var(--ease); }
    .nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
    .nav a { font-family: var(--serif); font-size: clamp(1.8rem, 7vw, 3rem); }
    .nav__account-mobile { display: block; }
    .account-button { display: none; }
    .header__actions { gap: 8px; }
    .cart-button > span:first-child { display: none; }
    .cart-button__count { width: 34px; height: 34px; }

    .campaign__heading { min-height: auto; grid-template-columns: 1fr; gap: 38px; padding: 42px 22px 38px; }
    .campaign__title-group h1 { font-size: clamp(3.7rem, 13.8vw, 7.2rem); line-height: .84; }
    .campaign__title-group h1 span:last-child { margin-left: .35em; }
    .campaign__pitch { max-width: none; grid-template-columns: 1fr auto; align-items: end; }
    .campaign__pitch > p { grid-column: 1 / -1; }
    .campaign__price { display: grid; gap: 0; }
    .campaign__cta { width: 240px; }

    .flavour-stage { min-height: 500px; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; }
    .flavour-stage::-webkit-scrollbar { display: none; }
    .flavour-panel, .flavour-panel--apple, .flavour-stage:has(.flavour-panel:hover) .flavour-panel, .flavour-stage .flavour-panel:hover { flex: 0 0 74vw; scroll-snap-align: center; }
    .flavour-panel:first-child { margin-left: 10vw; }
    .flavour-panel:last-child { margin-right: 10vw; }
    .flavour-panel img, .flavour-panel:hover img { transform: none; }
    .campaign__facts { grid-template-columns: repeat(2, 1fr); padding: 0 22px; }
    .campaign__facts > * { min-height: 68px; padding: 0 12px; }
    .campaign__facts > *:nth-child(2) { border-right: 0; }
    .campaign__facts a { grid-column: 1 / -1; min-height: 58px; display: grid; align-items: center; border-top: 1px solid var(--line); }

    .category { grid-template-columns: 1fr; gap: 0; padding: 78px 22px; }
    .category__intro, .category__visual, .category__facts { grid-column: 1; }
    .category__intro > p:last-child { margin-left: 16%; }
    .category__visual { margin-top: 54px; }
    .category__visual img { aspect-ratio: 4 / 3; }
    .category__facts { grid-template-columns: 1fr; }
    .category__facts > div { min-height: 150px; }
    .category__facts > div + div { border-top: 1px solid var(--line); border-left: 0; }

    .ritual { grid-template-columns: 1fr; gap: 64px; padding: 78px 22px; }
    .ritual__header h2 { max-width: 9ch; }
    .ritual__steps li { min-height: 138px; }

    .collection { padding: 78px 22px; }
    .section-header { grid-template-columns: 1fr; gap: 32px; }
    .section-header > p { padding-left: 18%; }
    .flavour-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
    .flavour-card:nth-child(1), .flavour-card:nth-child(2), .flavour-card:nth-child(3) { grid-column: auto; margin-top: 0; }
    .flavour-card:nth-child(3) { grid-column: 1 / -1; width: calc(50% - 8px); margin-left: auto; }

    .formula { grid-template-columns: 1fr; gap: 62px; padding: 78px 22px; }
    .formula__notice { grid-column: 1; }
    .decision { grid-template-columns: 1fr; gap: 64px; padding: 78px 22px; }
    .faq { grid-template-columns: 1fr; gap: 54px; padding: 78px 22px; }
    .footer { grid-template-columns: 1.2fr .8fr; padding: 60px 22px 28px; }
    .footer__brand { grid-column: 1 / -1; margin-bottom: 18px; }
    .footer__status { grid-column: 1 / -1; }
  }

  @media (max-width: 560px) {
    .announcement span:last-child { display: none; }
    .announcement { justify-content: center; }
    .campaign__heading { padding-top: 34px; }
    .campaign__eyebrow { margin-bottom: 18px; }
    .campaign__title-group h1 { font-size: clamp(3.25rem, 16vw, 5.4rem); }
    .campaign__pitch { grid-template-columns: 1fr; gap: 18px; }
    .campaign__price { display: flex; }
    .campaign__cta { width: 100%; }
    .flavour-stage { min-height: min(124vw, 560px); }
    .flavour-panel, .flavour-panel--apple, .flavour-stage:has(.flavour-panel:hover) .flavour-panel, .flavour-stage .flavour-panel:hover { flex-basis: 86vw; }
    .flavour-panel:first-child { margin-left: 7vw; }
    .flavour-panel:last-child { margin-right: 7vw; }
    .flavour-panel__caption strong { font-size: 2.35rem; }
    .campaign__facts span { display: grid; align-content: center; gap: 2px; }
    .campaign__facts strong { font-size: 1.3rem; }
    .category__intro > p:last-child, .section-header > p { margin-left: 0; padding-left: 0; }
    .category__visual img { aspect-ratio: 1 / .84; }
    .category__facts > div { grid-template-columns: 36px 1fr; padding-inline: 12px; }
    .ritual__steps li { grid-template-columns: 42px 1fr; }
    .flavour-grid { grid-template-columns: 1fr; }
    .flavour-card:nth-child(3) { grid-column: auto; width: auto; margin: 0; }
    .flavour-card__image img { aspect-ratio: 4 / 4.8; }
    .formula__data > div { grid-template-columns: 104px 1fr; }
    .decision__actions a { min-height: 80px; }
    .faq summary { min-height: 78px; font-size: .92rem; }
    .footer { grid-template-columns: 1fr; }
    .footer__brand, .footer__status { grid-column: 1; }
    .footer__links { margin-top: 22px; }
    .cookie-banner { grid-template-columns: 1fr; gap: 14px; padding: 16px; }
    .cookie-banner p { font-size: .75rem; }
    .cookie-banner__actions { display: grid; grid-template-columns: 1fr 1fr; }
    .cookie-button { min-width: 0; }
    .cart-drawer { width: 100%; }
  }

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