/* ==========================================================================
   Ana și Cornel — Design System
   Tokens → base → components → editorial → motion → responsive
   ========================================================================== */

:root {
  /* Brand */
  --gold: #ccaa2b;
  --gold-bright: #dfbc45;
  --gold-soft: #e6d492;
  --gold-pale: #f3e6bd;
  --gold-wash: #fbf5e5;
  --gold-deep: #8f7418;
  --gold-ink: #6b5610;

  /* Neutrals — warm */
  --black: #0c0b09;
  --graphite: #1a1815;
  --graphite-2: #262320;
  --ink: #17150f;
  --slate: #4a453c;
  --muted: #726b5e;
  --stone: #d9cfbd;
  --line: #e7dfd0;
  --line-soft: #f0e9dc;
  --cream: #f2eadb;
  --cream-deep: #ebe1cd;
  --paper: #faf7f0;
  --white: #ffffff;

  /* Semantic */
  --ok: #3f6b3c;
  --alert: #a8391f;

  /* Typography */
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --tracking-eyebrow: .18em;

  --fs-eyebrow: 11px;
  --fs-micro: 12px;
  --fs-sm: 13.5px;
  --fs-body: 16px;
  --fs-lede: clamp(1rem, 1.05vw, 1.15rem);
  --fs-h3: clamp(1.15rem, 1.5vw, 1.4rem);
  --fs-h2: clamp(1.75rem, 3vw, 2.75rem);
  --fs-h1: clamp(2.3rem, 4.6vw, 4rem);
  --fs-editorial: clamp(2.75rem, 6.4vw, 6.5rem);
  --fs-monument: clamp(3rem, 12vw, 10rem);

  /* Space */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --section: clamp(56px, 7.5vw, 132px);
  --section-tight: clamp(36px, 4.5vw, 72px);

  /* Containers */
  --wrap: 1320px;
  --wrap-narrow: 940px;
  --gutter: clamp(18px, 4vw, 40px);

  /* Radii */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --r-pill: 999px;

  /* Elevation — warm shadows, never grey */
  --sh-1: 0 1px 2px rgba(38, 30, 18, .05);
  --sh-2: 0 6px 18px -6px rgba(38, 30, 18, .12);
  --sh-3: 0 18px 44px -18px rgba(38, 30, 18, .22);
  --sh-4: 0 36px 80px -32px rgba(38, 30, 18, .3);

  /* Motion */
  --t-fast: 180ms;
  --t-base: 260ms;
  --t-slow: 600ms;
  --t-editorial: 900ms;
  --e-out: cubic-bezier(.22, .61, .36, 1);
  --e-inout: cubic-bezier(.65, 0, .35, 1);
  --e-editorial: cubic-bezier(.16, 1, .3, 1);

  /* Layers */
  --z-base: 1;
  --z-sticky: 20;
  --z-header: 30;
  --z-mega: 40;
  --z-drawer: 60;
  --z-modal: 80;
  --z-toast: 90;
}

/* ---------- Base ---------- */

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body.ac-body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.55;
  font-feature-settings: "cv05" 1, "ss01" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
/* <picture> is a layout no-op. Without this it becomes an inline box between a
   sized container and its image, so `height: 100%` and object-fit crops on
   .ac-hero__media, .ac-bleed__media and friends silently stop resolving. */
picture { display: contents; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4, p { margin: 0; }
ul, ol { margin: 0; padding: 0; }

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 3px;
}

::selection { background: var(--gold-pale); color: var(--ink); }

.ac-wrap { width: min(var(--wrap), 100% - var(--gutter) * 2); margin-inline: auto; }
.ac-wrap--narrow { width: min(var(--wrap-narrow), 100% - var(--gutter) * 2); margin-inline: auto; }
.ac-vh { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.ac-skip { position: absolute; left: -9999px; }
.ac-skip:focus { left: 16px; top: 16px; z-index: var(--z-toast); background: var(--white); padding: 12px 18px; border-radius: var(--r-sm); box-shadow: var(--sh-3); }

/* ---------- Typography ---------- */

.ac-display {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: var(--fs-h2);
  line-height: 1.06;
  letter-spacing: -.022em;
  margin: 0;
}
.ac-display--lg { font-size: var(--fs-h1); line-height: 1.02; letter-spacing: -.03em; }
.ac-display--xl { font-size: var(--fs-editorial); line-height: .96; letter-spacing: -.035em; }
.ac-display--md { font-size: clamp(1.5rem, 2.2vw, 2.1rem); }
.ac-display--sm { font-size: var(--fs-h3); letter-spacing: -.015em; }
.ac-display em { font-style: italic; font-weight: 500; }

.ac-monument {
  font-family: var(--display);
  font-weight: 600;
  font-size: var(--fs-monument);
  line-height: .8;
  letter-spacing: -.05em;
  margin: 0;
}

.ac-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--gold-deep);
}
.ac-eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}
.ac-eyebrow--light { color: var(--gold-soft); }
.ac-eyebrow--bare::before { display: none; }

.ac-lede { font-size: var(--fs-lede); color: var(--slate); max-width: 46ch; line-height: 1.6; }
.ac-lede--light { color: rgba(255, 253, 247, .78); }
.ac-muted { color: var(--muted); }
.ac-prose { max-width: 68ch; line-height: 1.72; color: var(--slate); }
.ac-prose p + p { margin-top: 1em; }

.ac-sectionhead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-5);
  margin-bottom: clamp(28px, 3.2vw, 52px);
}
.ac-sectionhead__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--gold-deep);
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast) var(--e-out), gap var(--t-fast) var(--e-out);
}
.ac-sectionhead__link:hover { border-color: currentColor; gap: 12px; }

/* ---------- Surfaces ---------- */

.ac-section { padding: var(--section) 0; position: relative; }
.ac-section--tight { padding: var(--section-tight) 0; }
.ac-surface-paper { background: var(--paper); }
.ac-surface-white { background: var(--white); }
.ac-surface-cream { background: var(--cream); }
.ac-surface-dark { background: var(--graphite); color: #f6f0e2; }
.ac-surface-dark .ac-lede,
.ac-surface-dark .ac-muted { color: rgba(246, 240, 226, .68); }
.ac-surface-dark .ac-sectionhead__link { color: var(--gold-soft); }

.ac-rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- Buttons ---------- */

.ac-btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  --btn-bd: transparent;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 26px;
  border: 1px solid var(--btn-bd);
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: .005em;
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--t-fast) var(--e-out), box-shadow var(--t-base) var(--e-out), background var(--t-fast) linear, color var(--t-fast) linear;
}
.ac-btn:hover { transform: translateY(-2px); box-shadow: var(--sh-3); }
.ac-btn:active { transform: translateY(0); box-shadow: var(--sh-1); }

.ac-btn--gold { --btn-bg: var(--gold); --btn-fg: var(--ink); }
.ac-btn--gold:hover { --btn-bg: var(--gold-bright); }
.ac-btn--ink { --btn-bg: var(--ink); --btn-fg: #fff; }
.ac-btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--stone); }
.ac-btn--ghost:hover { --btn-bd: var(--gold); --btn-bg: var(--gold-wash); }
.ac-btn--ghost-light { --btn-bg: rgba(255,255,255,.06); --btn-fg: #fff; --btn-bd: rgba(255,255,255,.38); backdrop-filter: blur(6px); }
.ac-btn--ghost-light:hover { --btn-bg: rgba(255,255,255,.16); --btn-bd: rgba(255,255,255,.7); }
.ac-btn--sm { min-height: 40px; padding: 0 18px; font-size: 13.5px; }
.ac-btn--lg { min-height: 56px; padding: 0 34px; font-size: 15.5px; }
.ac-btn--block { width: 100%; }
.ac-ctarow { display: flex; flex-wrap: wrap; gap: 14px; }
.ac-ctarow--center { justify-content: center; }
.ac-btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }

.ac-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--gold-deep);
}
.ac-link-arrow .ac-ico { transition: transform var(--t-fast) var(--e-out); }
.ac-link-arrow:hover .ac-ico { transform: translateX(4px); }

.ac-ico { flex: 0 0 auto; }

/* ---------- Form atoms ---------- */

.ac-field {
  width: 100%;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--white);
  transition: border-color var(--t-fast) linear, box-shadow var(--t-fast) linear;
}
.ac-field:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-wash); }

.ac-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--white);
  overflow: hidden;
}
.ac-qty button {
  width: 38px;
  height: 42px;
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--slate);
  font-size: 16px;
  transition: background var(--t-fast) linear, color var(--t-fast) linear;
}
.ac-qty button:hover { background: var(--gold-wash); color: var(--gold-ink); }
.ac-qty input {
  width: 34px;
  height: 42px;
  border: 0;
  background: none;
  text-align: center;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  -moz-appearance: textfield;
}
.ac-qty input::-webkit-outer-spin-button,
.ac-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.ac-qty--lg button { width: 48px; height: 54px; }
.ac-qty--lg input { width: 44px; height: 54px; font-size: 16px; }
.ac-qty--line button { width: 32px; height: 34px; font-size: 14px; }
.ac-qty--line span { min-width: 28px; text-align: center; font-size: 13.5px; font-weight: 600; font-variant-numeric: tabular-nums; }

/* ==========================================================================
   HEADER
   ========================================================================== */

.ac-topbar {
  background: var(--black);
  color: rgba(246, 240, 226, .74);
  font-size: var(--fs-micro);
  letter-spacing: .01em;
}
.ac-topbar__in { display: flex; align-items: center; justify-content: space-between; gap: var(--s-5); min-height: 38px; }
.ac-topbar__facts { display: flex; align-items: center; gap: var(--s-5); }
.ac-topbar__fact { display: inline-flex; align-items: center; gap: 8px; }
.ac-topbar__fact .ac-ico { color: var(--gold); opacity: .85; }
.ac-topbar__fact--wide { color: rgba(246, 240, 226, .5); }
.ac-topbar__links { display: flex; align-items: center; gap: var(--s-4); }
.ac-topbar a { transition: color var(--t-fast) linear; }
.ac-topbar a:hover { color: var(--gold-soft); }

.ac-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(250, 247, 240, .88);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base) linear, background var(--t-base) linear, box-shadow var(--t-base) linear;
}
.ac-header.is-stuck {
  background: rgba(250, 247, 240, .96);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 32px -24px rgba(38, 30, 18, .5);
}
.ac-header__in {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 2.5vw, 40px);
  padding: 14px 0;
}
.ac-logo { display: inline-flex; align-items: center; }
.ac-logo img { height: 46px; width: auto; transition: opacity var(--t-fast) linear; }
.ac-logo strong { font-family: var(--display); font-size: 1.4rem; letter-spacing: -.02em; }
.ac-logo:hover img { opacity: .82; }

.ac-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 0; background: none; cursor: pointer;
}

/* Search */
.ac-search { position: relative; display: flex; align-items: center; width: 100%; }
.ac-search__box {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
  padding: 0 6px 0 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  transition: border-color var(--t-fast) linear, box-shadow var(--t-base) var(--e-out);
}
.ac-search:focus-within .ac-search__box {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-wash), var(--sh-2);
}
.ac-search__box > .ac-ico { color: var(--muted); }
.ac-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: none;
  outline: none;
  padding: 13px 0;
  font-size: 14.5px;
}
.ac-search input::placeholder { color: var(--muted); }
.ac-search__go {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--t-fast) linear, transform var(--t-fast) var(--e-out);
}
.ac-search__go:hover { background: var(--gold); color: var(--ink); transform: scale(1.05); }

