/** Shopify CDN: Minification failed

Line 5604:0 Unexpected "<"

**/
/* ============================================================
   Almondos California Co. — Colors & Type
   Source of truth: src/theme.css in enoteware/almondo-shopify-theme
   ============================================================ */

/* Fonts — load at the top of any document using this file */
@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Montserrat:wght@400;500;600;700;800;900&family=Nunito:wght@400;500;600;700&display=swap');

:root {
  /* ─────────────────────────────────────────────────────────
     BRAND PALETTE
     "Warm, Californian, festive" — crimson × forest × gold
     on warm cream backgrounds.
     ───────────────────────────────────────────────────────── */

  /* Primary — crimson */
  --alm-crimson: #98001b;
  /* primary */
  --alm-crimson-hover: #be1e2d;
  /* primary-container (Stitch match) */
  --alm-on-crimson: #ffffff;

  /* Secondary — California forest green */
  --alm-forest: #296a40;
  --alm-on-forest: #ffffff;
  --alm-forest-light: #adf2bc;
  /* secondary-container */
  --alm-on-forest-light: #307146;

  /* Tertiary — toasted almond / warm gold */
  --alm-almond-brown: #614500;
  --alm-gold: #d4a543;
  /* accent gold — star divider, trim */
  --alm-gold-soft: #ffdea4;
  /* tertiary-fixed, papel-picado chip bg */
  --alm-on-gold-soft: #5d4200;

  /* Surfaces — warm cream ladder */
  --alm-cream: #fff8f0;
  /* background */
  --alm-cream-tint: #faf3e9;
  /* surface-container-low */
  --alm-cream-mid: #f5efe5;
  /* surface-container */
  --alm-cream-high: #eee7dd;
  /* surface-container-high */
  --alm-cream-highest: #e8e2d8;
  /* surface-container-highest / hover tint */
  --alm-white: #ffffff;
  /* card background */
  --alm-cream-dim: #e0d9d0;
  /* dim */

  /* Text */
  --alm-ink: #1e1b16;
  /* near-black warm */
  --alm-ink-muted: #5b403f;
  /* muted body (warm brown) */

  /* Borders / outline */
  --alm-outline: #8f6f6e;
  --alm-outline-variant: #e3bebb;
  /* warmer pink — subtle divider */

  /* State */
  --alm-error: #ba1a1a;
  --alm-on-error: #ffffff;
  --alm-error-container: #ffdad6;
  --alm-on-error-container: #93000a;

  /* Inverse (dark callouts) */
  --alm-inverse-surface: #33302a;
  --alm-inverse-on-surface: #f7f0e6;

  /* Dark footer */
  --alm-footer-bg: #1C1008;

  /* ─────────────────────────────────────────────────────────
     SEMANTIC ALIASES
     Prefer these in components; swap raw tokens out per theme.
     ───────────────────────────────────────────────────────── */
  --fg1: var(--alm-ink);
  --fg2: var(--alm-ink-muted);
  --fg-accent: var(--alm-crimson);

  --bg: var(--alm-cream);
  --bg-card: var(--alm-white);
  --bg-tint: var(--alm-cream-tint);
  --bg-alt: var(--alm-cream-mid);

  --border: var(--alm-outline-variant);
  --border-strong: var(--alm-outline);

  --brand: var(--alm-crimson);
  --brand-hover: var(--alm-crimson-hover);
  --accent: var(--alm-gold);
  --success: var(--alm-forest);
  --danger: var(--alm-error);

  /* ─────────────────────────────────────────────────────────
     TYPOGRAPHY
     Lobster    — display only; rotated slightly off-axis
     Montserrat — headlines, labels, buttons (800/900, uppercase)
     Nunito     — body copy, prose
     ───────────────────────────────────────────────────────── */
  --font-display: "Lobster", "Pacifico", cursive;
  --font-headline: "Montserrat", system-ui, -apple-system, sans-serif;
  --font-body: "Nunito", system-ui, -apple-system, sans-serif;

  /* Size scale — use these names in components */
  --text-2xs: 10px;
  /* micro-label (tracked) */
  --text-xs: 12px;
  /* eyebrow label */
  --text-sm: 14px;
  /* UI small */
  --text-base: 16px;
  /* body default */
  --text-lg: 18px;
  /* lead body */
  --text-xl: 20px;
  /* small heading */
  --text-2xl: 24px;
  /* card heading */
  --text-3xl: 30px;
  /* section heading */
  --text-4xl: 40px;
  /* page heading */
  --text-5xl: 56px;
  /* display */
  --text-6xl: 72px;
  /* hero display */

  /* Line-height */
  --lh-tight: 1.1;
  --lh-snug: 1.25;
  --lh-normal: 1.5;
  --lh-relaxed: 1.7;

  /* Letter-spacing */
  --track-tight: -0.02em;
  --track-normal: 0;
  --track-wide: 0.08em;
  --track-wider: 0.15em;
  --track-widest: 0.25em;
  /* labels + eyebrows */

  /* ─────────────────────────────────────────────────────────
     SPACING & SHAPE
     Base = 4px. Sharp edges on buttons (pill) + big round cards.
     ───────────────────────────────────────────────────────── */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;

  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-3xl: 32px;
  --radius-pill: 9999px;

  /* Elevation — warm, low-contrast */
  --shadow-sm: 0 2px 8px rgba(30, 27, 22, 0.06);
  --shadow-md: 0 8px 24px rgba(30, 27, 22, 0.08);
  --shadow-lg: 0 16px 40px rgba(30, 27, 22, 0.12);
  --shadow-brand: 0 12px 32px rgba(152, 0, 27, 0.25);

  /* Content widths */
  --w-prose: 65ch;
  --w-page: 1280px;
  --w-page-wide: 1440px;

  /* Motion */
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 150ms;
  --dur-base: 200ms;
  --dur-slow: 300ms;
}

/* ============================================================
   SEMANTIC TYPE RULES
   Drop in + element selectors do the right thing.
   ============================================================ */

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--lh-relaxed);
  color: var(--fg1);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Display — Lobster, slight rotation, crimson by default.
   Usage: <h1 class="alm-display">California's Boldest Crunch</h1> */
.alm-display {
  font-family: var(--font-display);
  font-weight: 400;
  /* Lobster is only 400 */
  font-style: normal;
  color: var(--brand);
  line-height: var(--lh-tight);
  letter-spacing: 0;
  text-transform: none;
  display: inline-block;
  transform: rotate(-1.5deg);
  font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl));
}

.alm-display--lg {
  font-size: clamp(var(--text-5xl), 7vw, 96px);
}

.alm-display--sm {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
}

.alm-display--straight {
  transform: none;
}

/* Headlines — Montserrat extrabold, uppercase, tight.
   h1/h2/h3 default to headline specs but not uppercase by default
   — apply .alm-h* utilities when you want the full Almondos feel. */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headline);
  font-weight: 800;
  color: var(--fg1);
  letter-spacing: var(--track-tight);
  line-height: var(--lh-snug);
}

.alm-h1,
.alm-h2,
.alm-h3,
.alm-h4 {
  font-family: var(--font-headline);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: var(--track-tight);
  color: var(--fg1);
  line-height: var(--lh-tight);
}

.alm-h1 {
  font-size: var(--text-4xl);
}

.alm-h2 {
  font-size: var(--text-3xl);
}

.alm-h3 {
  font-size: var(--text-2xl);
}

.alm-h4 {
  font-size: var(--text-xl);
}

/* Eyebrow — tiny, tracked-out label. Crimson for emphasis, muted for calm. */
.alm-eyebrow {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: var(--text-2xs);
  text-transform: uppercase;
  letter-spacing: var(--track-widest);
  color: var(--brand);
}

.alm-eyebrow--muted {
  color: var(--fg2);
}

/* Label — button copy, chip copy, tag copy */
.alm-label {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--track-widest);
}

/* Body tokens */
.alm-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-base);
  line-height: var(--lh-relaxed);
  color: var(--fg2);
}

.alm-body--lg {
  font-size: var(--text-lg);
}

.alm-body--sm {
  font-size: var(--text-sm);
}

/* Prose — rich text blocks (product descriptions, articles) */
.alm-prose {
  font-family: var(--font-body);
  color: var(--fg2);
  line-height: var(--lh-relaxed);
}

.alm-prose>*+* {
  margin-top: var(--sp-4);
}

.alm-prose h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-3xl);
  color: var(--fg1);
  text-transform: none;
  letter-spacing: 0;
  margin-top: var(--sp-8);
}

.alm-prose h3 {
  font-family: var(--font-headline);
  font-weight: 800;
  text-transform: uppercase;
  font-size: var(--text-lg);
  letter-spacing: var(--track-tight);
  color: var(--fg1);
  margin-top: var(--sp-6);
}

.alm-prose h4 {
  font-family: var(--font-headline);
  font-weight: 700;
  text-transform: uppercase;
  font-size: var(--text-xs);
  letter-spacing: var(--track-widest);
  color: var(--fg1);
  margin-top: var(--sp-6);
}

.alm-prose strong {
  color: var(--fg1);
  font-weight: 700;
}

.alm-prose em {
  font-style: italic;
}

.alm-prose a {
  color: var(--brand);
  text-decoration: underline;
  text-decoration-color: rgba(152, 0, 27, 0.3);
  text-underline-offset: 2px;
}

.alm-prose a:hover {
  text-decoration-color: var(--brand);
}

