:root {
      --forest-900: #0A2E21;
      --forest-800: #123C2B;
      --forest-700: #1B5139;
      --ivory: #F7F4EA;
      --surface: #FFFCF5;
      --cream: color-mix(in srgb, var(--ivory) 74%, var(--gold-soft) 26%);
      --forest-pale: color-mix(in srgb, var(--ivory) 88%, var(--forest-700) 12%);
      --gold: #D8B96E;
      --gold-soft: #EAD9A7;
      --text-dark: #17382B;
      --text-muted: #54685D;
      --text-light: #F7F4EA;
      --line: color-mix(in srgb, var(--forest-700) 16%, var(--ivory) 84%);
      --line-gold: var(--gold);
      --graphite: var(--text-dark);
      --emerald: var(--forest-700);
      --emerald-fresh: var(--forest-800);
      --warm: var(--ivory);
      --white: #ffffff;
      --mist: var(--forest-pale);
      --slate: var(--text-muted);
      --champagne: var(--gold);
      --nav-h: 4.5rem;
      --danger: #8C2F2F;
      --ease: cubic-bezier(.2, .7, .2, 1);
      --hover: .22s var(--ease);
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { overflow-x: clip; }
    body {
      margin: 0;
      font-family: "Plus Jakarta Sans", sans-serif;
      background: var(--warm);
      color: var(--graphite);
      font-size: 1rem;
      line-height: 1.7;
      text-rendering: optimizeLegibility;
    }
    img { max-width: 100%; display: block; }
    [hidden] { display: none !important; }
    [id] { scroll-margin-top: 5.75rem; }
    ::selection { background: var(--gold-soft); color: var(--forest-900); }

    :focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 3px;
      box-shadow: 0 0 0 5px rgba(27, 81, 57, 0.28);
    }
    a, button { -webkit-tap-highlight-color: transparent; }
    button, a { cursor: pointer; }

    .font-display { font-family: Manrope, sans-serif; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--slate);
    }
    .eyebrow::before {
      content: "";
      width: 1.4rem;
      height: 1px;
      background: var(--gold);
    }
    .eyebrow-light { color: rgba(255,255,255,0.72); }
    .eyebrow-light::before { background: var(--champagne); }

    .display {
      font-family: Manrope, sans-serif;
      font-weight: 700;
      letter-spacing: -0.04em;
      line-height: 1.02;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      height: var(--nav-h);
      background: rgba(247, 244, 234, 0.94);
      border-bottom: 1px solid var(--gold);
      backdrop-filter: blur(14px);
    }
    .site-header.is-scrolled {
      box-shadow: 0 8px 28px rgba(23, 35, 33, 0.06);
    }
    .nav-link {
      position: relative;
      color: var(--text-dark);
      font-size: 0.92rem;
      font-weight: 600;
      text-decoration: none;
      transition: color var(--hover);
    }
    .nav-link:hover { color: var(--forest-700); }
    .nav-link[aria-current="true"] { color: var(--forest-900); }
    .nav-link[aria-current="true"]::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -0.55rem;
      height: 2px;
      border-radius: 2px;
      background: var(--gold);
    }

    .logo-mark {
      width: 2.25rem;
      height: 2.25rem;
      flex: none;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      min-height: 44px;
      padding: 0.7rem 1.15rem;
      border-radius: 12px;
      border: 1px solid transparent;
      font-weight: 700;
      font-size: 0.95rem;
      line-height: 1.2;
      text-decoration: none;
      transition: background-color var(--hover), color var(--hover), border-color var(--hover), transform var(--hover);
    }
    .btn svg { transition: transform var(--hover); }
    .btn:hover svg { transform: translateX(3px); }
    .btn-primary { background: var(--forest-700); color: var(--ivory); }
    .btn-primary:hover { background: var(--forest-800); }
    .btn-gold { background: var(--gold); color: var(--forest-900); }
    .btn-gold:hover { background: var(--gold-soft); }
    .btn-ghost {
      background: transparent;
      color: var(--text-dark);
      border-color: var(--line);
    }
    .btn-ghost:hover { border-color: var(--gold); color: var(--forest-700); }
    .btn-light { background: var(--surface); color: var(--text-dark); }
    .btn-light:hover { background: var(--ivory); }
    .btn-line {
      background: transparent;
      color: var(--ivory);
      border-color: rgba(247, 244, 234, 0.55);
    }
    .btn-line:hover { border-color: var(--gold); color: var(--gold-soft); }

    .lift {
      transition: transform var(--hover), border-color var(--hover), box-shadow var(--hover);
    }
    .lift:hover {
      transform: translateY(-4px);
      border-color: var(--gold);
      box-shadow: 0 14px 34px rgba(10, 46, 33, 0.08);
    }

    .media {
      position: relative;
      overflow: hidden;
      background: var(--graphite);
    }
    .hero-visual {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      min-width: 0;
    }
    .hero-portrait {
      background: transparent;
      width: 100%;
    }
    .hero-portrait > img {
      position: static;
      display: block;
      width: 100%;
      height: auto;
      object-fit: contain;
      object-position: center center;
    }
    .hero-visual .hero-card {
      position: static;
      width: 100%;
      max-width: none;
      margin: 0;
    }
    .media > img,
    .media > .photo-fallback {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .media-natural {
      background: transparent;
    }
    .media-natural > img,
    .media-natural > .photo-fallback {
      position: static;
      display: block;
      width: 100%;
      height: auto;
      max-height: none;
      object-fit: contain;
      object-position: center center;
    }
    .photo-fallback {
      background:
        linear-gradient(165deg, var(--forest-800) 0%, var(--forest-900) 58%, #071910 100%);
    }
    .photo-fallback::before {
      content: "";
      position: absolute;
      left: 12%;
      top: 32%;
      width: 46%;
      height: 28%;
      border: 1px solid rgba(217, 198, 161, 0.75);
      border-radius: 10px;
      background:
        linear-gradient(#d9c6a1, #d9c6a1) 14% 32% / 42% 2px no-repeat,
        linear-gradient(rgba(255,255,255,.4), rgba(255,255,255,.4)) 14% 52% / 68% 1px no-repeat,
        linear-gradient(rgba(255,255,255,.28), rgba(255,255,255,.28)) 14% 68% / 50% 1px no-repeat;
    }
    .photo-fallback::after {
      content: "Ilustrasi visual";
      position: absolute;
      left: 1rem;
      bottom: 1rem;
      color: rgba(255,255,255,0.72);
      font-size: 0.68rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .hero {
      background: linear-gradient(180deg, var(--forest-900) 0%, var(--forest-800) 100%);
      color: var(--text-light);
    }
    .hero-soft { color: rgba(247, 244, 234, 0.84); }
    .hero-meta { color: rgba(247, 244, 234, 0.68); }
    .hero-rule { border-color: rgba(234, 217, 167, 0.35); }
    .hero-card {
      background: var(--surface);
      border: 1px solid var(--gold);
      color: var(--text-dark);
      box-shadow: 0 16px 40px rgba(10, 46, 33, 0.18);
    }
    .hero-card-icon {
      background: var(--forest-pale);
      color: var(--forest-700);
    }

    .ticket {
      background: var(--line);
      border: 1px solid var(--line);
      border-radius: 20px;
      box-shadow: 0 16px 40px rgba(10, 46, 33, 0.04);
    }
    .shortcut {
      min-height: 72px;
      min-width: 0;
      text-decoration: none;
      color: inherit;
      background: var(--surface);
      transition: background-color var(--hover);
    }
    .shortcut > span:first-child { min-width: 0; }
    .shortcut > span:first-child span { line-height: 1.3; }
    .shortcut-icon {
      display: grid;
      place-items: center;
      flex: none;
      color: var(--forest-700);
    }
    .shortcut:hover { background: var(--ivory); }
    .shortcut:hover .arrow-nudge { transform: translateX(4px); }
    .arrow-nudge { transition: transform var(--hover), color var(--hover); }

    .service-card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 22px;
      box-shadow: 0 10px 30px rgba(10, 46, 33, 0.04);
    }
    .svc-no {
      font-family: Manrope, sans-serif;
      font-weight: 700;
      letter-spacing: -0.04em;
      color: var(--forest-700);
      font-size: 1.8rem;
      line-height: 1;
    }

    .special-row {
      border-bottom: 1px solid rgba(216, 185, 110, 0.28);
      text-decoration: none;
      color: inherit;
    }
    .special-row > span:nth-child(2) { min-width: 0; flex: 1; }
    .special-title { transition: color var(--hover); }
    .special-row:hover .special-title { color: var(--gold-soft); }
    .special-row:hover .arrow-nudge { transform: translateX(4px); color: var(--gold); }

    .adv-no {
      color: var(--forest-700);
    }
    .adv-no::after {
      content: "";
      display: block;
      width: 2rem;
      height: 2px;
      margin-top: 0.55rem;
      background: var(--gold);
    }

    .process-rail {
      position: relative;
    }
    .process-rail::before {
      content: "";
      position: absolute;
      z-index: 0;
      pointer-events: none;
    }
    @media (min-width: 1024px) {
      .process-rail::before {
        left: 1.35rem;
        right: 1.35rem;
        top: 1.35rem;
        height: 0;
        border-top: 1.5px dashed var(--forest-700);
      }
    }
    @media (max-width: 1023px) {
      .process-rail::before {
        left: 1.35rem;
        top: 1.35rem;
        bottom: 1.35rem;
        width: 0;
        border-left: 1.5px dashed var(--forest-700);
      }
    }
    .step-index {
      width: 2.7rem;
      height: 2.7rem;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: var(--forest-pale);
      border: 1.5px solid var(--forest-700);
      color: var(--forest-700);
      transition: box-shadow var(--hover);
      font-family: Manrope, sans-serif;
      font-weight: 700;
      position: relative;
      z-index: 1;
    }

    .process-step-reveal:hover .step-index { box-shadow: 0 0 0 4px rgba(216, 185, 110, 0.35); }
    .acc-item {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 18px;
      transition: border-color var(--hover), box-shadow var(--hover);
    }
    .acc-item.is-open {
      border-color: var(--gold);
      box-shadow: 0 8px 24px rgba(10, 46, 33, 0.05);
    }
    .acc-item.is-open .acc-btn { color: var(--forest-700); }
    .acc-btn {
      width: 100%;
      text-align: left;
      background: transparent;
      border: 0;
      color: inherit;
      min-height: 64px;
      padding: 1rem 1.15rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      font-weight: 600;
      font-size: 1.02rem;
    }
    .acc-panel { padding: 0 1.15rem 1.15rem; }
    .chev { transition: transform var(--hover); flex: none; }
    .acc-item.is-open .chev { transform: rotate(45deg); }

    .field, .select, .area {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: var(--surface);
      color: var(--text-dark);
      font: inherit;
      padding: 0.8rem 0.9rem;
      min-height: 48px;
    }
    .area { min-height: 140px; resize: vertical; }
    .field::placeholder, .area::placeholder { color: var(--text-muted); }
    .field:focus, .select:focus, .area:focus {
      outline: 2px solid var(--gold);
      outline-offset: 2px;
      border-color: var(--gold);
    }
    .field[aria-invalid="true"], .select[aria-invalid="true"], .area[aria-invalid="true"] {
      border-color: var(--danger);
    }
    .err { color: var(--danger); font-size: 0.82rem; min-height: 1.1rem; }

    .pay-cell {
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #fff;
      min-height: 84px;
      display: grid;
      place-items: center;
      padding: 0.85rem 1rem;
      transition: transform var(--hover), border-color var(--hover), box-shadow var(--hover);
    }
    .pay-cell:hover {
      transform: translateY(-3px);
      border-color: var(--gold);
      box-shadow: 0 10px 24px rgba(10, 46, 33, 0.06);
    }
    .pay-logo,
    .pay-mark {
      display: block;
      height: 36px;
      width: auto;
      max-width: 100%;
      object-fit: contain;
    }
    .pay-fallback {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: var(--graphite);
    }

    .map-card {
      border-radius: 20px;
      border: 1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(247,244,234,0.2), rgba(247,244,234,0.92)),
        repeating-linear-gradient(90deg, transparent 0 22px, rgba(27,81,57,0.08) 22px 23px),
        repeating-linear-gradient(0deg, transparent 0 22px, rgba(10,46,33,0.05) 22px 23px),
        var(--ivory);
      min-height: 180px;
    }

    .float-dock {
      position: fixed;
      right: 1rem;
      bottom: max(1rem, env(safe-area-inset-bottom));
      z-index: 40;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 0.7rem;
    }
    .music-float {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 52px;
      padding: 0;
      border: 0;
      border-radius: 999px;
      background: var(--ivory);
      color: var(--forest-900);
      border: 2px solid var(--gold);
      box-shadow: 0 10px 24px rgba(10, 46, 33, 0.28);
    }
    .music-float:hover { background: var(--gold-soft); }
    .music-float.is-playing { background: var(--gold); }
    .music-float .icon-pause { display: none; }
    .music-float.is-playing .icon-play { display: none; }
    .music-float.is-playing .icon-pause { display: block; }
    .wa-float {
      position: static;
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      min-height: 52px;
      padding: 0 1rem 0 0.85rem;
      border-radius: 999px;
      background: #1faf5a;
      color: #fff;
      text-decoration: none;
      font-weight: 700;
      box-shadow: 0 10px 24px rgba(20, 90, 50, 0.22);
    }
    .wa-float:hover { background: #18964c; }
    @media (max-width: 767px) {
      .wa-float { width: 52px; height: 52px; padding: 0; justify-content: center; }
      .wa-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
      .submit-row { width: calc(100% - 4.25rem); }
    }

    .overlay {
      position: fixed;
      inset: 0;
      z-index: 80;
      display: grid;
      place-items: end center;
      padding: 1rem;
      padding-bottom: max(1rem, env(safe-area-inset-bottom));
      background: rgba(10, 46, 33, 0.48);
    }
    @media (min-width: 640px) {
      .overlay { place-items: center; }
    }
    .modal-panel, .feature-panel {
      width: min(36rem, 100%);
      max-height: 90vh;
      max-height: 90dvh;
      overflow-y: auto;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 22px;
      box-shadow: 0 24px 60px rgba(23, 35, 33, 0.18);
    }
    .feature-overlay { z-index: 90; }
    .modal-top {
      position: sticky;
      top: 0;
      z-index: 2;
      display: flex;
      justify-content: flex-end;
      padding: 0.75rem 0.75rem 0;
      background: linear-gradient(var(--surface) 70%, rgba(255,252,245,0));
    }
    .icon-btn {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      border: 1px solid var(--line);
      background: var(--surface);
      color: var(--text-dark);
      display: grid;
      place-items: center;
    }
    .icon-btn:hover { border-color: var(--gold); color: var(--forest-700); }

    .mobile-nav {
      position: fixed;
      inset: 0;
      z-index: 60;
      background: var(--warm);
      display: flex;
      flex-direction: column;
      padding: 0.75rem 1.15rem 1.5rem;
    }
    .mobile-link[aria-current="true"] { box-shadow: inset 0 -2px 0 var(--gold); color: var(--forest-700); }
    .mobile-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 52px;
      border-bottom: 1px solid var(--line);
      text-decoration: none;
      color: var(--graphite);
      font-family: Manrope, sans-serif;
      font-size: 1.35rem;
      font-weight: 700;
      letter-spacing: -0.03em;
    }

    html.scroll-lock, html.scroll-lock body { overflow: hidden; }

    .badge {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: var(--forest-pale);
      color: var(--forest-700);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      padding: 0.35rem 0.7rem;
    }

    .plate-grid {
      display: grid;
      gap: 0.85rem;
      grid-template-columns: 1fr;
    }
    @media (min-width: 640px) {
      .plate-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (min-width: 1024px) {
      .plate-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    }
    .plate-card {
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
      min-height: 100%;
      padding: 1.05rem 1.05rem 1.15rem;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 16px;
    }
    .plate-badge {
      display: inline-flex;
      align-self: center;
      align-items: center;
      justify-content: center;
      width: fit-content;
      min-width: 3.25rem;
      min-height: 2.5rem;
      padding: 0.2rem 0.7rem;
      border: 2px solid var(--gold);
      border-radius: 8px;
      background: var(--forest-900);
      color: var(--ivory);
      font-family: Manrope, sans-serif;
      font-size: 1.15rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      line-height: 1;
    }
    .plate-card h3 { margin: 0; }
    .plate-regions {
      margin: 0;
      color: var(--text-muted);
      font-size: 0.92rem;
      line-height: 1.55;
    }
    .plate-card.is-preview .plate-regions {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
      overflow: hidden;
    }
    .plate-back,
    .plate-more {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      color: var(--forest-700);
      font-weight: 700;
      text-decoration: none;
    }
    .plate-back:hover,
    .plate-more:hover { color: var(--forest-900); }
    .plate-back svg,
    .plate-more svg { transition: transform var(--hover); }
    .plate-back:hover svg { transform: translateX(-3px); }
    .plate-more:hover svg { transform: translateX(3px); }
    .plate-search-wrap { display: block; margin-top: 1.5rem; }
    .plate-search {
      width: min(100%, 28rem);
      min-height: 48px;
      padding: 0.7rem 1rem;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: var(--surface);
      color: var(--text-dark);
      font: inherit;
    }
    .plate-empty { margin-top: 1.25rem; color: var(--text-muted); }

    .bg-ivory { background: var(--ivory); }
    .bg-cream { background: var(--cream); }
    .bg-pale { background: var(--forest-pale); }
    .section-forest { background: var(--forest-900); color: var(--text-light); }
    .text-muted { color: var(--text-muted); }
    .text-forest { color: var(--forest-700); }
    .text-gold { color: var(--gold); }
    .border-line { border-color: var(--line); }
    .identity-card {
      background: var(--ivory);
      border: 1px solid var(--gold);
      border-radius: 20px;
      box-shadow: 0 12px 32px rgba(10, 46, 33, 0.06);
    }
    .contact-card {
      background: var(--surface);
      border: 1px solid var(--line);
      box-shadow: 0 12px 36px rgba(10, 46, 33, 0.05);
    }
    .site-footer { background: var(--forest-900); color: var(--text-light); }
    .footer-label { color: var(--gold-soft); }
    .footer-copy { color: rgba(247, 244, 234, 0.72); }
    .footer-link {
      color: rgba(247, 244, 234, 0.86);
      text-decoration: none;
      transition: color var(--hover);
    }
    .footer-link:hover { color: var(--gold); }
    .footer-rule { border-top: 1px solid rgba(216, 185, 110, 0.22); }

    .hp-field {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation: none !important;
        transition: none !important;
      }
    }