.ac-suggest {
  position: absolute;
  left: 0; right: 0; top: calc(100% + 10px);
  z-index: var(--z-mega);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-4);
  padding: 10px;
  max-height: min(70vh, 560px);
  overflow: auto;
  animation: ac-pop var(--t-base) var(--e-out) both;
}
.ac-suggest[hidden] { display: none; }
.ac-suggest__label {
  margin: 10px 12px 6px;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--muted);
}
.ac-suggest a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: var(--r-sm);
  font-size: 14px;
  transition: background var(--t-fast) linear;
}
.ac-suggest a:hover { background: var(--gold-wash); }
.ac-suggest img {
  width: 46px; height: 46px;
  object-fit: contain;
  border-radius: var(--r-xs);
  background: var(--cream);
  padding: 3px;
}
.ac-suggest span { flex: 1; min-width: 0; }
.ac-suggest b { margin-left: auto; font-variant-numeric: tabular-nums; font-size: 13px; }

@keyframes ac-pop {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* Tools */
.ac-tools { display: flex; align-items: center; gap: 6px; }
.ac-tool {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  color: var(--ink);
  transition: background var(--t-fast) linear, border-color var(--t-fast) linear, color var(--t-fast) linear;
}
.ac-tool:hover { background: var(--white); border-color: var(--line); color: var(--gold-ink); }
.ac-tool b {
  position: absolute;
  top: 2px; right: 0;
  min-width: 19px; height: 19px;
  padding: 0 5px;
  border-radius: var(--r-pill);
  background: var(--gold);
  color: var(--ink);
  font-size: 10.5px;
  font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  font-variant-numeric: tabular-nums;
  transition: transform var(--t-base) var(--e-out);
}
.ac-tool b.is-bump { animation: ac-bump 420ms var(--e-out); }
@keyframes ac-bump {
  0% { transform: scale(1); }
  40% { transform: scale(1.5); }
  100% { transform: scale(1); }
}

/* Nav row */
.ac-navrow { border-top: 1px solid var(--line-soft); }
.ac-navrow__in { display: flex; align-items: center; gap: var(--s-4); min-height: 52px; flex-wrap: wrap; }
.ac-menu { display: flex; align-items: center; flex-wrap: wrap; gap: clamp(12px, 1.4vw, 22px); }
.ac-menu a {
  position: relative;
  padding: 12px 0;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .005em;
  white-space: nowrap;
  color: var(--slate);
  transition: color var(--t-fast) linear;
}
.ac-menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 10px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--e-out);
}
.ac-menu a:hover, .ac-menu a[aria-current="page"] { color: var(--ink); }
.ac-menu a:hover::after, .ac-menu a[aria-current="page"]::after { transform: scaleX(1); }

.ac-dept { position: relative; }
.ac-dept__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--gold);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--t-fast) linear;
}
.ac-dept__btn:hover, .ac-dept__btn[aria-expanded="true"] { background: var(--gold); color: var(--ink); }

/* ---------- Mega menu ---------- */

.ac-mega {
  position: absolute;
  left: 0; top: calc(100% + 12px);
  z-index: var(--z-mega);
  display: grid;
  grid-template-columns: 250px minmax(320px, 1fr) 260px;
  width: min(1120px, 92vw);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-4);
  overflow: hidden;
  animation: ac-pop var(--t-base) var(--e-out) both;
}
.ac-mega[hidden] { display: none; }
.ac-mega__list { background: var(--cream); padding: 12px 0; }
.ac-mega__cat, .ac-mega__all {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 11px 20px;
  border: 0;
  background: none;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--slate);
  transition: background var(--t-fast) linear, color var(--t-fast) linear;
}
.ac-mega__cat .ac-ico:first-child { color: var(--gold-deep); }
.ac-mega__cat span { flex: 1; }
.ac-mega__cat .ac-ico:last-child { opacity: 0; transition: opacity var(--t-fast) linear, transform var(--t-fast) var(--e-out); }
.ac-mega__cat.is-on, .ac-mega__cat:hover, .ac-mega__all:hover { background: var(--white); color: var(--ink); }
.ac-mega__cat.is-on .ac-ico:last-child { opacity: .5; transform: translateX(3px); }
.ac-mega__panel { padding: 26px 30px 30px; }
.ac-mega__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.ac-mega__pane[hidden] { display: none; }
.ac-mega__pane ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 24px;
}
.ac-mega__pane a {
  display: block;
  padding: 7px 0;
  font-size: 14px;
  color: var(--slate);
  transition: color var(--t-fast) linear, padding-left var(--t-fast) var(--e-out);
}
.ac-mega__pane a:hover { color: var(--gold-ink); padding-left: 6px; }
.ac-mega__feature { position: relative; overflow: hidden; background: var(--graphite); }
.ac-mega__feature img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--e-editorial); }
.ac-mega__feature:hover img { transform: scale(1.05); }
.ac-mega__feature figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 26px 22px 22px;
  background: linear-gradient(transparent, rgba(10, 9, 7, .86));
  color: #fff;
}
.ac-mega__feature strong { display: block; font-family: var(--display); font-size: 1.25rem; letter-spacing: -.02em; }

/* ---------- Mobile drawer nav ---------- */

.ac-navdraw { position: fixed; inset: 0; z-index: var(--z-drawer); background: rgba(12, 11, 9, .5); backdrop-filter: blur(3px); }
.ac-navdraw[hidden] { display: none; }
.ac-navdraw__panel {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(390px, 92vw);
  background: var(--paper);
  padding: 22px 22px 110px;
  overflow: auto;
  animation: ac-slide-l var(--t-base) var(--e-out) both;
}
@keyframes ac-slide-l { from { transform: translateX(-100%); } to { transform: none; } }
.ac-navdraw header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.ac-navdraw nav a { display: block; padding: 12px 0; font-size: 17px; font-weight: 600; border-bottom: 1px solid var(--line-soft); }
.ac-navdraw__label { margin: 26px 0 8px; font-size: var(--fs-eyebrow); letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; color: var(--muted); font-weight: 700; }
.ac-navdraw__acc { border-bottom: 1px solid var(--line-soft); }
.ac-navdraw__acc summary { padding: 13px 0; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.ac-navdraw__acc summary::-webkit-details-marker { display: none; }
.ac-navdraw__acc summary::after { content: "+"; color: var(--gold-deep); font-size: 18px; }
.ac-navdraw__acc[open] summary::after { content: "–"; }
.ac-navdraw__acc a { display: block; padding: 8px 0 8px 14px; font-size: 14.5px; color: var(--slate); }

/* ==========================================================================
   HERO — cinematic
   ========================================================================== */

.ac-hero {
  position: relative;
  min-height: clamp(560px, 84vh, 900px);
  display: grid;
  align-items: end;
  overflow: clip;
  background: var(--graphite);
  color: #fff;
  isolation: isolate;
}
.ac-hero__media {
  position: absolute;
  inset: -8% 0 0;
  z-index: -2;
  height: 116%;
  will-change: transform;
}
.ac-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.ac-hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 9, 7, .55) 0%, rgba(10, 9, 7, .08) 30%, rgba(10, 9, 7, .3) 62%, rgba(10, 9, 7, .88) 100%),
    linear-gradient(96deg, rgba(10, 9, 7, .84) 0%, rgba(10, 9, 7, .58) 30%, rgba(10, 9, 7, .12) 62%, transparent 82%);
}
.ac-hero__in { padding: clamp(104px, 13vh, 168px) 0 clamp(40px, 6vh, 80px); }
.ac-hero__copy { max-width: min(780px, 62%); }
.ac-hero__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.6rem, 5.6vw, 5.4rem);
  line-height: 1;
  letter-spacing: -.035em;
  margin: 0 0 var(--s-5);
}
/* The mask box is grown on every side, then pulled back, so the slide-up reveal
   never clips diacritics, descenders or the last glyph of a line. */
/* Line-by-line reveal. The mask box is grown on every side and pulled back so
   diacritics and descenders are never clipped. In the hero it plays on load;
   anywhere else it waits for the section to enter the viewport. */
.ac-maskline {
  display: block;
  overflow: hidden;
  padding: .1em .12em .16em;
  margin: -.1em -.12em -.16em;
}
.ac-maskline > span { display: block; }

.ac-hero .ac-maskline > span {
  transform: translateY(125%);
  animation: ac-line-up var(--t-editorial) var(--e-editorial) forwards;
}
.ac-hero .ac-maskline:nth-child(2) > span { animation-delay: 90ms; }
.ac-hero .ac-maskline:nth-child(3) > span { animation-delay: 180ms; }
.ac-hero .ac-maskline:nth-child(4) > span { animation-delay: 270ms; }
@keyframes ac-line-up { to { transform: none; } }

.ac-js [data-reveal] .ac-maskline > span {
  transform: translateY(125%);
  transition: transform var(--t-editorial) var(--e-editorial);
}
[data-reveal].is-in .ac-maskline > span { transform: none; }
[data-reveal].is-in .ac-maskline:nth-child(2) > span { transition-delay: 90ms; }
[data-reveal].is-in .ac-maskline:nth-child(3) > span { transition-delay: 180ms; }
[data-reveal].is-in .ac-maskline:nth-child(4) > span { transition-delay: 270ms; }

.ac-hero__sub { max-width: 44ch; font-size: clamp(1.02rem, 1.15vw, 1.2rem); color: rgba(255, 253, 247, .86); line-height: 1.55; }
.ac-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: var(--s-6); }
.ac-hero__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  margin-top: clamp(40px, 6vh, 84px);
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.ac-hero__marks { display: flex; flex-wrap: wrap; gap: clamp(20px, 3vw, 48px); }
.ac-hero__mark { display: flex; align-items: center; gap: 11px; font-size: var(--fs-sm); color: rgba(255, 253, 247, .78); }
.ac-hero__mark .ac-ico { color: var(--gold); }
.ac-hero__mark b { display: block; color: #fff; font-weight: 600; }
.ac-hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-micro);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: rgba(255, 253, 247, .6);
}
.ac-hero__scroll .ac-ico { animation: ac-nudge 2.4s var(--e-inout) infinite; }
@keyframes ac-nudge {
  0%, 100% { transform: translateY(0); opacity: .5; }
  50% { transform: translateY(5px); opacity: 1; }
}
.ac-hero--compact { min-height: clamp(420px, 56vh, 620px); }

.ac-block { scroll-margin-top: 120px; }
/* Reveal transforms and the headline mask boxes intentionally sit a few pixels
   outside their column. `clip` contains them without creating a scroll
   container, so sticky sections keep working. */
main { overflow-x: clip; }

/* Editorial flag — never a factual claim */
.ac-editorial-flag {
  display: inline-block;
  margin-top: 18px;
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .45;
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */

.ac-marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--white);
  padding: clamp(16px, 1.8vw, 26px) 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ac-marquee__track { display: flex; width: max-content; animation: ac-marquee 46s linear infinite; }
.ac-marquee:hover .ac-marquee__track { animation-play-state: paused; }
.ac-marquee__group { display: flex; align-items: center; flex: 0 0 auto; }
.ac-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: clamp(24px, 3vw, 52px);
  padding-right: clamp(24px, 3vw, 52px);
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.8vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--slate);
  white-space: nowrap;
  transition: color var(--t-fast) linear;
}
.ac-marquee__item:hover { color: var(--gold-ink); }
.ac-marquee__item::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex: 0 0 auto; }
@keyframes ac-marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   VISUAL CATEGORIES
   ========================================================================== */