.alm-prose ul {
  list-style: disc;
  padding-left: var(--sp-5);
}

.alm-prose ul>li+li,
.alm-prose ol>li+li {
  margin-top: var(--sp-2);
}

.alm-prose ol {
  list-style: decimal;
  padding-left: var(--sp-5);
}

.alm-prose blockquote {
  border-left: 4px solid var(--alm-gold);
  padding-left: var(--sp-4);
  font-style: italic;
  color: var(--fg2);
}

.alm-prose hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: var(--sp-6) 0;
}

/* Focus ring — keyboard-accessible, on-brand */
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ============================================================
   Almondos — Component Styles
   Requires colors_and_type.css first.
   ============================================================ */

/* ─────────────────────────────────────────────────────────────
   BUTTON
   .alm-btn         base (pill, uppercase label, tight tracking)
   .alm-btn--primary  filled crimson (default CTA)
   .alm-btn--ghost    outline on cream (secondary)
   .alm-btn--dark     filled ink (tertiary, on light surfaces)
   .alm-btn--sm / --lg  sizes
   .alm-btn--block  full-width
   ───────────────────────────────────────────────────────────── */
.alm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 14px var(--sp-6);
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--track-widest);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color var(--dur-base) var(--ease-out),
    transform var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out),
    color var(--dur-base) var(--ease-out);
}

.alm-btn:hover:not(:disabled) {
  transform: scale(1.05);
}

.alm-btn:active:not(:disabled) {
  transform: scale(0.95);
}

.alm-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.alm-btn--primary {
  background: var(--brand);
  color: var(--alm-on-crimson);
  box-shadow: var(--shadow-brand);
}

.alm-btn--primary:hover:not(:disabled) {
  background: var(--brand-hover);
  box-shadow: 0 16px 40px rgba(152, 0, 27, 0.35);
}

.alm-btn--ghost {
  background: transparent;
  color: var(--brand);
  box-shadow: inset 0 0 0 2px var(--brand);
}

.alm-btn--ghost:hover:not(:disabled) {
  background: var(--brand);
  color: var(--alm-on-crimson);
}

.alm-btn--dark {
  background: var(--alm-ink);
  color: var(--bg-card);
}

.alm-btn--dark:hover:not(:disabled) {
  background: #000;
}

.alm-btn--quiet {
  background: transparent;
  color: var(--fg1);
  padding: var(--sp-2) var(--sp-3);
  letter-spacing: var(--track-wide);
}

.alm-btn--quiet:hover:not(:disabled) {
  background: var(--alm-cream-highest);
  transform: none;
}

.alm-btn--sm {
  padding: 10px var(--sp-4);
  font-size: var(--text-2xs);
}

.alm-btn--lg {
  padding: 18px var(--sp-8);
  font-size: var(--text-sm);
}

.alm-btn--block {
  width: 100%;
}

.alm-btn .icon {
  width: 16px;
  height: 16px;
}

/* ─────────────────────────────────────────────────────────────
   ICON — convenience wrapper for assets/icon-*.svg
   <span class="alm-icon"><img src="…" alt=""></span>
   Inherits currentColor via CSS mask so SVGs recolor to parent.
   ───────────────────────────────────────────────────────────── */
.alm-icon {
  display: inline-flex;
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  flex-shrink: 0;
}

.alm-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
}

.alm-icon--sm {
  width: 0.875em;
  height: 0.875em;
}

.alm-icon--lg {
  width: 1.5em;
  height: 1.5em;
}

/* ─────────────────────────────────────────────────────────────
   CHIP — pill tag. Used for dietary tags, category filters,
   variant selectors ("0.25 lb", "Ensalada").
   ───────────────────────────────────────────────────────────── */
.alm-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-pill);
  background: var(--alm-gold-soft);
  color: var(--alm-on-gold-soft);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: var(--text-2xs);
  text-transform: uppercase;
  letter-spacing: var(--track-widest);
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--dur-base) var(--ease-out);
}

.alm-chip:hover {
  background: var(--alm-gold);
  color: var(--alm-on-crimson);
}

.alm-chip--active {
  background: var(--brand);
  color: var(--alm-on-crimson);
  border-color: var(--brand);
}

.alm-chip--active:hover {
  background: var(--brand-hover);
  color: var(--alm-on-crimson);
}

.alm-chip--ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--fg1);
}

.alm-chip--ghost:hover {
  background: var(--alm-cream-highest);
}

.alm-chip--forest {
  background: var(--alm-forest-light);
  color: var(--alm-on-forest-light);
}

.alm-chip--forest:hover {
  background: var(--alm-forest);
  color: var(--alm-on-forest);
}

.alm-chip--sm {
  padding: 4px 10px;
  font-size: 9px;
}

/* ─────────────────────────────────────────────────────────────
   PLAN PICKER — subscription / selling-plan cards on PDP
   ───────────────────────────────────────────────────────────── */
.alm-plan-picker {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.alm-plan-picker__head {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}

.alm-plan-picker__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  background: var(--alm-gold-soft);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.alm-plan-picker__title {
  margin: 0;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: var(--text-xs);
  letter-spacing: var(--track-widest);
  text-transform: uppercase;
  color: var(--fg1);
  line-height: 1.3;
}

.alm-plan-picker__subtitle {
  margin: 4px 0 0;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--fg2);
  line-height: 1.45;
}

.alm-plan-cards {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.alm-plan-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  border: 2px solid var(--alm-outline-variant);
  border-radius: var(--radius-xl);
  background: var(--alm-white);
  cursor: pointer;
  transition:
    border-color var(--dur-base) var(--ease-out),
    background-color var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out),
    transform var(--dur-base) var(--ease-out);
}

.alm-plan-card:hover {
  border-color: color-mix(in srgb, var(--brand) 45%, var(--alm-outline-variant));
  background: var(--alm-cream-tint);
  transform: translateY(-1px);
}

.alm-plan-card:has(input:focus-visible) {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.alm-plan-card:has(input:checked) {
  border-color: var(--brand);
  background: linear-gradient(135deg, var(--alm-gold-soft) 0%, var(--alm-white) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 8px 24px rgba(152, 0, 27, 0.1);
}

.alm-plan-card--featured:has(input:checked) {
  border-color: var(--brand);
}

.alm-plan-card input[type='radio'] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.alm-plan-card__radio {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border: 2px solid var(--alm-outline);
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color var(--dur-base) var(--ease-out),
    background-color var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
}

.alm-plan-card:has(input:checked) .alm-plan-card__radio {
  border-color: var(--brand);
  background: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 18%, transparent);
}

.alm-plan-card:has(input:checked) .alm-plan-card__radio::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: var(--radius-pill);
  background: var(--alm-on-crimson);
}

.alm-plan-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.alm-plan-card__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-4);
}

.alm-plan-card__name {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--fg1);
  line-height: 1.25;
}

.alm-plan-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background: var(--brand);
  color: var(--alm-on-crimson);
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.alm-plan-card__price {
  flex-shrink: 0;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: var(--text-base);
  color: var(--brand);
  line-height: 1.2;
  text-align: right;
}

.alm-plan-card__compare {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--fg2);
  text-decoration: line-through;
  margin-top: 2px;
}

.alm-plan-card__hint {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--fg2);
  line-height: 1.45;
}

@media (min-width: 750px) {
  .alm-plan-card {
    padding: var(--sp-5) var(--sp-6);
  }

  .alm-plan-card__name {
    font-size: var(--text-base);
  }

  .alm-plan-card__price {
    font-size: var(--text-lg);
  }
}

/* Dietary pill on PDP — circular icon + small label */
.alm-dietary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  text-align: center;
}

.alm-dietary__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  background: var(--alm-forest-light);
  color: var(--alm-forest);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.alm-dietary__icon svg {
  width: 22px;
  height: 22px;
}

.alm-dietary__label {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: var(--text-2xs);
  text-transform: uppercase;
  letter-spacing: var(--track-wide);
  color: var(--fg2);
}

/* ─────────────────────────────────────────────────────────────
   CARD — product card, feature card, generic surface
   ───────────────────────────────────────────────────────────── */
.alm-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-slow) var(--ease-out),
    box-shadow var(--dur-slow) var(--ease-out);
  display: flex;
  flex-direction: column;
}

.alm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Product card specifics */
.alm-product-card__image {
  aspect-ratio: 4 / 3;
  background: var(--alm-cream-highest);
  overflow: hidden;
  position: relative;
}

.alm-product-card__image>img,
.alm-product-card__image>svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.alm-card:hover .alm-product-card__image>img,
.alm-card:hover .alm-product-card__image>svg {
  transform: scale(1.05);
}

/* Category color bar between image and content */
.alm-product-card__bar {
  height: 6px;
  background: var(--brand);
}

.alm-product-card__bar[data-cat="classic"] {
  background: var(--alm-crimson);
}

.alm-product-card__bar[data-cat="smoky"] {
  background: var(--alm-forest);
}

.alm-product-card__bar[data-cat="sweet"] {
  background: var(--alm-gold);
}

.alm-product-card__bar[data-cat="dark"] {
  background: var(--alm-footer-bg);
}

.alm-product-card__bar[data-cat="zesty"] {
  background: var(--alm-cream-highest);
}

.alm-product-card__bar[data-cat="herbal"] {
  background: var(--alm-forest);
}

.alm-product-card__body {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-3);
  flex: 1;
}

