﻿
    :root {
      
      --c-black: #0A0A0A;
      --c-black-90: #111111;
      --c-black-80: #1A1A1A;
      --c-black-70: #222222;
      --c-graphite: #2A2A2A;
      --c-line: rgba(255, 255, 255, 0.08);
      --c-line-strong: rgba(255, 255, 255, 0.18);
      --c-gold: #F5B800;
      --c-gold-deep: #F5B800;
      --c-gold-soft: #F5B800;
      --c-logo-gold: #FECF21;
      --c-cream: #F2EDE4;
      --c-mute: #8A8A8A;
      --c-mute-2: #555555;

      
      --f-display: 'Playfair Display', 'Times New Roman', serif;
      --f-sans: 'Inter', system-ui, -apple-system, sans-serif;
      --f-impact: 'Bebas Neue', 'Inter', sans-serif;

      
      --container: 1280px;
      --gutter: clamp(20px, 4vw, 56px);

      
      --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
      --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    }

    
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
    
    html.lenis, html.lenis body { height: auto; }
    .lenis.lenis-smooth { scroll-behavior: auto !important; }
    .lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
    .lenis.lenis-stopped { overflow: hidden; }
    .lenis.lenis-scrolling iframe { pointer-events: none; }
    body {
      background: var(--c-black);
      color: var(--c-cream);
      font-family: var(--f-sans);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
      min-height: 100vh;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button { background: none; border: none; color: inherit; font-family: inherit; cursor: pointer; }
    ul, ol { list-style: none; }
    ::selection { background: var(--c-gold); color: var(--c-black); }

    
    ::-webkit-scrollbar { width: 10px; height: 10px; }
    ::-webkit-scrollbar-track { background: var(--c-black); }
    ::-webkit-scrollbar-thumb { background: var(--c-graphite); border-radius: 6px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--c-gold-soft); }

    
    .loader {
      position: fixed; inset: 0; z-index: 9999;
      background: var(--c-black);
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 10px;
    }
    .loader__logo-shell {
      position: relative;
      width: clamp(180px, 22vw, 290px);
      --loader-progress: 0%;
    }
    .loader__logo-base,
    .loader__logo-fill img {
      width: 100%;
      height: auto;
      object-fit: contain;
      display: block;
    }
    .loader__logo-base {
      opacity: 0.28;
      filter: grayscale(1) brightness(0.55) sepia(0.3);
    }
    .loader__logo-fill {
      position: absolute;
      inset: 0;
      clip-path: inset(0 calc(100% - var(--loader-progress)) 0 0);
      -webkit-clip-path: inset(0 calc(100% - var(--loader-progress)) 0 0);
      will-change: clip-path;
    }
    .loader__logo-fill img {
      filter: drop-shadow(0 0 16px rgba(245, 184, 0, 0.2));
    }
    .loader__percent {
      font-family: var(--f-display);
      font-size: clamp(14px, 1.5vw, 19px);
      letter-spacing: 0.1em;
      color: rgba(242, 237, 228, 0.82);
      min-width: 86px;
      text-align: center;
      font-variant-numeric: tabular-nums;
      line-height: 1;
      text-shadow: 0 0 14px rgba(245, 184, 0, 0.14);
    }
    body.loaded .loader { opacity: 0; pointer-events: none; transition: opacity .8s ease; }

    
    .container {
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 var(--gutter);
    }
    .eyebrow {
      font-family: var(--f-sans);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--c-gold);
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }
    .eyebrow::before {
      content: ''; width: 28px; height: 1px; background: var(--c-gold);
    }
    .h-display {
      font-family: var(--f-display);
      font-weight: 500;
      line-height: 1;
      letter-spacing: -0.02em;
    }
    .word-italic { font-style: italic; font-weight: 400; color: var(--c-gold); }

    
    .reveal { opacity: 0; transform: translateY(40px); }
    .reveal-img { clip-path: inset(100% 0 0 0); }

    
    .nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 22px 0;
      transition: background 0.5s var(--ease-out), padding 0.4s var(--ease-out), border-color 0.5s ease;
      border-bottom: 1px solid transparent;
    }
    .nav.scrolled {
      background: rgba(10, 10, 10, 0.78);
      backdrop-filter: blur(18px) saturate(140%);
      -webkit-backdrop-filter: blur(18px) saturate(140%);
      padding: 14px 0;
      border-bottom-color: var(--c-line);
    }
    .nav__inner {
      display: flex; align-items: center; justify-content: space-between; gap: 24px;
    }
    .nav__brand {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }
    .nav__brand img {
      height: 48px;
      width: auto;
      max-width: min(280px, 58vw);
      object-fit: contain;
      flex-shrink: 0;
      display: block;
      transition: height 0.4s var(--ease-out);
    }
    .nav.scrolled .nav__brand img { height: 52px; }
    .nav__links {
      display: flex; align-items: center; gap: 40px;
      font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
    }
    .nav__links a {
      position: relative;
      transition: color 0.3s ease;
    }
    .nav__links a::after {
      content: ''; position: absolute; left: 0; bottom: -6px;
      width: 0; height: 1px; background: var(--c-gold);
      transition: width 0.4s var(--ease-out);
    }
    .nav__links a:hover { color: var(--c-gold); }
    .nav__links a:hover::after { width: 100%; }
    .nav__cta {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 10px 20px;
      background: var(--c-gold);
      color: var(--c-black);
      font-size: 12px; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      border-radius: 999px;
      transition: transform 0.4s var(--ease-out), background 0.3s ease;
    }
    .nav__cta:hover { background: var(--c-cream); transform: translateY(-2px); }
    .nav__burger { display: none; }
    @media (max-width: 900px) {
      .nav { padding: 14px 0; }
      .nav.scrolled { padding: 10px 0; }
      .nav__links { display: none; }
      .nav__cta { display: none; }
      .nav__burger {
        display: flex; flex-direction: column; gap: 5px; padding: 8px;
        border: 1px solid var(--c-line-strong);
        border-radius: 10px;
        background: rgba(0, 0, 0, 0.35);
        z-index: 140;
      }
      .nav__burger span {
        width: 22px; height: 1.5px; background: var(--c-cream);
        transition: transform 0.25s ease, opacity 0.25s ease;
      }
      .nav__burger[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
      }
      .nav__burger[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
      }
      .nav__burger[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
      }
      .nav.is-open .nav__links {
        display: flex;
        position: absolute;
        top: calc(100% + 8px);
        left: 16px;
        right: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 14px 16px;
        border-radius: 14px;
        border: 1px solid var(--c-line-strong);
        background: rgba(10, 10, 10, 0.96);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        z-index: 130;
      }
      .nav.is-open .nav__links a {
        font-size: 13px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }
    }

    
    .trust-strip {
      position: relative;
      z-index: 3;
      padding-top: 74px;
      padding-bottom: 0;
      background:
        linear-gradient(180deg, rgba(6, 6, 6, 0.9), rgba(6, 6, 6, 0.78)),
        radial-gradient(65% 110% at 50% 0%, rgba(245, 184, 0, 0.08), transparent 74%);
    }
    .trust-strip::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 20px;
      pointer-events: none;
      background: linear-gradient(180deg, rgba(8, 8, 8, 0), rgba(8, 8, 8, 0.55));
    }
    .trust-strip .container {
      max-width: none;
      padding-left: 26px;
      padding-right: 26px;
    }
    .trust-strip__inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px 18px;
      padding: 10px 0 12px;
      border-top: 1px solid rgba(245, 184, 0, 0.14);
      border-bottom: 1px solid rgba(245, 184, 0, 0.1);
      background: rgba(4, 4, 4, 0.32);
    }
    .trust-item {
      min-height: auto;
      padding: 0;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-align: left;
      border-right: 0;
    }
    .trust-item h3 {
      margin: 0;
      color: var(--c-logo-gold);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      line-height: 1;
      white-space: nowrap;
    }
    .trust-item h3::after {
      content: "•";
      margin-left: 8px;
      color: rgba(255, 255, 255, 0.35);
    }
    .trust-item p {
      margin: 0;
      color: #ffffff;
      font-size: 10px;
      letter-spacing: 0.05em;
      line-height: 1;
      text-transform: uppercase;
      white-space: nowrap;
    }
    @media (max-width: 1100px) {
      .trust-strip .container {
        padding-left: 16px;
        padding-right: 16px;
      }
      .trust-strip__inner {
        justify-content: flex-start;
      }
    }
    @media (max-width: 900px) {
      .trust-strip {
        padding-top: 66px;
      }
      .trust-strip__inner { gap: 8px 14px; }
    }
    @media (max-width: 768px) {
      .trust-strip {
        padding-top: 62px;
        padding-bottom: 6px;
      }
      .trust-strip::after {
        height: 34px;
        background: linear-gradient(180deg, rgba(8, 8, 8, 0) 0%, rgba(8, 8, 8, 0.42) 62%, rgba(8, 8, 8, 0.7) 100%);
      }
      .trust-strip .container {
        padding-left: 12px;
        padding-right: 12px;
      }
      .trust-strip__inner {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(2, auto);
        gap: 8px;
        padding: 7px 2px 8px;
        overflow: hidden;
        scrollbar-width: none;
        border-top-color: rgba(245, 184, 0, 0.1);
        border-bottom: 0;
        background: linear-gradient(180deg, rgba(4, 4, 4, 0.28) 0%, rgba(4, 4, 4, 0.08) 100%);
      }
      .trust-strip__inner::-webkit-scrollbar {
        display: none;
      }
      .trust-item {
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        border: 1px solid rgba(245, 184, 0, 0.28);
        border-radius: 999px;
        background: rgba(0, 0, 0, 0.44);
        padding: 7px 10px 6px;
        max-width: none;
        width: 100%;
      }
      .trust-item:nth-child(1) { grid-column: 1; grid-row: 1; }
      .trust-item:nth-child(2) { grid-column: 2; grid-row: 1; }
      .trust-item:nth-child(3) { grid-column: 1; grid-row: 2; }
      .trust-item:nth-child(4) { grid-column: 2; grid-row: 2; }
      .trust-item h3 {
        font-size: 9.5px;
        letter-spacing: 0.06em;
        line-height: 1.1;
        text-align: center;
        white-space: normal;
        text-wrap: balance;
        color: var(--c-logo-gold);
      }
      .trust-item h3::after {
        display: none;
      }
      .trust-item p {
        display: block;
        margin: 0;
        font-size: 8px;
        letter-spacing: 0.04em;
        line-height: 1.1;
        color: #ffffff;
        text-transform: uppercase;
        white-space: normal;
        text-align: center;
        text-wrap: balance;
      }
    }

    
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex; align-items: center;
      padding: 96px 0 80px;
      background: var(--c-black);
    }
    .hero__bg {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 100vh;
      z-index: 0;
    }
    .hero__bg img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center;
    }
    .hero__bg-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to right,
        rgba(10, 10, 10, 0.96) 0%,
        rgba(10, 10, 10, 0.86) 30%,
        rgba(10, 10, 10, 0.55) 55%,
        rgba(10, 10, 10, 0.2) 80%,
        rgba(10, 10, 10, 0.1) 100%);
    }
    .hero__grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(to right, var(--c-line) 1px, transparent 1px),
        linear-gradient(to bottom, var(--c-line) 1px, transparent 1px);
      background-size: 96px 96px;
      mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
      -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
      opacity: 0.35;
      pointer-events: none;
    }
    .hero__inner {
      position: relative; z-index: 2;
      width: 100%;
    }
    .hero__content { max-width: 720px; }
    .hero__title {
      font-family: var(--f-display);
      font-weight: 500;
      font-size: clamp(44px, 6.3vw, 84px);
      line-height: 0.95;
      letter-spacing: -0.03em;
      color: var(--c-cream);
      margin-top: 28px;
    }
    .hero__title .line { display: block; overflow: hidden; }
    .hero__title .line > span { display: inline-block; }
    .hero__title em {
      font-style: italic;
      font-weight: 400;
      color: var(--c-gold);
      position: relative;
    }
    .hero__title em::after {
      content: ''; position: absolute; left: 0; bottom: 0.06em;
      width: 100%; height: 0.04em; background: var(--c-gold);
      transform: scaleX(0); transform-origin: left;
      transition: transform 1.2s var(--ease-out) 1.6s;
    }
    body.loaded .hero__title em::after { transform: scaleX(1); }

    .hero__lede {
      max-width: 520px;
      margin-top: 36px;
      font-size: clamp(17px, 1.45vw, 22px);
      line-height: 1.7;
      color: rgba(242, 237, 228, 0.72);
    }
    .hero__assist {
      max-width: 560px;
      margin-top: 18px;
      font-size: clamp(15px, 1.15vw, 18px);
      line-height: 1.65;
      color: rgba(242, 237, 228, 0.82);
    }
    .hero__actions {
      display: flex; gap: 16px; flex-wrap: wrap;
      margin-top: 2px;
    }
    .btn {
      display: inline-flex; align-items: center; gap: 12px;
      padding: 18px 32px;
      font-size: 13px; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase;
      border-radius: 999px;
      transition: transform 0.4s var(--ease-out), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
      cursor: pointer;
    }
    .btn-primary {
      background: var(--c-gold);
      color: var(--c-black);
      box-shadow: 0 10px 30px -10px rgba(245, 184, 0, 0.45);
    }
    .btn-primary:hover { background: var(--c-cream); transform: translateY(-3px); box-shadow: 0 14px 40px -10px rgba(245, 184, 0, 0.6); }
    .btn-ghost {
      background: transparent;
      color: var(--c-cream);
      border: 1px solid var(--c-line-strong);
    }
    .btn-ghost:hover { border-color: var(--c-gold); color: var(--c-gold); }
    .btn .arrow {
      width: 16px; height: 16px; flex-shrink: 0;
      transition: transform 0.3s var(--ease-out);
    }
    .btn:hover .arrow { transform: translateX(4px); }

    .hero__stats {
      display: flex; gap: 48px; flex-wrap: wrap;
      margin-top: 80px;
      padding-top: 40px;
      border-top: 0;
    }
    .hero__stat .num {
      font-family: var(--f-display);
      font-size: 40px; font-weight: 600;
      color: var(--c-gold);
      line-height: 1;
    }
    .hero__stat .lbl {
      margin-top: 8px;
      font-size: 11px; font-weight: 500;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--c-mute);
    }


    .hero__scroll {
      position: absolute;
      bottom: 32px; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 12px;
      font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
      color: var(--c-mute);
      z-index: 5;
    }
    .hero__scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--c-gold), transparent); position: relative; overflow: hidden; }
    .hero__scroll-line::after {
      content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 30%;
      background: var(--c-gold);
      animation: scrollLine 2s ease infinite;
    }
    @keyframes scrollLine { 0% { transform: translateY(-100%) } 100% { transform: translateY(330%) } }

    @media (max-width: 900px) {
      .hero { padding: 120px 0 60px; }
      .hero__actions { margin-top: 18px; }
      .hero__bg-overlay {
        background: linear-gradient(to right,
          rgba(10, 10, 10, 0.96) 0%,
          rgba(10, 10, 10, 0.9) 55%,
          rgba(10, 10, 10, 0.65) 85%,
          rgba(10, 10, 10, 0.4) 100%);
      }
      .hero__stats { gap: 32px; margin-top: 56px; }
      .hero__scroll { display: none; }
    }

    .message-content {
      background: var(--c-black-90);
      padding: clamp(80px, 10vw, 120px) 0;
      overflow: hidden;
    }
    .message-content .container {
      max-width: 1180px;
    }
    .msg-wrapper {
      display: grid;
      gap: clamp(24px, 2vw, 36px);
      max-width: 1180px;
      margin: 0 auto;
    }
    .first-message,
    .second-message {
      font-family: var(--f-display);
      font-size: clamp(52px, 7vw, 82px);
      line-height: 0.98;
      letter-spacing: -0.04em;
      color: var(--c-cream);
      max-width: 12ch;
    }
    .msg-text-scroll {
      position: relative;
      overflow: hidden;
      clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    }
    .msg-text-scroll-inner {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 1rem 1.6rem;
      background: var(--c-gold);
      border-radius: 10px;
      min-width: 220px;
    }
    .msg-text-scroll-inner h2 {
      margin: 0;
      font-family: var(--f-display);
      font-size: clamp(50px, 8vw, 84px);
      line-height: 1;
      letter-spacing: -0.03em;
      color: var(--c-black);
    }
    .message-content p {
      font-size: 1.05rem;
      line-height: 1.85;
      color: rgba(242, 237, 228, 0.72);
      max-width: 760px;
    }
    @media (max-width: 900px) {
      .message-content { padding: clamp(56px, 8vw, 80px) 0; }
      .first-message,
      .second-message { font-size: clamp(38px, 10vw, 56px); }
      .msg-text-scroll-inner { padding: 0.9rem 1.4rem; }
      .msg-text-scroll-inner h2 { font-size: clamp(36px, 9vw, 58px); }
      .message-content p { font-size: 0.98rem; }
    }

    .carousel {
      position: relative;
      overflow: hidden;
      background: #000;
      padding: 0;
    }
    .carousel .container {
      width: 100vw;
      max-width: none;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      padding: 0;
    }
    .carousel__container {
      position: relative;
      overflow: hidden;
      border-radius: 0;
      background: #000;
      border: 0;
      backdrop-filter: none;
      padding: 0;
      margin: 0;
      width: 100%;
      height: 100svh;
      min-height: 100svh;
      aspect-ratio: auto;
    }
    .carousel__slide-track {
      display: flex;
      transition: transform 0.8s var(--ease-out);
      will-change: transform;
      height: 100%;
    }
    .carousel__slide {
      min-width: 100%;
      flex-shrink: 0;
      height: 100%;
      background: #000;
    }
    .carousel__media {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      background: #000;
    }
    .carousel__nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 5;
      width: 48px;
      height: 48px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      background: rgba(0, 0, 0, 0.45);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
    }
    .carousel__nav--prev { left: 18px; }
    .carousel__nav--next { right: 18px; }
    .carousel__nav svg { width: 20px; height: 20px; }
    .carousel__pagination {
      position: absolute;
      left: 50%;
      bottom: 14px;
      transform: translateX(-50%);
      z-index: 6;
      display: flex;
      gap: 8px;
      align-items: center;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.26);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }
    .carousel__dot {
      width: 22px;
      height: 4px;
      border: 0;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.42);
      transition: transform 0.25s ease, background-color 0.25s ease;
    }
    .carousel__dot.active {
      background: var(--c-gold);
      transform: scaleX(1.08);
    }
    .carousel__nav:hover:not(:disabled) {
      transform: translateY(-50%) scale(1.06);
      background: rgba(0, 0, 0, 0.62);
      border-color: rgba(255, 255, 255, 0.38);
    }
    .carousel__nav:disabled {
      opacity: 0.28;
      cursor: not-allowed;
    }
    @media (hover: hover) and (pointer: fine) {
      .carousel__nav {
        opacity: 0;
        pointer-events: none;
      }
      .carousel__container:hover .carousel__nav {
        opacity: 1;
        pointer-events: auto;
      }
      .carousel__container:hover .carousel__nav:disabled {
        pointer-events: none;
      }
    }
    @media (max-width: 900px) {
      .carousel__container {
        height: 100svh;
        min-height: 100svh;
      }
      .carousel__nav {
        width: 42px;
        height: 42px;
        opacity: 1;
        pointer-events: auto;
      }
      .carousel__nav--prev { left: 10px; }
      .carousel__nav--next { right: 10px; }
      .carousel__pagination {
        bottom: 10px;
        padding: 6px 10px;
        gap: 6px;
      }
      .carousel__dot {
        width: 16px;
        height: 4px;
      }
    }

    
    .stack-cards {
      position: relative;
      min-height: 120svh;
      background: linear-gradient(180deg, #080808 0%, #050505 100%);
      border-top: 1px solid var(--c-line);
      border-bottom: 1px solid var(--c-line);
      overflow: hidden;
    }
    .stack-cards .container {
      position: relative;
      min-height: 120svh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: clamp(24px, 3vw, 40px);
      padding: clamp(60px, 8vw, 110px) 0;
    }
    .stack-cards__head {
      position: relative;
      top: auto;
      left: auto;
      width: min(1100px, 92vw);
      transform: none;
      z-index: 6;
      text-align: center;
      pointer-events: none;
      padding: 0 16px;
    }
    .stack-cards__eyebrow {
      margin-bottom: 12px;
      color: rgba(255, 255, 255, 0.58);
      font-size: clamp(11px, 1vw, 13px);
      letter-spacing: 0.24em;
      text-transform: uppercase;
      font-weight: 600;
    }
    .stack-cards__title {
      font-family: var(--f-display);
      font-size: clamp(34px, 5vw, 64px);
      letter-spacing: -0.03em;
      color: var(--c-cream);
      line-height: 1;
    }
    .stack-cards__lead {
      margin-top: clamp(12px, 1.4vw, 18px);
      font-size: clamp(14px, 1.25vw, 20px);
      color: rgba(255, 255, 255, 0.78);
      letter-spacing: 0.01em;
      max-width: 46ch;
      margin-inline: auto;
    }
    .stack-cards__title em {
      color: var(--c-gold);
      font-style: italic;
      font-weight: 400;
    }
    .stack-cards__stage {
      position: relative;
      left: auto;
      right: auto;
      top: auto;
      transform: none;
      z-index: 3;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-left: clamp(70px, 11vw, 210px);
      perspective: 1200px;
    }
    .stack-card {
      position: relative;
      width: clamp(220px, 22vw, 384px);
      aspect-ratio: 9 / 16;
      border-radius: clamp(18px, 2vw, 34px);
      overflow: hidden;
      border: 1.5px solid #8F7D5F;
      box-shadow: 0 26px 52px -26px rgba(0, 0, 0, 0.72);
      background: #111;
    }
    .stack-card + .stack-card { margin-left: clamp(-180px, -9vw, -110px); }
    .stack-card--1 { transform: rotate(-10deg) translateY(-5%); }
    .stack-card--2 { transform: rotate(4deg); }
    .stack-card--3 { transform: rotate(-4deg) translateY(-5%); }
    .stack-card--4 { transform: rotate(4deg) translateY(5%); }
    .stack-card--5 { transform: rotate(-10deg); }
    .stack-card--6 { transform: rotate(4deg) translateY(5%); }
    .stack-card img,
    .stack-card video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: saturate(1.05);
    }
    .stack-cards__actions {
      position: relative;
      left: auto;
      bottom: auto;
      transform: none;
      z-index: 4;
      display: flex;
      justify-content: center;
    }
    @media (max-width: 900px) {
      .stack-cards { min-height: auto; }
      .stack-cards .container {
        min-height: auto;
        padding: 54px 0 28px;
        gap: 20px;
      }
      .stack-cards__head {
        position: relative;
        top: 0;
        left: auto;
        width: auto;
        transform: none;
        padding: 8px 20px 0;
      }
      .stack-cards__eyebrow {
        margin-bottom: 10px;
        letter-spacing: 0.26em;
      }
      .stack-cards__title {
        font-size: clamp(46px, 12vw, 58px);
        line-height: 0.95;
      }
      .stack-cards__lead {
        max-width: 22ch;
        margin-inline: auto;
        font-size: clamp(13px, 4.4vw, 18px);
      }
      .stack-cards__stage {
        position: relative;
        top: auto;
        transform: none;
        min-height: auto;
        padding: 8px 10px 0;
        justify-content: center;
        overflow: hidden;
        scrollbar-width: none;
      }
      .stack-cards__stage::-webkit-scrollbar { display: none; }
      .stack-card {
        width: clamp(96px, 21vw, 128px);
        border-radius: 24px;
        border-width: 1px;
      }
      .stack-card + .stack-card { margin-left: clamp(-44px, -9.5vw, -34px); }
      .stack-card--1 { transform: rotate(-11deg) translateY(2%); }
      .stack-card--2 { transform: rotate(4deg) translateY(-2%); }
      .stack-card--3 { transform: rotate(-4deg) translateY(0); }
      .stack-card--4 { transform: rotate(4deg) translateY(2%); }
      .stack-card--5 { transform: rotate(-8deg) translateY(1%); }
      .stack-card--6 {
        transform: rotate(6deg) translateY(4%);
        display: none;
      }
      .stack-cards__actions {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        margin-top: 6px;
        padding: 0 18px 14px;
      }
    }

    
    .marquee {
      padding: 42px 0;
      border-top: 1px solid var(--c-line);
      border-bottom: 1px solid var(--c-line);
      background: var(--c-black-90);
      overflow: hidden;
      position: relative;
    }
    .marquee::before, .marquee::after {
      content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
      pointer-events: none;
    }
    .marquee::before { left: 0; background: linear-gradient(to right, var(--c-black-90), transparent); }
    .marquee::after { right: 0; background: linear-gradient(to left, var(--c-black-90), transparent); }
    .marquee__track {
      display: flex; gap: 80px;
      width: max-content;
      will-change: transform;
    }
    .marquee__item {
      display: flex; align-items: center; gap: clamp(58px, 7vw, 100px);
      white-space: nowrap;
    }
    .marquee__logo {
      height: clamp(56px, 6.2vw, 86px);
      width: auto;
      max-width: clamp(180px, 20vw, 320px);
      object-fit: contain;
      opacity: 0.9;
      
      filter: none;
      transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s var(--ease-out);
    }
    .marquee__logo--light {
      filter: brightness(0) invert(1) contrast(1.04);
    }
    .marquee__logo:hover {
      opacity: 1;
      filter: saturate(1.06) contrast(1.03);
      transform: scale(1.06);
    }
    .marquee__logo--light:hover {
      filter: brightness(0) invert(1) contrast(1.12);
    }
    .scrollbar-none { -ms-overflow-style: none; scrollbar-width: none; }
    .scrollbar-none::-webkit-scrollbar { display: none; }

    
    .section { padding: clamp(80px, 10vw, 160px) 0; position: relative; }
    .section__head {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 64px;
      align-items: end;
      margin-bottom: 80px;
    }
    .section__title {
      font-family: var(--f-display);
      font-weight: 500;
      font-size: clamp(40px, 5.4vw, 76px);
      line-height: 1;
      letter-spacing: -0.02em;
      color: var(--c-cream);
    }
    .section__title em { font-style: italic; color: var(--c-gold); font-weight: 400; }
    .section__lede {
      font-size: clamp(15px, 1.1vw, 17px);
      line-height: 1.7;
      color: rgba(242, 237, 228, 0.65);
      max-width: 480px;
      justify-self: end;
    }
    @media (max-width: 900px) {
      .section { padding: clamp(44px, 10vw, 68px) 0; }
      .section__head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }
      .section__lede { justify-self: start; }
    }

    
    .manifesto {
      min-height: 100svh;
      padding: 0;
      background: var(--c-black);
      position: relative;
      display: flex;
      align-items: center;
    }
    .manifesto .container {
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-top: clamp(78px, 9vw, 118px);
      padding-bottom: clamp(64px, 7vw, 94px);
    }
    .manifesto__text {
      font-family: var(--f-display);
      font-weight: 400;
      font-size: clamp(28px, 4.4vw, 64px);
      line-height: 1.18;
      letter-spacing: -0.015em;
      color: var(--c-mute-2);
      max-width: 1100px;
    }
    .manifesto__text .word {
      display: inline-block;
      transition: color 0.6s ease;
    }
    .manifesto__text .highlight { color: var(--c-cream); }
    .manifesto__text em { font-style: italic; color: var(--c-gold); font-weight: 400; }
    .manifesto__sig {
      margin-top: clamp(38px, 5vw, 72px);
      display: flex; align-items: center; gap: 16px;
      font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
      color: var(--c-mute);
    }
    .manifesto__sig::before { content: ''; width: 40px; height: 1px; background: var(--c-gold); }
    @media (max-width: 900px) {
      .manifesto {
        min-height: auto;
        display: block;
        padding: clamp(72px, 12vw, 112px) 0;
      }
      .manifesto .container {
        min-height: auto;
        display: block;
        padding-top: 0;
        padding-bottom: 0;
      }
      .manifesto__sig { margin-top: 36px; }
    }

    
    .section.categories {
      padding-top: clamp(44px, 5.5vw, 72px);
    }
    .categories__grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 16px;
      grid-auto-rows: minmax(180px, auto);
    }
    .cat {
      position: relative;
      overflow: hidden;
      border-radius: 6px;
      background: var(--c-black-80);
      cursor: pointer;
      isolation: isolate;
      border: 0;
      padding: 0;
      text-align: left;
      width: 100%;
      font: inherit;
      color: inherit;
    }
    .cat__img {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      transform: scale(1.02);
      transition: transform 1s var(--ease-out), filter 0.6s ease;
      filter: grayscale(20%) brightness(0.65);
    }
    .cat::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.92) 100%);
      z-index: 1;
    }
    .cat__body {
      position: relative; z-index: 2;
      height: 100%;
      padding: 28px;
      display: flex; flex-direction: column; justify-content: space-between;
    }
    .cat__num {
      font-family: var(--f-sans);
      font-size: 11px;
      letter-spacing: 0.32em;
      color: var(--c-gold);
      font-weight: 500;
    }
    .cat__title {
      font-family: var(--f-impact);
      font-size: clamp(28px, 3.2vw, 52px);
      letter-spacing: 0.04em;
      color: var(--c-cream);
      line-height: 1;
    }
    .cat__cta {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--c-gold);
      margin-top: 16px;
      opacity: 0; transform: translateY(8px);
      transition: opacity 0.4s ease, transform 0.4s var(--ease-out), color 0.3s ease;
    }
    .cat__cta svg { stroke: var(--c-gold); }
    .cat:hover .cat__img,
    .cat:focus-visible .cat__img { transform: scale(1.08); filter: grayscale(0%) brightness(0.85); }
    .cat:hover .cat__cta,
    .cat:focus-visible .cat__cta { opacity: 1; transform: translateY(0); }
    .cat:hover,
    .cat:focus-visible { box-shadow: 0 30px 60px -20px rgba(245,184,0,0.18); outline: none; }

    .cat--lg { grid-column: span 7; grid-row: span 2; }
    .cat--md { grid-column: span 5; grid-row: span 1; }
    .cat--sm { grid-column: span 5; grid-row: span 1; }
    .cat--wide { grid-column: span 6; grid-row: span 1; }
    .cat--mid { grid-column: span 6; grid-row: span 1; }
    .cat--third { grid-column: span 4; grid-row: span 1; }

    @media (max-width: 900px) {
      .categories__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
      .cat--lg, .cat--md, .cat--sm, .cat--wide, .cat--mid, .cat--third { grid-column: span 1; grid-row: span 1; }
      .cat__cta { opacity: 1; transform: none; }
    }

    
    .editorial {
      background: var(--c-black-90);
      border-top: 1px solid var(--c-line);
      border-bottom: 1px solid var(--c-line);
    }
    .editorial__rows { display: grid; gap: clamp(80px, 10vw, 140px); }
    .editorial__row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 6vw, 96px);
      align-items: center;
    }
    .editorial__row.reverse { direction: rtl; }
    .editorial__row.reverse > * { direction: ltr; }

    .editorial__media {
      aspect-ratio: 4 / 5;
      overflow: hidden;
      border-radius: 6px;
      position: relative;
    }
    .editorial__media img {
      width: 100%; height: 100%; object-fit: cover;
      transform: scale(1.04);
      transition: transform 1.2s var(--ease-out);
    }
    .editorial__row:hover .editorial__media img { transform: scale(1.0); }

    .editorial__tag {
      font-family: var(--f-sans);
      font-size: 11px; font-weight: 500;
      letter-spacing: 0.32em; text-transform: uppercase;
      color: var(--c-gold);
      margin-bottom: 20px;
      display: inline-block;
    }
    .editorial__title {
      font-family: var(--f-display);
      font-weight: 500;
      font-size: clamp(36px, 4.8vw, 64px);
      line-height: 1.05;
      letter-spacing: -0.02em;
      color: var(--c-cream);
    }
    .editorial__title em { font-style: italic; color: var(--c-gold); font-weight: 400; }
    .editorial__copy {
      margin-top: 24px;
      font-size: 16px;
      line-height: 1.75;
      color: rgba(242, 237, 228, 0.65);
      max-width: 460px;
    }
    .editorial__meta {
      display: flex; gap: 32px;
      margin-top: 36px;
      padding-top: 24px;
      border-top: 1px solid var(--c-line);
    }
    .editorial__meta .k { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--c-mute); }
    .editorial__meta .v { font-family: var(--f-display); font-size: 20px; color: var(--c-cream); margin-top: 4px; }
    .editorial__cta {
      display: inline-flex; align-items: center; gap: 10px;
      margin-top: 36px;
      font-size: 12px; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--c-cream);
      padding-bottom: 4px;
      border-bottom: 1px solid var(--c-gold);
      transition: color 0.3s ease, border-color 0.3s ease, gap 0.3s ease;
    }
    .editorial__cta:hover { color: var(--c-gold); gap: 16px; }
    button.editorial__cta {
      background: none;
      border: none;
      border-bottom: 1px solid var(--c-gold);
      padding: 0 0 4px;
      cursor: pointer;
      font-family: inherit;
    }

    @media (max-width: 900px) {
      .editorial__row { grid-template-columns: 1fr; gap: 32px; }
      .editorial__row.reverse { direction: ltr; }
    }

    
    .benefits {
      background: var(--c-black);
    }
    .benefits__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--c-line);
      border: 1px solid var(--c-line);
      border-radius: 4px;
      overflow: hidden;
    }
    .benefit {
      background: var(--c-black);
      padding: 48px 32px;
      transition: background 0.5s ease;
      cursor: default;
    }
    .benefit:hover { background: var(--c-black-80); }
    .benefit__icon {
      width: 48px; height: 48px;
      color: var(--c-gold);
      margin-bottom: 32px;
      transition: transform 0.5s var(--ease-out);
    }
    .benefit:hover .benefit__icon { transform: translateY(-4px) rotate(-4deg); }
    .benefit__title {
      font-family: var(--f-display);
      font-size: 22px;
      font-weight: 500;
      color: var(--c-cream);
      margin-bottom: 12px;
    }
    .benefit__copy {
      font-size: 14px;
      line-height: 1.65;
      color: rgba(242, 237, 228, 0.6);
    }
    @media (max-width: 900px) {
      .benefits__grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 560px) {
      .benefits__grid { grid-template-columns: 1fr; }
    }

    
    .delivery-strip {
      display: grid;
      grid-template-columns: auto auto auto;
      align-items: center;
      justify-content: center;
      gap: clamp(10px, 1.8vw, 18px);
      padding: clamp(16px, 2.4vw, 24px) clamp(18px, 3vw, 34px);
      margin-top: 12px;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      border-left: 1px solid rgba(255, 255, 255, 0.08);
      border-right: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 4px;
      background: rgba(255, 255, 255, 0.012);
    }
    .delivery-strip__left {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-width: 0;
    }
    .delivery-strip__title {
      font-family: var(--f-impact);
      font-size: clamp(32px, 4.1vw, 58px);
      letter-spacing: 0.015em;
      text-transform: uppercase;
      line-height: 0.9;
      color: #fff;
      white-space: nowrap;
    }
    .delivery-strip__icon {
      font-size: clamp(25px, 2.3vw, 35px);
      color: var(--c-cream);
      opacity: 0.94;
      line-height: 1;
    }
    .delivery-strip__divider {
      width: 1px;
      height: clamp(44px, 5vw, 70px);
      background: rgba(255, 255, 255, 0.46);
    }
    .delivery-strip__right {
      font-family: var(--f-sans);
      font-size: clamp(11px, 0.95vw, 14px);
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.84);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 600;
      display: grid;
      gap: 4px;
      text-align: left;
    }
    .delivery-strip__right strong {
      color: #fff;
      font-size: 1em;
      letter-spacing: 0.06em;
    }
    @media (max-width: 900px) {
      .delivery-strip {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 12px;
      }
      .delivery-strip__left { justify-content: center; }
      .delivery-strip__divider {
        width: 72%;
        height: 1px;
      }
    }

    
    .premium-carousel__head {
      max-width: 1458px;
      margin: clamp(24px, 4vw, 36px) auto 0;
      padding: 0 clamp(16px, 2vw, 24px);
      text-align: center;
    }
    .premium-carousel__eyebrow {
      font-size: 10px;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--c-gold);
    }
    .premium-carousel__title {
      margin-top: 12px;
      font-family: var(--f-display);
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 400;
      line-height: 1.1;
      color: #fff;
    }
    .premium-carousel__title em {
      font-style: italic;
      color: var(--c-gold);
    }
    .premium-carousel__lead {
      margin: 12px auto 0;
      max-width: 520px;
      font-size: 14px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.72);
    }
    .premium-carousel {
      position: relative;
      margin-top: clamp(24px, 4vw, 36px);
      max-width: 1458px;
      margin-inline: auto;
    }
    .premium-carousel__viewport {
      overflow-x: auto;
      overflow-y: visible;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding: 4px clamp(44px, 5vw, 56px) 8px;
    }
    .premium-carousel__viewport::-webkit-scrollbar { display: none; }
    .premium-carousel__track {
      display: flex;
      gap: clamp(16px, 2vw, 24px);
      width: max-content;
    }
    .premium-carousel__card {
      position: relative;
      flex: 0 0 auto;
      width: clamp(280px, 28vw, 372px);
      height: clamp(520px, 62vh, 680px);
      scroll-snap-align: start;
      border-radius: 32px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: #18181b;
      cursor: pointer;
      transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    }
    .premium-carousel__card:hover {
      border-color: var(--c-gold);
      box-shadow: 0 0 0 1px var(--c-gold), 0 18px 36px rgba(245, 184, 0, 0.22);
      transform: translateY(-2px);
    }
    .premium-carousel__media {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.45s var(--ease-out);
      background: #0a0a0a;
    }
    .premium-carousel__card:hover .premium-carousel__media {
      transform: scale(1.03);
    }
    .premium-carousel__shade {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 35%, rgba(0, 0, 0, 0.72) 100%);
      pointer-events: none;
    }
    .premium-carousel__content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
      padding: 22px;
      color: #fff;
    }
    .premium-carousel__tag {
      font-size: 10px;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.85);
    }
    .premium-carousel__headline {
      margin-top: 12px;
      max-width: 12ch;
      font-size: clamp(22px, 2vw, 28px);
      font-weight: 600;
      line-height: 1.15;
      letter-spacing: -0.03em;
    }
    .premium-carousel__plus {
      position: absolute;
      right: 22px;
      bottom: 22px;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #fff;
      color: #000;
      font-size: 28px;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
      transition: transform 0.25s ease;
    }
    .premium-carousel__plus:hover { transform: scale(1.06); }
    .premium-carousel__plus.is-unmuted {
      background: var(--c-gold);
      color: #0a0a0a;
      border-color: var(--c-gold);
    }
    .premium-carousel__nav {
      position: absolute;
      top: 50%;
      z-index: 4;
      transform: translateY(-50%);
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(0, 0, 0, 0.88);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
      transition: border-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
    }
    .premium-carousel__nav:hover:not(:disabled) {
      border-color: var(--c-gold);
      transform: translateY(-50%) scale(1.04);
    }
    .premium-carousel__nav:disabled {
      opacity: 0.28;
      cursor: not-allowed;
    }
    .premium-carousel__nav--prev { left: 4px; }
    .premium-carousel__nav--next { right: 4px; }

    .majesbag {
      position: relative;
      background: var(--c-black);
      color: #fff;
      padding: clamp(72px, 9vw, 120px) 0;
      overflow: hidden;
    }
    .majesbag__head {
      position: relative;
      z-index: 1;
      margin-bottom: clamp(48px, 6vw, 80px);
    }
    .majesbag__inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(280px, 380px) 1fr;
      gap: clamp(40px, 6vw, 96px);
      align-items: center;
    }
    .majesbag__video {
      position: relative;
      margin-inline: auto;
      max-width: 380px;
      width: 100%;
      margin-bottom: 28px;
    }
    .majesbag__video::before {
      content: '';
      position: absolute;
      inset: -28px;
      background: radial-gradient(circle, rgba(245, 184, 0, 0.22), transparent 70%);
      filter: blur(14px);
      z-index: 0;
      pointer-events: none;
    }
    .majesbag__card {
      position: relative;
      z-index: 1;
      width: 100%;
      height: clamp(440px, 56vh, 600px);
    }
    .majesbag__badge {
      position: absolute;
      z-index: 2;
      bottom: -18px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--c-gold);
      color: var(--c-black);
      padding: 12px 22px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      white-space: nowrap;
      box-shadow: 0 20px 40px -10px rgba(245, 184, 0, 0.4);
    }
    .majesbag__badge .dot { width: 6px; height: 6px; background: var(--c-black); border-radius: 50%; animation: blink 1.6s ease infinite; }
    .majesbag__steps {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 26px;
    }
    .majesbag__steps::before {
      content: '';
      position: absolute;
      left: 27px;
      top: 30px;
      bottom: 30px;
      width: 1px;
      background: linear-gradient(to bottom, var(--c-gold), rgba(245, 184, 0, 0.08));
      opacity: 0.55;
    }
    .majesbag__step {
      position: relative;
      z-index: 1;
      display: flex;
      gap: 22px;
      align-items: flex-start;
    }
    .majesbag__step-icon {
      flex: 0 0 auto;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--c-black-80);
      border: 1px solid var(--c-line-strong);
      color: var(--c-gold);
      font-size: 22px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .majesbag__step h3 {
      font-size: 17px;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: #fff;
    }
    .majesbag__step p {
      margin-top: 4px;
      font-size: 13px;
      line-height: 1.55;
      color: rgba(255, 255, 255, 0.68);
    }
    .majesbag__actions {
      margin-top: 38px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }
    .majesbag__trust {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 24px;
    }
    .majesbag__trust span {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.65);
    }
    .majesbag__trust i { color: var(--c-gold); font-size: 13px; }

    @media (max-width: 900px) {
      .majesbag__inner { grid-template-columns: 1fr; gap: 8px; }
      .majesbag__video { max-width: 320px; }
      .majesbag__card { height: 62vh; }
      .majesbag__content { max-width: 420px; margin-inline: auto; }
      .majesbag__actions { align-items: center; text-align: center; }
      .majesbag__trust { justify-content: center; }
    }

    .showcase-carousel {
      position: relative;
      margin-top: clamp(18px, 3vw, 28px);
      max-width: 1458px;
      margin-inline: auto;
    }
    .showcase-carousel__viewport {
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .showcase-carousel__viewport::-webkit-scrollbar { display: none; }
    .showcase-carousel__track {
      display: flex;
      width: max-content;
    }
    .showcase-carousel__panel {
      flex: 0 0 auto;
      width: clamp(180px, 18vw, 240px);
      height: clamp(320px, 42vh, 460px);
      scroll-snap-align: start;
      overflow: hidden;
      margin: 0;
    }
    .showcase-carousel__panel img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      transition: transform 0.45s var(--ease-out);
    }
    .showcase-carousel__panel:hover img {
      transform: scale(1.04);
    }
    .showcase-carousel__nav {
      position: absolute;
      top: 50%;
      z-index: 3;
      transform: translateY(-50%);
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: rgba(0, 0, 0, 0.78);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      transition: border-color 0.2s ease, opacity 0.2s ease;
    }
    .showcase-carousel__nav:hover:not(:disabled) { border-color: var(--c-gold); }
    .showcase-carousel__nav:disabled {
      opacity: 0.25;
      cursor: not-allowed;
    }
    .showcase-carousel__nav--prev { left: -6px; }
    .showcase-carousel__nav--next { right: -6px; }

    
    .lookbook-modal {
      position: fixed;
      inset: 0;
      z-index: 1200;
      background: rgba(0, 0, 0, 0.82);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      display: grid;
      place-items: center;
      padding: 24px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.28s ease;
    }
    .lookbook-modal.is-open {
      opacity: 1;
      pointer-events: auto;
    }
    .lookbook-modal__dialog {
      width: min(560px, 92vw);
      border-radius: 18px;
      background: #0b0b0b;
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.58);
      overflow: hidden;
    }
    .lookbook-modal__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 14px 16px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .lookbook-modal__title {
      margin: 0;
      font-family: var(--f-display);
      font-size: clamp(16px, 1.8vw, 24px);
      color: var(--c-cream);
      line-height: 1.15;
      letter-spacing: -0.015em;
      flex: 1;
      padding-right: 8px;
    }
    .lookbook-modal__counter {
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(242, 237, 228, 0.82);
      white-space: nowrap;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 999px;
      padding: 7px 10px 6px;
    }
    .lookbook-modal__close {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.16);
      background: rgba(255, 255, 255, 0.02);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: border-color 0.2s ease, color 0.2s ease;
    }
    .lookbook-modal__close:hover { border-color: var(--c-gold); color: var(--c-gold); }
    .lookbook-modal__media {
      position: relative;
      aspect-ratio: 372 / 680;
      max-height: min(78vh, 760px);
      width: 100%;
      background: #080808;
      overflow: hidden;
    }
    .lookbook-modal__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: opacity 0.28s ease;
    }
    .lookbook-modal__nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 3;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.52);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }
    .lookbook-modal__nav:hover {
      background: rgba(0, 0, 0, 0.78);
      border-color: rgba(255, 255, 255, 0.34);
      color: var(--c-gold);
      transform: translateY(-50%) scale(1.04);
    }
    .lookbook-modal__nav--prev { left: 14px; }
    .lookbook-modal__nav--next { right: 14px; }
    .lookbook-modal__pagination {
      position: absolute;
      left: 50%;
      bottom: 14px;
      transform: translateX(-50%);
      z-index: 4;
      display: flex;
      gap: 8px;
      align-items: center;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.38);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }
    .lookbook-modal__dot {
      width: 22px;
      height: 4px;
      border: 0;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.42);
      cursor: pointer;
      transition: transform 0.25s ease, background-color 0.25s ease;
    }
    .lookbook-modal__dot.active {
      background: var(--c-logo-gold);
      transform: scaleX(1.08);
    }
    @media (max-width: 900px) {
      .lookbook-modal { padding: 12px; }
      .lookbook-modal__head { padding: 10px 12px; }
      .lookbook-modal__dialog { width: min(92vw, 420px); }
      .lookbook-modal__media {
        aspect-ratio: 4 / 5;
        max-height: min(72vh, 620px);
      }
      .lookbook-modal__nav {
        width: 40px;
        height: 40px;
      }
      .lookbook-modal__nav--prev { left: 8px; }
      .lookbook-modal__nav--next { right: 8px; }
    }
    .category-modal {
      position: fixed;
      inset: 0;
      z-index: 1190;
      background: rgba(0, 0, 0, 0.84);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      display: grid;
      place-items: center;
      padding: 10px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.36s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .category-modal.is-open {
      opacity: 1;
      pointer-events: auto;
    }
    .category-modal__dialog {
      width: min(1880px, 99vw);
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      overflow: visible;
    }
    .category-modal__head {
      position: absolute;
      top: 10px;
      left: 10px;
      right: 10px;
      z-index: 8;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 0;
      border: 0;
      pointer-events: none;
    }
    .category-modal__title {
      display: block;
      margin: 0;
      font-family: var(--f-display);
      font-size: clamp(18px, 2.2vw, 28px);
      color: var(--c-cream);
      line-height: 1.05;
      letter-spacing: -0.015em;
      pointer-events: none;
      text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
    }
    .category-modal__close {
      pointer-events: auto;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid rgba(245, 184, 0, 0.72);
      background: rgba(0, 0, 0, 0.84);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      transition: border-color 0.28s ease, color 0.28s ease, background 0.28s ease;
    }
    .category-modal__close:hover { border-color: var(--c-gold); color: var(--c-gold); }
    .category-modal__body {
      position: relative;
      padding: 0;
    }
    .category-modal__viewport {
      overflow-x: auto;
      overflow-y: hidden;
      scrollbar-width: none;
      scroll-behavior: smooth;
      max-height: min(84vh, 900px);
    }
    .category-modal__viewport::-webkit-scrollbar { display: none; }
    .category-modal__track {
      display: flex;
      gap: 0;
      width: max-content;
      min-width: 100%;
      padding: 0;
    }
    .category-modal__item {
      flex: 0 0 20vw;
      width: 20vw;
      min-width: 20vw;
      aspect-ratio: 3 / 4;
      min-height: clamp(360px, 34vw, 640px);
      border-radius: 0;
      overflow: hidden;
      border: 0;
      background: #000;
      cursor: pointer;
      transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s cubic-bezier(0.22, 1, 0.36, 1);
      transform-origin: center center;
    }
    .category-modal__item--cta {
      cursor: default;
    }
    .category-modal__item:not(.category-modal__item--cta):hover {
      transform: scale(1.045);
      box-shadow: 0 18px 34px -22px rgba(0, 0, 0, 0.75);
      z-index: 2;
      filter: saturate(1.04);
    }
    .category-modal__item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .category-modal__item:not(.category-modal__item--cta):hover img {
      transform: scale(1.03);
    }
    .category-modal.is-focus-mode .category-modal__viewport {
      overflow: hidden;
    }
    .category-modal.is-focus-mode .category-modal__track {
      justify-content: center;
      width: 100%;
    }
    .category-modal.is-focus-mode .category-modal__item {
      display: none;
    }
    .category-modal.is-focus-mode .category-modal__item.is-focused {
      display: block;
      flex: 0 0 min(78vw, 1080px);
      min-width: min(78vw, 1080px);
      min-height: min(82vh, 880px);
      max-height: min(82vh, 880px);
      border-radius: 14px;
      box-shadow: 0 30px 60px -32px rgba(0, 0, 0, 0.92);
      cursor: zoom-out;
      transform: none;
      filter: none;
    }
    .category-modal.is-focus-mode .category-modal__item.is-focused img {
      transform: none;
      object-fit: contain;
      background: rgba(0, 0, 0, 0.35);
    }
    .category-modal__item--cta {
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(180deg, rgba(245, 184, 0, 0.08) 0%, #0a0a0a 100%);
    }
    .category-modal__cta {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      padding: 0;
      border: 0;
      background: transparent;
      color: var(--c-cream);
      font-family: var(--f-sans);
      text-decoration: none;
      transition: transform 0.3s ease;
    }
    .category-modal__cta:hover {
      transform: translateY(-3px);
    }
    .category-modal__cta-icon {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: var(--c-gold);
      color: #0a0a0a;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      box-shadow: 0 14px 36px rgba(245, 184, 0, 0.28);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .category-modal__cta:hover .category-modal__cta-icon {
      transform: scale(1.06);
      box-shadow: 0 18px 42px rgba(245, 184, 0, 0.38);
    }
    .category-modal__cta-title {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--c-gold);
    }
    .category-modal__cta-sub {
      display: block;
      max-width: 240px;
      margin: 0 auto;
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-align: center;
      color: rgba(242, 237, 228, 0.72);
    }
    .category-modal__nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 7;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.24);
      background: rgba(0, 0, 0, 0.72);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.28s ease, color 0.28s ease, background 0.28s ease, transform 0.28s ease;
    }
    .category-modal__nav:hover {
      border-color: var(--c-gold);
      color: var(--c-gold);
      transform: translateY(-50%) scale(1.04);
    }
    .category-modal__nav--prev { left: 16px; }
    .category-modal__nav--next { right: 16px; }
    @media (max-width: 900px) {
      .category-modal { padding: 10px; }
      .category-modal__head {
        top: 6px;
        right: 6px;
      }
      .category-modal__close { width: 38px; height: 38px; }
      .category-modal__viewport {
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
      }
      .category-modal__item {
        flex: 0 0 100vw;
        width: 100vw;
        min-width: 100vw;
        scroll-snap-align: center;
      }
      .category-modal.is-focus-mode .category-modal__item.is-focused {
        flex-basis: 100%;
        min-width: 100%;
        min-height: min(72vh, 520px);
        max-height: min(72vh, 520px);
      }
      .category-modal.is-focus-mode .category-modal__item.is-focused img {
        object-fit: contain;
      }
      .category-modal__nav { width: 34px; height: 34px; font-size: 14px; }
      .category-modal__nav--prev { left: 8px; }
      .category-modal__nav--next { right: 8px; }
    }
    body.modal-open { overflow: hidden; }
    
    .process {
      background: var(--c-black-90);
      border-top: 1px solid var(--c-line);
    }
    .process__steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 48px;
      counter-reset: step;
    }
    .step {
      position: relative;
      padding-top: 32px;
      border-top: 1px solid var(--c-line);
      counter-increment: step;
    }
    .step__num {
      font-family: var(--f-display);
      font-size: 14px;
      letter-spacing: 0.24em;
      color: var(--c-gold);
      margin-bottom: 36px;
    }
    .step__num::before { content: '0' counter(step) ' / 03'; }
    .step__title {
      font-family: var(--f-display);
      font-size: clamp(28px, 2.4vw, 36px);
      font-weight: 500;
      color: var(--c-cream);
      line-height: 1.1;
      margin-bottom: 16px;
    }
    .step__title em { font-style: italic; color: var(--c-gold); font-weight: 400; }
    .step__copy {
      font-size: 15px;
      line-height: 1.7;
      color: rgba(242, 237, 228, 0.6);
    }
    @media (max-width: 900px) {
      .process__steps { grid-template-columns: 1fr; gap: 32px; }
    }

    
    .testimonials {
      background: var(--c-black);
      overflow: hidden;
    }
    .testimonials__rail {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .google-rating {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      margin: 0 0 28px;
      padding: 12px 18px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.03);
    }
    .google-rating__score {
      font-family: var(--f-display);
      font-size: 26px;
      color: var(--c-cream);
      line-height: 1;
    }
    .google-rating__stars {
      color: var(--c-gold);
      letter-spacing: 2px;
      font-size: 14px;
    }
    .google-rating__text {
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(242, 237, 228, 0.68);
    }
    .testimonial {
      padding: 40px;
      border: 1px solid var(--c-line);
      border-radius: 8px;
      background: linear-gradient(180deg, var(--c-black-80) 0%, var(--c-black-90) 100%);
      transition: border-color 0.4s ease, transform 0.5s var(--ease-out);
    }
    .testimonial:hover { border-color: rgba(245, 184, 0, 0.4); transform: translateY(-6px); }
    .testimonial__stars {
      color: var(--c-gold);
      letter-spacing: 4px;
      margin-bottom: 24px;
      font-size: 14px;
    }
    .testimonial__quote {
      font-family: var(--f-display);
      font-size: 19px;
      line-height: 1.5;
      color: var(--c-cream);
      margin-bottom: 32px;
    }
    .testimonial__author {
      display: flex; align-items: center; gap: 14px;
      padding-top: 24px;
      border-top: 1px solid var(--c-line);
    }
    .testimonial__avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--c-graphite);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--f-display);
      color: var(--c-gold);
      font-weight: 600;
      flex-shrink: 0;
    }
    .testimonial__name { font-size: 14px; font-weight: 500; color: var(--c-cream); }
    .testimonial__role { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-mute); margin-top: 2px; }

    @media (max-width: 900px) {
      .testimonials__rail { grid-template-columns: 1fr; }
    }

    
    .endsection {
      background: var(--c-black);
      border-top: 1px solid var(--c-line);
      overflow: hidden;
    }
    .endsection .container {
      width: 100%;
      max-width: none;
      padding-left: 0;
      padding-right: 0;
    }
    .endsection__map {
      position: relative;
      width: calc(100% - 2 * var(--gutter));
      max-width: 1100px;
      aspect-ratio: 2.1 / 1;
      margin: clamp(32px, 5vw, 56px) auto 0;
      background-color: #1f2530;
      background-image: url('assets/imagem/endsection-map-custom.png?v=2');
      background-position: 47% 60%;
      background-size: cover;
      background-repeat: no-repeat;
      overflow: hidden;
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .endsection__map-edge {
      display: none;
    }
    .endsection__map-edge--left {
      left: 0;
      width: 20%;
      transform: scaleX(-1);
    }
    .endsection__map-edge--right {
      right: 0;
      width: 20%;
      transform: scaleX(-1);
    }
    .endsection__map::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 2;
      background:
        linear-gradient(180deg, rgba(255, 213, 126, 0.06) 0%, rgba(255, 255, 255, 0.02) 34%, rgba(0, 0, 0, 0.04) 100%);
      pointer-events: none;
    }
    .endsection__map-marker {
      position: absolute;
      left: 47%;
      top: 60%;
      transform: translate(-50%, -50%) scale(1.1);
      z-index: 3;
      width: 62px;
      height: 62px;
      border-radius: 999px;
      border: 2px solid rgba(245, 184, 0, 0.9);
      background: rgba(10, 10, 10, 0.88);
      color: var(--c-gold);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.58);
      transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    }
    .endsection__map-marker::after {
      content: '';
      position: absolute;
      inset: -9px;
      border-radius: 999px;
      border: 1px solid rgba(245, 184, 0, 0.36);
      animation: markerPulse 1.8s ease-out infinite;
    }
    .endsection__map-marker:hover,
    .endsection__map-marker:focus-visible {
      transform: translate(-50%, -50%) scale(1.06);
      border-color: var(--c-gold);
      background: rgba(10, 10, 10, 0.92);
      outline: none;
    }
    .endsection__map-tooltip {
      position: absolute;
      left: 50%;
      bottom: calc(100% + 10px);
      transform: translateX(-50%) translateY(0);
      min-width: 260px;
      max-width: 320px;
      padding: 10px 12px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(6, 6, 6, 0.96);
      color: rgba(242, 237, 228, 0.88);
      font-size: 11px;
      line-height: 1.45;
      letter-spacing: 0.04em;
      opacity: 1;
      pointer-events: auto;
      transition: opacity 0.2s ease, transform 0.2s ease;
      text-align: left;
      text-transform: none;
    }
    .endsection__map-tooltip strong {
      display: block;
      margin-bottom: 4px;
      color: var(--c-gold);
      font-size: 10px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .endsection__map-marker:hover .endsection__map-tooltip,
    .endsection__map-marker:focus-visible .endsection__map-tooltip {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
    @keyframes markerPulse {
      0% { transform: scale(0.9); opacity: 0.7; }
      100% { transform: scale(1.25); opacity: 0; }
    }

    .endsection__panel {
      background: #090909;
      padding: clamp(44px, 6vw, 74px) clamp(20px, 5vw, 64px) clamp(24px, 3vw, 34px);
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    .endsection__logo {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .endsection__logo img {
      width: clamp(220px, 42vw, 420px);
      height: auto;
      max-width: 100%;
      object-fit: contain;
      display: block;
    }
    .endsection__social {
      margin-top: 22px;
      display: flex;
      justify-content: center;
      gap: 12px;
    }
    .endsection__social a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.44);
      color: rgba(255, 255, 255, 0.9);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
    }
    .endsection__social a:hover {
      color: var(--c-gold);
      border-color: var(--c-gold);
      transform: translateY(-2px);
    }
    .endsection__content {
      margin-top: clamp(36px, 5vw, 58px);
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      align-items: center;
      gap: clamp(28px, 4vw, 54px);
    }
    .endsection__menu {
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: flex-start;
    }
    .endsection__menu a {
      font-family: var(--f-display);
      font-size: clamp(25px, 3.2vw, 38px);
      line-height: 0.95;
      letter-spacing: -0.015em;
      color: rgba(242, 237, 228, 0.95);
    }
    .endsection__menu a:hover { color: var(--c-gold); }
    .endsection__label {
      margin-top: 14px;
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(242, 237, 228, 0.66);
    }
    .endsection__newsletter h4 {
      margin: 0 0 14px;
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(242, 237, 228, 0.78);
      font-weight: 500;
      max-width: 32ch;
      line-height: 1.5;
    }
    .endsection__field {
      display: flex;
      align-items: center;
      gap: 14px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.34);
      padding-bottom: 8px;
    }
    .endsection__field--cta {
      text-decoration: none;
      padding: 10px 0;
      transition: border-color 0.25s ease, transform 0.25s ease;
    }
    .endsection__field--cta span {
      flex: 1;
      font-family: var(--f-display);
      font-size: clamp(34px, 3.8vw, 52px);
      letter-spacing: -0.01em;
      color: rgba(242, 237, 228, 0.9);
      line-height: 1;
    }
    .endsection__field--cta i {
      font-size: 26px;
      color: var(--c-gold);
      transition: transform 0.25s ease;
    }
    .endsection__field--cta:hover {
      border-bottom-color: var(--c-gold);
      transform: translateY(-1px);
    }
    .endsection__field--cta:hover i { transform: translateX(3px); }
    .endsection__field input {
      flex: 1;
      background: transparent;
      border: 0;
      color: rgba(242, 237, 228, 0.9);
      outline: none;
      font-family: var(--f-display);
      font-size: clamp(28px, 3.5vw, 44px);
      letter-spacing: -0.01em;
      min-width: 0;
    }
    .endsection__field input::placeholder { color: rgba(242, 237, 228, 0.66); }
    .endsection__field button {
      border: 0;
      background: transparent;
      color: var(--c-gold);
      font-size: 24px;
      cursor: pointer;
      transition: transform 0.25s ease;
    }
    .endsection__field button:hover { transform: translateX(2px); }
    .endsection__bottom {
      margin-top: clamp(28px, 4vw, 44px);
      border-top: 1px solid rgba(255, 255, 255, 0.16);
      padding-top: 14px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 10px 18px;
      font-size: 10px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(242, 237, 228, 0.68);
    }
    .endsection__legal {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .endsection__legal a { color: rgba(242, 237, 228, 0.7); }
    .endsection__legal a:hover { color: var(--c-gold); }

    
    .magnetic { display: inline-block; }
    .btn.magnetic { display: inline-flex; align-items: center; }
    .whatsapp-float {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 120;
      width: min(360px, calc(100vw - 24px));
      min-height: 112px;
      padding: 12px 14px;
      border-radius: 20px;
      border: 1px solid rgba(245, 184, 0, 0.22);
      background:
        linear-gradient(180deg, rgba(14, 15, 18, 0.9), rgba(10, 11, 14, 0.95)),
        #0c0d10;
      color: rgba(242, 237, 228, 0.95);
      display: grid;
      gap: 10px;
      text-decoration: none;
      box-shadow: 0 16px 32px -20px rgba(0, 0, 0, 0.78), inset 0 0 0 1px rgba(245, 184, 0, 0.06);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }
    .whatsapp-float:hover {
      transform: translateY(-1px);
      border-color: rgba(245, 184, 0, 0.42);
      background: linear-gradient(180deg, rgba(22, 23, 28, 0.98), rgba(13, 14, 17, 0.99));
      box-shadow: 0 20px 40px -24px rgba(0, 0, 0, 0.84), inset 0 0 0 1px rgba(245, 184, 0, 0.1);
    }
    .whatsapp-float__head {
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }
    .whatsapp-float__icon {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(87, 214, 111, 0.08);
      border: 1px solid rgba(87, 214, 111, 0.42);
    }
    .whatsapp-float i {
      font-size: 22px;
      color: #57d66f;
      line-height: 1;
    }
    .whatsapp-float__label {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.01em;
      text-transform: none;
      line-height: 1.2;
      color: var(--c-cream);
    }
    .whatsapp-float__action {
      min-height: 42px;
      padding: 0 12px;
      border-radius: 999px;
      border: 1px solid rgba(245, 184, 0, 0.2);
      background: rgba(0, 0, 0, 0.28);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .whatsapp-float__action .bi-whatsapp {
      font-size: 20px;
      color: #57d66f;
      opacity: 0.95;
    }
    .whatsapp-float__action-text {
      font-size: 14px;
      font-weight: 600;
      color: rgba(242, 237, 228, 0.72);
      letter-spacing: 0.01em;
      line-height: 1;
    }

    @media (max-width: 900px) {
      #premium-scroll {
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
      }
      .premium-carousel__card {
        width: calc(100vw - 88px);
        height: min(640px, 78vh);
        scroll-snap-align: center;
      }
      .premium-carousel__nav--prev,
      .premium-carousel__nav--next {
        width: 36px;
        height: 36px;
      }
      .showcase-carousel__panel {
        width: clamp(150px, 42vw, 210px);
        height: min(380px, 52vh);
      }
      .showcase-carousel__nav {
        width: 34px;
        height: 34px;
      }
      .showcase-carousel__nav--prev { left: 2px; }
      .showcase-carousel__nav--next { right: 2px; }
      #premium-prev,
      #premium-next {
        display: inline-flex !important;
      }
      .endsection__map {
        width: calc(100% - 32px);
        aspect-ratio: 4 / 3;
        margin-top: 32px;
      }
      .endsection__map-edge--left,
      .endsection__map-edge--right { width: 28%; }
      .endsection__map-marker {
        left: 47%;
        top: 60%;
        width: 44px;
        height: 44px;
      }
      .endsection__map-tooltip {
        min-width: 220px;
        max-width: 260px;
      }
      .endsection__content { grid-template-columns: 1fr; text-align: center; }
      .endsection__menu { align-items: center; }
      .endsection__logo img { width: clamp(190px, 72vw, 320px); }
      .endsection__newsletter h4 { margin-inline: auto; }
      .endsection__bottom { justify-content: center; }

      .whatsapp-float {
        left: 10px;
        right: 10px;
        width: auto;
        max-width: none;
        bottom: max(10px, env(safe-area-inset-bottom, 0px));
      }
      .endsection {
        padding-bottom: calc(max(10px, env(safe-area-inset-bottom, 0px)) + 132px);
      }
    }
    @media (max-width: 560px) {
      .nav__brand img {
        height: 42px;
        max-width: min(240px, 68vw);
      }
      .nav.scrolled .nav__brand img { height: 46px; }
      .endsection__field input { font-size: 30px; }
      .endsection__field--cta span { font-size: clamp(30px, 9vw, 42px); }
      .whatsapp-float {
        min-height: 56px;
        padding: 9px 10px;
        border-radius: 14px;
        gap: 7px;
      }
      .whatsapp-float__head { gap: 8px; }
      .whatsapp-float__icon {
        width: 28px;
        height: 28px;
      }
      .whatsapp-float i { font-size: 18px; }
      .whatsapp-float__label { font-size: 11px; }
      .whatsapp-float__action {
        min-height: 32px;
        padding: 0 8px;
      }
      .whatsapp-float__action .bi-whatsapp { font-size: 15px; }
      .whatsapp-float__action-text { font-size: 11px; }
    }

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