.ac-cats {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(300px, 26vw, 400px);
  gap: clamp(12px, 1.2vw, 20px);
}
.ac-cat {
  position: relative;
  grid-column: span 4;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(23, 21, 15, .15), rgba(23, 21, 15, .72)),
    #2a2418;
  isolation: isolate;
}
.ac-cat--wide { grid-column: span 8; }
.ac-cat--tall { grid-column: span 4; min-height: 480px; }
.ac-cat--full { grid-column: span 12; min-height: 320px; }
.ac-cat img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-editorial) var(--e-editorial), filter var(--t-slow) var(--e-out);
}
.ac-cat::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 9, 7, .05) 30%, rgba(10, 9, 7, .74) 100%);
  transition: background var(--t-slow) var(--e-out);
}
.ac-cat__body {
  position: absolute;
  inset: auto 0 0;
  padding: clamp(20px, 2vw, 30px);
  color: #fff;
}
.ac-cat__title {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.08;
  transition: transform var(--t-base) var(--e-out);
}
.ac-cat__desc {
  margin-top: 6px;
  font-size: var(--fs-sm);
  color: rgba(255, 253, 247, .78);
  max-width: 30ch;
  opacity: 0;
  max-height: 0;
  transform: translateY(6px);
  transition: opacity var(--t-base) var(--e-out), max-height var(--t-base) var(--e-out), transform var(--t-base) var(--e-out);
}
.ac-cat__go {
  position: absolute;
  right: clamp(20px, 2vw, 30px);
  bottom: clamp(20px, 2vw, 30px);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .3);
  backdrop-filter: blur(6px);
  display: grid; place-items: center;
  color: #fff;
  transition: background var(--t-base) var(--e-out), color var(--t-base) var(--e-out), transform var(--t-base) var(--e-out);
}
.ac-cat:hover img { transform: scale(1.06); }
.ac-cat:hover::after { background: linear-gradient(180deg, rgba(10, 9, 7, .1) 20%, rgba(10, 9, 7, .84) 100%); }
.ac-cat:hover .ac-cat__title { transform: translateY(-2px); }
.ac-cat:hover .ac-cat__desc { opacity: 1; max-height: 6em; transform: none; }
.ac-cat:hover .ac-cat__go { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translateX(3px); }

/* ==========================================================================
   PRODUCT CARD
   ========================================================================== */

.ac-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 26px);
}
.ac-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.ac-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(228px, 1fr);
  gap: clamp(14px, 1.5vw, 26px);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--stone) transparent;
}
.ac-rail > * { scroll-snap-align: start; }
.ac-rail::-webkit-scrollbar { height: 5px; }
.ac-rail::-webkit-scrollbar-thumb { background: var(--stone); border-radius: var(--r-pill); }
.ac-rail::-webkit-scrollbar-track { background: transparent; }

.ac-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-base) var(--e-out), box-shadow var(--t-base) var(--e-out), transform var(--t-base) var(--e-out);
}
.ac-card:hover {
  border-color: var(--stone);
  box-shadow: var(--sh-3);
  transform: translateY(-3px);
}

.ac-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  /* White, not cream: official packshots are cutouts on white and any tint
     turns their background into a visible rectangle inside the card. */
  background: #fff;
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.ac-card__media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 9%;
  transition: transform var(--t-slow) var(--e-editorial), opacity var(--t-slow) var(--e-out);
}
/* Signature: packshot → serving crossfade */
.ac-card__media img.ac-shot--alt {
  object-fit: cover;
  padding: 0;
  opacity: 0;
  transform: scale(1.06);
}
.ac-card:hover .ac-card__media img.ac-shot--main { opacity: 0; transform: scale(1.04); }
.ac-card:hover .ac-card__media img.ac-shot--alt { opacity: 1; transform: scale(1); }
.ac-card.has-alt:hover .ac-card__media { background: var(--graphite); }
.ac-card:not(.has-alt):hover .ac-card__media img.ac-shot--main { opacity: 1; transform: scale(1.05); }

.ac-badges { position: absolute; top: 12px; left: 12px; z-index: 2; display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.ac-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.ac-badge--gold { background: var(--gold); color: var(--ink); }
.ac-badge--outline { background: rgba(255,255,255,.9); color: var(--slate); border: 1px solid var(--line); }

.ac-fav {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 2;
  width: 38px; height: 38px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(4px);
  color: var(--slate);
  cursor: pointer;
  display: grid; place-items: center;
  transition: color var(--t-fast) linear, background var(--t-fast) linear, transform var(--t-fast) var(--e-out);
}
.ac-fav:hover { color: var(--gold-ink); background: #fff; transform: scale(1.08); }
.ac-fav.is-on { color: var(--gold); background: #fff; border-color: var(--gold-soft); }
.ac-fav.is-on .ac-ico { fill: currentColor; animation: ac-pulse 340ms var(--e-out); }
@keyframes ac-pulse { 0% { transform: scale(1); } 45% { transform: scale(1.32); } 100% { transform: scale(1); } }

.ac-card__body { display: flex; flex-direction: column; gap: 4px; padding: 16px 16px 18px; flex: 1; }
.ac-card__kicker { font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.ac-card__title {
  font-size: 14.5px;
  font-weight: 550;
  line-height: 1.35;
  letter-spacing: -.005em;
  margin: 2px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ac-card__title a { transition: color var(--t-fast) linear; }
.ac-card__title a:hover { color: var(--gold-ink); }
.ac-card__meta { font-size: var(--fs-micro); color: var(--muted); }

.ac-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 9px; margin-top: 8px; }
.ac-price strong { font-size: 19px; font-weight: 700; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.ac-price s { font-size: 13px; color: var(--muted); }
.ac-price--sale strong { color: var(--alert); }
.ac-price__unit { width: 100%; font-size: 11.5px; color: var(--muted); font-variant-numeric: tabular-nums; }

.ac-card__buy { display: flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 14px; }
.ac-card__buy .ac-btn { flex: 1; min-height: 42px; padding: 0 14px; font-size: 13.5px; }

/* Editorial card — breaks the grid rhythm */
.ac-featurecard {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding: clamp(24px, 2.4vw, 40px);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--graphite);
  color: #fff;
  isolation: isolate;
}
.ac-featurecard img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-editorial) var(--e-editorial);
}
.ac-featurecard::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,9,7,.2), rgba(10,9,7,.82));
}
.ac-featurecard:hover img { transform: scale(1.05); }
.ac-featurecard h3 { font-family: var(--display); font-size: clamp(1.4rem, 2vw, 2rem); font-weight: 600; letter-spacing: -.025em; line-height: 1.05; }
.ac-featurecard p { margin-top: 10px; color: rgba(255,253,247,.76); font-size: var(--fs-sm); max-width: 30ch; }
.ac-featurecard .ac-btn { margin-top: 20px; align-self: flex-start; }
.ac-featurecard--span2 { grid-column: span 2; }

/* Asymmetric rhythm: 1 big + 3 small */
.ac-mixgrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 26px);
}
.ac-mixgrid > .ac-featurecard:first-child { grid-column: span 2; grid-row: span 2; }

/* ==========================================================================
   FULL-BLEED EDITORIAL
   ========================================================================== */

.ac-bleed {
  position: relative;
  min-height: clamp(460px, 78vh, 820px);
  display: grid;
  align-items: center;
  overflow: clip;
  background: var(--graphite);
  color: #fff;
  isolation: isolate;
}
.ac-bleed__media { position: absolute; inset: -6% 0 0; z-index: -2; height: 112%; will-change: transform; }
.ac-bleed__media img { width: 100%; height: 100%; object-fit: cover; }
.ac-bleed::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,9,7,.44), rgba(10,9,7,.2) 45%, rgba(10,9,7,.7));
}
.ac-bleed__copy { max-width: min(720px, 58%); text-align: left; }
.ac-bleed--center .ac-bleed__copy { max-width: min(820px, 70%); margin-inline: auto; text-align: center; }
.ac-bleed--right .ac-bleed__copy { margin-left: auto; }
.ac-bleed__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.2vw, 5rem);
  line-height: 1;
  letter-spacing: -.035em;
}
.ac-bleed .ac-btn { margin-top: var(--s-6); }

/* Clip-path reveal */
.ac-js .ac-reveal-clip {
  clip-path: inset(0 0 100% 0);
  transition: clip-path var(--t-editorial) var(--e-editorial);
}
.ac-js .ac-reveal-clip.is-in { clip-path: inset(0 0 0 0); }

/* ==========================================================================
   FEATURED PRODUCT STORY (sticky)
   ========================================================================== */

.ac-story { background: var(--graphite); color: #f6f0e2; padding: var(--section) 0; overflow: clip; }
.ac-story--cream { background: var(--cream); color: var(--ink); }
.ac-story__in {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 88px);
  align-items: start;
}
/* The plate stays white in both variants: official packshots ship as white
   cutouts, and any tint here would show their background as a seam. Against
   graphite the white plate becomes the composition's light source instead. */
.ac-story__visual {
  position: sticky;
  top: 118px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  aspect-ratio: 5 / 6;
  isolation: isolate;
}
.ac-story:not(.ac-story--cream) .ac-story__visual {
  box-shadow: 0 0 0 1px rgba(204, 170, 43, .28), 0 40px 90px -40px rgba(0, 0, 0, .9);
}
/* A cover crop fills the plate edge to edge, so the light base must not show. */
.ac-story__visual:has(img.ac-shot--cover.is-on) { background: var(--graphite); }
.ac-story__visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 4%;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity var(--t-slow) var(--e-out), transform var(--t-editorial) var(--e-editorial);
}
.ac-story__visual img.is-on { opacity: 1; transform: none; }
.ac-story__visual img.ac-shot--cover { object-fit: cover; padding: 0; }
.ac-story__tag {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 2;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.ac-story__steps { display: grid; gap: clamp(40px, 8vh, 110px); padding: clamp(20px, 5vh, 80px) 0; }
.ac-story__step {
  opacity: .46;
  transform: translateY(10px);
  transition: opacity var(--t-slow) var(--e-out), transform var(--t-slow) var(--e-out);
}
.ac-story__step.is-on { opacity: 1; transform: none; }
.ac-story__step h3 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.04;
  margin-bottom: 14px;
}
.ac-story__step p { color: rgba(246, 240, 226, .72); max-width: 44ch; line-height: 1.66; }
.ac-story--cream .ac-story__step p { color: var(--slate); }
.ac-story__buy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.ac-story--cream .ac-story__buy { border-top-color: var(--stone); }
.ac-story__price { display: flex; align-items: baseline; gap: 10px; }
.ac-story__price strong { font-size: clamp(1.6rem, 2.4vw, 2.2rem); font-weight: 700; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.ac-story__price s { color: rgba(246,240,226,.5); }
.ac-story--cream .ac-story__price s { color: var(--muted); }
.ac-story__facts { list-style: none; display: grid; gap: 10px; margin-top: 24px; }
/* Readable by default so the list can be reused on light surfaces; the dark
   story variant opts into the cream tone. */
.ac-story__facts li { display: flex; gap: 12px; font-size: var(--fs-sm); line-height: 1.6; color: var(--slate); }
.ac-story:not(.ac-story--cream) .ac-story__facts li { color: rgba(246, 240, 226, .72); }
.ac-story__facts .ac-ico { color: var(--gold); }

/* ==========================================================================
   SPLIT / BRAND STORY
   ========================================================================== */

.ac-split { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 90px); align-items: center; }
.ac-split--flip > *:first-child { order: 2; }
.ac-split__media { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 5; }
.ac-split__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-editorial) var(--e-editorial); }
.ac-split__media:hover img { transform: scale(1.04); }