.alm-product-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-2xl);
  color: var(--fg1);
  line-height: var(--lh-tight);
  transform: rotate(-1deg);
}

.alm-product-card__desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--fg2);
  line-height: var(--lh-normal);
  max-width: 32ch;
}

.alm-product-card__price {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: var(--text-lg);
  color: var(--brand);
  letter-spacing: var(--track-tight);
}

.alm-product-card__cta {
  margin-top: auto;
}

/* Glass badge on product image (metafield-driven labels) */
.alm-badge {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: var(--track-widest);
  color: var(--brand);
  box-shadow: var(--shadow-sm);
}

.alm-badge--dark {
  background: rgba(30, 27, 22, 0.75);
  color: var(--alm-white);
}

/* Rotated circular sticker — "New Flavors!", "Limited" */
.alm-sticker {
  width: 92px;
  height: 92px;
  border-radius: var(--radius-pill);
  background: var(--brand);
  color: var(--alm-on-crimson);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--track-wide);
  line-height: 1.1;
  padding: 12px;
  transform: rotate(-12deg);
  box-shadow: var(--shadow-md);
}

.alm-sticker--gold {
  background: var(--alm-gold);
  color: var(--alm-ink);
}

.alm-sticker--forest {
  background: var(--alm-forest);
  color: var(--alm-on-forest);
}

/* ─────────────────────────────────────────────────────────────
   STAR DIVIDER — eyebrow + rule + star, used between sections
   ───────────────────────────────────────────────────────────── */
.alm-star-divider {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--alm-gold);
}

.alm-star-divider::before,
.alm-star-divider::after {
  content: '';
  width: 40px;
  height: 1.5px;
  background: currentColor;
}

.alm-star-divider svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  stroke: none;
}

.alm-eyebrow-rule {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.alm-eyebrow-rule::before {
  content: '';
  width: 40px;
  height: 1.5px;
  background: var(--brand);
}

/* ─────────────────────────────────────────────────────────────
   NAV — glass-morphism sticky header
   ───────────────────────────────────────────────────────────── */
.alm-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 248, 240, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 80px;
  display: flex;
  align-items: center;
}

.alm-nav__inner {
  max-width: var(--w-page);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--sp-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}

.alm-nav__logo img {
  height: 44px;
  width: auto;
  display: block;
}

.alm-nav__links {
  display: flex;
  gap: var(--sp-8);
  list-style: none;
  margin: 0;
  padding: 0;
}

.alm-nav__link {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--track-widest);
  color: var(--fg1);
  text-decoration: none;
  position: relative;
  padding: var(--sp-2) 0;
  transition: color var(--dur-base) var(--ease-out);
}

.alm-nav__link:hover {
  color: var(--brand);
}

.alm-nav__link--active {
  color: var(--brand);
}

.alm-nav__link--active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--alm-gold);
}

.alm-nav__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.alm-nav__icon-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  background: transparent;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fg1);
  cursor: pointer;
  position: relative;
  transition: background var(--dur-base) var(--ease-out);
}

.alm-nav__icon-btn:hover {
  background: var(--alm-cream-highest);
}

.alm-nav__icon-btn svg {
  width: 22px;
  height: 22px;
}

.alm-nav__badge {
  position: absolute;
  top: 6px;
  right: 6px;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  background: var(--brand);
  color: var(--alm-on-crimson);
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* ─────────────────────────────────────────────────────────────
   INPUT + FORM
   ───────────────────────────────────────────────────────────── */
.alm-input {
  display: block;
  width: 100%;
  padding: 14px var(--sp-5);
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--fg1);
  transition: border-color var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
}

.alm-input::placeholder {
  color: var(--fg2);
  opacity: 0.6;
}

.alm-input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(152, 0, 27, 0.1);
}

.alm-input-group {
  display: flex;
  gap: var(--sp-2);
  align-items: stretch;
}

.alm-input-group .alm-input {
  flex: 1;
}

.alm-field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.alm-field__label {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: var(--text-2xs);
  text-transform: uppercase;
  letter-spacing: var(--track-widest);
  color: var(--fg1);
}

/* Quantity stepper */
.alm-qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: var(--bg-card);
}

.alm-qty button {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--fg1);
  cursor: pointer;
  font-size: var(--text-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-base);
}

.alm-qty button:hover {
  background: var(--alm-cream-highest);
}

.alm-qty__value {
  min-width: 48px;
  text-align: center;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--fg1);
}

/* ─────────────────────────────────────────────────────────────
   SECTION & LAYOUT helpers
   ───────────────────────────────────────────────────────────── */
.alm-section {
  padding: var(--sp-20) var(--sp-8);
  position: relative;
}

.alm-section--sm {
  padding: var(--sp-12) var(--sp-8);
}

.alm-section--tint {
  background: var(--bg-tint);
}

.alm-section--alt {
  background: var(--bg-alt);
}

.alm-section--ink {
  background: var(--alm-inverse-surface);
  color: var(--alm-inverse-on-surface);
}

.alm-section__inner {
  max-width: var(--w-page);
  margin: 0 auto;
  position: relative;
}

.alm-section__stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--brand);
}

.alm-section__watermark {
  position: absolute;
  pointer-events: none;
  color: var(--brand);
  opacity: 0.04;
  z-index: 0;
}

.alm-section__watermark svg {
  width: 100%;
  height: 100%;
}

.alm-section__inner>* {
  position: relative;
  z-index: 1;
}

/* Section header — eyebrow + display headline + rule */
.alm-section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-12);
}

.alm-section-header__eyebrow {
  color: var(--brand);
}

.alm-section-header__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(var(--text-4xl), 5vw, var(--text-5xl));
  color: var(--fg1);
  transform: rotate(-1deg);
  line-height: 1;
}

.alm-section-header__sub {
  max-width: 56ch;
  color: var(--fg2);
  font-size: var(--text-lg);
}

/* ─────────────────────────────────────────────────────────────
   ACCORDION — PDP "Our Craft / Provenance / Ingredients"
   ───────────────────────────────────────────────────────────── */
.alm-accordion {
  border-top: 1px solid var(--border);
}

.alm-accordion details {
  border-bottom: 1px solid var(--border);
  padding: var(--sp-5) 0;
}

.alm-accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--track-widest);
  color: var(--fg1);
}

.alm-accordion summary::-webkit-details-marker {
  display: none;
}

.alm-accordion summary::after {
  content: '';
  width: 16px;
  height: 16px;
  background: currentColor;
  mask: url("assets/icon-plus.svg") center / contain no-repeat;
  -webkit-mask: url("assets/icon-plus.svg") center / contain no-repeat;
  transition: transform var(--dur-base) var(--ease-out);
}

.alm-accordion details[open] summary::after {
  mask-image: url("assets/icon-minus.svg");
  -webkit-mask-image: url("assets/icon-minus.svg");
}

.alm-accordion__body {
  padding-top: var(--sp-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--fg2);
  line-height: var(--lh-relaxed);
}

/* ─────────────────────────────────────────────────────────────
   DRAWER / MODAL — cart drawer
   ───────────────────────────────────────────────────────────── */
.alm-scrim {
  position: fixed;
  inset: 0;
  background: rgba(30, 27, 22, 0.45);
  backdrop-filter: blur(2px);
  z-index: 50;
}

.alm-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(460px, 100vw);
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 51;
  display: flex;
  flex-direction: column;
  box-shadow: -16px 0 40px rgba(30, 27, 22, 0.15);
}

.alm-drawer__header {
  padding: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.alm-drawer__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--brand);
  transform: rotate(-1deg);
}

.alm-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.alm-drawer__footer {
  padding: var(--sp-6);
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.alm-line-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: var(--sp-4);
  align-items: center;
}

.alm-line-item__thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  background: var(--alm-cream-highest);
  overflow: hidden;
}

.alm-line-item__title {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: var(--track-tight);
  color: var(--fg1);
}

.alm-line-item__meta {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--fg2);
}

/* Free-shipping progress */
.alm-progress {
  background: var(--alm-cream-mid);
  border-radius: var(--radius-pill);
  height: 6px;
  overflow: hidden;
}

.alm-progress__fill {
  height: 100%;
  background: var(--alm-gold);
  transition: width var(--dur-slow) var(--ease-out);
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────── */
.alm-footer {
  background: var(--alm-footer-bg);
  color: var(--alm-cream);
  padding: var(--sp-20) var(--sp-8) var(--sp-8);
}

.alm-footer__inner {
  max-width: var(--w-page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
}

@media (max-width: 768px) {
  .alm-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.alm-footer__col h4 {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: var(--text-2xs);
  text-transform: uppercase;
  letter-spacing: var(--track-widest);
  color: var(--alm-gold);
  margin-bottom: var(--sp-4);
}

.alm-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.alm-footer__col a {
  color: rgba(255, 248, 240, 0.75);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--dur-base);
}

.alm-footer__col a:hover {
  color: var(--alm-white);
}

.alm-footer__legal {
  max-width: var(--w-page);
  margin: var(--sp-12) auto 0;
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255, 248, 240, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  color: rgba(255, 248, 240, 0.5);
  font-size: var(--text-xs);
}

.alm-footer__social {
  display: flex;
  gap: var(--sp-3);
}

.alm-footer__social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--alm-cream);
  transition: background var(--dur-base);
}

.alm-footer__social a:hover {
  background: var(--brand);
  color: var(--alm-on-crimson);
}

