  :root {
        --green-900: #000000;
        --green-800: #0d0d0d;
        --green-700: #1a1a1a;
        --green-500: #1c7a4a;
        --lime: #e1b556;
        --gold: #e4b958;
        --cream: #f4efe4;
        --txt: #ffffff;
        --txt-dim: #b0c0b8;
        --maxw: 1200px;
        --serif: "Fraunces", Georgia, serif;
        --sans: "Montserrat", system-ui, sans-serif;
      }
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        background: linear-gradient(160deg, #000000 0%, #061a10 50%, #06170f 100%);
        color: var(--txt);
        font-family: var(--sans);
        line-height: 1.6;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
      }
      a {
        color: inherit;
        text-decoration: none;
      }
      h1,
      h2,
      h3 {
        font-family: var(--serif);
        font-weight: 600;
        line-height: 1.05;
        letter-spacing: -0.02em;
      }
      .wrap {
        max-width: var(--maxw);
        margin: 0 auto;
        padding: 0 28px;
      }
      .accent {
        color: var(--gold);
      }
      .lime {
        color: var(--lime);
      }

      /* grain / glow bg */
      .glow {
        position: fixed;
        border-radius: 50%;
        filter: blur(90px);
        z-index: -1;
        opacity: 0.5;
      }
      .glow.a {
        width: 480px;
        height: 480px;
        background: radial-gradient(circle, #1c7a4a, transparent 70%);
        top: -140px;
        right: -120px;
      }
      .glow.b {
        width: 420px;
        height: 420px;
        background: radial-gradient(circle, #6d7d20, transparent 70%);
        bottom: 10%;
        left: -160px;
        opacity: 0.35;
      }

      /* nav */
      header {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 100;
        transition: 0.3s;
      }
      header.scrolled {
        background: rgba(6, 23, 15, 0.82);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      }
      nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 78px;
      }
      .brand {
        display: flex;
        align-items: center;
        gap: 12px;
        font-family: var(--serif);
        font-weight: 600;
        font-size: 1.15rem;
        letter-spacing: 0.01em;
      }
      .brand .mark {
        width: 100px;
        height: 100px;
        margin-top: 40px;
        display: grid;
        place-items: center;
        color: var(--green-900);
        font-family: var(--serif);
        font-weight: 700;
        font-size: 1.1rem;
      }
      .nav-links {
        display: flex;
        gap: 34px;
        align-items: center;
      }
      .nav-links a {
        font-size: 0.9rem;
        color: var(--txt-dim);
        font-weight: 500;
        transition: 0.2s;
      }
      .nav-links a:hover {
        color: var(--txt);
      }
      .nav-links .btn-primary {
        color: #ffffff;
      }
      .btn {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        font-weight: 600;
        font-size: 0.92rem;
        padding: 13px 26px;
        border-radius: 100px;
        cursor: pointer;
        border: none;
        transition: 0.25s;
        font-family: var(--sans);
      }
      .btn-primary {
        background: var(--lime);
        color: #ffffff;
      }
      .btn-primary:hover {
        background: #f0c96a;
        transform: translateY(-2px);
      }
      .btn-ghost {
        background: transparent;
        color: var(--txt);
        border: 1px solid rgba(255, 255, 255, 0.2);
      }
      .btn-ghost:hover {
        border-color: var(--gold);
        color: var(--gold);
      }
      .menu-btn {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
      }
      .menu-btn span {
        width: 26px;
        height: 2px;
        background: var(--txt);
        border-radius: 2px;
      }

      /* hero */
      .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 120px 0 80px;
      }
      .hero-grid {
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        gap: 50px;
        align-items: center;
      }
      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 0.78rem;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--gold);
        font-weight: 600;
        margin-bottom: 26px;
      }
      .eyebrow::before {
        content: "";
        width: 34px;
        height: 1px;
        background: var(--gold);
      }
      .hero h1 {
        font-size: clamp(2.9rem, 6.5vw, 5.4rem);
      }
      .hero h1 em {
        font-style: italic;
        color: var(--gold);
      }
      .hero p {
        color: var(--txt-dim);
        font-size: 1.12rem;
        max-width: 480px;
        margin: 28px 0 38px;
      }
      .hero-cta {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
      }
      .hero-media {
        position: relative;
      }
      .hero-media img {
        width: 100%;
        border-radius: 24px;
        display: block;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
      }
      .hero-quote {
        position: absolute;
        bottom: -26px;
        left: -26px;
        background: var(--cream);
        color: var(--green-900);
        padding: 20px 26px;
        border-radius: 18px;
        max-width: 260px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
      }
      .hero-quote p {
        font-family: var(--serif);
        font-style: italic;
        font-size: 1.02rem;
        line-height: 1.3;
      }
      .hero-quote span {
        display: block;
        margin-top: 8px;
        font-family: var(--sans);
        font-size: 0.72rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #5a6b4e;
        font-weight: 600;
      }

      /* stat strip */
      .stats {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        margin-top: 70px;
      }
      .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        text-align: center;
      }
      .stat {
        padding: 34px 12px;
        border-left: 1px solid rgba(255, 255, 255, 0.06);
      }
      .stat:first-child {
        border-left: none;
      }
      .stat h3 {
        font-size: 2.3rem;
        color: var(--lime);
      }
      .stat p {
        font-size: 0.82rem;
        color: var(--txt-dim);
        margin-top: 4px;
        letter-spacing: 0.04em;
      }

      /* sections */
      section.pad {
        padding: 120px 0;
      }
      .sec-eyebrow {
        font-size: 0.78rem;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--gold);
        font-weight: 600;
        margin-bottom: 18px;
      }
      .sec-title {
        font-size: clamp(2rem, 4.5vw, 3.2rem);
      }

      /* about */
      .about-grid {
        display: grid;
        grid-template-columns: 0.9fr 1.1fr;
        gap: 60px;
        align-items: center;
      }
      .about-media {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.08);
      }
      .about-media img {
        width: 100%;
        display: block;
      }
      .about-body p {
        color: var(--txt-dim);
        margin-top: 18px;
        font-size: 1.04rem;
      }
      .about-body p strong {
        color: var(--txt);
        font-weight: 600;
      }

      /* pull quote */
      .pull {
        text-align: center;
        max-width: 860px;
        margin: 0 auto;
      }
      .pull h2 {
        font-size: clamp(1.9rem, 4vw, 3rem);
        font-style: italic;
      }
      .pull .by {
        margin-top: 26px;
        font-size: 0.82rem;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--gold);
        font-weight: 600;
      }

      /* mission cards */
      .cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
        margin-top: 56px;
      }
      .card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        padding: 34px;
        transition: 0.3s;
      }
      .card:hover {
        transform: translateY(-6px);
        border-color: rgba(225, 181, 86, 0.4);
        background: rgba(225, 181, 86, 0.05);
      }
      .card .num {
        font-family: var(--serif);
        font-size: 1.1rem;
        color: var(--gold);
        margin-bottom: 16px;
      }
      .card h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
      }
      .card p {
        color: var(--txt-dim);
        font-size: 0.98rem;
      }

      /* platforms / cta */
      .cta {
        background: linear-gradient(140deg, var(--green-700), var(--green-800));
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 30px;
        padding: 72px 60px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .cta h2 {
        font-size: clamp(2rem, 4.5vw, 3.2rem);
      }
      .cta p {
        color: var(--txt-dim);
        max-width: 560px;
        margin: 20px auto 36px;
        font-size: 1.06rem;
      }
      .socials {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
      }
      .social {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 15px 28px;
        border-radius: 100px;
        font-weight: 600;
        font-size: 0.95rem;
        border: 1px solid rgba(255, 255, 255, 0.16);
        transition: 0.25s;
      }
      .social:hover {
        background: var(--gold);
        color: #ffffff;
        border-color: var(--gold);
      }
      .social svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
      }

      /* footer */
      footer {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding: 44px 0 30px;
        margin-top: 40px;
      }
      .foot {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
      }
      .foot .copy {
        color: var(--txt-dim);
        font-size: 0.85rem;
      }
      .foot-nav {
        display: flex;
        gap: 26px;
      }
      .foot-nav a {
        color: var(--txt-dim);
        font-size: 0.88rem;
        transition: 0.2s;
      }
      .foot-nav a:hover {
        color: var(--gold);
      }

      /* grain texture */
      .grain {
        position: fixed;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        opacity: 0.04;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      }

      /* section heading centered */
      .sec-head {
        text-align: center;
        max-width: 640px;
        margin: 0 auto 12px;
      }
      .divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent,
          var(--gold),
          transparent
        );
        margin: 0 auto 22px;
      }

      /* partners */
      .partners {
        overflow: hidden;
        position: relative;
        padding: 26px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }
      .partners::before,
      .partners::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 140px;
        z-index: 2;
        pointer-events: none;
      }
      .partners::before {
        left: 0;
        background: linear-gradient(90deg, var(--green-900), transparent);
      }
      .partners::after {
        right: 0;
        background: linear-gradient(270deg, var(--green-900), transparent);
      }
      .marquee {
        display: flex;
        gap: 72px;
        width: max-content;
        animation: scroll 32s linear infinite;
      }
      .partners:hover .marquee {
        animation-play-state: paused;
      }
      .marquee span {
        font-family: var(--serif);
        font-size: 1.5rem;
        font-weight: 500;
        color: rgba(238, 243, 234, 0.4);
        letter-spacing: 0.02em;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        transition: 0.3s;
      }
      .marquee span:hover {
        color: var(--gold);
      }
      .marquee span::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: currentColor;
        opacity: 0.5;
      }
      @keyframes scroll {
        to {
          transform: translateX(-50%);
        }
      }

      /* testimonial */
      .testi {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 40px;
        align-items: center;
        max-width: 900px;
        margin: 0 auto;
        padding: 48px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 26px;
      }
      .testi-avatar {
        width: 110px;
        height: 110px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid var(--gold);
      }
      .testi blockquote {
        font-family: var(--serif);
        font-style: italic;
        font-size: clamp(1.25rem, 2.4vw, 1.7rem);
        line-height: 1.35;
      }
      .testi .who {
        margin-top: 16px;
        font-family: var(--sans);
        font-style: normal;
        font-size: 0.82rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--gold);
        font-weight: 600;
      }

      /* reveal */
      .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition: 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
      }
      .reveal.on {
        opacity: 1;
        transform: none;
      }

      @media (max-width: 900px) {
        .nav-links {
          position: fixed;
          inset: 78px 0 auto 0;
          flex-direction: column;
          background: rgba(6, 23, 15, 0.97);
          padding: 30px;
          gap: 22px;
          transform: translateY(-150%);
          transition: 0.35s;
          border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .nav-links.open {
          transform: none;
        }
        .menu-btn {
          display: flex;
        }
        .hero-grid,
        .about-grid {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .hero-media {
          order: -1;
        }
        .stats-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .stat:nth-child(3) {
          border-left: none;
        }
        .cards {
          grid-template-columns: 1fr;
        }
        .cta {
          padding: 50px 26px;
        }
        section.pad {
          padding: 84px 0;
        }
        .testi {
          grid-template-columns: 1fr;
          text-align: center;
          padding: 36px 26px;
          gap: 24px;
        }
        .testi-avatar {
          margin: 0 auto;
        }
        .marquee span {
          font-size: 1.2rem;
        }
      }
      /* language bar (desktop) */
      .lang-bar {
        background: rgba(6, 23, 15, 0.6);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }
      .lang-bar-inner {
        display: flex;
        justify-content: center;
        padding: 7px 28px;
      }
      .lang-switcher {
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .lang-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
        font-family: var(--sans);
        font-size: 0.78rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        color: var(--txt-dim);
        padding: 4px 8px;
        border-radius: 6px;
        transition: 0.2s;
      }
      .lang-btn .flag {
        font-size: 1.1rem;
        line-height: 1;
      }
      .lang-btn:hover,
      .lang-btn.active {
        color: var(--gold);
        background: rgba(228, 185, 88, 0.1);
      }
      .lang-sep {
        color: rgba(255, 255, 255, 0.15);
        font-size: 0.7rem;
      }
      /* mobile lang select */
      .lang-select-mobile {
        display: none;
        background: rgba(255,255,255,0.07);
        border: 1px solid rgba(255,255,255,0.15);
        border-radius: 8px;
        color: var(--txt);
        font-size: 1.2rem;
        padding: 4px 6px;
        cursor: pointer;
        outline: none;
        appearance: none;
        -webkit-appearance: none;
        text-align: center;
      }
      @media (max-width: 900px) {
        .lang-bar { display: none; }
        .lang-select-mobile { display: block; }
        nav {
          position: relative;
        }
        .brand {
          position: absolute;
          left: 50%;
          transform: translateX(-50%);
        }
      }

      /* videos section */
      .videos-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 52px;
      }
      .video-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        overflow: hidden;
        transition: 0.3s;
      }
      .video-card:hover {
        border-color: rgba(225, 181, 86, 0.4);
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
      }
      .video-wrap {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
      }
      .video-wrap iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: none;
        display: block;
      }
      @media (max-width: 900px) {
        .videos-grid {
          grid-template-columns: 1fr;
        }
      }

      /* footer credits */
      .foot {
        align-items: center;
      }
      .foot-credits {
        text-align: center;
      }
      .foot-credits-label {
        font-size: 0.7rem;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--txt-dim);
        margin-bottom: 10px;
        font-weight: 500;
      }
      .foot-credits-logos {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
      }
      .credit-logo-link {
        opacity: 0.6;
        transition: 0.2s;
      }
      .credit-logo-link:hover {
        opacity: 1;
      }
      .credit-logo-placeholder {
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 1;
        font-family: var(--sans);
        font-weight: 700;
        font-size: 0.88rem;
        letter-spacing: 0.04em;
        color: var(--txt);
        border: 1px solid rgba(255,255,255,0.15);
        border-radius: 8px;
        padding: 7px 12px;
      }
      .credit-logo-placeholder span {
        font-size: 0.6rem;
        font-weight: 400;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--txt-dim);
        margin-top: 2px;
      }
      .credit-divider {
        color: var(--txt-dim);
        font-size: 0.8rem;
      }
      /* swap placeholder for real logo image */
      .credit-logo-img {
        height: 32px;
        width: auto;
        display: block;
        filter: brightness(0) invert(1);
      }
      @media (max-width: 900px) {
        .foot {
          flex-direction: column;
          text-align: center;
          gap: 28px;
        }
      }

      /* shop section */
      .shop-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
      }
      .shop-media {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
      }
      .shop-media img {
        width: 100%;
        display: block;
        transition: transform 0.6s ease;
      }
      .shop-media:hover img {
        transform: scale(1.04);
      }
      .shop-badge {
        position: absolute;
        top: 20px;
        left: 20px;
        background: linear-gradient(135deg, var(--gold), #c8892a);
        color: #fff;
        font-family: var(--sans);
        font-weight: 700;
        font-size: 0.72rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        padding: 8px 18px;
        border-radius: 100px;
        box-shadow: 0 4px 20px rgba(228, 185, 88, 0.4);
      }
      .shop-body .sec-title em {
        font-style: italic;
        color: var(--gold);
      }
      .shop-body > p {
        color: var(--txt-dim);
        margin-top: 20px;
        font-size: 1.04rem;
        line-height: 1.7;
      }
      .shop-items {
        display: flex;
        gap: 16px;
        margin-top: 28px;
      }
      .shop-item {
        display: flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 12px 20px;
        font-size: 0.92rem;
        font-weight: 600;
        letter-spacing: 0.04em;
      }
      .shop-item-icon {
        font-size: 1.3rem;
      }
      .shop-cta {
        margin-top: 36px;
      }
      .shop-soon-label {
        display: block;
        font-size: 0.78rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--txt-dim);
        font-weight: 600;
        margin-bottom: 12px;
      }
      .shop-email-row {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
      }
      .shop-email-input {
        flex: 1;
        min-width: 180px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 100px;
        padding: 13px 22px;
        color: var(--txt);
        font-family: var(--sans);
        font-size: 0.9rem;
        outline: none;
        transition: 0.2s;
      }
      .shop-email-input::placeholder {
        color: var(--txt-dim);
      }
      .shop-email-input:focus {
        border-color: var(--gold);
        background: rgba(228, 185, 88, 0.06);
      }
      .shop-email-btn {
        white-space: nowrap;
      }
      @media (max-width: 900px) {
        .shop-grid {
          grid-template-columns: 1fr;
          gap: 36px;
        }
      }

      /* whatsapp floating button */
      .wa-btn {
        position: fixed;
        bottom: 28px;
        right: 28px;
        z-index: 999;
        width: 58px;
        height: 58px;
        background: #25d366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
        transition: transform 0.25s, box-shadow 0.25s;
      }
      .wa-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6);
      }
      .wa-btn svg {
        width: 30px;
        height: 30px;
        fill: #ffffff;
      }
      @media (max-width: 900px) {
        .wa-btn {
          bottom: 20px;
          right: 20px;
          width: 52px;
          height: 52px;
        }
      }

      /* ── shop section redesign ── */
      .shop-section {
        position: relative;
        margin: 0 0 120px;
        overflow: hidden;
      }
      .shop-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 620px;
      }
      .shop-img-side {
        position: relative;
        overflow: hidden;
      }
      .shop-main-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.8s ease;
      }
      .shop-section:hover .shop-main-img {
        transform: scale(1.04);
      }
      .shop-img-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, transparent 60%, #000000 100%),
                    linear-gradient(to bottom, transparent 70%, rgba(0,0,0,0.6) 100%);
      }
      .shop-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 70px 64px 70px 56px;
        background: linear-gradient(135deg, rgba(14,51,32,0.35) 0%, rgba(0,0,0,0) 100%);
        border-left: 1px solid rgba(228, 185, 88, 0.15);
      }
      .shop-badge-top {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(228, 185, 88, 0.1);
        border: 1px solid rgba(228, 185, 88, 0.35);
        border-radius: 100px;
        padding: 6px 16px;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 22px;
        width: fit-content;
      }
      .shop-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--gold);
        box-shadow: 0 0 8px var(--gold);
        animation: pulse-dot 1.8s ease-in-out infinite;
      }
      @keyframes pulse-dot {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.5; transform: scale(0.7); }
      }
      .shop-big-title {
        font-size: clamp(2.4rem, 4.5vw, 3.8rem);
        line-height: 1.05;
        letter-spacing: -0.02em;
        margin-top: 10px;
      }
      .shop-big-title em {
        font-style: italic;
        color: var(--gold);
      }
      .shop-desc {
        color: var(--txt-dim);
        font-size: 1.04rem;
        line-height: 1.7;
        margin-top: 20px;
        max-width: 440px;
      }
      @media (max-width: 900px) {
        .shop-inner {
          grid-template-columns: 1fr;
          min-height: auto;
        }
        .shop-img-side {
          height: 300px;
        }
        .shop-img-overlay {
          background: linear-gradient(to bottom, transparent 50%, #000000 100%);
        }
        .shop-content {
          padding: 40px 28px;
          border-left: none;
          border-top: 1px solid rgba(228, 185, 88, 0.15);
        }
      }

      /* ── video carousel ── */
      .video-featured {
        margin-top: 48px;
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid rgba(228, 185, 88, 0.2);
        box-shadow: 0 30px 80px rgba(0,0,0,0.6);
      }
      .video-featured .video-wrap {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
      }
      .video-featured .video-wrap iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: none;
      }
      .video-carousel-wrap {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 28px;
      }
      .video-carousel-track-outer {
        flex: 1;
        overflow: hidden;
        border-radius: 16px;
      }
      .video-carousel-track {
        display: flex;
        gap: 20px;
        transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
        will-change: transform;
      }
      .carousel-video-card {
        flex: 0 0 calc(33.333% - 14px);
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 16px;
        overflow: hidden;
        cursor: pointer;
        transition: border-color 0.25s, transform 0.25s;
      }
      .carousel-video-card:hover {
        border-color: rgba(228, 185, 88, 0.4);
        transform: translateY(-4px);
      }
      .carousel-video-card.active {
        border-color: var(--gold);
        box-shadow: 0 0 20px rgba(228, 185, 88, 0.2);
      }
      .carousel-video-card .video-wrap {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        pointer-events: none;
      }
      .carousel-video-card .video-wrap iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: none;
      }
      .carousel-arrow {
        flex-shrink: 0;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,0.15);
        background: rgba(255,255,255,0.05);
        color: var(--txt);
        font-size: 1.1rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.2s;
      }
      .carousel-arrow:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: #000;
      }
      .carousel-arrow:disabled {
        opacity: 0.25;
        cursor: default;
      }
      .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 18px;
      }
      .carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255,255,255,0.2);
        cursor: pointer;
        transition: 0.2s;
        border: none;
        padding: 0;
      }
      .carousel-dot.active {
        background: var(--gold);
        transform: scale(1.3);
      }
      @media (max-width: 900px) {
        .carousel-video-card {
          flex: 0 0 calc(100% - 0px);
        }
        .video-carousel-wrap {
          gap: 8px;
        }
      }