.ac-brandstory { position: relative; overflow: clip; }
.ac-brandstory__in { position: relative; }
/* Anchored to the content container, not the viewport, so the last digit is
   never guillotined by the section's overflow clip. */
.ac-brandstory__year {
  position: absolute;
  right: 0;
  bottom: -.06em;
  font-family: var(--display);
  font-size: clamp(7rem, 15vw, 17rem);
  font-weight: 600;
  line-height: .74;
  letter-spacing: -.055em;
  color: var(--gold);
  opacity: .13;
  pointer-events: none;
  user-select: none;
}
.ac-surface-dark .ac-brandstory__year { opacity: .16; }

/* ==========================================================================
   PROMOTION GRID / CAMPAIGN SPLIT
   ========================================================================== */

.ac-promogrid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(12px, 1.4vw, 20px); }
/* The 1.4fr lead card is composed for exactly three collections; any other count
   an editor enters in Materials falls back to an even grid. */
.ac-promogrid:not(:has(> .ac-promocard:nth-child(3):last-child)) { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.ac-promocard {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 320px;
  padding: 26px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--graphite);
  color: #fff;
  isolation: isolate;
}
.ac-promocard img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-editorial) var(--e-editorial); }
.ac-promocard::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10,9,7,.1), rgba(10,9,7,.78)); }
.ac-promocard:hover img { transform: scale(1.05); }
.ac-promocard strong { font-family: var(--display); font-size: 1.4rem; font-weight: 600; letter-spacing: -.02em; }
.ac-promocard span { display: block; font-size: var(--fs-sm); color: rgba(255,253,247,.72); margin-top: 4px; }

.ac-campaign {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: clamp(420px, 62vh, 680px);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--graphite);
  color: #fff;
}
.ac-campaign--flip > *:first-child { order: 2; }
.ac-campaign__media { position: relative; overflow: hidden; min-height: 320px; }
.ac-campaign__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-editorial) var(--e-editorial); }
.ac-campaign:hover .ac-campaign__media img { transform: scale(1.04); }
.ac-campaign__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(32px, 4.4vw, 76px); }
.ac-campaign__copy h2 { font-family: var(--display); font-size: clamp(2rem, 3.6vw, 3.4rem); font-weight: 600; letter-spacing: -.032em; line-height: 1.02; }
.ac-campaign__copy p { margin-top: 16px; color: rgba(255,253,247,.76); max-width: 40ch; }
.ac-campaign__copy .ac-btn { margin-top: 30px; align-self: flex-start; }
.ac-campaign--cream { background: var(--cream); color: var(--ink); }
.ac-campaign--cream .ac-campaign__copy p { color: var(--slate); }

/* ==========================================================================
   RECIPES
   ========================================================================== */

.ac-recipes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 1.8vw, 30px); }
/* Two entries must fill the row instead of leaving a third column empty. */
.ac-recipes:has(> .ac-recipe:nth-child(2):last-child) { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ac-recipes:has(> .ac-recipe:only-child) { grid-template-columns: minmax(0, 640px); }
.ac-recipe {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line-soft);
  transition: box-shadow var(--t-base) var(--e-out), transform var(--t-base) var(--e-out);
}
.ac-recipe:hover { box-shadow: var(--sh-3); transform: translateY(-3px); }
.ac-recipe__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream); }
.ac-recipe__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-editorial) var(--e-editorial); }
.ac-recipe:hover .ac-recipe__media img { transform: scale(1.05); }
.ac-recipe__time {
  position: absolute; left: 14px; bottom: 14px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.92);
  font-size: 11.5px; font-weight: 600;
}
.ac-recipe__body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.ac-recipe__body h3 { font-family: var(--display); font-size: 1.25rem; font-weight: 600; letter-spacing: -.02em; line-height: 1.15; }
.ac-recipe__body p { font-size: var(--fs-sm); color: var(--muted); }
.ac-recipe__foot { margin-top: auto; padding-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.ac-recipe__ing { font-size: var(--fs-micro); color: var(--muted); }

/* ==========================================================================
   APP PROMO  +  LOYALTY
   ========================================================================== */

.ac-apppromo {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(32px, 5vw, 88px);
  align-items: center;
}
.ac-apppromo__list { list-style: none; display: grid; gap: 14px; margin-top: 28px; }
.ac-apppromo__list li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; }
.ac-apppromo__list .ac-ico { color: var(--gold); margin-top: 3px; }
.ac-apppromo__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 32px; }
.ac-apppromo__note { font-size: var(--fs-micro); color: var(--muted); margin-top: 14px; max-width: 44ch; }

.ac-device {
  position: relative;
  width: min(300px, 76%);
  margin-inline: auto;
  aspect-ratio: 9 / 18.5;
  border-radius: 44px;
  padding: 11px;
  background: linear-gradient(160deg, #2a2723, #0e0d0b);
  box-shadow: var(--sh-4), inset 0 0 0 1px rgba(255,255,255,.08);
  transform: rotate(-3deg);
  transition: transform var(--t-editorial) var(--e-editorial);
}
.ac-device:hover { transform: rotate(-1deg) translateY(-8px); }
.ac-device__notch {
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  width: 82px; height: 22px;
  border-radius: var(--r-pill);
  background: #0b0a08;
  z-index: 3;
}
.ac-device__screen {
  width: 100%; height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: var(--paper);
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Miniature of the real storefront: same hero crop, same search affordance,
   same cards — populated from the live catalog, never mocked. */
.ac-device__hero {
  position: relative;
  flex: 0 0 42%;
  overflow: hidden;
  isolation: isolate;
}
.ac-device__hero img,
.ac-device__hero picture { position: absolute; inset: 0; width: 100%; height: 100%; }
.ac-device__hero img { object-fit: cover; }
.ac-device__hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,9,7,.5) 0 34%, rgba(10,9,7,.72));
}
.ac-device__brand {
  position: absolute;
  left: 16px; bottom: 14px;
  z-index: 1;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: #fff;
}
.ac-device__ui {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 11px;
  background: var(--paper);
  /* The grid runs past the bottom of the screen on purpose; fade it out so the
     last row reads as scrolled-off content rather than a clipped label. */
  overflow: hidden;
  mask-image: linear-gradient(180deg, #000 0 80%, transparent);
}
.ac-device__search {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1px solid var(--line);
  font-size: 10.5px;
  color: var(--muted);
}
.ac-device__search .ac-ico { color: var(--gold-ink); flex: none; }
.ac-device__tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ac-device__tile {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px 6px 8px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line-soft);
}
.ac-device__tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 6px;
  background: var(--cream);
  padding: 5%;
}
.ac-device__tile b { font-size: 8.5px; font-weight: 600; line-height: 1.25; color: var(--ink); }
.ac-device__tile i { font-size: 9.5px; font-style: normal; font-weight: 700; color: var(--ink); }