.alm-footer__social svg {
  width: 18px;
  height: 18px;
}

/* ─────────────────────────────────────────────────────────────
   UTILITIES
   ───────────────────────────────────────────────────────────── */
.alm-stack {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.alm-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.alm-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.alm-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

.alm-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.alm-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

@media (max-width: 960px) {

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

@media (max-width: 640px) {

  .alm-grid-2,
  .alm-grid-3,
  .alm-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────────────────────────
   SHARED COMPONENTS v2 — for Cart, Search, Account, Collections,
   Blog, Content, Contact, Password, Gift Card, Announcement
   ───────────────────────────────────────────────────────────── */

/* Announcement bar */
.alm-announce {
  background: var(--alm-footer-bg);
  color: var(--alm-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  padding: 10px var(--sp-6);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: var(--text-2xs);
  text-transform: uppercase;
  letter-spacing: var(--track-widest);
  position: relative;
  overflow: hidden;
}

.alm-announce__star {
  color: var(--alm-gold);
  display: inline-flex;
}

.alm-announce__star svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
}

.alm-announce a {
  color: var(--alm-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Underline-style form field (Cantina newsletter style) */
.alm-field-underline {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.alm-field-underline label {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: var(--text-2xs);
  text-transform: uppercase;
  letter-spacing: var(--track-widest);
  color: var(--fg1);
}

.alm-field-underline input,
.alm-field-underline textarea,
.alm-field-underline select {
  border: 0;
  border-bottom: 1.5px solid var(--border-strong);
  background: transparent;
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--fg1);
  outline: none;
  transition: border-color var(--dur-base);
  border-radius: 0;
}

.alm-field-underline input:focus,
.alm-field-underline textarea:focus,
.alm-field-underline select:focus {
  border-color: var(--brand);
}

.alm-field-underline textarea {
  resize: vertical;
  min-height: 96px;
}

.alm-field-underline__hint {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--fg2);
}

.alm-field-underline__error {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--alm-error);
}

/* Pagination — crimson numbered pills */
.alm-pagination {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}

.alm-pagination a,
.alm-pagination span {
  min-width: 40px;
  height: 40px;
  padding: 0 var(--sp-3);
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: var(--text-xs);
  letter-spacing: var(--track-wide);
  color: var(--fg1);
  text-decoration: none;
  background: transparent;
  transition: background var(--dur-base), color var(--dur-base);
}

.alm-pagination a:hover {
  background: var(--alm-cream-highest);
}

.alm-pagination .is-active {
  background: var(--brand);
  color: var(--alm-on-crimson);
}

.alm-pagination .is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.alm-pagination__ellipsis {
  letter-spacing: 2px;
}

/* Breadcrumbs */
.alm-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: var(--text-2xs);
  text-transform: uppercase;
  letter-spacing: var(--track-widest);
  color: var(--fg2);
}

.alm-breadcrumb a {
  color: var(--fg2);
  text-decoration: none;
  transition: color var(--dur-base);
}

.alm-breadcrumb a:hover {
  color: var(--brand);
}

.alm-breadcrumb__sep {
  color: var(--alm-gold);
  opacity: 0.7;
}

.alm-breadcrumb [aria-current="page"] {
  color: var(--fg1);
}

/* Status pills — order states */
.alm-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: var(--track-wide);
  line-height: 1;
}

.alm-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.alm-status--fulfilled {
  background: var(--alm-forest-light);
  color: var(--alm-on-forest-light);
}

.alm-status--shipped {
  background: #cfe3ff;
  color: #1a3a6b;
}

.alm-status--pending {
  background: var(--alm-gold-soft);
  color: var(--alm-on-gold-soft);
}

.alm-status--refunded {
  background: var(--alm-cream-highest);
  color: var(--fg2);
}

.alm-status--cancelled {
  background: var(--alm-error-container);
  color: var(--alm-on-error-container);
}

/* Account sidebar nav */
.alm-sidenav {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  position: sticky;
  top: 100px;
}

.alm-sidenav__header {
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.alm-sidenav__greeting {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--brand);
  transform: rotate(-1deg);
  line-height: 1;
}

.alm-sidenav__sub {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: var(--text-2xs);
  text-transform: uppercase;
  letter-spacing: var(--track-widest);
  color: var(--fg2);
  margin-top: 4px;
}

.alm-sidenav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.alm-sidenav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px var(--sp-4);
  border-radius: var(--radius-pill);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: var(--text-2xs);
  text-transform: uppercase;
  letter-spacing: var(--track-widest);
  color: var(--fg1);
  text-decoration: none;
  transition: background var(--dur-base), color var(--dur-base);
  cursor: pointer;
}

.alm-sidenav__link:hover {
  background: var(--alm-cream-highest);
}

.alm-sidenav__link.is-active {
  background: var(--brand);
  color: var(--alm-on-crimson);
}

.alm-sidenav__link .alm-sidenav__count {
  background: var(--alm-cream-highest);
  color: var(--fg2);
  border-radius: var(--radius-pill);
  padding: 2px 8px;
  font-size: 10px;
}

.alm-sidenav__link.is-active .alm-sidenav__count {
  background: rgba(255, 255, 255, 0.2);
  color: var(--alm-cream);
}

/* Tabs (horizontal) */
.alm-tabs {
  display: flex;
  gap: var(--sp-2);
  border-bottom: 1px solid var(--border);
  padding: 0 0 0 2px;
}

.alm-tabs__tab {
  padding: 14px var(--sp-4);
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: var(--text-2xs);
  text-transform: uppercase;
  letter-spacing: var(--track-widest);
  color: var(--fg2);
  background: transparent;
  border: 0;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--dur-base), border-color var(--dur-base);
}

.alm-tabs__tab:hover {
  color: var(--fg1);
}

.alm-tabs__tab.is-active {
  color: var(--brand);
  border-bottom-color: var(--alm-gold);
}

/* Toast / notification */
.alm-toast {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-5);
  background: var(--alm-ink);
  color: var(--alm-cream);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--track-wide);
}

.alm-toast__icon {
  color: var(--alm-gold);
  display: inline-flex;
}

.alm-toast__icon svg {
  width: 16px;
  height: 16px;
}

.alm-toast--success .alm-toast__icon {
  color: var(--alm-forest-light);
}

.alm-toast--error {
  background: var(--alm-error);
}

/* Empty-state scaffold */
.alm-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-4);
  padding: var(--sp-16) var(--sp-6);
  max-width: 480px;
  margin: 0 auto;
}

.alm-empty__art {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-pill);
  background: var(--alm-cream-mid);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.alm-empty__art svg {
  width: 72px;
  height: 72px;
  opacity: 0.5;
}

.alm-empty__art::after {
  content: '';
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 1.5px dashed var(--border-strong);
  pointer-events: none;
}

.alm-empty__title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  color: var(--brand);
  transform: rotate(-1deg);
  line-height: 1;
}

.alm-empty__body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--fg2);
  max-width: 42ch;
  line-height: var(--lh-relaxed);
}

/* Coupon / gift-card input */
.alm-coupon {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  padding: var(--sp-2);
  background: var(--bg-tint);
  max-width: 100%;
  overflow: hidden;
  min-width: 0;
}

.alm-coupon input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 10px var(--sp-3);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--fg1);
  outline: none;
}

.alm-coupon input::placeholder {
  color: var(--fg2);
  opacity: 0.7;
}

.alm-coupon button {
  flex-shrink: 0;
  border: 0;
  background: var(--fg1);
  color: var(--alm-cream);
  padding: 0 var(--sp-4);
  border-radius: var(--radius-md);
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: var(--text-2xs);
  text-transform: uppercase;
  letter-spacing: var(--track-widest);
  cursor: pointer;
  white-space: nowrap;
  min-width: 0;
  min-height: 0;
  -webkit-appearance: none;
  appearance: none;
}

.alm-coupon button::before,
.alm-coupon button::after {
  content: none;
  display: none;
  box-shadow: none;
}

/* Disclosure (for cart: "gift card? | discount code?") */
.alm-disclosure summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: var(--text-2xs);
  text-transform: uppercase;
  letter-spacing: var(--track-widest);
  color: var(--brand);
  padding: var(--sp-2) 0;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}

.alm-disclosure summary::-webkit-details-marker {
  display: none;
}

.alm-disclosure summary::before {
  content: '+';
  display: inline-block;
  width: 14px;
  font-weight: 800;
}

.alm-disclosure[open] summary::before {
  content: '−';
}

/* Summary block — cart / order totals */
.alm-summary {
  background: var(--bg-tint);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.alm-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--fg2);
}

.alm-summary__row strong,
.alm-summary__row .alm-summary__val {
  color: var(--fg1);
  font-weight: 600;
}

.alm-summary__row--total {
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: var(--text-base);
  text-transform: uppercase;
  letter-spacing: var(--track-wide);
  color: var(--fg1);
}

.alm-summary__row--total .alm-summary__val {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-3xl);
  color: var(--brand);
  text-transform: none;
  letter-spacing: 0;
  transform: rotate(-1deg);
  display: inline-block;
}

.alm-summary__row--save {
  color: var(--alm-forest);
}

/* Blog card */
.alm-blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-slow) var(--ease-out), box-shadow var(--dur-slow) var(--ease-out);
  text-decoration: none;
  color: inherit;
}

.alm-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.alm-blog-card__image {
  aspect-ratio: 16 / 10;
  background: var(--alm-cream-highest);
  position: relative;
}

