  :root {
    --orange: #FF5200;
    --orange-btn: #D63D00;
    --orange-btn-hover: #B93400;
    --orange-soft: #FFE5D6;
    --navy: #08087A;
    --bg: #FFFFFF;
    --surface: #FFFFFF;
    --tint: #FFF4EC;
    --ink: #17173A;
    --muted: #5B5B78;
    --line: #F0D8C8;
    --wordmark: #08087A;
    --footer: #08087A;
    --focus: #08087A;
    --night: #0E0E3A;
    --shadow: 0 1px 0 rgba(8,8,122,.04), 0 8px 24px rgba(8,8,122,.07);
    --font-display: "Montserrat", "Arial Black", "Segoe UI", sans-serif;
    --font-body: "Figtree", "Segoe UI", Roboto, Arial, sans-serif;
    box-sizing: border-box;
    padding-top: env(safe-area-inset-top, 0px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
      --orange-soft: #33202A;
      --bg: #0C0C22;
      --surface: #15153A;
      --tint: #11112C;
      --ink: #F2F0FF;
      --muted: #ABABCF;
      --line: #2A2A58;
      --wordmark: #FFFFFF;
      --footer: #06063F;
      --focus: #FFB48F;
      --shadow: 0 1px 0 rgba(0,0,0,.3), 0 8px 24px rgba(0,0,0,.35);
    }
  }
  :root[data-theme="dark"] {
    --orange-soft: #33202A;
    --bg: #0C0C22;
    --surface: #15153A;
    --tint: #11112C;
    --ink: #F2F0FF;
    --muted: #ABABCF;
    --line: #2A2A58;
    --wordmark: #FFFFFF;
    --footer: #06063F;
    --focus: #FFB48F;
    --shadow: 0 1px 0 rgba(0,0,0,.3), 0 8px 24px rgba(0,0,0,.35);
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-padding-top: calc(env(safe-area-inset-top, 0px) + 84px); scroll-behavior: smooth; }
  html.locked { overflow: hidden; }
  body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  img, svg { max-width: 100%; }
  a { color: inherit; }
  button, select, input { font: inherit; color: inherit; }
  :focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }
  .hero :focus-visible, .cta :focus-visible { outline-color: var(--navy); }
  .site-footer :focus-visible, .strip :focus-visible { outline-color: #FFB48F; }
  .sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .wrap { width: min(1180px, 100% - 40px); margin-inline: auto; }

  /* ---------- Wordmark ---------- */
  .brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
  .brand svg { width: 46px; height: 46px; flex: none; }
  .wordmark {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.55rem;
    letter-spacing: -0.02em;
    color: var(--wordmark);
    line-height: 1;
  }
  .wordmark b { color: var(--orange); font-weight: 800; }
  .site-footer .wordmark { color: #fff; }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 46px; padding: 0 22px;
    border: 0; border-radius: 10px;
    background: var(--orange-btn); color: #fff;
    font-family: var(--font-display); font-weight: 700; font-size: .95rem;
    text-decoration: none; cursor: pointer;
    transition: background-color .15s ease, transform .1s ease;
  }
  .btn:hover { background: var(--orange-btn-hover); }
  .btn:active { transform: translateY(1px); }
  .btn.navy { background: var(--navy); }
  .btn.navy:hover { background: #050552; }
  .btn.sm { min-height: 38px; padding: 0 14px; font-size: .85rem; border-radius: 8px; }
  .btn.ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px var(--line); }
  .btn.ghost:hover { background: var(--tint); }
  .btn[aria-disabled="true"] { opacity: .45; pointer-events: none; }

  /* ---------- Status bar (buka/tutup) ---------- */
  .topbar { background: var(--surface); color: var(--ink); font-size: .85rem; border-bottom: 1px solid var(--line); transition: background-color .3s ease; }
  .topbar.is-closed { background: var(--orange-soft); color: var(--orange-btn); }
  .topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 9px; flex-wrap: wrap; }
  .topbar .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 8px; background: #16A34A; }
  .topbar.is-closed .dot { background: var(--orange); }
  .topbar a { text-decoration: underline; text-underline-offset: 2px; font-weight: 700; color: var(--orange-btn); }

  .site-header {
    position: sticky; top: env(safe-area-inset-top, 0px); z-index: 30;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
  }
  .site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 72px; position: relative; }
  .header-right { display: flex; align-items: center; gap: 10px; }
  .nav { display: flex; gap: 28px; }
  .nav a { text-decoration: none; font-weight: 600; font-size: .95rem; padding: 6px 0; border-bottom: 3px solid transparent; }
  .nav a:hover { border-bottom-color: var(--orange); }
  .nav-toggle {
    display: none; width: 46px; height: 46px; border-radius: 10px; border: 2px solid var(--line);
    background: var(--surface); cursor: pointer; flex: none;
    align-items: center; justify-content: center;
  }
  .nav-toggle svg { width: 22px; height: 22px; }
  .nav-toggle .icon-close { display: none; }
  .nav-toggle[aria-expanded="true"] .icon-open { display: none; }
  .nav-toggle[aria-expanded="true"] .icon-close { display: block; }
  .mobile-nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--surface); border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 32px rgba(8,8,60,.12);
    padding: 8px 0 14px;
  }
  .mobile-nav.open { display: block; }
  .mobile-nav a {
    display: block; padding: 14px 4px; margin-inline: 20px;
    text-decoration: none; font-weight: 700; font-size: 1.02rem;
    border-bottom: 1px solid var(--line);
  }
  .mobile-nav a:last-child { border-bottom: 0; }
  .cart-btn {
    position: relative; display: inline-flex; align-items: center; gap: 10px;
    min-height: 46px; padding: 0 18px;
    border: 0; border-radius: 10px; background: var(--orange-btn); color: #fff;
    font-family: var(--font-display); font-weight: 700; font-size: .92rem; cursor: pointer;
    transition: background-color .15s ease;
  }
  .cart-btn:hover { background: var(--orange-btn-hover); }
  .cart-btn svg { width: 20px; height: 20px; }
  .cart-count {
    min-width: 24px; height: 24px; padding: 0 7px; border-radius: 12px;
    background: #fff; color: var(--orange-btn);
    display: inline-grid; place-items: center; font-size: .8rem;
  }
  .cart-count.bump { animation: bump .3s ease; }
  @keyframes bump { 40% { transform: scale(1.25); } }

  /* ---------- Hero ---------- */
  .hero { position: relative; overflow: hidden; background: var(--bg); color: var(--ink); isolation: isolate; border-bottom: 1px solid var(--line); }
  .hero-gear {
    position: absolute; z-index: -1; right: -180px; bottom: -220px;
    width: 720px; height: 720px; color: var(--orange); opacity: .08;
    animation: spin 90s linear infinite;
  }
  @keyframes spin { to { transform: rotate(360deg); } }
  .hero .wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; padding-block: 64px 76px; }
  .hero h1 {
    margin: 0 0 18px;
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.05; letter-spacing: -0.025em;
    max-width: 15ch;
  }
  .hero p.lead { margin: 0 0 28px; font-size: 1.12rem; max-width: 46ch; font-weight: 500; }
  .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

  .visit-card {
    background: var(--surface); color: var(--ink);
    border-radius: 18px; padding: 26px;
    border: 1px solid var(--line);
    box-shadow: 0 20px 48px rgba(8,8,122,.12);
  }
  .visit-card .when {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 14px; border-radius: 12px; margin-bottom: 18px;
    font-weight: 700; font-size: .95rem;
  }
  .visit-card .when.open { background: #E8FBEF; color: #146C2E; }
  .visit-card .when.closed { background: var(--orange-soft); color: var(--orange-btn); }
  .visit-card .when svg { width: 20px; height: 20px; flex: none; }
  .visit-card h2 { margin: 0 0 4px; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; letter-spacing: -0.01em; }
  .hours-list { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 6px; font-size: .92rem; }
  .hours-list li { display: flex; justify-content: space-between; gap: 12px; padding: 3px 0; border-bottom: 1px dashed var(--line); }
  .hours-list li.today { font-weight: 700; color: var(--orange-btn); }
  .visit-card address { font-style: normal; color: var(--muted); font-size: .92rem; margin: 0 0 18px; }
  .visit-actions { display: grid; gap: 10px; }

  /* ---------- Trust strip ---------- */
  .strip { background: var(--surface); color: var(--ink); border-block: 1px solid var(--line); }
  .strip ul { list-style: none; margin: 0; padding: 16px 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 32px; }
  .strip li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: .95rem; }
  .strip svg { width: 22px; height: 22px; color: var(--orange); flex: none; }

  /* ---------- Sections ---------- */
  .section { padding-block: 72px; }
  .section.tint { background: var(--tint); }
  .section-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; }
  .section-head h2 { margin: 0; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.7rem, 3.4vw, 2.4rem); letter-spacing: -0.02em; line-height: 1.1; }
  .section-head p { margin: 6px 0 0; color: var(--muted); max-width: 52ch; }

  /* Kenapa dua jalur layanan */
  .modes { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .mode { border-radius: 16px; padding: 26px; border: 2px solid var(--line); background: var(--surface); }
  .mode.primary { border-color: var(--orange); background: var(--orange-soft); }
  .mode .tag { display: inline-block; font-size: .78rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: var(--orange); color: #fff; margin-bottom: 14px; }
  .mode.night .tag { background: var(--navy); }
  .mode h3 { margin: 0 0 8px; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; }
  .mode p { margin: 0 0 16px; color: var(--muted); }

  /* Kategori */
  .cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .cat {
    display: flex; align-items: center; gap: 14px; text-align: left;
    padding: 18px; border-radius: 14px; cursor: pointer;
    background: var(--surface); border: 2px solid var(--line);
    transition: border-color .15s ease, background-color .15s ease;
  }
  .cat:hover { border-color: var(--orange); }
  .cat[aria-pressed="true"] { border-color: var(--orange); background: var(--orange-soft); }
  .cat .ico-box { width: 52px; height: 52px; border-radius: 12px; background: var(--orange); color: #fff; display: grid; place-items: center; flex: none; }
  .cat .ico-box svg { width: 28px; height: 28px; }
  .cat strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1rem; line-height: 1.2; }
  .cat small { color: var(--muted); font-size: .85rem; }

  /* Toolbar */
  .toolbar { display: grid; grid-template-columns: 1.4fr auto; gap: 12px; align-items: center; margin-bottom: 14px; }
  .status { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 20px; min-height: 40px; color: var(--muted); }
  .status strong { color: var(--ink); }
  .link-btn { background: none; border: 0; padding: 6px 0; color: var(--orange-btn); font-weight: 700; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
  :root[data-theme="dark"] .link-btn { color: #FF8A57; }
  @media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .link-btn { color: #FF8A57; } }

  /* Produk */
  .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); }
  .card-art { position: relative; aspect-ratio: 4 / 3; background: var(--orange-soft); display: grid; place-items: center; color: var(--orange); }
  .card-art svg { width: 30%; height: auto; stroke-width: 1.5; }
  .badge { position: absolute; top: 12px; left: 12px; padding: 4px 10px; border-radius: 999px; background: var(--surface); color: var(--ink); font-size: .78rem; font-weight: 700; border: 1px solid var(--line); }
  .badge.ori { background: var(--navy); color: #fff; border-color: var(--navy); }
  .card-body { display: flex; flex-direction: column; gap: 6px; padding: 16px; flex: 1; }
  .card h3 { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: 1rem; line-height: 1.3; }
  .fit { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.4; }
  .card-foot { margin-top: auto; padding-top: 14px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
  .price { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em; }
  .empty { grid-column: 1 / -1; text-align: center; padding: 56px 20px; border: 2px dashed var(--line); border-radius: 14px; }
  .empty h3 { margin: 0 0 6px; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; }
  .empty p { margin: 0 0 16px; color: var(--muted); }

  /* Steps + FAQ */
  .split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
  .split h2 { margin: 0 0 24px; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.1rem); letter-spacing: -0.02em; line-height: 1.1; }
  .steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; counter-reset: s; }
  .steps li { display: grid; grid-template-columns: 52px 1fr; gap: 16px; align-items: start; counter-increment: s; }
  .steps li::before {
    content: counter(s);
    width: 52px; height: 52px; border-radius: 50%;
    display: grid; place-items: center;
    background: var(--orange); color: var(--navy);
    font-family: var(--font-display); font-weight: 800; font-size: 1.4rem;
  }
  .steps h3 { margin: 4px 0 2px; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
  .steps p { margin: 0; color: var(--muted); }
  details { border-bottom: 1px solid var(--line); }
  details:first-of-type { border-top: 1px solid var(--line); }
  summary { list-style: none; cursor: pointer; padding: 18px 40px 18px 0; position: relative; font-weight: 700; }
  summary::-webkit-details-marker { display: none; }
  summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--orange); font-weight: 600; transition: transform .2s ease; }
  details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
  details p { margin: 0 0 18px; color: var(--muted); max-width: 60ch; }

  /* CTA malam hari */
  .cta { position: relative; overflow: hidden; background: var(--tint); color: var(--ink); isolation: isolate; border-block: 1px solid var(--line); }
  .cta .wrap { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding-block: 56px; }
  .cta .eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--orange-btn); font-weight: 700; margin-bottom: 10px; font-size: .95rem; }
  .cta .eyebrow svg { width: 20px; height: 20px; }
  .cta h2 { margin: 0 0 6px; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 3.2vw, 2.3rem); letter-spacing: -0.02em; line-height: 1.15; max-width: 24ch; color: var(--ink); }
  .cta p { margin: 0; font-size: 1.05rem; font-weight: 500; max-width: 48ch; color: var(--muted); }

  /* Footer */
  .site-footer { background: var(--footer); color: #E5E5FF; padding-block: 56px 28px; }
  .foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
  .site-footer p { margin: 14px 0 0; max-width: 34ch; opacity: .85; }
  .site-footer h3 { margin: 0 0 12px; font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: #fff; }
  .site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
  .site-footer a { text-decoration: none; opacity: .9; }
  .site-footer a:hover { text-decoration: underline; opacity: 1; }
  .site-footer .hrs { display: flex; justify-content: space-between; gap: 12px; opacity: .9; }
  .copy { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.18); font-size: .88rem; opacity: .75; }

  /* Cart drawer */
  .overlay { position: fixed; inset: 0; z-index: 40; background: rgba(8,8,60,.55); opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s; }
  .overlay.open { opacity: 1; visibility: visible; }
  .drawer {
    position: fixed; z-index: 50; top: 0; right: 0; bottom: 0;
    width: min(440px, 100%);
    padding-top: env(safe-area-inset-top, 0px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: var(--surface); color: var(--ink);
    display: flex; flex-direction: column;
    transform: translateX(100%); visibility: hidden;
    transition: transform .25s ease, visibility .25s;
    box-shadow: -20px 0 50px rgba(8,8,60,.25);
  }
  .drawer.open { transform: none; visibility: visible; }
  .drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--line); }
  .drawer-head h2 { margin: 0; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; }
  .icon-btn { width: 44px; height: 44px; border-radius: 10px; border: 0; background: var(--tint); cursor: pointer; display: grid; place-items: center; }
  .icon-btn:hover { background: var(--orange-soft); }
  .icon-btn svg { width: 20px; height: 20px; }
  .drawer-note { margin: 0; padding: 12px 22px; font-size: .85rem; color: var(--muted); background: var(--tint); border-bottom: 1px solid var(--line); }
  .drawer-body { flex: 1; overflow-y: auto; padding: 8px 22px; }
  .line-item { display: grid; grid-template-columns: 56px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
  .line-art { width: 56px; height: 56px; border-radius: 10px; background: var(--orange-soft); color: var(--orange); display: grid; place-items: center; }
  .line-art svg { width: 28px; height: 28px; }
  .line-item h3 { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: .95rem; line-height: 1.3; }
  .line-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; gap: 10px; }
  .qty { display: inline-flex; align-items: center; border: 2px solid var(--line); border-radius: 10px; }
  .qty button { width: 38px; height: 38px; border: 0; background: none; cursor: pointer; font-size: 1.2rem; font-weight: 700; border-radius: 8px; }
  .qty button:hover { background: var(--tint); }
  .qty span { min-width: 28px; text-align: center; font-weight: 700; }
  .drawer-empty { padding: 48px 8px; text-align: center; color: var(--muted); }
  .drawer-empty h3 { margin: 0 0 6px; color: var(--ink); font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; }
  .drawer-empty .btn { margin-top: 14px; }
  .drawer-foot { padding: 18px 22px 22px; border-top: 1px solid var(--line); display: grid; gap: 12px; }
  .total { display: flex; justify-content: space-between; align-items: baseline; font-weight: 600; }
  .total strong { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; }
  .note { margin: 0; font-size: .85rem; color: var(--muted); }

  .toast {
    position: fixed; z-index: 60; left: 50%; bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    transform: translate(-50%, 20px); opacity: 0; pointer-events: none;
    background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 10px;
    font-weight: 600; box-shadow: 0 10px 30px rgba(8,8,60,.35);
    transition: opacity .2s ease, transform .2s ease; max-width: calc(100% - 32px);
  }
  .toast.show { opacity: 1; transform: translate(-50%, 0); }

  /* ---------- Responsive ---------- */
  @media (max-width: 1080px) {
    .grid { grid-template-columns: repeat(3, 1fr); }
    .cats { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 900px) {
    .hero .wrap { grid-template-columns: 1fr; gap: 36px; padding-block: 44px 52px; }
    .hero-gear { width: 520px; height: 520px; right: -200px; bottom: -160px; }
    .split { grid-template-columns: 1fr; gap: 48px; }
    .nav { display: none; }
    .nav-toggle { display: inline-flex; }
    .modes { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .foot-grid > :first-child { grid-column: 1 / -1; }
  }
  @media (max-width: 680px) {
    .wrap { width: min(1180px, 100% - 28px); }
    .grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .card-body { padding: 12px; }
    .card-foot { flex-direction: column; align-items: stretch; }
    .cats { grid-template-columns: 1fr 1fr; gap: 10px; }
    .cat { flex-direction: column; align-items: flex-start; gap: 10px; padding: 14px; }
    .section { padding-block: 52px; }
    .wordmark { font-size: 1.25rem; }
    .brand svg { width: 40px; height: 40px; }
    .cart-btn .label { display: none; }
    .toolbar { grid-template-columns: 1fr; }
    .strip ul { flex-direction: column; }
    .foot-grid { grid-template-columns: 1fr; }
    .topbar .wrap { flex-direction: column; align-items: flex-start; gap: 4px; }
  }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hero-gear { animation: none; }
    .drawer, .overlay, .toast, .cart-count.bump { transition: none; animation: none; }
  }