.ac-installbar {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translate(-50%, 140%);
  z-index: var(--z-toast);
  width: min(520px, calc(100% - 32px));
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-radius: var(--r-lg);
  background: rgba(23, 21, 15, .96);
  color: #fff;
  box-shadow: var(--sh-4);
  backdrop-filter: blur(10px);
  transition: transform var(--t-slow) var(--e-editorial);
}
.ac-installbar.is-on { transform: translate(-50%, 0); }
.ac-installbar__ico { width: 44px; height: 44px; border-radius: 12px; background: var(--gold); color: var(--ink); display: grid; place-items: center; flex: 0 0 auto; }
.ac-installbar p { font-size: 13.5px; line-height: 1.4; }
.ac-installbar p b { display: block; font-size: 14.5px; }
.ac-installbar__actions { margin-left: auto; display: flex; gap: 8px; align-items: center; flex: 0 0 auto; }
.ac-installbar__dismiss { border: 0; background: none; color: rgba(255,255,255,.55); cursor: pointer; padding: 8px; }
.ac-installbar__dismiss:hover { color: #fff; }

/* Wallet */
.ac-wallet {
  position: relative;
  border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 40px);
  background: linear-gradient(140deg, #2a2620 0%, #12100d 62%);
  color: #f6f0e2;
  overflow: hidden;
  isolation: isolate;
}
.ac-wallet::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 60%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204,170,43,.35), transparent 66%);
  z-index: -1;
}
.ac-wallet__label { font-size: var(--fs-eyebrow); letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; color: var(--gold-soft); font-weight: 600; }
.ac-wallet__points {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 5.2rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
  margin: 10px 0 4px;
}
.ac-wallet__unit { font-size: var(--fs-sm); color: rgba(246,240,226,.66); }
.ac-wallet__split { display: flex; flex-wrap: wrap; gap: clamp(20px, 3vw, 44px); margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); }
.ac-wallet__stat small { display: block; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(246,240,226,.5); margin-bottom: 4px; }
.ac-wallet__stat b { font-size: 1.3rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.ac-wallet__pending { color: var(--gold-soft); }
.ac-wallet__note { margin-top: 18px; font-size: var(--fs-micro); color: rgba(246,240,226,.55); max-width: 48ch; }
/* Pre-launch state: the card stays premium without inventing a balance. */
.ac-wallet__soon { margin-top: 18px; font-family: var(--display); font-size: clamp(1.4rem, 2.4vw, 2.1rem); font-weight: 500; letter-spacing: -.02em; line-height: 1.14; color: #fff; max-width: 26ch; }

.ac-ledger { width: 100%; border-collapse: collapse; }
.ac-ledger th, .ac-ledger td { text-align: left; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: var(--fs-sm); }
.ac-ledger th { font-size: var(--fs-eyebrow); letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; color: var(--muted); font-weight: 700; }
.ac-ledger td:last-child, .ac-ledger th:last-child { text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; }
.ac-ledger .is-earn { color: var(--ok); }
.ac-ledger .is-redeem { color: var(--alert); }

.ac-pointspop {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: var(--z-toast);
  display: flex; align-items: center; gap: 12px;
  padding: 13px 20px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--gold);
  font-weight: 700;
  box-shadow: var(--sh-4);
  transform: translateY(140%);
  transition: transform var(--t-slow) var(--e-editorial);
}
.ac-pointspop.is-on { transform: none; }

/* ==========================================================================
   NEWSLETTER / FOOTER
   ========================================================================== */

.ac-news {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
  padding: clamp(32px, 4vw, 60px) clamp(28px, 4vw, 64px);
  border-radius: var(--r-lg);
  background:
    radial-gradient(90% 130% at 100% 0%, rgba(204, 170, 43, .16), transparent 60%),
    var(--cream-deep);
  border: 1px solid var(--line-soft);
}
.ac-news__copy .ac-lede { max-width: 40ch; }
.ac-news__form { display: flex; gap: 10px; }
.ac-news__form input { flex: 1; min-width: 0; }
.ac-news__legal { margin-top: 14px; font-size: var(--fs-micro); color: var(--muted); }

.ac-footer { background: var(--black); color: rgba(246, 240, 226, .68); padding: clamp(56px, 7vw, 96px) 0 0; margin-top: 0; }
.ac-footer__grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: clamp(24px, 3vw, 48px); }
.ac-footer__brand p { max-width: 34ch; font-size: var(--fs-sm); margin-top: 12px; }
.ac-footer__logo { font-family: var(--display); font-size: 1.6rem; color: #fff; letter-spacing: -.02em; }
.ac-footer h2 { font-size: var(--fs-eyebrow); letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; color: var(--gold-soft); font-weight: 700; margin-bottom: 16px; }
.ac-footer a { display: block; padding: 5px 0; font-size: var(--fs-sm); transition: color var(--t-fast) linear, transform var(--t-fast) var(--e-out); }
.ac-footer a:hover { color: var(--gold); }
.ac-footer__social { display: flex; gap: 10px; margin-top: 20px; }
.ac-footer__social a {
  width: 42px; height: 42px; padding: 0;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: border-color var(--t-fast) linear, background var(--t-fast) linear, color var(--t-fast) linear;
}
.ac-footer__social a:hover { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.ac-legal {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  margin-top: clamp(40px, 5vw, 70px);
  padding: 24px 0 calc(24px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: var(--fs-micro);
}
.ac-legal nav { display: flex; flex-wrap: wrap; gap: 20px; }
.ac-legal a { display: inline; padding: 0; }

/* ==========================================================================
   CART DRAWER
   ========================================================================== */

.ac-drawer { position: fixed; inset: 0; z-index: var(--z-drawer); background: rgba(12, 11, 9, .5); backdrop-filter: blur(3px); }
.ac-drawer[hidden] { display: none; }
.ac-drawer__panel {
  position: absolute; inset: 0 0 0 auto;
  width: min(440px, 100%);
  display: flex; flex-direction: column;
  background: var(--paper);
  box-shadow: -30px 0 70px -30px rgba(12,11,9,.6);
  animation: ac-slide-r var(--t-base) var(--e-out) both;
}
@keyframes ac-slide-r { from { transform: translateX(100%); } to { transform: none; } }
.ac-drawer__head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 24px 24px 18px;
  border-bottom: 1px solid var(--line);
}
.ac-drawer__head h2 { font-family: var(--display); font-size: 1.4rem; font-weight: 600; letter-spacing: -.02em; }
.ac-drawer__close { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); cursor: pointer; display: grid; place-items: center; transition: border-color var(--t-fast) linear; }
.ac-drawer__close:hover { border-color: var(--gold); }
.ac-drawer__body { flex: 1; overflow: auto; padding: 6px 24px; }
.ac-drawer__foot { padding: 20px 24px calc(24px + env(safe-area-inset-bottom, 0px)); border-top: 1px solid var(--line); background: var(--white); }
.ac-drawer__sum { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 8px; font-size: var(--fs-sm); color: var(--muted); }
.ac-drawer__sum strong { font-size: 1.35rem; color: var(--ink); font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.ac-drawer__hint { font-size: var(--fs-micro); color: var(--muted); margin: 12px 0 0; text-align: center; }

.ac-line { display: grid; grid-template-columns: 68px minmax(0, 1fr) auto; gap: 14px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.ac-line img { width: 68px; height: 68px; object-fit: contain; border-radius: var(--r-sm); background: var(--cream); padding: 5px; }
.ac-line strong { font-size: 14px; font-weight: 550; line-height: 1.35; display: block; }
.ac-line p { margin: 4px 0 0; font-size: var(--fs-micro); color: var(--muted); }
.ac-line button { border: 0; background: none; padding: 4px 0; font-size: var(--fs-micro); color: var(--muted); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.ac-line button:hover { color: var(--alert); }
.ac-line > span { font-weight: 650; font-variant-numeric: tabular-nums; }

.ac-empty { padding: 48px 0; text-align: center; color: var(--muted); }

/* Cart page */
.ac-cartpage { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 350px); gap: clamp(24px, 3vw, 52px); align-items: start; }
.ac-cartpage__lines {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 8px clamp(18px, 2vw, 28px);
}
.ac-cartpage__lines .ac-line:last-child { border-bottom: 0; }
.ac-cartpage__lines .ac-line { grid-template-columns: 84px minmax(0, 1fr) auto; padding: 20px 0; }
.ac-cartpage__lines .ac-line img { width: 84px; height: 84px; }
.ac-cartpage__lines .ac-line strong { font-size: 15.5px; }
.ac-cartpage__lines .ac-line > span { font-size: 1.05rem; }
.ac-line__tools { display: flex; align-items: center; gap: 14px; margin-top: 10px; }
.ac-cartsum {
  position: sticky;
  top: 130px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: clamp(22px, 2.4vw, 30px);
  box-shadow: var(--sh-1);
}
.ac-cartsum h2 { font-family: var(--display); font-size: 1.25rem; font-weight: 600; letter-spacing: -.02em; margin-bottom: 18px; }
.ac-cartsum__row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.ac-cartsum__row span { color: var(--muted); font-size: var(--fs-sm); }
.ac-cartsum__row strong { font-family: var(--display); font-size: 1.7rem; font-weight: 600; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.ac-cartsum__note { margin: 12px 0 20px; font-size: var(--fs-micro); color: var(--muted); line-height: 1.55; }
.ac-cartsum .ac-btn + .ac-btn { margin-top: 10px; }
@media (max-width: 900px) {
  .ac-cartpage { grid-template-columns: minmax(0, 1fr); }
  .ac-cartsum { position: static; }
}

/* Blank states — cart, favorites, no results */
.ac-blank {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 46ch;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 24px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
}
.ac-blank__ico { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; background: var(--gold-wash); color: var(--gold-deep); }
.ac-blank p { color: var(--muted); }
.ac-blank .ac-btn { margin-top: 8px; }

/* ==========================================================================
   CATALOG / SHOP
   ========================================================================== */

.ac-pagehead { padding: clamp(28px, 4vw, 56px) 0 clamp(20px, 2.5vw, 34px); }
.ac-pagehead .ac-display + .ac-lede { margin-top: 14px; }
.ac-bc { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: var(--fs-micro); color: var(--muted); margin-bottom: 14px; }
.ac-bc a:hover { color: var(--gold-ink); }
.ac-bc--quiet { opacity: .7; }

.ac-catalog { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: clamp(24px, 3vw, 48px); align-items: start; padding-bottom: var(--section); }
.ac-aside { position: sticky; top: 130px; background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 22px 18px; }
.ac-aside__title { margin: 20px 0 8px; font-size: var(--fs-eyebrow); letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; color: var(--muted); font-weight: 700; }
.ac-aside__title:first-child { margin-top: 0; }
.ac-aside__nav { display: grid; }
.ac-aside__nav a { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: var(--r-sm); font-size: 14px; font-weight: 550; transition: background var(--t-fast) linear, color var(--t-fast) linear; }
.ac-aside__nav a .ac-ico { color: var(--gold-deep); }
.ac-aside__nav a.is-child { padding-left: 22px; font-size: 13.5px; font-weight: 400; color: var(--muted); }
.ac-aside__nav a:hover, .ac-aside__nav a[aria-current="page"] { background: var(--gold-wash); color: var(--gold-ink); }

.ac-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  padding: 12px;
  border-radius: var(--r-pill);
  background: var(--white);
  border: 1px solid var(--line-soft);
}
.ac-filters input, .ac-filters select { min-height: 42px; padding: 0 16px; border: 1px solid var(--line); border-radius: var(--r-pill); background: var(--paper); transition: border-color var(--t-fast) linear, box-shadow var(--t-base) var(--e-out); }
.ac-filters input:focus, .ac-filters select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px var(--gold-wash); }
.ac-filters input[type="search"] { flex: 1 1 220px; }
.ac-filters input[type="number"] { width: 118px; }
.ac-filters .ac-btn { margin-left: auto; }
.ac-check { display: inline-flex; align-items: center; gap: 8px; padding: 0 8px; font-size: var(--fs-sm); font-weight: 550; cursor: pointer; }
.ac-check input { accent-color: var(--gold-deep); width: 17px; height: 17px; }

/* Category opener */
.ac-cathead {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(280px, 38vh, 420px);
  padding: clamp(28px, 4vw, 56px) 0;
  overflow: clip;
  background: var(--graphite);
  color: #fff;
  isolation: isolate;
}
.ac-cathead__media { position: absolute; inset: 0; z-index: -2; }
.ac-cathead__media img { width: 100%; height: 100%; object-fit: cover; }
.ac-cathead::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,9,7,.62) 0%, rgba(10,9,7,.24) 42%, rgba(10,9,7,.8) 100%);
}
.ac-cathead__in { position: relative; }
.ac-cathead__title { font-family: var(--display); font-size: clamp(2.2rem, 4.6vw, 4rem); font-weight: 600; letter-spacing: -.035em; line-height: 1.02; }
.ac-cathead__lede { margin-top: 12px; max-width: 46ch; color: rgba(255, 253, 247, .82); }
.ac-cathead__count { margin-top: 16px; font-size: var(--fs-micro); letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; color: rgba(255, 253, 247, .62); }
.ac-bc--light { color: rgba(255, 253, 247, .66); }
.ac-bc--light a:hover { color: var(--gold-soft); }

.ac-pager { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 2vw, 28px); margin-top: clamp(32px, 4vw, 56px); }
.ac-pager__state { font-size: var(--fs-sm); color: var(--muted); font-variant-numeric: tabular-nums; }

/* ==========================================================================
   PDP
   ========================================================================== */

.ac-pdx { padding-bottom: var(--section); }
.ac-pdx__hero { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, 1fr); gap: clamp(28px, 4vw, 72px); align-items: start; padding: 8px 0 clamp(40px, 5vw, 72px); }
.ac-gallery__stage {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  /* White, not cream: official packshots are white cutouts and any tint turns
     their background into a visible rectangle. */
  background: #fff;
  border: 1px solid var(--line-soft);
  box-shadow: var(--sh-2);
}
.ac-gallery__stage img { width: 100%; height: 100%; object-fit: contain; padding: 6%; cursor: zoom-in; }
.ac-gallery__stage img.ac-shot--cover { object-fit: cover; padding: 0; }
.ac-gallery__thumbs { display: flex; gap: 10px; margin-top: 14px; overflow-x: auto; padding-bottom: 4px; }
.ac-gallery__thumbs button { flex: 0 0 auto; width: 74px; height: 74px; padding: 4px; border: 1px solid var(--line-soft); border-radius: var(--r-sm); background: var(--white); cursor: pointer; transition: border-color var(--t-fast) linear; }
.ac-gallery__thumbs button.is-on { border-color: var(--gold); box-shadow: 0 0 0 2px var(--gold-wash); }
.ac-gallery__thumbs img { width: 100%; height: 100%; object-fit: contain; }
.ac-gallery__count { position: absolute; left: 16px; bottom: 16px; padding: 5px 12px; border-radius: var(--r-pill); background: rgba(12,11,9,.6); color: #fff; font-size: var(--fs-micro); }
.ac-gallery__zoom { position: absolute; right: 16px; bottom: 16px; width: 44px; height: 44px; border: 0; border-radius: 50%; background: rgba(255,255,255,.9); cursor: pointer; display: grid; place-items: center; }
.ac-fav--pdx { top: 16px; right: 16px; width: 46px; height: 46px; }

.ac-buy { position: sticky; top: 130px; }
.ac-buy__title { font-family: var(--display); font-size: clamp(1.9rem, 3.2vw, 3rem); font-weight: 600; letter-spacing: -.032em; line-height: 1.04; margin: 8px 0 10px; }
.ac-buy__meta { font-size: var(--fs-sm); color: var(--muted); margin-bottom: 22px; }
.ac-buy__price { display: flex; flex-direction: column; gap: 3px; margin-bottom: 12px; }
.ac-buy__price strong { font-size: clamp(1.9rem, 2.8vw, 2.5rem); font-weight: 700; letter-spacing: -.035em; font-variant-numeric: tabular-nums; }
.ac-buy__price s { font-size: 15px; color: var(--muted); }
.ac-buy__price small { font-size: var(--fs-sm); color: var(--muted); }
.ac-buy__stock { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-sm); font-weight: 600; color: var(--ok); margin-bottom: 22px; }
.ac-buy__stock::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.ac-buy__cta { display: flex; gap: 12px; align-items: stretch; }
.ac-btn--buy { flex: 1; min-height: 54px; border-radius: var(--r-pill); font-size: 15px; }
.ac-btn--buy.is-loading { opacity: .7; }
.ac-btn--buy.is-success { background: var(--ok); color: #fff; }
.ac-trust { list-style: none; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); display: grid; gap: 10px; }
.ac-trust li { display: flex; gap: 12px; font-size: var(--fs-sm); color: var(--slate); }
.ac-trust .ac-ico { color: var(--gold-deep); }
.ac-buy__tools { display: flex; gap: 10px; margin-top: 20px; }
.ac-buy__tools button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--white);
  font-size: var(--fs-sm);
  font-weight: 550;
  color: var(--slate);
  cursor: pointer;
  transition: border-color var(--t-fast) linear, color var(--t-fast) linear;
}
.ac-buy__tools button .ac-ico { color: var(--gold-deep); }
.ac-buy__tools button:hover { border-color: var(--gold); color: var(--ink); }
.ac-buy__tools button[aria-pressed="true"] { border-color: var(--gold); color: var(--gold-deep); }
.ac-buy__tools button[aria-pressed="true"] .ac-ico { fill: currentColor; }
.ac-buy__intro { margin-top: 24px; line-height: 1.68; color: var(--slate); }