.alm-blog-card__body {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.alm-blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: var(--text-2xs);
  text-transform: uppercase;
  letter-spacing: var(--track-widest);
  color: var(--fg2);
}

.alm-blog-card__meta .dot {
  color: var(--alm-gold);
}

.alm-blog-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-3xl);
  color: var(--fg1);
  transform: rotate(-1deg);
  line-height: var(--lh-tight);
  margin: 0;
}

.alm-blog-card__excerpt {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--fg2);
  line-height: var(--lh-relaxed);
}

/* Placeholder image tile — obvious "photo goes here" treatment */
.alm-placeholder {
  position: relative;
  background:
    repeating-linear-gradient(135deg,
      var(--alm-cream-mid) 0,
      var(--alm-cream-mid) 12px,
      var(--alm-cream-high) 12px,
      var(--alm-cream-high) 24px);
  color: var(--fg2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: var(--text-2xs);
  text-transform: uppercase;
  letter-spacing: var(--track-widest);
  text-align: center;
  padding: var(--sp-4);
}

.alm-placeholder::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1.5px dashed rgba(91, 64, 63, 0.3);
  border-radius: inherit;
  pointer-events: none;
}

.alm-placeholder__tag {
  color: var(--fg1);
  background: var(--bg-card);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

.alm-placeholder__sub {
  color: var(--fg2);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-xs);
  letter-spacing: 0;
  text-transform: none;
  opacity: 0.75;
}

/* ─────────────────────────────────────────────────────────
   Dawn announcement bar restyle
   Overrides Dawn's .utility-bar / .announcement-bar to match
   our alm-announce design (dark ink, gold star delimiters).
   ───────────────────────────────────────────────────────── */
.utility-bar {
  background: var(--alm-footer-bg) !important;
  color: var(--alm-cream) !important;
  border-bottom: 0 !important;
}

.utility-bar .announcement-bar__message,
.utility-bar .announcement-bar {
  font-family: var(--font-headline) !important;
  font-weight: 700 !important;
  font-size: var(--text-2xs) !important;
  text-transform: uppercase !important;
  letter-spacing: var(--track-widest) !important;
  color: var(--alm-cream) !important;
  padding: 10px var(--sp-6) !important;
  position: relative;
}

.utility-bar .announcement-bar__message::before,
.utility-bar .announcement-bar__message::after {
  content: "✦";
  color: var(--alm-gold);
  margin: 0 12px;
  font-size: 10px;
}

.utility-bar a {
  color: var(--alm-gold) !important;
  text-decoration: underline !important;
  text-underline-offset: 2px;
}

.utility-bar .animate-arrow svg {
  display: none;
}

/* =============================================================
   V2 PAGE-SPECIFIC HELPER CLASSES
   Extracted from ui_kits/shopify/v2-pages.html inline <style>
   Used across alm-cart, alm-search, alm-account, alm-list-collections,
   alm-blog, alm-article, alm-contact, alm-account-*, alm-password-gate.
   ============================================================= */

/* Page banner — eyebrow + display title + rule */
.pg-banner {
  padding: 48px 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  position: relative;
}

.pg-banner__eyebrow {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--brand);
}

.pg-banner__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  color: var(--fg1);
  transform: rotate(-1deg);
  line-height: 1;
  display: inline-block;
  margin: 0;
}

.pg-banner__sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--fg2);
  max-width: 56ch;
  line-height: 1.6;
  margin: 0;
}

.pg-banner__star {
  color: var(--alm-gold);
  display: inline-flex;
  margin-top: 4px;
}

.pg-banner__star svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.pg-banner__rule {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--alm-gold);
}

.pg-banner__rule::before,
.pg-banner__rule::after {
  content: '';
  width: 36px;
  height: 1.5px;
  background: currentColor;
}

/* Cart grid */
.cart-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 40px;
  align-items: start;
}

.cart-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ship-bar {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}

.ship-bar__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--fg2);
}

.ship-bar__top strong {
  color: var(--brand);
  font-weight: 800;
}

.cart-row {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) auto;
  gap: 20px;
  padding: 20px;
  background: var(--bg-card);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  align-items: start;
}

.cart-row__thumb {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-row__body {
  min-width: 0;
}

.cart-row__title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--fg1);
  transform: rotate(-1deg);
  display: inline-block;
  line-height: 1;
  text-decoration: none;
}

.cart-row__title:hover {
  color: var(--brand);
}

.cart-row__variant {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg2);
  margin-top: 6px;
}

.cart-row__controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cart-row__remove {
  background: transparent;
  border: 0;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg2);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(91, 64, 63, 0.3);
  padding: 0;
}

.cart-row__remove:hover {
  color: var(--alm-error);
}

.cart-row__price {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 18px;
  color: var(--brand);
  letter-spacing: -0.02em;
  white-space: nowrap;
  padding-top: 2px;
}

.cart-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}

@media (max-width: 960px) {
  .cart-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cart-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  .cart-row {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
  }

  .cart-row__thumb {
    width: 72px;
    height: 72px;
  }

  .cart-row__price {
    grid-column: 2;
    justify-self: start;
    margin-top: 4px;
    padding-top: 0;
  }
}

/* Search meta / chip bar / groups */
.search-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.search-meta__count {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg2);
}

.search-meta__count strong {
  color: var(--fg1);
  font-weight: 800;
}

.chip-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip-bar__label {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg1);
  align-self: center;
  margin-right: 4px;
}

.group-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0 16px;
}

.group-title h3 {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--fg1);
  margin: 0;
}

/* Account cards / rows / addresses */
.acct-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.acct-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--fg1);
  transform: rotate(-0.75deg);
  margin: 0 0 16px;
  display: inline-block;
  line-height: 1;
}

.acct-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.acct-row:last-child {
  border-bottom: 0;
}

.acct-row__order {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 12px;
  color: var(--fg1);
}

.acct-row__date {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg2);
}

.acct-row__total {
  font-family: var(--font-headline);
  font-weight: 800;
  color: var(--brand);
  font-size: 15px;
  letter-spacing: -0.02em;
}

.acct-row__link {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg1);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1.5px solid var(--border-strong);
}

.acct-row__link:hover {
  background: var(--fg1);
  color: var(--alm-cream);
  border-color: var(--fg1);
}

.addr-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.addr-card.is-default {
  box-shadow: 0 0 0 2px var(--brand), var(--shadow-sm);
}

.addr-card__flag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--brand);
  color: var(--alm-cream);
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 4px 10px;
  border-radius: 999px;
}

.addr-card__name {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--fg1);
}

.addr-card__body {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg2);
  line-height: 1.6;
}

.addr-card__actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

/* Auth split screen */
.auth {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  padding: 24px 0 48px;
}

@media (max-width: 900px) {
  .auth {
    grid-template-columns: 1fr;
  }
}

.auth__art {
  border-radius: 24px;
  min-height: 480px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  color: var(--alm-cream);
}

.auth__art .overlay {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(28, 16, 8, 0.85));
  margin: -40px;
  padding: 40px;
  border-radius: 24px;
}

.auth__card {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth__card h2 {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--brand);
  transform: rotate(-1deg);
  margin: 0 0 4px;
  display: inline-block;
  line-height: 1;
}

.auth__card .sub {
  font-family: var(--font-body);
  color: var(--fg2);
  margin-bottom: 12px;
}

.auth__foot {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg2);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.auth__foot a {
  color: var(--brand);
  text-decoration: none;
}

/* Collections directory */
.coll-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 900px) {
  .coll-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .coll-grid {
    grid-template-columns: 1fr;
  }
}

.coll-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.coll-card__img {
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.coll-card:hover .coll-card__img {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.coll-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(28, 16, 8, 0.55));
  z-index: 1;
}

.coll-card__label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  color: var(--alm-cream);
}

.coll-card__title {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  transform: rotate(-1deg);
  display: inline-block;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.coll-card__count {
  background: rgba(28, 16, 8, 0.6);
  backdrop-filter: blur(6px);
  color: var(--alm-cream);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

.coll-card__body {
  padding: 14px 8px;
  font-family: var(--font-body);
  color: var(--fg2);
  font-size: 14px;
  line-height: 1.6;
}

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 580px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-grid__feature {
  grid-row: span 2;
}

.blog-grid__feature .alm-blog-card__image {
  aspect-ratio: 4/5;
}

.blog-grid__feature .alm-blog-card__title {
  font-size: 44px;
}

/* Article */
.article-hero {
  aspect-ratio: 21/9;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 32px;
}

.article {
  max-width: 720px;
  margin: 0 auto;
}

.article__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--fg2);
  margin-bottom: 16px;
}

.article__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 64px);
  color: var(--fg1);
  transform: rotate(-1deg);
  text-align: center;
  line-height: 1;
  margin: 0 0 16px;
}

.article__sub {
  text-align: center;
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--fg2);
  margin: 0 0 32px;
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 24px 0 48px;
}

@media (max-width: 900px) {
  .contact {
    grid-template-columns: 1fr;
  }
}

.contact__art {
  border-radius: 24px;
  overflow: hidden;
  min-height: 480px;
  position: relative;
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.contact__list-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact__list-item:last-child {
  border-bottom: 0;
}

.contact__list-item .ic {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--bg-tint);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Password gate */
.gate {
  min-height: 640px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  background: var(--alm-footer-bg);
  color: var(--alm-cream);
  padding: 64px 48px;
}

.gate__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 560px;
  margin: 0 auto;
  justify-content: center;
  min-height: 500px;
}

