
  /* ─── LWW Homepage Tokens (Dark Heritage Override) ─────────────── */
  :root {
    --bg:          #0B0C10;
    --surface:     #111216;
    --fg:          #f5f0e8;
    --muted:       #a09c94;
    --border:      rgba(212, 175, 55, 0.18);
    --accent:      #D4AF37;
    --red:         #C0392B;
    --accent-soft: rgba(212, 175, 55, 0.08);
    --fg-soft:     rgba(245, 240, 232, 0.05);

    --font-display: 'Outfit', sans-serif;
    --font-body:    'Inter', sans-serif;
    --font-mono:    ui-monospace, 'JetBrains Mono', monospace;

    --fs-h1:  clamp(44px, 6vw, 76px);
    --fs-h2:  clamp(28px, 4vw, 48px);
    --fs-h3:  22px;
    --fs-lead: 19px;
    --fs-body: 16px;
    --fs-meta: 13px;

    --gap-xs:  8px;
    --gap-sm:  12px;
    --gap-md:  20px;
    --gap-lg:  32px;
    --gap-xl:  56px;
    --gap-2xl: 96px;
    --container: 1120px;
    --gutter: 32px;
    --radius:    8px;
    --radius-lg: 14px;
  }

  /* ─── reset ─────────────────────────────────────────────────────── */
  *, *::before, *::after { box-sizing: border-box; }
  body {
    margin: 0;
    background: var(--bg);
    color: var(--fg);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  img, svg { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; }

  /* ─── layout primitives ─────────────────────────────────────────── */
  .container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
  }
  .section {
    padding-block: clamp(64px, 10vw, var(--gap-2xl));
    border-top: 1px solid var(--border);
  }
  .section:first-child { border-top: none; }
  .stack { display: flex; flex-direction: column; }
  .stack > * + * { margin-top: var(--gap-md); }
  .row { display: flex; align-items: center; gap: var(--gap-md); flex-wrap: wrap; }
  .row-between { display: flex; align-items: center; justify-content: space-between; gap: var(--gap-md); flex-wrap: wrap; }
  .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap-lg); }
  .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-lg); }
  @media (max-width: 900px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .hero-split { grid-template-columns: 1fr !important; }
    .hero-split .ph-img { display: none; }
  }

  /* ─── type ──────────────────────────────────────────────────────── */
  h1, .h1 { font-family: var(--font-display); font-size: var(--fs-h1); line-height: 1.04; letter-spacing: -0.02em; margin: 0; color: var(--fg); }
  h2, .h2 { font-family: var(--font-display); font-size: var(--fs-h2); line-height: 1.1; letter-spacing: -0.015em; margin: 0; color: var(--fg); }
  h3, .h3 { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 500; line-height: 1.3; margin: 0; color: var(--fg); }
  .lead { font-size: var(--fs-lead); line-height: 1.6; color: var(--muted); max-width: 56ch; margin: 0; }
  .eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 var(--gap-md);
  }
  .meta { font-family: var(--font-mono); font-size: var(--fs-meta); color: var(--muted); }
  .num { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

  /* ─── buttons ───────────────────────────────────────────────────── */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
    text-decoration: none;
  }
  .btn:active { transform: translateY(1px); }
  .btn-primary { background: var(--accent); color: #0B0C10; border-color: var(--accent); font-weight: 600; }
  .btn-primary:hover { background: #c9a020; }
  .btn-secondary { background: transparent; color: var(--fg); border-color: var(--border); }
  .btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
  .btn-whatsapp { background: #25D366; color: #fff; border-color: #25D366; font-weight: 600; }
  .btn-whatsapp:hover { background: #1fa855; }
  .btn-arrow::after { content: ' →'; transition: transform 0.15s ease; }
  .btn-arrow:hover::after { transform: translateX(3px); }

  /* ─── cards ─────────────────────────────────────────────────────── */
  .card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: border-color 0.2s ease;
  }
  .card:hover { border-color: var(--accent); }
  .card-flat { background: transparent; border: 0; padding: 0; }
  .card-rule { background: transparent; border: 0; border-top: 1px solid var(--border); padding: 24px 0 0; border-radius: 0; }

  /* ─── features ──────────────────────────────────────────────────── */
  .feature .feature-mark {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--accent);
    margin-bottom: var(--gap-md);
  }
  .feature .feature-mark svg { width: 20px; height: 20px; }
  .feature h3 { margin-bottom: 8px; }
  .feature p  { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }

  /* ─── stat block ────────────────────────────────────────────────── */
  .stat .stat-num {
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--accent);
    font-weight: 600;
  }
  .stat .stat-label { color: var(--muted); font-size: 14px; margin-top: 10px; max-width: 22ch; line-height: 1.5; }

  /* ─── quote ─────────────────────────────────────────────────────── */
  .quote-block {
    border-left: 2px solid var(--accent);
    padding-left: var(--gap-lg);
    margin: 0;
  }
  .quote-text {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.5vw, 30px);
    line-height: 1.45;
    letter-spacing: -0.01em;
    color: var(--fg);
    margin: 0;
    font-style: normal;
  }
  .quote-text em { color: var(--accent); font-style: italic; }

  /* ─── image placeholder ─────────────────────────────────────────── */
  .ph-img {
    background: linear-gradient(135deg, var(--accent-soft), var(--fg-soft)), var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    aspect-ratio: 4/5;
    display: grid; place-items: center;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-align: center;
    padding: var(--gap-md);
  }

  /* ─── hero split ────────────────────────────────────────────────── */
  .hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-2xl);
    align-items: center;
  }
  .hero-cta { display: inline-flex; gap: var(--gap-sm); flex-wrap: wrap; margin-top: var(--gap-lg); }

  /* ─── GI tag badge ──────────────────────────────────────────────── */
  .gi-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: var(--gap-md);
  }
  .gi-badge::before { content: '●'; font-size: 8px; }

  /* ─── collection cards ──────────────────────────────────────────── */
  .col-card {
    display: block;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.25s ease;
    color: var(--fg);
    text-decoration: none;
  }
  .col-card:hover { border-color: var(--accent); background: var(--accent-soft); transform: translateY(-2px); }
  .col-card .col-name { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--accent); margin-bottom: 10px; }
  .col-card .col-desc { color: var(--muted); font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
  .col-card .col-link { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg); display: inline-flex; align-items: center; gap: 4px; transition: color 0.2s; }
  .col-card:hover .col-link { color: var(--accent); }

  /* ─── FAQ ───────────────────────────────────────────────────────── */
  .faq-item {
    border-top: 1px solid var(--border);
    padding: var(--gap-md) 0;
  }
  .faq-q { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--fg); margin-bottom: 10px; }
  .faq-a { color: var(--muted); font-size: 15px; line-height: 1.7; margin: 0; }

  /* ─── divider ───────────────────────────────────────────────────── */
  .rule { border: 0; border-top: 1px solid var(--border); margin: 0; }

  /* ─── scroll animation ──────────────────────────────────────────── */
  .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