.ac-pdx-info { background: var(--white); padding: var(--section) 0; }
/* A left rail rather than a tab strip: the panel text is one narrow column, and
   a full-width strip above it left the right half of the page empty. */
.ac-tabs {
  display: grid;
  grid-template-columns: minmax(190px, 250px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 96px);
  align-items: start;
}
.ac-tabs__nav {
  position: sticky;
  top: 130px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
}
.ac-tabs__nav button { position: relative; border: 0; background: none; padding: 12px 0 12px 20px; text-align: left; font-weight: 600; font-size: 14.5px; color: var(--muted); cursor: pointer; transition: color var(--t-fast) linear; }
.ac-tabs__nav button:hover { color: var(--ink); }
.ac-tabs__nav button::after { content: ""; position: absolute; left: -1px; top: 0; bottom: 0; width: 2px; background: var(--gold); transform: scaleY(0); transition: transform var(--t-base) var(--e-out); }
.ac-tabs__nav button[aria-selected="true"] { color: var(--ink); }
.ac-tabs__nav button[aria-selected="true"]::after { transform: scaleY(1); }
.ac-tabs__panel { grid-column: 2; grid-row: 1; max-width: 68ch; line-height: 1.7; color: var(--slate); }
.ac-allergen { background: var(--gold-wash); border-left: 3px solid var(--gold); padding: 18px 20px; border-radius: 0 var(--r-sm) var(--r-sm) 0; color: var(--ink); }
.ac-ingredients, .ac-facts-text { max-width: 68ch; line-height: 1.7; }
.ac-facts-text { white-space: pre-line; }

/* Editorial content lists — recipes and brand pages */
ul.ac-ingredients { list-style: none; display: grid; gap: 2px; }
ul.ac-ingredients li { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line-soft); color: var(--slate); }
ul.ac-ingredients li::before { content: ""; flex: 0 0 auto; width: 6px; height: 6px; margin-top: 10px; border-radius: 50%; background: var(--gold); }
.ac-steps { list-style: none; counter-reset: step; display: grid; gap: 22px; max-width: 62ch; }
.ac-steps li { counter-increment: step; position: relative; padding-left: 52px; }
.ac-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -2px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-wash);
  color: var(--gold-deep);
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
}

/* Figure row — verified company numbers as composition */
.ac-figures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(24px, 3vw, 44px);
}
.ac-figures > div { display: grid; gap: 8px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .16); }
.ac-figures b { font-family: var(--display); font-size: clamp(2rem, 3.4vw, 3.2rem); font-weight: 600; letter-spacing: -.04em; line-height: 1; color: var(--gold-soft); }
.ac-figures small { font-size: var(--fs-micro); letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; color: rgba(255, 253, 247, .6); }
.ac-surface-paper .ac-figures > div, .ac-surface-cream .ac-figures > div, .ac-surface-white .ac-figures > div,
.ac-figures--light > div { border-top-color: var(--line); }
.ac-surface-paper .ac-figures b, .ac-surface-cream .ac-figures b, .ac-surface-white .ac-figures b,
.ac-figures--light b { color: var(--ink); }
.ac-surface-paper .ac-figures small, .ac-surface-cream .ac-figures small, .ac-surface-white .ac-figures small,
.ac-figures--light small { color: var(--muted); }

.ac-cook { display: grid; grid-template-columns: minmax(0, 340px) minmax(0, 1fr); gap: clamp(24px, 3vw, 48px); align-items: start; }
.ac-cook__aside { position: sticky; top: 130px; }
@media (max-width: 900px) {
  .ac-cook { grid-template-columns: minmax(0, 1fr); }
  .ac-cook__aside { position: static; }
}

/* Contact channels / certification cards */
.ac-contact { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(14px, 1.6vw, 22px); }
.ac-contact__card {
  display: grid;
  gap: 6px;
  align-content: start;
  padding: clamp(22px, 2.4vw, 30px);
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  transition: transform var(--t-base) var(--e-out), border-color var(--t-fast) linear, box-shadow var(--t-base) var(--e-out);
}
.ac-contact__card:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: var(--sh-2); }
.ac-contact__ico { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 10px; border-radius: 50%; background: var(--gold-wash); color: var(--gold-deep); }
.ac-contact__card small { font-size: var(--fs-micro); letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; color: var(--muted); }
.ac-contact__card strong { font-family: var(--display); font-size: 1.2rem; font-weight: 600; letter-spacing: -.02em; }
.ac-contact__card p { font-size: var(--fs-sm); color: var(--muted); }

/* Map embeds need their own box: an iframe has no intrinsic ratio, so a
   percentage height collapses against an auto-height parent. */
.ac-mapframe { aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--r-lg); }
.ac-mapframe iframe { display: block; width: 100%; height: 100%; border: 0; }
@media (min-width: 901px) {
  .ac-mapframe { aspect-ratio: auto; min-height: 420px; }
}

/* Distribution reach — region names carry the section, depots support it */
.ac-reach { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr); gap: clamp(28px, 4vw, 72px); align-items: start; }
.ac-reach__list { counter-reset: reach; margin-top: clamp(20px, 2.4vw, 32px); border-top: 1px solid var(--line); }
.ac-reach__list li {
  counter-increment: reach;
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: clamp(14px, 1.6vw, 20px) 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.05;
}
.ac-reach__list li::before {
  content: counter(reach, decimal-leading-zero);
  font-family: var(--ui);
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--gold-deep);
}
.ac-reach__aside h3 { font-family: var(--display); font-size: 1.15rem; font-weight: 600; letter-spacing: -.015em; margin-bottom: 6px; }
.ac-reach__note { margin: 16px 0 18px; font-size: var(--fs-sm); color: var(--muted); line-height: 1.6; }

@media (max-width: 900px) {
  .ac-reach { grid-template-columns: minmax(0, 1fr); }
}

.ac-certs { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(14px, 1.6vw, 22px); }
.ac-certs__card { padding: clamp(24px, 2.6vw, 32px); background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--r-lg); }
.ac-certs__card h2 { font-family: var(--display); font-size: 1.3rem; font-weight: 600; letter-spacing: -.02em; margin-bottom: 8px; }
.ac-certs__card p { color: var(--slate); line-height: 1.6; }

/* Chips — taste families, certifications */
.ac-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: clamp(18px, 2vw, 28px); }
.ac-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 20px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: var(--white);
  font-size: var(--fs-sm);
  font-weight: 550;
  color: var(--ink);
  transition: border-color var(--t-fast) linear, transform var(--t-base) var(--e-out);
}
.ac-chip:hover { border-color: var(--gold); transform: translateY(-2px); }
.ac-chip--gold { background: var(--gold-wash); border-color: transparent; color: var(--gold-deep); }
.ac-nutri { width: min(38rem, 100%); border-collapse: collapse; }
.ac-nutri caption { text-align: left; font-size: var(--fs-eyebrow); letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; color: var(--muted); font-weight: 700; padding-bottom: 16px; }
.ac-nutri th, .ac-nutri td { padding: 12px 0; border-bottom: 1px solid var(--line); text-align: left; }
.ac-nutri td { text-align: right; font-weight: 650; font-variant-numeric: tabular-nums; }
.ac-nutri tr.is-sub th { padding-left: 18px; color: var(--muted); font-weight: 400; }
.ac-specs { display: grid; }
.ac-specs > div { display: grid; grid-template-columns: minmax(9rem, 40%) 1fr; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.ac-specs dt { color: var(--muted); }
.ac-specs dd { margin: 0; font-weight: 600; }

.ac-lightbox { position: fixed; inset: 0; z-index: var(--z-modal); background: rgba(10, 9, 7, .94); display: grid; place-items: center; }
.ac-lightbox[hidden] { display: none; }
.ac-lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; }
.ac-lightbox button { position: absolute; top: 20px; right: 20px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: none; color: #fff; cursor: pointer; display: grid; place-items: center; }

.ac-sticky-buy {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 62px;
  z-index: var(--z-sticky);
  align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(250, 247, 240, .97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.ac-sticky-buy.is-on { display: flex; }

/* ==========================================================================
   ACCOUNT
   ========================================================================== */

.ac-account { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: clamp(24px, 3vw, 52px); align-items: start; }
.ac-account__nav { display: grid; gap: 2px; position: sticky; top: 130px; }
.ac-account__nav a { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: var(--r-sm); font-size: 14.5px; font-weight: 550; color: var(--slate); transition: background var(--t-fast) linear, color var(--t-fast) linear; }
.ac-account__nav a .ac-ico { color: var(--gold-deep); }
.ac-account__nav a:hover, .ac-account__nav a[aria-current="page"] { background: var(--white); color: var(--ink); box-shadow: var(--sh-1); }

.ac-auth__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 2.5vw, 36px); }
.ac-auth__box { background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 38px); box-shadow: var(--sh-2); }
.ac-auth__box h2 { font-family: var(--display); font-size: 1.5rem; font-weight: 600; letter-spacing: -.025em; margin-bottom: 22px; }
.ac-auth__box label { display: grid; gap: 7px; font-size: var(--fs-sm); font-weight: 600; margin-bottom: 16px; }
.ac-auth__box input { min-height: 48px; padding: 0 16px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--paper); font-weight: 400; }
.ac-auth__box input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-wash); }
.ac-auth__err { background: #fdf1e6; border: 1px solid #e8c39a; color: #7a3b12; padding: 14px 16px; border-radius: var(--r-sm); margin-bottom: 20px; font-size: var(--fs-sm); }
.ac-auth__links { display: flex; flex-wrap: wrap; gap: 12px; margin: 20px 0; }
.ac-auth__alt { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-soft); font-size: var(--fs-micro); color: var(--muted); }

.ac-panel { background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: clamp(22px, 2.6vw, 34px); }
.ac-panel + .ac-panel { margin-top: 20px; }
.ac-panel h2 { font-family: var(--display); font-size: 1.35rem; font-weight: 600; letter-spacing: -.02em; margin-bottom: 18px; }

.ac-maps { display: grid; gap: 18px; }
.ac-maps iframe { width: 100%; min-height: 360px; border: 0; border-radius: var(--r-lg); }

/* ==========================================================================
   MOBILE TAB BAR
   ========================================================================== */