.gate__inner h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  color: var(--alm-gold);
  transform: rotate(-1deg);
  margin: 0;
  line-height: 1;
}

.gate__inner .eye {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--alm-cream);
  opacity: 0.7;
}

.gate__inner p {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255, 248, 240, 0.8);
  max-width: 42ch;
  line-height: 1.6;
  margin: 0;
}

.gate__forms {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 12px;
  width: 100%;
  max-width: 420px;
}

.gate__form h4 {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--alm-gold);
  margin: 0 0 10px;
}

/* RTE demo wrapper */
.rte-demo {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: 24px;
  padding: 56px;
  box-shadow: var(--shadow-sm);
}

/* Generic grid helpers (used by alm-grid-2/3 in components.css too) */
.alm-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

.alm-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

@media (max-width: 900px) {
  .alm-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {

  .alm-grid-2,
  .alm-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Section header helper */
.alm-section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.alm-section-header__title {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--fg1);
  transform: rotate(-1deg);
  line-height: 1;
  margin: 0;
}

/* === SITE HEADER ZONE === */
.hdr-demo {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hdr-demo__caption {
  padding: 0 4px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

.hdr-demo__caption .eye {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--brand);
}

.hdr-demo__caption h3 {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--fg1);
  transform: rotate(-1deg);
  display: inline-block;
  line-height: 1.15;
  margin: 4px 0 0;
  padding-bottom: 6px;
}

.hdr-demo__caption p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg2);
  margin: 0;
  max-width: 50ch;
}

.hdr-demo__shell {
  background: var(--bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 8px;
}

.hdr-demo__shell--dark {
  background: var(--alm-footer-bg);
}

.hdr-demo__after {
  min-height: 140px;
  padding: 40px 32px;
  background: linear-gradient(180deg, transparent 0%, var(--alm-cream-mid) 80%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hdr-demo__after .sub {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--fg2);
}

/* Variant A — Classic three-up */
.hdrA {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 32px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.hdrA__links {
  display: flex;
  gap: 28px;
}

.hdrA__links a {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--fg1);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}

.hdrA__links a:hover {
  color: var(--brand);
}

.hdrA__links a.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--alm-gold);
  border-radius: 2px;
}

.hdrA__logo {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--brand);
  transform: rotate(-1deg);
  display: inline-block;
  line-height: 1;
  justify-self: center;
}

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

.hdrA__actions a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fg1);
  text-decoration: none;
  transition: background 0.2s;
  position: relative;
}

.hdrA__actions a:hover {
  background: var(--alm-cream-highest);
}

.hdrA__actions svg {
  width: 20px;
  height: 20px;
}

.hdrA__bag-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--brand);
  color: var(--alm-cream);
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 9px;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 0 0 2px var(--bg-card);
}

/* Variant B — Left-aligned mark + central search + right actions */
.hdrB {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 16px 32px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.hdrB__left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hdrB__logo {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--brand);
  transform: rotate(-1deg);
  display: inline-block;
  line-height: 1;
}

.hdrB__links {
  display: flex;
  gap: 24px;
}

.hdrB__links a {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.hdrB__links a:hover {
  color: var(--brand);
}

.hdrB__links a.is-active {
  border-bottom-color: var(--alm-gold);
}

.hdrB__links a .caret {
  font-size: 8px;
  opacity: 0.5;
}

.hdrB__search {
  position: relative;
  max-width: 380px;
  width: 100%;
  justify-self: center;
}

.hdrB__search input {
  width: 100%;
  border: 0;
  background: var(--bg-tint);
  border-radius: 999px;
  padding: 10px 16px 10px 40px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg1);
  outline: none;
  transition: box-shadow 0.2s, background 0.2s;
}

.hdrB__search input:focus {
  background: var(--bg-card);
  box-shadow: 0 0 0 2px var(--alm-gold);
}

.hdrB__search input::placeholder {
  color: var(--fg2);
  opacity: 0.6;
}

.hdrB__search .ic {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--fg2);
  pointer-events: none;
}

.hdrB__search .ic svg {
  width: 16px;
  height: 16px;
}

.hdrB__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hdrB__bag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 12px;
  background: var(--fg1);
  color: var(--alm-cream);
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: background 0.2s;
}

.hdrB__bag:hover {
  background: var(--brand);
}

.hdrB__bag svg {
  width: 16px;
  height: 16px;
}

.hdrB__account {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fg1);
  background: var(--bg-tint);
  text-decoration: none;
  transition: background 0.2s;
}

.hdrB__account:hover {
  background: var(--alm-cream-highest);
}

.hdrB__account svg {
  width: 18px;
  height: 18px;
}

/* Variant C — Dark, serifed, editorial */
.hdrC {
  background: var(--alm-footer-bg);
  color: var(--alm-cream);
  position: relative;
}

.hdrC__marquee {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 8px 32px;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--alm-gold);
  border-bottom: 1px solid rgba(212, 165, 67, 0.18);
}

.hdrC__marquee svg {
  fill: currentColor;
  width: 9px;
  height: 9px;
}

.hdrC__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 32px;
  gap: 32px;
}

.hdrC__left,
.hdrC__right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hdrC__right {
  justify-content: flex-end;
}

.hdrC__links a {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--alm-cream);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}

.hdrC__links a:hover {
  opacity: 1;
  color: var(--alm-gold);
}

.hdrC__links a.is-active {
  color: var(--alm-gold);
  opacity: 1;
}

.hdrC__logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  justify-self: center;
}

.hdrC__logo .name {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--alm-gold);
  transform: rotate(-1deg);
  display: inline-block;
  line-height: 1;
}

.hdrC__logo .est {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(255, 248, 240, 0.5);
}

.hdrC__icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--alm-cream);
  opacity: 0.85;
  transition: opacity 0.2s, background 0.2s;
  cursor: pointer;
}

.hdrC__icon:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.08);
}

.hdrC__icon svg {
  width: 18px;
  height: 18px;
}

.hdrC__bag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 12px;
  background: var(--alm-gold);
  color: var(--alm-ink);
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: transform 0.2s;
}

.hdrC__bag:hover {
  transform: translateY(-1px);
}

.hdrC__bag svg {
  width: 16px;
  height: 16px;
}

/* Mega-menu (attached to Variant A or B) */
.mega {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(30, 27, 22, 0.12);
  padding: 36px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 48px;
  z-index: 5;
}

.mega__col h4 {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--fg2);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mega__col h4 .alm-announce__star {
  color: var(--alm-gold);
}

.mega__col h4 .alm-announce__star svg {
  width: 9px;
  height: 9px;
  fill: currentColor;
}

.mega__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega__col li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 4px;
  text-decoration: none;
  color: var(--fg1);
  font-family: var(--font-body);
  font-size: 15px;
  border-radius: 8px;
  transition: color 0.2s, padding 0.2s;
}

.mega__col li a:hover {
  color: var(--brand);
  padding-left: 10px;
}

.mega__col li a .count {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 9px;
  color: var(--fg2);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mega__col li a .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mega__feature {
  background: var(--bg-tint);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mega__feature-img {
  aspect-ratio: 4/3;
  position: relative;
}

.mega__feature-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.mega__feature-body h5 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--brand);
  transform: rotate(-1deg);
  display: inline-block;
  line-height: 1;
  margin: 0;
}

.mega__feature-body p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg2);
  margin: 0;
  line-height: 1.5;
}

/* Mobile header */
.device--wide {
  width: 390px;
}

.mob-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}

.mob-hdr__logo {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--brand);
  transform: rotate(-1deg);
  display: inline-block;
  line-height: 1;
}

.mob-hdr__icons {
  display: flex;
  gap: 4px;
  color: var(--fg1);
}

.mob-hdr__icons button,
.mob-hdr__icons a {
  background: transparent;
  border: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fg1);
  position: relative;
}

.mob-hdr__icons .badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--brand);
  color: var(--alm-cream);
  font-size: 8px;
  font-family: var(--font-headline);
  font-weight: 800;
  min-width: 14px;
  height: 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* Mobile drawer (flavor menu) */
.mob-drawer {
  position: relative;
}

.mob-drawer__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mob-drawer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 8px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--fg1);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.mob-drawer__row .count {
  color: var(--fg2);
  font-size: 10px;
  letter-spacing: 0.2em;
}

.mob-drawer__row .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  display: inline-block;
}

.mob-drawer__foot {
  padding: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Sticky shrunk variation */
.hdrA--shrunk {
  padding: 10px 32px;
  box-shadow: 0 4px 14px rgba(30, 27, 22, 0.06);
}

.hdrA--shrunk .hdrA__logo {
  font-size: 24px;
}

.hdr-anatomy {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 24px 32px;
  background: var(--bg-card);
  border-radius: 16px;
  margin-top: 24px;
}

.hdr-anatomy__item {
  padding: 14px 16px;
  background: var(--bg-tint);
  border-radius: 12px;
}

.hdr-anatomy__item .num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--brand);
  transform: rotate(-1deg);
  display: inline-block;
  line-height: 1;
}

.hdr-anatomy__item .lbl {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg1);
  margin-top: 6px;
}

.hdr-anatomy__item .body {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg2);
  margin-top: 4px;
  line-height: 1.5;
}

