  :root {
    --lime: #CDDB36;
    --lime-pouch: #D4DE3A;
    --lime-deep: #A8BC1E;
    --lime-soft: #E4ED98;
    --forest: #15532C;
    --forest-pouch: #1C5A30;
    --forest-deep: #08311A;
    --cream: #F5F1E8;
    --paper: #FBF8F1;
    --paper-warm: #FFFEF9;
    --ink: #13180F;
    --ink-soft: #3F4538;
    --ink-muted: #6B7163;
    --gold: #B89455;
    --line: rgba(15, 74, 38, 0.12);

    --display: "Instrument Serif", "Cormorant Garamond", serif;
    --script: "Caveat", "Brush Script MT", cursive;
    --sans: "Geist", "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --mono: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;
    --han: "Noto Serif SC", "Songti SC", serif;

    --container: 1240px;
    --pad-x: clamp(20px, 4vw, 64px);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; }

  .container {
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
  }

  /* ============================================
     CUSTOM CURSOR (desktop only)
     ============================================ */
  .cursor-dot, .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    mix-blend-mode: difference;
    transition: width .25s ease, height .25s ease, background .25s ease;
  }
  .cursor-dot {
    width: 8px; height: 8px;
    background: var(--cream);
    transform: translate(-50%, -50%);
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid var(--cream);
    transform: translate(-50%, -50%);
    transition: transform .15s ease-out, width .25s ease, height .25s ease;
  }
  .cursor-ring.hover {
    width: 64px; height: 64px;
    background: rgba(245, 241, 232, 0.1);
  }
  @media (hover: none), (max-width: 880px) {
    .cursor-dot, .cursor-ring { display: none; }
  }

  /* ============================================
     SHARED PRIMITIVES
     ============================================ */
  .eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .eyebrow::before {
    content: "";
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--lime);
    border: 1px solid var(--forest);
  }
  .eyebrow.no-dot::before { display: none; }
  .han { font-family: var(--han); }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 26px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: transform .3s cubic-bezier(.2,.8,.2,1), background .25s ease, color .25s ease, border-color .25s ease, box-shadow .3s ease;
    white-space: nowrap;
    will-change: transform;
    position: relative;
    overflow: hidden;
  }
  .btn::after {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.25), transparent 50%);
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
  }
  .btn:hover::after { opacity: 1; }
  .btn-primary { background: var(--forest); color: var(--cream); }
  .btn-primary:hover { background: var(--forest-deep); transform: translateY(-2px); box-shadow: 0 18px 32px -16px rgba(15, 74, 38, 0.55); }
  .btn-lime { background: var(--lime); color: var(--forest-deep); font-weight: 600; }
  .btn-lime:hover { background: var(--lime-deep); transform: translateY(-2px); box-shadow: 0 18px 32px -16px rgba(168, 188, 30, 0.65); }
  .btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
  .btn-ghost:hover { background: var(--ink); color: var(--cream); }
  .btn-ghost-light { background: transparent; color: var(--cream); border-color: rgba(245,241,232,0.3); }
  .btn-ghost-light:hover { background: rgba(245,241,232,0.1); border-color: var(--cream); }
  .btn-wa { background: #25D366; color: #073324; font-weight: 600; }
  .btn-wa:hover { background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 18px 32px -16px rgba(37, 211, 102, 0.65); }
  .btn .arrow { transition: transform .3s cubic-bezier(.2,.8,.2,1); display: inline-block; }
  .btn:hover .arrow { transform: translateX(4px); }

  /* Reveal on scroll */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1s cubic-bezier(.2,.8,.2,1), transform 1s cubic-bezier(.2,.8,.2,1);
  }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .reveal.delay-1 { transition-delay: .08s; }
  .reveal.delay-2 { transition-delay: .18s; }
  .reveal.delay-3 { transition-delay: .28s; }
  .reveal.delay-4 { transition-delay: .38s; }

  /* word-by-word reveal */
  .words .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(0.5em) rotate(4deg);
    transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
  }
  .words.in .word {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
    }
    .reveal, .words .word { opacity: 1; transform: none; }
  }

  /* ============================================
     NAV
     ============================================ */
  .nav-wrap {
    position: sticky; top: 0; z-index: 50;
    background: rgba(251, 248, 241, 0.85);
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid var(--line);
  }
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 24px;
  }
  .logo-pill {
    display: inline-flex;
    align-items: center;
    background: var(--forest);
    color: var(--cream);
    padding: 9px 24px 11px;
    border-radius: 999px;
    font-family: var(--script);
    font-weight: 700;
    font-size: 27px;
    font-style: italic;
    line-height: 1;
    letter-spacing: -0.005em;
    transition: background .25s ease, transform .3s cubic-bezier(.2,.8,.2,1);
  }
  .logo-pill:hover { background: var(--forest-deep); transform: rotate(-2deg) scale(1.03); }
  .nav-links {
    display: flex;
    gap: 32px;
    font-size: 14px;
    color: var(--ink-soft);
  }
  .nav-links a {
    position: relative;
    transition: color .2s ease;
  }
  .nav-links a:hover { color: var(--forest); }
  .nav-links a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
    height: 1px; background: var(--forest);
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s ease;
  }
  .nav-links a:hover::after { transform: scaleX(1); }
  @media (max-width: 880px) {
    .nav-links { display: none; }
  }

  /* ============================================
     HERO
     ============================================ */
  .hero {
    padding: clamp(56px, 9vw, 120px) 0 clamp(64px, 9vw, 120px);
    position: relative;
    overflow: hidden;
  }
  /* Giant background han character that breathes */
  .hero .bg-han {
    position: absolute;
    right: -8%; top: 50%;
    transform: translateY(-50%);
    font-family: var(--han);
    font-weight: 700;
    font-size: clamp(400px, 60vw, 900px);
    color: var(--lime);
    opacity: 0.12;
    line-height: 0.8;
    pointer-events: none;
    z-index: 0;
    animation: breathe 8s ease-in-out infinite;
  }
  @keyframes breathe {
    0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.12; }
    50% { transform: translateY(-50%) scale(1.04); opacity: 0.15; }
  }
  .hero-grid {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .hero h1 {
    font-family: var(--display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(56px, 8.5vw, 120px);
    line-height: 0.93;
    letter-spacing: -0.03em;
    color: var(--forest);
    margin-top: 24px;
  }
  .hero h1 .word.ink { color: var(--ink); }
  .hero h1 .word.gold { color: var(--gold); }
  .hero h1 .underline {
    position: relative;
    white-space: nowrap;
  }
  .hero h1 .underline::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 8%;
    height: 0.12em;
    background: var(--lime);
    z-index: -1;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 1.2s cubic-bezier(.2,.8,.2,1) 0.8s;
  }
  .hero h1 .underline.in::after { transform: scaleX(1); }
  .hero h1 .han-accent {
    font-family: var(--han);
    font-style: normal;
    font-weight: 500;
    font-size: 0.4em;
    color: var(--gold);
    vertical-align: 0.55em;
    margin-left: 10px;
    letter-spacing: 0;
  }
  .hero .lede {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin-top: 28px;
    max-width: 480px;
  }
  .hero-ctas {
    display: flex;
    gap: 14px;
    margin-top: 36px;
    flex-wrap: wrap;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 48px;
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }
  .stat-num {
    font-family: var(--display);
    font-style: italic;
    font-size: 38px;
    line-height: 1;
    color: var(--forest);
    display: flex;
    align-items: baseline;
    gap: 2px;
  }
  .stat-num .suffix { font-size: 0.6em; color: var(--gold); }
  .stat-label {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--ink-muted);
    margin-top: 8px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  /* Hero stage with pouch + floating elements */
  .hero-stage {
    position: relative;
    aspect-ratio: 1 / 1.05;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
  }
  /* glowing halo */
  .hero-stage .halo {
    position: absolute;
    inset: 6%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 40%, var(--lime), var(--lime-deep) 60%, var(--lime-deep) 100%);
    box-shadow:
      0 40px 80px -30px rgba(168, 188, 30, 0.75),
      inset 0 -20px 60px rgba(168, 188, 30, 0.4);
  }
  /* slowly rotating dashed ring */
  .hero-stage .ring {
    position: absolute;
    inset: -2%;
    border-radius: 50%;
    border: 1px dashed rgba(15, 74, 38, 0.25);
    animation: spin 60s linear infinite;
  }
  .hero-stage .ring-inner {
    position: absolute;
    inset: 18%;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.5);
    animation: spin 40s linear infinite reverse;
  }
  @keyframes spin { to { transform: rotate(360deg); } }

  /* Orbiting kanji characters */
  .orbiter {
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  .orbiter .orb-arm {
    position: absolute;
    top: 0; left: 0;
    transform-origin: 0 0;
    animation: orbit 30s linear infinite;
  }
  .orbiter .orb-arm.r2 { animation-duration: 45s; animation-direction: reverse; }
  .orbiter .orb-arm.r3 { animation-duration: 35s; }
  .orbiter .orb-arm.r4 { animation-duration: 50s; animation-direction: reverse; }
  .orbiter .orb-arm .orb {
    position: absolute;
    transform: translate(-50%, -50%);
    font-family: var(--han);
    font-weight: 500;
    color: var(--forest);
    font-size: 28px;
    background: var(--paper-warm);
    border: 1px solid var(--line);
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 28px -12px rgba(15, 74, 38, 0.3);
    animation: counter-orbit 30s linear infinite;
  }
  .orbiter .orb-arm.r2 .orb { animation-duration: 45s; animation-direction: reverse; }
  .orbiter .orb-arm.r3 .orb { animation-duration: 35s; animation-direction: reverse; }
  .orbiter .orb-arm.r4 .orb { animation-duration: 50s; }
  @keyframes orbit { to { transform: rotate(360deg); } }
  @keyframes counter-orbit { to { transform: translate(-50%, -50%) rotate(-360deg); } }

  .hero-stage .pouch-wrap {
    position: relative;
    z-index: 2;
    width: 62%;
    transform: rotate(-3deg);
    filter:
      drop-shadow(0 28px 36px rgba(8, 49, 26, 0.32))
      drop-shadow(0 8px 16px rgba(8, 49, 26, 0.18));
    animation: pouchFloat 7s ease-in-out infinite;
    will-change: transform;
  }
  @keyframes pouchFloat {
    0%, 100% { transform: rotate(-3deg) translateY(0) scale(1); }
    50% { transform: rotate(-1deg) translateY(-14px) scale(1.01); }
  }

  /* Floating tea leaves */
  .leaf {
    position: absolute;
    z-index: 3;
    pointer-events: none;
    color: var(--forest);
    opacity: 0.75;
    animation: leafFloat 12s ease-in-out infinite;
  }
  .leaf svg { width: 28px; height: 28px; }
  .leaf.l1 { top: 12%; left: 12%; animation-delay: 0s; }
  .leaf.l2 { top: 26%; right: 8%; animation-delay: 1.5s; }
  .leaf.l3 { bottom: 22%; left: 6%; animation-delay: 3s; }
  .leaf.l4 { bottom: 12%; right: 12%; animation-delay: 4.5s; }
  .leaf.l5 { top: 45%; left: 4%; animation-delay: 2s; }
  @keyframes leafFloat {
    0%, 100% { transform: translate(0, 0) rotate(-15deg); }
    25% { transform: translate(-8px, -12px) rotate(0deg); }
    50% { transform: translate(8px, -20px) rotate(15deg); }
    75% { transform: translate(-4px, -8px) rotate(-5deg); }
  }

  /* Caption card */
  .hero-stage .caption {
    position: absolute;
    right: -2%; bottom: 6%;
    z-index: 4;
    background: var(--paper-warm);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px 18px;
    max-width: 230px;
    font-size: 12px;
    line-height: 1.55;
    color: var(--ink-soft);
    box-shadow: 0 18px 40px -18px rgba(15, 74, 38, 0.3);
    animation: cardFloat 6s ease-in-out infinite;
  }
  @keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  .caption-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    color: var(--forest);
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  /* Float badges */
  .hero-stage .float-badge {
    position: absolute;
    z-index: 4;
    background: var(--paper-warm);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 16px 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 18px 40px -18px rgba(15, 74, 38, 0.3);
    font-size: 12px;
    font-weight: 500;
    color: var(--ink);
    animation: cardFloat 7s ease-in-out infinite;
  }
  .hero-stage .float-badge .dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--forest);
    box-shadow: 0 0 0 0 rgba(15, 74, 38, 0.5);
    animation: pulse 2.5s infinite;
  }
  .hero-stage .badge-halal { top: 8%; left: -6%; animation-delay: 0.5s; }
  .hero-stage .badge-natural { top: 38%; left: -8%; animation-delay: 2s; }

  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(15, 74, 38, 0.55); }
    70% { box-shadow: 0 0 0 14px rgba(15, 74, 38, 0); }
    100% { box-shadow: 0 0 0 0 rgba(15, 74, 38, 0); }
  }

  @media (max-width: 880px) {
    .hero-grid { grid-template-columns: 1fr; gap: 56px; }
    .hero-stats { gap: 28px; }
    .stat-num { font-size: 32px; }
    .hero-stage .float-badge { font-size: 11px; padding: 8px 12px 8px 10px; }
    .hero-stage .badge-halal { left: 0; }
    .hero-stage .badge-natural { left: -2%; }
    .orbiter { display: none; }
  }

  /* ============================================
     SVG POUCH STYLES
     ============================================ */
  .pouch-svg { width: 100%; height: auto; display: block; }
  .pouch-svg .body { fill: var(--lime-pouch); }
  .pouch-svg .crimp { fill: var(--forest-pouch); }
  .pouch-svg .ink-dark { fill: var(--ink); }
  .pouch-svg .han-big { font-family: var(--han); font-weight: 500; fill: var(--ink); }
  .pouch-svg .han-small { font-family: var(--han); font-weight: 500; fill: var(--ink); }
  .pouch-svg .indo { font-family: var(--sans); font-style: italic; fill: var(--ink); font-weight: 400; }
  .pouch-svg .wordmark-pill { fill: var(--forest-pouch); }
  .pouch-svg .wordmark { font-family: var(--script); font-style: italic; font-weight: 700; fill: #FFFEF9; }
  .pouch-svg .shine { opacity: 0.7; }

  /* ============================================
     MARQUEE STRIP
     ============================================ */
  .strip {
    background: var(--forest);
    color: var(--cream);
    padding: 22px 0;
    overflow: hidden;
    position: relative;
  }
  .strip-track {
    display: flex;
    gap: 56px;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
    width: max-content;
  }
  .strip-item {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 14px;
  }
  .strip-item .sep {
    width: 6px; height: 6px; border-radius: 50%; background: var(--lime);
  }
  .strip-item .han { font-family: var(--han); letter-spacing: 0.1em; color: var(--lime); }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ============================================
     STORY / CERITA
     ============================================ */
  .story {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--paper);
    position: relative;
  }
  .story-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: center;
  }
  .story h2 {
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(40px, 5.5vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.025em;
    color: var(--forest);
    margin-top: 16px;
  }
  .story p {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-soft);
  }
  .story .han-watermark {
    font-family: var(--han);
    font-size: clamp(64px, 9vw, 130px);
    color: var(--forest);
    opacity: 0.07;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.04em;
    font-weight: 700;
  }
  .story-visual {
    aspect-ratio: 5 / 6;
    position: relative;
  }
  .story-visual .frame {
    position: absolute;
    inset: 0;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--lime-soft), var(--lime));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12% 18%;
  }
  /* Transparent sachet sits directly on lime gradient — natural drop shadow grounds it. */
  .story-visual .frame .pouch-img {
    width: 72%;
    max-width: none;
    transform: rotate(2deg);
    filter:
      drop-shadow(0 28px 32px rgba(8, 49, 26, 0.34))
      drop-shadow(0 10px 16px rgba(8, 49, 26, 0.22));
    animation: pouchFloat 7s ease-in-out infinite;
  }
  .story-visual .frame .pouch-svg { transform: rotate(2deg); animation: pouchFloat 7s ease-in-out infinite; }
  .story-visual .frame::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.45), transparent 50%),
      radial-gradient(circle at 80% 90%, rgba(15, 74, 38, 0.1), transparent 60%);
    pointer-events: none;
  }
  .story-visual .frame::after {
    content: "茶";
    position: absolute;
    top: 8%; right: 8%;
    font-family: var(--han);
    font-weight: 700;
    font-size: clamp(60px, 8vw, 100px);
    color: var(--forest);
    opacity: 0.2;
    line-height: 1;
  }
  .story-visual .badge {
    position: absolute;
    bottom: -24px; left: -24px;
    background: var(--cream);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px -18px rgba(15, 74, 38, 0.2);
    z-index: 3;
    transition: transform .35s cubic-bezier(.2,.8,.2,1);
  }
  .story-visual:hover .badge { transform: rotate(-2deg) translateY(-4px); }
  .story-visual .badge .label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .story-visual .badge .value {
    font-family: var(--display);
    font-style: italic;
    font-size: 24px;
    color: var(--forest);
    margin-top: 4px;
    line-height: 1;
  }
  @media (max-width: 880px) {
    .story-grid { grid-template-columns: 1fr; gap: 56px; }
  }

  /* ============================================
     KHASIAT — 4 kanji cards
     ============================================ */
  .khasiat {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--cream);
  }
  .section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 48px;
    margin-bottom: 56px;
  }
  .section-head h2 {
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(40px, 5.5vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.025em;
    color: var(--forest);
    margin-top: 14px;
    max-width: 720px;
  }
  .section-head .head-aside {
    font-size: 15px;
    color: var(--ink-soft);
    max-width: 320px;
    line-height: 1.6;
  }
  .khasiat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
  }
  .khasiat-card {
    background: var(--cream);
    padding: 36px 28px 32px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background .4s cubic-bezier(.2,.8,.2,1);
    position: relative;
    overflow: hidden;
  }
  .khasiat-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lime), var(--forest));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s cubic-bezier(.2,.8,.2,1);
  }
  .khasiat-card:hover { background: var(--paper-warm); }
  .khasiat-card:hover::before { transform: scaleX(1); }
  .khasiat-card .kanji {
    font-family: var(--han);
    font-weight: 600;
    font-size: 144px;
    line-height: 1;
    color: var(--forest);
    letter-spacing: -0.02em;
    transition: transform .6s cubic-bezier(.2,.8,.2,1), color .4s ease;
  }
  .khasiat-card:hover .kanji { transform: translateY(-8px) scale(1.05); color: var(--lime-deep); }
  .khasiat-card .num {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }
  .khasiat-card h3 {
    font-family: var(--display);
    font-style: italic;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.1;
    color: var(--ink);
  }
  .khasiat-card p {
    margin-top: 10px;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--ink-soft);
  }
  @media (max-width: 880px) {
    .khasiat-grid { grid-template-columns: repeat(2, 1fr); }
    .section-head { flex-direction: column; align-items: flex-start; gap: 24px; }
  }
  @media (max-width: 520px) {
    .khasiat-grid { grid-template-columns: 1fr; }
  }

  /* ============================================
     RITUAL — Animated steaming cup
     ============================================ */
  .ritual {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--forest-deep);
    color: var(--cream);
    position: relative;
    overflow: hidden;
  }
  .ritual .eyebrow { color: var(--lime); }
  .ritual .eyebrow::before { background: var(--lime); border-color: var(--lime); }
  .ritual h2 { color: var(--cream); }
  .ritual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(200, 217, 53, 0.2), transparent 50%),
                      radial-gradient(circle at 80% 70%, rgba(200, 217, 53, 0.15), transparent 60%);
    pointer-events: none;
  }
  .ritual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .ritual-body {
    max-width: 480px;
  }
  .ritual-body h2 {
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(40px, 5.5vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.025em;
    margin-top: 14px;
  }
  .ritual-body p {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(245, 241, 232, 0.78);
  }
  /* Steaming cup illustration */
  .cup-stage {
    aspect-ratio: 1 / 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cup-stage .cup {
    width: 60%;
    position: relative;
    z-index: 2;
  }
  .cup-stage .cup svg { width: 100%; display: block; }
  .cup-stage .steam {
    position: absolute;
    top: 5%; left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 55%;
    z-index: 3;
    pointer-events: none;
  }
  .cup-stage .steam path {
    stroke: rgba(245, 241, 232, 0.55);
    stroke-width: 6;
    stroke-linecap: round;
    fill: none;
    transform-origin: bottom;
  }
  .cup-stage .steam .s1 { animation: steam 4s ease-in-out infinite; }
  .cup-stage .steam .s2 { animation: steam 4s ease-in-out infinite -1.2s; }
  .cup-stage .steam .s3 { animation: steam 4s ease-in-out infinite -2.5s; }
  @keyframes steam {
    0% { opacity: 0; transform: translateY(20px) scaleY(0.4); }
    20% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-60px) scaleY(1.1); }
  }
  .cup-stage .saucer-glow {
    position: absolute;
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 24%;
    background: radial-gradient(ellipse at center, rgba(200, 217, 53, 0.4), transparent 60%);
    z-index: 1;
    animation: glowPulse 4s ease-in-out infinite;
  }
  @keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
  }
  /* Steps inline */
  .ritual-steps {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .ritual-step {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 0;
    border-top: 1px solid rgba(245, 241, 232, 0.12);
  }
  .ritual-step:last-child { border-bottom: 1px solid rgba(245, 241, 232, 0.12); }
  .ritual-step .num {
    font-family: var(--display);
    font-style: italic;
    font-size: 42px;
    line-height: 1;
    color: var(--lime);
    min-width: 56px;
  }
  .ritual-step h4 {
    font-family: var(--display);
    font-style: italic;
    font-weight: 400;
    font-size: 22px;
    color: var(--cream);
  }
  .ritual-step p {
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(245, 241, 232, 0.7);
  }
  @media (max-width: 880px) {
    .ritual-grid { grid-template-columns: 1fr; gap: 40px; }
    .cup-stage { max-width: 400px; margin: 0 auto; }
  }

  /* ============================================
     ORDER
     ============================================ */
  .order {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--paper);
    position: relative;
  }
  .order-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 72px;
    align-items: start;
  }
  .order-visual {
    aspect-ratio: 4 / 5;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--lime), var(--lime-deep));
    position: relative;
    box-shadow: 0 30px 80px -32px rgba(15, 74, 38, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16% 18%;
    position: sticky;
    top: 100px;
  }
  .order-visual .pouch-svg {
    transform: rotate(-4deg);
    animation: pouchFloat 7s ease-in-out infinite;
    filter: drop-shadow(0 16px 32px rgba(8, 49, 26, 0.3));
  }
  .order-visual::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(circle at 25% 15%, rgba(255, 255, 255, 0.4), transparent 55%),
      radial-gradient(circle at 75% 90%, rgba(15, 74, 38, 0.12), transparent 60%);
    pointer-events: none;
  }
  .order-visual::after {
    content: "合 · 坡 · 加 · 利";
    position: absolute;
    bottom: 28px;
    left: 0; right: 0;
    text-align: center;
    font-family: var(--han);
    font-size: 14px;
    color: var(--forest);
    opacity: 0.5;
    letter-spacing: 0.2em;
  }
  .order-visual .photo-badge {
    position: absolute;
    top: 22px; left: 22px;
    z-index: 2;
    background: rgba(8, 49, 26, 0.92);
    backdrop-filter: blur(8px);
    color: var(--cream);
    padding: 9px 16px;
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .order-visual .photo-badge .pulse {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 0 rgba(205, 219, 54, 0.7);
    animation: pulse 2s infinite;
  }
  .order-visual .photo-meta {
    position: absolute;
    top: 22px; right: 22px;
    z-index: 2;
    background: rgba(251, 248, 241, 0.95);
    backdrop-filter: blur(8px);
    padding: 12px 16px;
    border-radius: 12px;
    text-align: right;
  }
  .order-visual .photo-meta .price-from {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-muted);
  }
  .order-visual .photo-meta .price-val {
    font-family: var(--display);
    font-style: italic;
    font-size: 22px;
    color: var(--forest);
    margin-top: 2px;
    line-height: 1;
  }
  .order-body h2 {
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(40px, 5.5vw, 68px);
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--forest);
    margin-top: 14px;
  }
  .order-body .lede {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: 520px;
  }

  .bundles {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
  }
  .bundle {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: var(--paper-warm);
    border: 1.5px solid var(--line);
    border-radius: 14px;
    cursor: pointer;
    transition: border-color .3s cubic-bezier(.2,.8,.2,1),
                background .3s ease,
                transform .3s cubic-bezier(.2,.8,.2,1),
                box-shadow .3s ease;
    position: relative;
  }
  .bundle:hover { border-color: rgba(15, 74, 38, 0.35); transform: translateX(4px); }
  .bundle.selected {
    border-color: var(--forest);
    background: var(--paper-warm);
    box-shadow: 0 0 0 4px rgba(15, 74, 38, 0.08);
  }
  .bundle .radio {
    width: 22px; height: 22px;
    border-radius: 50%;
    border: 1.5px solid var(--ink-muted);
    position: relative;
    transition: border-color .25s ease;
    flex-shrink: 0;
  }
  .bundle.selected .radio { border-color: var(--forest); }
  .bundle.selected .radio::after {
    content: ""; position: absolute;
    inset: 3px; border-radius: 50%;
    background: var(--forest);
    animation: dotIn .3s cubic-bezier(.2,.8,.2,1);
  }
  @keyframes dotIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
  }
  .bundle .info .name {
    font-family: var(--display);
    font-style: italic;
    font-size: 26px;
    color: var(--ink);
    line-height: 1.05;
  }
  .bundle .info .meta {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-top: 6px;
  }
  .bundle .price {
    text-align: right;
  }
  .bundle .price .v {
    font-family: var(--display);
    font-style: italic;
    font-size: 28px;
    color: var(--forest);
    line-height: 1;
  }
  .bundle .price .per {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--ink-muted);
    margin-top: 4px;
    text-transform: uppercase;
  }
  .bundle .tag {
    position: absolute;
    top: -10px; right: 16px;
    background: var(--lime);
    color: var(--forest-deep);
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1.5px solid var(--paper);
  }
  .bundle .tag.savings {
    background: var(--forest); color: var(--lime);
  }

  .order-summary {
    margin-top: 28px;
    padding: 24px;
    background: var(--cream);
    border-radius: 14px;
    border: 1px solid var(--line);
  }
  .order-summary .row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0;
    font-size: 14px;
    color: var(--ink-soft);
  }
  .order-summary .row.total {
    border-top: 1px solid var(--line);
    padding-top: 16px;
    margin-top: 8px;
    font-size: 16px;
    color: var(--ink);
    font-weight: 500;
  }
  .order-summary .row.total .v {
    font-family: var(--display);
    font-style: italic;
    font-size: 36px;
    color: var(--forest);
    transition: transform .3s ease;
  }
  .order-summary .row.total .v.bump { animation: bump .35s ease; }
  @keyframes bump {
    0% { transform: scale(1); }
    40% { transform: scale(1.08); }
    100% { transform: scale(1); }
  }

  .order-ctas {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  .order-ctas .btn-wa { flex: 1; min-width: 220px; justify-content: center; padding: 18px 24px; font-size: 15px; }

  .shopee-alt {
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(15, 74, 38, 0.04);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--ink-soft);
  }
  .shopee-alt a {
    color: var(--forest);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: var(--lime);
    text-underline-offset: 3px;
  }
  @media (max-width: 880px) {
    .order-grid { grid-template-columns: 1fr; gap: 40px; }
    .order-visual { aspect-ratio: 4 / 3; max-width: 520px; padding: 6% 18%; position: relative; top: 0; }
  }

  /* ============================================
     TESTIMONIALS
     ============================================ */
  .testi {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--cream);
  }
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .testi-card {
    background: var(--paper-warm);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
    position: relative;
  }
  .testi-card::before {
    content: """;
    position: absolute;
    top: -20px; right: 24px;
    font-family: var(--display);
    font-style: italic;
    font-size: 140px;
    color: var(--lime);
    line-height: 1;
    opacity: 0.5;
    pointer-events: none;
  }
  .testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 60px -28px rgba(15, 74, 38, 0.22);
  }
  .testi-card .stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 0.15em;
  }
  .testi-card .quote {
    font-family: var(--display);
    font-style: italic;
    font-size: 22px;
    line-height: 1.35;
    color: var(--ink);
  }
  .testi-card .who {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    margin-top: auto;
  }
  .testi-card .who .name {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
  }
  .testi-card .who .meta {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-top: 4px;
  }
  .testi-card .who .badge {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--forest);
    background: var(--lime-soft);
    padding: 4px 10px;
    border-radius: 999px;
  }
  @media (max-width: 880px) {
    .testi-grid { grid-template-columns: 1fr; }
  }

  /* ============================================
     FAQ
     ============================================ */
  .faq {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--paper);
  }
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 72px;
    align-items: start;
  }
  .faq-list { display: flex; flex-direction: column; }
  .faq-item {
    border-top: 1px solid var(--line);
    padding: 24px 0;
    cursor: pointer;
  }
  .faq-item:last-of-type { border-bottom: 1px solid var(--line); }
  .faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-family: var(--display);
    font-style: italic;
    font-size: 24px;
    color: var(--ink);
    line-height: 1.25;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary .plus {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--sans);
    font-style: normal;
    font-size: 16px;
    font-weight: 300;
    transition: transform .35s cubic-bezier(.2,.8,.2,1), background .25s ease;
  }
  .faq-item:hover summary .plus { background: var(--forest-deep); }
  .faq-item[open] summary .plus { transform: rotate(45deg); }
  .faq-item .answer {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: 640px;
  }
  @media (max-width: 880px) {
    .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  }

  /* ============================================
     FINAL CTA
     ============================================ */
  .final {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--forest-deep);
    color: var(--cream);
    position: relative;
    overflow: hidden;
  }
  .final-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .final .eyebrow { color: var(--lime); }
  .final .eyebrow::before { background: var(--lime); border-color: var(--lime); }
  .final h2 {
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(48px, 7vw, 100px);
    line-height: 0.95;
    color: var(--cream);
    margin-top: 20px;
    letter-spacing: -0.025em;
  }
  .final .lede {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(245, 241, 232, 0.78);
    max-width: 460px;
  }
  .final .ctas {
    display: flex;
    gap: 14px;
    margin-top: 36px;
    flex-wrap: wrap;
  }
  .final .info-card {
    background: rgba(245, 241, 232, 0.04);
    border: 1px solid rgba(245, 241, 232, 0.12);
    border-radius: 20px;
    padding: 36px;
    backdrop-filter: blur(10px);
  }
  .final .info-card .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(245, 241, 232, 0.1);
  }
  .final .info-card .row:last-child { border-bottom: none; }
  .final .info-card .row .k {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245, 241, 232, 0.6);
  }
  .final .info-card .row .v {
    font-family: var(--display);
    font-style: italic;
    font-size: 22px;
    color: var(--cream);
  }
  .final .info-card .row .v .lime { color: var(--lime); }
  .final-glow {
    position: absolute;
    right: -300px; top: -300px;
    width: 800px; height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 217, 53, 0.22), transparent 70%);
    pointer-events: none;
    animation: glowPulse 6s ease-in-out infinite;
  }
  .final-han {
    position: absolute;
    left: -5%; bottom: -20%;
    font-family: var(--han);
    font-weight: 700;
    font-size: clamp(400px, 50vw, 700px);
    color: rgba(200, 217, 53, 0.04);
    line-height: 0.8;
    pointer-events: none;
    z-index: 1;
  }
  @media (max-width: 880px) {
    .final-grid { grid-template-columns: 1fr; gap: 48px; }
  }

  /* ============================================
     FOOTER
     ============================================ */
  footer {
    background: var(--ink);
    color: rgba(245, 241, 232, 0.7);
    padding: 56px 0 32px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  .footer-grid h4 {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 16px;
    font-weight: 500;
  }
  .footer-grid ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
  }
  .footer-grid ul a { transition: color .2s ease, padding-left .25s ease; }
  .footer-grid ul a:hover { color: var(--cream); padding-left: 6px; }
  .footer-about p {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 320px;
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid rgba(245, 241, 232, 0.1);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: rgba(245, 241, 232, 0.5);
    text-transform: uppercase;
    flex-wrap: wrap;
    gap: 16px;
  }
  @media (max-width: 880px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  }

  /* Sticky mobile bottom buy bar */
  .sticky-buy { display: none; }
  @media (max-width: 880px) {
    .sticky-buy {
      display: flex;
      position: fixed; bottom: 0; left: 0; right: 0;
      z-index: 60;
      background: var(--paper-warm);
      border-top: 1px solid var(--line);
      padding: 12px 16px;
      gap: 12px;
      align-items: center;
      box-shadow: 0 -10px 30px -10px rgba(15, 74, 38, 0.15);
    }
    .sticky-buy .btn { flex: 1; justify-content: center; padding: 14px 18px; font-size: 13px; }
    body { padding-bottom: 84px; }
  }

  /* ============================================
     REAL PHOTO POUCH — transparent cutout, smooth integration
     ============================================ */
  .pouch-pic {
    display: contents; /* picture acts as pure pass-through wrapper */
  }
  .hero-stage .pouch-img,
  .order-visual .pouch-img {
    position: relative;
    z-index: 2;
    width: 62%;
    max-width: 380px;
    height: auto;
    display: block;
    transform: rotate(-3deg);
    filter:
      drop-shadow(0 36px 36px rgba(8, 49, 26, 0.38))
      drop-shadow(0 14px 22px rgba(8, 49, 26, 0.22))
      drop-shadow(0 4px 8px rgba(8, 49, 26, 0.18));
    animation: pouchFloat 7s ease-in-out infinite;
    will-change: transform;
    background: transparent;
  }
  .order-visual .pouch-img {
    width: 70%;
    max-width: 420px;
    animation: none;
    transform: rotate(-2deg);
  }
  @media (max-width: 720px) {
    .hero-stage .pouch-img { width: 58%; }
    .order-visual .pouch-img { width: 64%; }
  }

  /* Bundle states with checkmark */
  .bundle .radio { transition: border-color 220ms ease, background 220ms ease; }
  .bundle.selected .radio {
    background: var(--forest);
    border-color: var(--forest);
    position: relative;
  }
  .bundle.selected .radio::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 8px; height: 4px;
    border-left: 2px solid var(--lime);
    border-bottom: 2px solid var(--lime);
    transform: translate(-50%, -65%) rotate(-45deg);
  }

  /* Zone selector inside order */
  .zone-field { margin-top: 18px; }
  .zone-field label {
    display: block;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 8px;
  }
  .zone-field select {
    width: 100%;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 44px 14px 16px;
    font-size: 15px;
    font-family: var(--sans);
    color: var(--ink);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2315532C' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    transition: border-color 180ms ease;
  }
  .zone-field select:focus {
    outline: none;
    border-color: var(--forest);
    box-shadow: 0 0 0 3px rgba(21, 83, 44, 0.12);
  }
  .ship-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--lime-soft);
    color: var(--forest-deep);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  .ship-pill::before {
    content: "";
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--forest);
  }


  /* ============================================
     UI/UX POLISH PASS
     ============================================ */
  /* Reachable focus states */
  *:focus-visible {
    outline: 2px solid var(--forest);
    outline-offset: 3px;
    border-radius: 6px;
  }
  .bundle:focus-visible {
    outline-offset: 4px;
  }

  /* Bundle touch + interaction polish */
  .bundle {
    min-height: 56px;
    cursor: pointer;
    transition: transform 200ms cubic-bezier(.2,.8,.2,1),
                border-color 200ms ease,
                background 200ms ease,
                box-shadow 200ms ease;
  }
  .bundle:hover {
    transform: translateY(-1px);
    border-color: var(--forest);
  }
  .bundle.selected {
    box-shadow: 0 12px 28px -16px rgba(15, 74, 38, 0.35);
  }

  /* Zone field hover */
  .zone-field select:hover { border-color: var(--ink-muted); }

  /* Order summary total — emphasize on change */
  @keyframes totalPulse {
    0% { transform: scale(1); }
    35% { transform: scale(1.04); color: var(--forest-deep); }
    100% { transform: scale(1); }
  }
  .order-summary .v.bump.flash { animation: totalPulse 420ms cubic-bezier(.2,.8,.2,1); }

  /* Sticky mobile CTA */
  .sticky-mobile-cta {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: rgba(251, 248, 241, 0.92);
    backdrop-filter: saturate(140%) blur(16px);
    -webkit-backdrop-filter: saturate(140%) blur(16px);
    border-top: 1px solid var(--line);
    z-index: 90;
    display: none;
    box-shadow: 0 -8px 24px -16px rgba(15, 74, 38, 0.25);
  }
  .sticky-mobile-cta .btn { width: 100%; padding: 14px 24px; }
  @media (max-width: 720px) {
    .sticky-mobile-cta { display: block; }
    body { padding-bottom: 84px; }
  }

  /* Better hero on mobile: keep order copy → photo flow + tighter rhythm */
  @media (max-width: 720px) {
    .hero { padding-top: 28px; }
    .hero-grid { gap: 20px; }
    .hero-stage { min-height: 380px; }
    .hero-ctas { gap: 10px; }
    .hero-stats { gap: 18px; padding-top: 18px; }
    .order { padding: 60px 0; }
    .order-grid { gap: 32px; }
    .order-visual { min-height: 400px; }
  }

  /* Print: hide sticky + cursor */
  @media print {
    .sticky-mobile-cta, .cursor-dot, .cursor-ring { display: none !important; }
  }

  /* Selection */
  ::selection { background: var(--lime); color: var(--forest-deep); }

  /* Disable pull-to-refresh on mobile to avoid accidental refresh */
  html { overscroll-behavior-y: contain; }