.ac-tabbar { display: none; }

/* ==========================================================================
   MOTION LAYER
   ========================================================================== */

.ac-js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--t-slow) var(--e-out), transform var(--t-slow) var(--e-editorial);
}
.ac-js [data-reveal].is-in { opacity: 1; transform: none; }
.ac-js [data-reveal="fade"] { transform: none; }
.ac-js [data-reveal="scale"] { transform: scale(.965); }
.ac-js [data-reveal="left"] { transform: translateX(-28px); }
.ac-js [data-reveal="right"] { transform: translateX(28px); }
[data-reveal-delay="1"] { transition-delay: 80ms; }
[data-reveal-delay="2"] { transition-delay: 160ms; }
[data-reveal-delay="3"] { transition-delay: 240ms; }
[data-reveal-delay="4"] { transition-delay: 320ms; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1240px) {
  .ac-cats { grid-template-columns: repeat(6, 1fr); }
  .ac-cat, .ac-cat--wide, .ac-cat--tall { grid-column: span 3; min-height: 300px; }
  .ac-cat--full { grid-column: span 6; }
  .ac-footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .ac-footer__brand { grid-column: span 3; }
}

@media (max-width: 1080px) {
  .ac-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ac-mixgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ac-mixgrid > .ac-featurecard:first-child { grid-column: span 2; grid-row: auto; min-height: 340px; }
  .ac-promogrid { grid-template-columns: 1fr 1fr; }
  /* An odd last card would sit alone next to a hole; let it run the full width. */
  .ac-promogrid > .ac-promocard:last-child:nth-child(odd) { grid-column: 1 / -1; min-height: 260px; }
  .ac-topbar__facts .ac-topbar__fact:nth-child(n+3) { display: none; }
}

@media (max-width: 900px) {
  /* Recipes stay three-up until they no longer fit: a two-column grid with an
     odd count leaves a hole next to the last card. */
  .ac-recipes { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 980px) {
  /* Contact details belong in the drawer and footer on phones — the topbar has
     no room to keep them on one line. */
  .ac-topbar { display: none; }
  /* The burger appears here, so the row needs a fourth track or the tools wrap
     onto a second line and push the search field past the viewport. */
  .ac-header__in { grid-template-columns: auto auto minmax(0, 1fr) auto; gap: 12px; padding: 10px 0; }
  .ac-burger { display: inline-flex; }
  .ac-navrow { display: none; }
  .ac-logo img { height: 38px; }
  .ac-tool { width: 42px; height: 42px; }

  .ac-hero { min-height: 82vh; }
  .ac-hero__in { padding: clamp(90px, 12vh, 140px) 0 36px; }
  .ac-hero__copy { max-width: none; }
  .ac-hero__foot { flex-direction: column; align-items: flex-start; }
  .ac-hero__scroll { display: none; }

  .ac-story__in, .ac-split, .ac-apppromo, .ac-campaign { grid-template-columns: 1fr; }
  .ac-split--flip > *:first-child, .ac-campaign--flip > *:first-child { order: 0; }
  .ac-story__visual { position: relative; top: 0; aspect-ratio: 4 / 3; }
  .ac-story__steps { gap: 42px; padding: 32px 0 0; }
  .ac-story__step { opacity: 1; transform: none; }
  .ac-catalog, .ac-account { grid-template-columns: 1fr; }
  .ac-aside, .ac-account__nav { position: static; }
  .ac-pdx__hero { grid-template-columns: 1fr; }
  .ac-buy { position: static; }
  .ac-auth__grid { grid-template-columns: 1fr; }
  .ac-brandstory__year { font-size: clamp(4rem, 22vw, 8rem); opacity: .1; bottom: auto; top: -.08em; }

  .ac-tabbar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: fixed; left: 0; right: 0; bottom: 0;
    z-index: var(--z-sticky);
    background: rgba(250, 247, 240, .96);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    padding: 6px 0 calc(6px + env(safe-area-inset-bottom, 0px));
  }
  .ac-tabbar a, .ac-tabbar button {
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    padding: 7px 0;
    border: 0; background: none; cursor: pointer;
    font-size: 10.5px; font-weight: 600; letter-spacing: .01em;
    color: var(--muted);
  }
  .ac-tabbar .is-on { color: var(--gold-ink); }
  .ac-tabbar b {
    position: absolute; top: 2px; margin-left: 20px;
    min-width: 17px; height: 17px; padding: 0 4px;
    border-radius: var(--r-pill); background: var(--gold); color: var(--ink);
    font-size: 10px; display: inline-grid; place-items: center;
  }
  .ac-footer { padding-bottom: 70px; }
  .ac-installbar { bottom: 76px; }
}

@media (max-width: 720px) {
  /* Search drops to its own full-width row: on a phone it is the primary
     commerce action and must not be squeezed between the logo and the tools. */
  .ac-header__in { grid-template-columns: auto minmax(0, 1fr) auto; row-gap: 10px; }
  .ac-search { grid-column: 1 / -1; grid-row: 2; }
  .ac-cats { grid-auto-rows: 220px; }

  .ac-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .ac-mixgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .ac-mixgrid > .ac-featurecard:first-child { min-height: 280px; }
  .ac-featurecard--span2 { grid-column: span 2; }
  .ac-cats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ac-cat, .ac-cat--wide, .ac-cat--tall { grid-column: span 1; min-height: 220px; }
  .ac-cat--full { grid-column: span 2; min-height: 260px; }
  .ac-cat__desc { display: none; }
  .ac-cat__body { padding: 14px; padding-right: 52px; }
  .ac-cat__go { right: 12px; bottom: 12px; width: 34px; height: 34px; }
  .ac-bleed__copy, .ac-bleed--center .ac-bleed__copy { max-width: none; }
  .ac-promogrid { grid-template-columns: 1fr; }
  .ac-recipes { grid-template-columns: 1fr; }
  .ac-rail { grid-auto-columns: minmax(168px, 1fr); gap: 12px; }
  .ac-card__body { padding: 13px 13px 15px; }
  .ac-card__buy { flex-direction: column; align-items: stretch; }
  .ac-card__buy .ac-qty { align-self: flex-start; }
  .ac-card__buy .ac-btn { width: 100%; min-height: 44px; }
  .ac-sectionhead { flex-direction: column; align-items: flex-start; gap: 12px; }
  .ac-footer__grid { grid-template-columns: 1fr 1fr; }
  .ac-footer__brand { grid-column: span 2; }
  .ac-legal { flex-direction: column; align-items: flex-start; }
  .ac-news { grid-template-columns: 1fr; }
  .ac-news__form { flex-direction: column; }
  .ac-news__form .ac-btn { width: 100%; }
  .ac-buy__cta { flex-wrap: wrap; }
  .ac-btn--buy { width: 100%; flex: none; }
  .ac-tabs { grid-template-columns: 1fr; gap: 24px; }
  .ac-tabs__nav { position: static; border-left: 0; }
  .ac-tabs__nav button { width: 100%; padding-left: 0; border-bottom: 1px solid var(--line); }
  .ac-tabs__nav button::after { display: none; }
  .ac-tabs__panel { grid-column: 1; grid-row: auto; }
  .ac-device { width: min(240px, 70%); }
  .ac-installbar { flex-wrap: wrap; }
  .ac-installbar__actions { width: 100%; margin-left: 0; }
  .ac-installbar__actions .ac-btn { flex: 1; }
}

/* ==========================================================================
   REDUCED MOTION — content stays visible, movement stops
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .ac-reveal-clip { clip-path: none !important; }
  .ac-maskline > span { transform: none !important; }
  .ac-marquee__track { animation: none; transform: none; }
  .ac-story__step { opacity: 1 !important; transform: none !important; }
  .ac-story__visual img { opacity: 1; }
  .ac-story__visual img:not(.is-on) { opacity: 0; }
}

@media (prefers-contrast: more) {
  .ac-cat::after, .ac-bleed::after { background: rgba(10, 9, 7, .72); }
  .ac-muted, .ac-card__meta { color: var(--slate); }
}

/* Presence maps */
.ac-presence { position: relative; }
.ac-presence__legend {
  display: flex; flex-wrap: wrap; gap: 8px 14px;
  list-style: none; margin: 0 0 16px; padding: 0;
}
.ac-presence__legend li { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; }
.ac-presence__legend i { width: 10px; height: 10px; border-radius: 99px; display: inline-block; }
.ac-presence__board { display: grid; grid-template-columns: 1fr; gap: 36px; }
.ac-presence__map h2 { margin: 0 0 12px; }
.ac-presence__svg { background: #f6f1e6; border-radius: var(--r-lg); padding: 10px 8px; }
.ac-presence__svg--ro { min-height: min(72vh, 720px); }
.ac-presence__svg svg { width: 100%; height: auto; display: block; }
.ac-presence__svg--ro svg { min-height: min(68vh, 680px); }
.ac-ro-map path { fill: #efe6d2; stroke: #8a7a55; stroke-width: 8; transition: fill .15s ease; cursor: pointer; }
.ac-ro-map path.is-on, .ac-ro-map path:hover { filter: brightness(.97); }
.ac-presence-dot { cursor: pointer; stroke: #fffdf8; stroke-width: 18; }
.ac-eu-map path { fill: #efe6d2; stroke: #8a7a55; stroke-width: 1.6; cursor: pointer; transition: fill .15s ease; }
.ac-eu-map path.is-on { fill: var(--gold-soft); }
.ac-eu-map path:hover { fill: var(--gold-pale); }
.ac-presence__set { margin: 12px 0 0; color: var(--slate); font-size: 14px; }
.ac-presence__tip {
  position: fixed; z-index: 40; max-width: 260px;
  background: var(--ink); color: #f7f1e4; padding: 10px 12px;
  border-radius: 12px; font-size: 13px; line-height: 1.4;
  pointer-events: none; box-shadow: var(--sh-3);
}
.ac-split--hq { grid-template-columns: minmax(260px, .75fr) minmax(0, 1.45fr); align-items: start; }
.ac-hqmap { display: grid; gap: 14px; }
.ac-split--hq .ac-mapframe { aspect-ratio: 16 / 10; min-height: 520px; overflow: hidden; }
.ac-mapframe { min-height: 420px; }
.ac-mapframe iframe { width: 100%; height: 100%; min-height: 420px; border: 0; border-radius: var(--r-lg); }
.ac-split--hq .ac-mapframe iframe { min-height: 520px; }
.ac-map-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.ac-house__logo { width: min(240px, 86%); max-height: 210px; object-fit: contain; height: auto; display: block; margin: 0 auto 8px; filter: drop-shadow(0 10px 18px rgba(0,0,0,.28)); }
.ac-quality-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.ac-quality-grid h2 { margin: 8px 0 8px; letter-spacing: -.02em; }
@media (max-width: 900px) {
  .ac-quality-grid { grid-template-columns: 1fr; }
  .ac-presence__svg--ro, .ac-presence__svg--ro svg { min-height: 420px; }
  .ac-mapframe, .ac-mapframe iframe,
  .ac-split--hq .ac-mapframe, .ac-split--hq .ac-mapframe iframe { min-height: 360px; }
}

/* ==========================================================================
   PRIMETIME
   ========================================================================== */

.ac-primetime { position: relative; }
.ac-primetime__stage {
  position: relative;
  min-height: clamp(520px, 72vh, 820px);
  overflow: hidden;
  background: #0c0b09;
}
.ac-primetime__media {
  position: absolute; inset: -8%;
  z-index: 0;
}
.ac-primetime__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 18%;
  filter: saturate(1.08) contrast(1.06);
  animation: ac-ken 28s ease-in-out infinite alternate;
}
.ac-primetime__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(8,7,5,.78) 0%, rgba(8,7,5,.42) 48%, rgba(8,7,5,.18) 100%),
    linear-gradient(180deg, rgba(8,7,5,.2) 0%, transparent 30%, rgba(8,7,5,.55) 100%);
}
.ac-primetime__in {
  position: relative; z-index: 2;
  min-height: inherit;
  display: flex; align-items: flex-end;
  padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 5vw, 72px);
}
.ac-primetime__copy { max-width: 34rem; }
.ac-primetime__text {
  margin: 16px 0 26px;
  color: rgba(255, 253, 247, .86);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.55;
}