/* ─────────────────────────────────────────────────────────
   Dawn's base.css declares .grid { display: flex } — clobbers
   Tailwind's `grid grid-cols-*` utility combo. Restore
   display:grid for any element that opts into Tailwind's
   column grid.
   ───────────────────────────────────────────────────────── */
[class~="grid"][class*="grid-cols-"],
[class~="grid"][class*=":grid-cols"] {
  display: grid !important;
}

.ft-demo {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ft-demo__caption {
  padding: 0 4px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.ft-demo__caption .eye {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--brand);
}

.ft-demo__caption h3 {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--fg1);
  transform: rotate(-1deg);
  display: inline-block;
  line-height: 1.15;
  margin: 4px 0 0;
  padding-bottom: 6px;
}

.ft-demo__caption p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg2);
  margin: 0;
  max-width: 50ch;
  line-height: 1.55;
}

.ft-demo__shell {
  background: var(--bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* Variant A — Signature (dark, full) */
.ftA {
  background: var(--alm-footer-bg);
  color: var(--alm-cream);
  padding: 80px 32px 32px;
  position: relative;
  overflow: hidden;
}

.ftA__inner {
  position: relative;
  z-index: 1;
  max-width: var(--w-page);
  margin: 0 auto;
  width: 100%;
}

.ftA__wm {
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 520px;
  height: 520px;
  background:
    radial-gradient(ellipse 52% 44% at 50% 50%, var(--alm-gold) 0%, var(--alm-gold) 60%, transparent 62%);
  opacity: 0.06;
  pointer-events: none;
  transform: rotate(-18deg);
}

.ftA__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 2fr) repeat(3, minmax(120px, 1fr)) minmax(280px, 1.5fr);
  gap: 48px 40px;
  align-items: start;
}

.ftA__brand .wordmark {
  font-family: var(--font-display);
  color: var(--alm-gold);
  font-size: 56px;
  transform: rotate(-1deg);
  display: inline-block;
  line-height: 1;
  padding-bottom: 8px;
}

.ftA__brand .tag {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 248, 240, 0.55);
  margin: 10px 0 24px;
}

.ftA__brand p.desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 248, 240, 0.7);
  line-height: 1.7;
  max-width: 32ch;
  margin: 0 0 24px;
}

.ftA__social {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.ftA__social a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--alm-cream);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}

.ftA__social a:hover {
  background: var(--alm-gold);
  color: var(--alm-ink);
  border-color: var(--alm-gold);
  transform: translateY(-1px);
}

.ftA__social svg {
  width: 16px;
  height: 16px;
}

.ftA__stamp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px dashed rgba(212, 165, 67, 0.4);
  border-radius: 8px;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--alm-gold);
}

.ftA__stamp svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.ftA__col h4 {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--alm-gold);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(212, 165, 67, 0.22);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ftA__col h4 .alm-announce__star svg {
  width: 9px;
  height: 9px;
  fill: currentColor;
}

.ftA__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ftA__col li a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 248, 240, 0.72);
  text-decoration: none;
  transition: color 0.2s, padding 0.2s;
  display: inline-block;
}

.ftA__col li a:hover {
  color: var(--alm-cream);
  padding-left: 6px;
}

.ftA__news {
  min-width: 0;
  container-type: inline-size;
}

.ftA__news h4 {
  font-family: var(--font-display);
  color: var(--alm-cream);
  font-size: 32px;
  transform: rotate(-1deg);
  display: inline-block;
  line-height: 1.15;
  padding-bottom: 6px;
  margin: 0 0 12px;
  border: 0;
  letter-spacing: 0;
  text-transform: none;
}

.ftA__news p {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 248, 240, 0.7);
  line-height: 1.6;
  margin: 0 0 18px;
}

.ftA__form {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 4px 4px 4px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s;
  max-width: 100%;
  overflow: hidden;
  min-width: 0;
}

.ftA__form:focus-within {
  border-color: var(--alm-gold);
}

.ftA__form input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--alm-cream);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 0;
  outline: none;
}

.ftA__form input::placeholder {
  color: rgba(255, 248, 240, 0.45);
}

.ftA__form button {
  flex-shrink: 0;
  background: var(--alm-gold);
  color: var(--alm-ink);
  border: 0;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  line-height: 1.2;
  min-width: 0;
  min-height: 0;
  width: auto;
  position: relative;
  -webkit-appearance: none;
  appearance: none;
}

.ftA__form button::before,
.ftA__form button::after {
  content: none;
  display: none;
  box-shadow: none;
}

.ftA__form button:hover {
  background: var(--alm-cream);
}

.ftA__consent {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255, 248, 240, 0.4);
  margin: 10px 4px 0;
  line-height: 1.5;
}

.ftA__legal {
  position: relative;
  z-index: 1;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 248, 240, 0.5);
}

.ftA__legal a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}

.ftA__legal a:hover {
  color: var(--alm-gold);
  opacity: 1;
}

.ftA__legal-links {
  display: flex;
  gap: 28px;
}

.ftA__legal-pay {
  display: flex;
  gap: 10px;
  align-items: center;
}

.ftA__pay-chip {
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: rgba(255, 248, 240, 0.65);
}

/* Variant B — Minimal cream */
.ftB {
  background: var(--alm-cream-mid);
  color: var(--fg1);
  padding: 72px 56px 24px;
  border-top: 1px solid var(--border);
  position: relative;
}

.ftB__top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  align-items: end;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.ftB__top h2 {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--brand);
  transform: rotate(-1deg);
  display: inline-block;
  line-height: 1.05;
  padding-bottom: 8px;
  margin: 0;
}

.ftB__top .sub {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg2);
  margin-top: 12px;
}

.ftB__form {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 4px 4px 20px;
  max-width: 100%;
  overflow: hidden;
  min-width: 0;
}

.ftB__form input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  background: transparent;
  border: 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg1);
  padding: 12px 0;
  outline: none;
}

.ftB__form input::placeholder {
  color: var(--fg2);
  opacity: 0.5;
}

.ftB__form button {
  flex-shrink: 0;
  background: var(--brand);
  color: var(--alm-cream);
  border: 0;
  padding: 10px 14px;
  border-radius: 999px;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.2;
  min-width: 0;
  min-height: 0;
  width: auto;
  position: relative;
  -webkit-appearance: none;
  appearance: none;
}

.ftB__form button::before,
.ftB__form button::after {
  content: none;
  display: none;
  box-shadow: none;
}

.ftB__mid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 56px;
  padding: 48px 0;
}

.ftB__mid .wordmark {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--brand);
  transform: rotate(-1deg);
  display: inline-block;
  line-height: 1;
  padding-bottom: 8px;
}

.ftB__mid .meta {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg2);
  line-height: 1.7;
  margin: 16px 0 0;
  max-width: 30ch;
}

.ftB__mid h4 {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg2);
  margin: 0 0 16px;
}

.ftB__mid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ftB__mid a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg1);
  text-decoration: none;
  transition: color 0.2s;
}

.ftB__mid a:hover {
  color: var(--brand);
}

.ftB__legal {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg2);
}

.ftB__legal a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.ftB__legal a:hover {
  color: var(--brand);
}

/* Variant C — Mini (for interior pages / checkout-style) */
.ftC {
  background: var(--alm-cream-high);
  color: var(--fg1);
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
}

.ftC__left {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg2);
}

.ftC__left .wordmark {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--brand);
  transform: rotate(-1deg);
  display: inline-block;
  line-height: 1;
  padding-bottom: 4px;
  letter-spacing: 0;
  text-transform: none;
}

.ftC__right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ftC__right a {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg1);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.ftC__right a:hover {
  opacity: 1;
  color: var(--brand);
}

/* Trust strip (pairs above any footer) */
.ftTrust {
  background: var(--alm-cream-highest);
  padding: 28px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-bottom: 1px solid var(--border);
}

.ftTrust__item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ftTrust__ic {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--alm-crimson);
  color: var(--alm-cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ftTrust__ic svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.ftTrust__txt .t {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg1);
}

.ftTrust__txt .d {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--fg2);
  margin-top: 2px;
}

@media (max-width: 1100px) {
  .ftA__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px 32px;
  }

  .ftA__brand,
  .ftA__news {
    grid-column: 1 / -1;
  }

  .ftA__news {
    max-width: 480px;
  }

  .ftB__top,
  .ftB__mid {
    gap: 40px;
  }

  .ftB__mid {
    grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .ftA {
    padding: 56px 24px calc(88px + env(safe-area-inset-bottom, 0px));
  }

  .ftA__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ftA__brand .wordmark {
    font-size: 44px;
  }

  .ftA__news {
    max-width: none;
  }

  .ftA__legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 40px;
  }

  .ftA__legal-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .ftB {
    padding: 48px 24px calc(88px + env(safe-area-inset-bottom, 0px));
  }

  .ftB__top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }

  .ftB__top h2 {
    font-size: 48px;
  }

  .ftB__mid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 0;
  }

  .ftB__legal {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .ftC {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 24px 24px calc(88px + env(safe-area-inset-bottom, 0px));
  }

  .ftTrust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 24px;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .ftTrust {
    grid-template-columns: 1fr;
  }
}

/* Mobile footer (column stack) */
.ftMob {
  background: var(--alm-footer-bg);
  color: var(--alm-cream);
  padding: 48px 24px 24px;
  max-width: 420px;
  margin: 0 auto;
}

