/* ── RESET & BASE ─────────────────────────────────── */
      *,
      *::before,
      *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
        font-size: 16px;
      }

      :root {
        --burg: #5a1f2b;
        --burg2: #3d1520;
        --cream: #f4efe8;
        --off: #fafaf8;
        --dark: #0e0d0c;
        --stone: #e4ddd4;
        --mid: #9a9590;
        --light: #cdc8c1;
        --nav-h: 64px;
      }

      body {
        background: var(--off);
        color: var(--dark);
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 300;
        overflow-x: hidden;
        cursor: none;
      }

      /* ── CUSTOM CURSOR ───────────────────────────────── */
      .cursor {
        position: fixed;
        width: 8px;
        height: 8px;
        background: var(--burg);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition:
          transform 0.1s ease,
          width 0.25s ease,
          height 0.25s ease,
          background 0.25s ease;
      }
      .cursor.hover {
        width: 32px;
        height: 32px;
        background: transparent;
        border: 1px solid var(--burg);
      }

      /* ── SECTION INTRO ───────────────────────────────── */
      .section-intro {
        padding: 120px 80px;
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 80px;
        align-items: start;
        border-bottom: 1px solid rgba(0, 0, 0, 0.07);
      }
      .section-label {
        font-size: 9px;
        letter-spacing: 0.6em;
        text-transform: uppercase;
        color: var(--mid);
        font-weight: 300;
        padding-top: 6px;
      }
      .section-body h2 {
        font-family: "Plus Jakarta Sans", serif;
        font-size: clamp(36px, 4vw, 60px);
        font-weight: 300;
        line-height: 1.15;
        letter-spacing: -0.01em;
        color: var(--dark);
        margin-bottom: 32px;
      }
      .section-body h2 em {
        font-style: italic;
        color: var(--burg);
      }
      .section-body p {
        font-size: 13px;
        line-height: 2.1;
        color: var(--mid);
        max-width: 520px;
        font-weight: 300;
        letter-spacing: 0.03em;
      }


      /* ── SINGLE PRODUCT ──────────────────────────────── */
      .single-product {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        min-height: 680px;
      }
      .single-product-image {
        background: #f8f7f4;
        position: relative;
        overflow: hidden;
        border-right: 1px solid rgba(0, 0, 0, 0.06);
      }
      .single-product-image::before {
        content: "";
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(
          45deg,
          transparent 0px,
          transparent 8px,
          rgba(255, 255, 255, 0.03) 8px,
          rgba(255, 255, 255, 0.03) 9px
        );
      }
      .single-product-placeholder {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 14px;
      }
      .single-product-placeholder span {
        font-size: 9px;
        letter-spacing: 0.4em;
        text-transform: uppercase;
        color: rgba(0, 0, 0, 0.2);
        font-weight: 200;
      }
      .single-product-info {
        padding: 80px 80px 80px 72px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: var(--off);
        border-top: 1px solid rgba(0, 0, 0, 0.06);
      }
      .single-product-tag {
        font-size: 9px;
        letter-spacing: 0.4em;
        text-transform: uppercase;
        color: var(--mid);
        font-weight: 200;
        margin-bottom: 20px;
      }
      .single-product-name {
        font-family: "Plus Jakarta Sans", serif;
        font-size: clamp(48px, 5vw, 72px);
        font-weight: 300;
        line-height: 1;
        letter-spacing: -0.01em;
        color: var(--dark);
        margin-bottom: 32px;
      }
      .single-product-desc {
        font-size: 13px;
        line-height: 2.1;
        color: var(--mid);
        font-weight: 300;
        letter-spacing: 0.03em;
        max-width: 420px;
        margin-bottom: 48px;
      }
      .single-product-specs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        margin-bottom: 56px;
        border-top: 1px solid rgba(0, 0, 0, 0.07);
      }
      .single-spec {
        padding: 18px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.07);
      }
      .single-spec:nth-child(odd) {
        padding-right: 32px;
      }
      .single-spec span {
        display: block;
        font-size: 8.5px;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: var(--mid);
        font-weight: 200;
        margin-bottom: 6px;
      }
      .single-spec strong {
        font-family: "Plus Jakarta Sans", serif;
        font-size: 20px;
        font-weight: 300;
        color: var(--dark);
        letter-spacing: 0.03em;
      }
      .single-product-cta {
        display: inline-flex;
        align-items: center;
        gap: 16px;
        text-decoration: none;
      }
      .single-product-cta span {
        font-size: 10px;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: var(--dark);
        font-weight: 300;
      }
      .single-product-cta:hover .hero-cta-line {
        width: 80px;
      }

      /* ── SHOP BUTTONS ────────────────────────────────── */
      .shop-cta {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
      .shop-label {
        font-size: 9px;
        letter-spacing: 0.35em;
        text-transform: uppercase;
        color: var(--mid);
        font-weight: 200;
      }
      .shop-buttons {
        display: flex;
        gap: 12px;
      }
      .shop-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 13px 22px;
        border-radius: 2px;
        text-decoration: none;
        font-size: 11px;
        letter-spacing: 0.12em;
        font-weight: 400;
        font-family: "Jost", sans-serif;
        transition:
          opacity 0.2s ease,
          transform 0.2s ease;
      }
      .shop-btn:hover {
        opacity: 0.85;
        transform: translateY(-1px);
      }
      .shop-btn svg {
        flex-shrink: 0;
      }
      .shop-btn.tokopedia {
        background: #42b549;
        color: white;
      }
      .shop-btn.shopee {
        background: #ee4d2d;
        color: white;
      }

      /* ── PHILOSOPHY ──────────────────────────────────── */
      #philosophy {
        background: var(--cream);
        padding: 140px 80px;
      }
      .philosophy-text {
        max-width: 640px;
      }
      .philosophy-text .section-label {
        margin-bottom: 32px;
        display: block;
      }
      .philosophy-text h2 {
        font-family: "Plus Jakarta Sans", serif;
        font-size: clamp(52px, 6vw, 88px);
        font-weight: 300;
        color: var(--dark);
        line-height: 1.1;
        margin-bottom: 36px;
        font-style: italic;
        letter-spacing: -0.01em;
      }
      .philosophy-text p {
        font-size: 12.5px;
        line-height: 2.2;
        font-weight: 200;
        letter-spacing: 0.04em;
        margin-bottom: 48px;
      }
      .philosophy-detail {
        display: flex;
        gap: 40px;
        padding-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
      }
      .philosophy-detail-item {
      }
      .philosophy-detail-item span {
        display: block;
        font-size: 9px;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.2);
        margin-bottom: 8px;
        font-weight: 200;
      }
      .philosophy-detail-item strong {
        font-family: "Plus Jakarta Sans", serif;
        font-size: 24px;
        font-weight: 300;
        color: var(--dark);
        letter-spacing: 0.03em;
      }

      /* ── FOOTER ───────────────────────────────────────── */
      footer {
        background: var(--dark);
        padding: 80px 80px 48px;
      }
      .footer-top {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 60px;
        padding-bottom: 64px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        margin-bottom: 40px;
      }
      .footer-brand {
      }
      .footer-logo {
        margin-bottom: 8px;
      }
      .footer-wordmark {
        font-family: "Lexend", sans-serif;
        font-weight: 400;
        font-size: 20px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: white;
      }
      .footer-tagline {
        font-family: "Plus Jakarta Sans", serif;
        font-size: 15px;
        color: rgba(255, 255, 255, 0.4);
        font-weight: 300;
        letter-spacing: 0.05em;
        margin-bottom: 24px;
      }
      .footer-desc {
        font-size: 11px;
        line-height: 2;
        color: rgba(255, 255, 255, 0.3);
        font-weight: 200;
        letter-spacing: 0.05em;
        max-width: 240px;
      }
      .footer-col h4 {
        font-size: 8.5px;
        letter-spacing: 0.35em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.15);
        font-weight: 200;
        margin-bottom: 24px;
      }
      .footer-col ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .footer-col ul li a {
        font-size: 11.5px;
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
        font-weight: 200;
        letter-spacing: 0.05em;
        transition: color 0.2s;
      }
      .footer-col ul li a:hover {
        color: var(--cream);
      }
      .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .footer-bottom p {
        font-size: 10px;
        color: rgba(255, 255, 255, 0.15);
        font-weight: 200;
        letter-spacing: 0.1em;
      }
      .footer-bottom-links {
        display: flex;
        gap: 32px;
      }
      .footer-bottom-links a {
        font-size: 10px;
        color: rgba(255, 255, 255, 0.2);
        text-decoration: none;
        letter-spacing: 0.1em;
        font-weight: 200;
        transition: color 0.2s;
      }
      .footer-bottom-links a:hover {
        color: rgba(255, 255, 255, 0.5);
      }

      /* ── ANIMATIONS ───────────────────────────────────── */
      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(24px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      @keyframes marquee {
        from {
          transform: translateX(0);
        }
        to {
          transform: translateX(-50%);
        }
      }
      @keyframes scrollPulse {
        0%,
        100% {
          opacity: 0.3;
          transform: scaleY(1);
        }
        50% {
          opacity: 1;
          transform: scaleY(1.2);
        }
      }

      .reveal {
        opacity: 0;
        transform: translateY(32px);
        transition:
          opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
          transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .reveal.visible {
        opacity: 1;
        transform: translateY(0);
      }