/* ==========================================================================
   HOUSE BRANDS
   ========================================================================== */

.ac-house {
  --mx: 0;
  --my: 0;
  position: relative;
  min-height: clamp(640px, 92vh, 980px);
  overflow: hidden;
  background: #120e0a;
  color: #fff;
}
.ac-house__bg {
  position: absolute; inset: -10%;
  z-index: 0;
}
.ac-house__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.08) brightness(.72);
  transform: scale(1.12) translate3d(calc(var(--mx) * -22px), calc(var(--my) * -16px), 0);
  animation: ac-ken 32s ease-in-out infinite alternate;
  will-change: transform;
}
.ac-house__grade {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(20,14,8,.15), rgba(8,6,4,.72) 70%),
    linear-gradient(180deg, rgba(10,8,6,.35) 0%, transparent 28%, rgba(10,8,6,.7) 100%);
}
.ac-house__grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: .18;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.55'/></svg>");
  mix-blend-mode: overlay;
}
.ac-house__glow {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(circle at calc(50% + var(--mx) * 8%) calc(42% + var(--my) * 6%), rgba(204,170,43,.22), transparent 36%);
}
.ac-house__in {
  position: relative; z-index: 3;
  min-height: inherit;
  display: grid;
  align-content: center;
  gap: clamp(28px, 4vw, 52px);
  padding: clamp(56px, 8vw, 100px) 0 clamp(40px, 5vw, 72px);
}
.ac-house__head { text-align: center; max-width: 40rem; margin: 0 auto; }
.ac-house__brands {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  align-items: stretch;
}
.ac-house__card {
  position: relative;
  display: grid;
  place-items: center;
  gap: 14px;
  min-height: 340px;
  padding: 28px 20px 24px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,252,245,.12), rgba(12,10,8,.28));
  border: 1px solid rgba(255, 236, 190, .22);
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  backdrop-filter: blur(16px);
  transform: translate3d(calc(var(--mx) * 10px), calc(var(--my) * 8px), 0);
  transition: transform .45s var(--e-editorial), border-color .25s ease, background .25s ease;
}
.ac-house__card--delicium { transform: translate3d(calc(var(--mx) * 16px), calc(var(--my) * 10px), 0) rotate(-1.2deg); }
.ac-house__card--anc { transform: translate3d(calc(var(--mx) * 6px), calc(var(--my) * -8px), 0) translateY(-10px); z-index: 2; }
.ac-house__card--mosia { transform: translate3d(calc(var(--mx) * -14px), calc(var(--my) * 10px), 0) rotate(1.2deg); }
.ac-house__card:hover {
  border-color: rgba(240, 214, 130, .7);
  background: linear-gradient(180deg, rgba(255,252,245,.2), rgba(12,10,8,.2));
}
.ac-house__card-name {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -.02em;
}
.ac-house__card-tag {
  font-size: 13px;
  letter-spacing: .04em;
  color: rgba(255, 248, 230, .72);
}
.ac-house__slogan {
  text-align: center;
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -.03em;
  color: #fff;
  text-shadow: 0 10px 40px rgba(0,0,0,.45);
}

.ac-mark-delicium { display: grid; justify-items: center; gap: 10px; }
.ac-mark-delicium__toast {
  position: relative;
  width: 168px; height: 168px;
  display: grid; place-content: center;
  background: #f7efe0;
  border: 3px solid #c9a227;
  border-radius: 28px 28px 34px 34px;
  box-shadow: inset 0 0 0 6px #fff8ea, 0 10px 24px rgba(0,0,0,.18);
  color: #3a2a18;
}
.ac-mark-delicium__name { font-weight: 800; letter-spacing: -.02em; font-size: 1.05rem; }
.ac-mark-delicium__um {
  position: relative; z-index: 2;
  font-family: var(--display);
  font-size: 2.6rem; font-weight: 700; line-height: .9;
  color: #6b3a12;
}
.ac-mark-delicium__splash {
  position: absolute; border-radius: 50%; filter: blur(.4px); opacity: .9;
}
.ac-mark-delicium__splash--a { width: 42px; height: 28px; right: 18px; top: 54px; background: #d94a2a; transform: rotate(18deg); }
.ac-mark-delicium__splash--b { width: 36px; height: 22px; left: 22px; bottom: 38px; background: #6aa12a; transform: rotate(-22deg); }
.ac-mark-delicium__splash--c { width: 28px; height: 18px; right: 36px; bottom: 28px; background: #e3b325; }
.ac-mark-delicium__ready {
  font-family: Georgia, 'Palatino Linotype', serif;
  font-style: italic; color: #d43b2a; font-size: 1.05rem;
}

.ac-mark-anc { display: grid; justify-items: center; gap: 8px; }
.ac-mark-anc__couple {
  width: 132px; height: 94px;
  background: #fff; border-radius: 16px;
  display: grid; place-items: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.16);
}
.ac-mark-anc__banner {
  background: #fff; color: #111;
  font-weight: 800; letter-spacing: -.02em;
  padding: 8px 16px;
  border: 2px solid #111;
  box-shadow: 4px 5px 0 #111;
}
.ac-mark-anc__script {
  font-family: Georgia, 'Palatino Linotype', serif;
  font-style: italic; font-size: 1.15rem;
  color: #fff;
}

.ac-mark-mosia { display: grid; place-items: center; }
.ac-mark-mosia__crest { filter: drop-shadow(0 12px 22px rgba(0,0,0,.35)); }

@keyframes ac-ken {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to { transform: scale(1.18) translate3d(-2%, -1.5%, 0); }
}

/* ==========================================================================
   STORY / TEAM / TIMELINE
   ========================================================================== */

.ac-story-jump {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 22px;
}
.ac-story-jump a {
  color: #fff; text-decoration: none;
  border: 1px solid rgba(255,255,255,.28);
  padding: 7px 12px; border-radius: 999px;
  font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase;
}
.ac-story-jump a:hover { border-color: var(--gold); color: var(--gold-soft); }

.ac-timeline {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 0;
  border-left: 2px solid var(--gold);
}
.ac-timeline__item {
  position: relative;
  padding: 0 0 28px 28px;
}
.ac-timeline__item::before {
  content: "";
  position: absolute; left: -7px; top: 8px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 4px var(--gold-wash);
}
.ac-timeline__item b {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem; letter-spacing: -.03em;
  color: var(--gold-ink);
}
.ac-timeline__item p { margin: 6px 0 0; color: var(--slate); line-height: 1.6; }

.ac-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.ac-pillars__card {
  padding: clamp(22px, 2.4vw, 32px);
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
}
.ac-pillars__card h3 {
  font-family: var(--display);
  font-size: 1.4rem; margin: 8px 0 10px; letter-spacing: -.02em;
}
.ac-pillars__card p { color: var(--slate); line-height: 1.6; }

.ac-team {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.ac-team__card {
  padding: 18px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.04);
}
.ac-team__card strong { display: block; color: #fff; font-size: 1.02rem; }
.ac-team__card span { display: block; margin-top: 4px; color: rgba(255,248,230,.62); font-size: 13px; }

@media (max-width: 1080px) {
  .ac-house__brands, .ac-pillars { grid-template-columns: 1fr; }
  .ac-house__card--delicium, .ac-house__card--anc, .ac-house__card--mosia { transform: none; }
  .ac-team { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ac-primetime__stage, .ac-house { min-height: auto; }
  .ac-primetime__in, .ac-house__in { padding-top: 72px; }
}
@media (max-width: 720px) {
  .ac-team { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .ac-primetime__media img, .ac-house__bg img { animation: none !important; }
}

/* Cookie consent */
.ac-cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 80;
  max-width: 920px; margin: 0 auto;
  transform: translateY(18px); opacity: 0; pointer-events: none;
  transition: transform .28s ease, opacity .28s ease;
}
.ac-cookie.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.ac-cookie__inner {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 22px; border-radius: 22px;
  background: #fffdf8; border: 1px solid var(--gold-soft);
  box-shadow: 0 22px 50px rgba(23, 21, 15, .18);
}
.ac-cookie__icon {
  flex: 0 0 42px; width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%; background: var(--gold-wash); color: var(--gold-ink);
}
.ac-cookie__body { flex: 1; min-width: 0; }
.ac-cookie__main { display: flex; gap: 22px; align-items: flex-start; }
.ac-cookie__title { margin: 0 0 8px; font-size: 17px; font-weight: 800; letter-spacing: -.3px; }
.ac-cookie__text { margin: 0; font-size: 13px; line-height: 1.65; color: var(--slate); }
.ac-cookie__text a { color: var(--gold-ink); font-weight: 700; }
.ac-cookie__actions { display: flex; flex-direction: column; gap: 8px; min-width: 168px; }
.ac-cookie__link {
  background: none; border: 0; padding: 4px 0; color: var(--gold-ink);
  font-weight: 700; font-size: 13px; cursor: pointer; text-align: left;
}
.ac-cookie__details { display: none; margin-top: 16px; padding-top: 14px; border-top: 1px solid #eee4cc; }
.ac-cookie__details.is-open { display: block; }
.ac-cookie__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.ac-cookie__row { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; }
.ac-cookie__row strong { display: block; margin-bottom: 2px; }
.ac-cookie__row span { color: var(--slate); font-size: 12px; line-height: 1.45; }
.ac-cookie__badge { font-size: 11px; font-weight: 800; padding: 4px 8px; border-radius: 99px; background: var(--gold-wash); color: var(--gold-ink); }
.ac-cookie__badge--req { background: #f1efe8; color: #5b5344; }
.ac-cookie__table { width: 100%; margin-top: 14px; border-collapse: collapse; font-size: 12px; }
.ac-cookie__table th, .ac-cookie__table td { text-align: left; padding: 7px 6px; border-bottom: 1px solid #efe6d2; }
.ac-cookie__table code { background: #f6f1e6; padding: 2px 6px; border-radius: 4px; }
.ac-cookie__policy { display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 700; color: var(--gold-ink); }
.ac-cookie-fab {
  position: fixed; left: 16px; bottom: 88px; z-index: 70;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--gold-soft); background: #fffdf8; color: var(--gold-ink);
  box-shadow: 0 10px 24px rgba(23,21,15,.16); cursor: pointer;
  display: none; place-items: center;
}
.ac-cookie-fab.is-visible { display: grid; }
.ac-prose table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 16px 0 24px; }
.ac-prose th, .ac-prose td { text-align: left; padding: 8px 6px; border-bottom: 1px solid #efe6d2; }
.ac-prose code { background: #f6f1e6; padding: 2px 6px; border-radius: 4px; }
@media (max-width: 720px) {
  .ac-cookie { left: 10px; right: 10px; bottom: 78px; }
  .ac-cookie__inner, .ac-cookie__main { flex-direction: column; }
  .ac-cookie__actions { width: 100%; }
  .ac-cookie__grid { grid-template-columns: 1fr; }
}