.ftMob .wordmark {
  font-family: var(--font-display);
  color: var(--alm-gold);
  font-size: 44px;
  transform: rotate(-1deg);
  display: inline-block;
  line-height: 1;
  padding-bottom: 8px;
}

.ftMob p {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 248, 240, 0.7);
  line-height: 1.6;
  margin: 10px 0 18px;
}

.ftMob__acc {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ftMob__row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ftMob__row summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--alm-gold);
}

.ftMob__row summary::-webkit-details-marker {
  display: none;
}

.ftMob__row summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--alm-gold);
}

.ftMob__row[open] summary::after {
  content: '–';
}

.ftMob__row .panel {
  padding: 4px 4px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ftMob__row .panel a {
  color: rgba(255, 248, 240, 0.75);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
}

.ftMob__news {
  margin-top: 24px;
}

.ftMob__news h4 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--alm-cream);
  transform: rotate(-1deg);
  display: inline-block;
  line-height: 1.15;
  padding-bottom: 4px;
  margin: 0 0 10px;
}

.ftMob__form {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 3px 3px 3px 16px;
  max-width: 100%;
  overflow: hidden;
  min-width: 0;
}

.ftMob__form input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--alm-cream);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 10px 0;
  outline: none;
}

.ftMob__form input::placeholder {
  color: rgba(255, 248, 240, 0.4);
}

.ftMob__form button {
  flex-shrink: 0;
  background: var(--alm-gold);
  color: var(--alm-ink);
  border: 0;
  padding: 10px 14px;
  border-radius: 999px;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.2;
  min-width: 0;
  min-height: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.ftMob__form button::before,
.ftMob__form button::after {
  content: none;
  display: none;
  box-shadow: none;
}

@container (max-width: 360px) {

  .ftA__form,
  .ftB__form,
  .ftMob__form {
    flex-direction: column;
    align-items: stretch;
    border-radius: 20px;
    padding: 10px;
    gap: 8px;
  }

  .ftA__form input,
  .ftB__form input,
  .ftMob__form input {
    padding: 8px 4px;
    text-align: center;
  }

  .ftA__form button,
  .ftB__form button,
  .ftMob__form button {
    width: 100%;
  }
}

.ftMob__legal {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 248, 240, 0.45);
  text-align: center;
  line-height: 2;
}

.ft-anatomy {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 24px 28px;
  background: var(--bg-card);
  border-radius: 16px;
  margin-top: 16px;
}

.ft-anatomy__item {
  padding: 14px 16px;
  background: var(--bg-tint);
  border-radius: 12px;
}

.ft-anatomy__item .num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--brand);
  transform: rotate(-1deg);
  display: inline-block;
  line-height: 1.15;
  padding-bottom: 4px;
}

.ft-anatomy__item .lbl {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg1);
  margin-top: 6px;
}

.ft-anatomy__item .body {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--fg2);
  margin-top: 4px;
  line-height: 1.5;
}

/* === FOOTER ZONE END === */

/* Empty states */
.empty-frame {
  padding: 24px 32px 64px;
}

/* ============================================================
     LEGAL & STANDARD PAGES  (policy / hub / FAQ / 404)
     Design pack v3 — Legal & Standard Pages.html
     ============================================================ */

/* page banner watermark (decorative) */
.pg-banner__wm {
  position: absolute;
  right: -10px;
  top: -30px;
  width: 220px;
  color: var(--brand);
  opacity: 0.05;
  transform: rotate(-12deg);
  pointer-events: none;
}

.pg-banner__wm img,
.pg-banner__wm svg {
  width: 100%;
  height: auto;
}

/* ── legal document layout ── */
.legal {
  max-width: 1080px;
  margin: 0 auto;
}

.legal__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 20px;
  padding: 14px 22px;
  margin: 0 auto 40px;
  background: var(--bg-tint);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg2);
  width: fit-content;
}

.legal__meta strong {
  color: var(--fg1);
  font-weight: 800;
}

.legal__meta .dot {
  color: var(--alm-gold);
}

.legal__grid {
  display: grid;
  grid-template-columns: 232px 1fr;
  gap: 56px;
  align-items: start;
}

.legal--no-toc .legal__grid {
  grid-template-columns: 1fr;
}

.legal--no-toc .legal__toc {
  display: none;
}

@media (max-width: 880px) {
  .legal__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.legal__toc {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legal__toc-label {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--fg2);
  padding: 0 14px 10px;
}

.legal__toc a {
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding: 9px 14px;
  border-radius: 999px;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg2);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.legal__toc a:hover {
  background: var(--alm-cream-highest);
  color: var(--fg1);
}

.legal__toc a .n {
  color: var(--alm-gold);
  font-size: 9px;
}

@media (max-width: 880px) {
  .legal__toc {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
  }

  .legal__toc-label {
    width: 100%;
    padding: 0 0 6px;
  }

  .legal__toc a {
    background: var(--bg-tint);
  }
}

.legal__body h2 {
  scroll-margin-top: 96px;
}

.legal__body section+section {
  margin-top: var(--sp-10);
}

.legal__body .sec-num {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--brand);
  display: block;
  margin-bottom: 6px;
}

.legal__cta {
  margin-top: 56px;
  padding: 36px;
  border-radius: 24px;
  background: var(--alm-footer-bg);
  color: var(--alm-cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.legal__cta__wm {
  position: absolute;
  right: -20px;
  bottom: -60px;
  width: 220px;
  opacity: 0.06;
  pointer-events: none;
}

.legal__cta__wm img {
  width: 100%;
  height: auto;
}

.legal__cta h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  color: var(--alm-gold);
  transform: rotate(-1deg);
  margin: 0 0 6px;
  text-transform: none;
  letter-spacing: 0;
}

.legal__cta p {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 248, 240, 0.75);
  margin: 0;
  max-width: 46ch;
}

.legal__cta .info {
  position: relative;
}

/* prose tuning for legal density */
.legal__body.alm-prose {
  font-size: 15.5px;
  line-height: 1.75;
}

.legal__body.alm-prose h2 {
  font-size: 28px;
  margin-top: 0;
}

.legal__body.alm-prose p,
.legal__body.alm-prose ul,
.legal__body.alm-prose ol {
  color: var(--fg2);
}

.legal__body.alm-prose table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 14px;
}

.legal__body.alm-prose th {
  text-align: left;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg1);
  padding: 12px 16px;
  border-bottom: 2px solid var(--border-strong);
}

.legal__body.alm-prose td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--fg2);
  vertical-align: top;
}

.legal__body.alm-prose tr:last-child td {
  border-bottom: 0;
}

.legal-table-wrap {
  background: var(--bg-card);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  padding: 6px 10px;
}

/* ── policy hub ── */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}

@media (max-width: 880px) {
  .hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .hub-grid {
    grid-template-columns: 1fr;
  }
}

.hub-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--bg-card);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  border: 1px solid transparent;
}

.hub-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}

.hub-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--alm-cream-mid);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hub-card__icon svg {
  width: 24px;
  height: 24px;
}

.hub-card[data-tone="forest"] .hub-card__icon {
  background: var(--alm-forest-light);
  color: var(--alm-forest);
}

.hub-card[data-tone="gold"] .hub-card__icon {
  background: var(--alm-gold-soft);
  color: var(--alm-on-gold-soft);
}

.hub-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  color: var(--fg1);
  transform: rotate(-1deg);
  line-height: 1.05;
}

.hub-card__desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--fg2);
  line-height: 1.6;
  flex: 1;
}

.hub-card__link {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hub-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s var(--ease-out);
}

.hub-card:hover .hub-card__link svg {
  transform: translateX(4px);
}

.hub-note {
  max-width: 1080px;
  margin: 32px auto 0;
  padding: 22px 26px;
  border-radius: 16px;
  background: var(--bg-tint);
  border: 1px dashed var(--border-strong);
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--fg2);
  line-height: 1.65;
}

.hub-note strong {
  color: var(--fg1);
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 6px;
}

/* ── FAQ ── */
.faq {
  max-width: 880px;
  margin: 0 auto;
}

.faq__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
}

.faq__cats a {
  text-decoration: none;
}

.faq__group {
  margin-bottom: 44px;
  scroll-margin-top: 96px;
}

.faq__group-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.faq__group-head h3 {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fg1);
  margin: 0;
}

.faq__group-head .line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.faq__group-head .ic {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--alm-cream-mid);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq__group-head .ic svg {
  width: 15px;
  height: 15px;
}

.faq .alm-accordion__body {
  max-width: 64ch;
}

/* ── 404 ── */
.nf {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  padding: 64px 24px 88px;
  position: relative;
}

.nf__code {
  font-family: var(--font-display);
  font-size: clamp(96px, 18vw, 200px);
  color: var(--brand);
  transform: rotate(-2deg);
  line-height: 0.9;
  position: relative;
}

.nf__code .wm {
  position: absolute;
  inset: -30% -10%;
  opacity: 0.05;
  z-index: -1;
}

.nf__code .wm img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nf__title {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--fg1);
}

.nf__body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--fg2);
  max-width: 46ch;
  line-height: 1.65;
}

.nf__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}

.nf__sugg {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  width: 100%;
  max-width: 520px;
}

.nf__sugg a {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg2);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--bg-tint);
  transition: background 0.2s, color 0.2s;
}

.nf__sugg a:hover {
  background: var(--brand);
  color: var(--alm-on-crimson);
}

</style>