/* 11³ — Landing MVP */
:root {
  --void: #010102;
  --void-deep: #000000;
  --obsidian: #08080a;
  --surface: #101014;
  --gold: #c9a962;
  --gold-bright: #e8d5a3;
  --emerald: #1a8f5c;
  --emerald-bright: #4ecf96;
  --emerald-deep: #0d6b48;
  --emerald-muted: rgba(26, 143, 92, 0.14);
  --champagne: #f5f0e6;
  --muted: #8a9a98;
  --ruby: #6b1c2a;
  --border: rgba(26, 143, 92, 0.22);
  --font-brand: "Zen Antique", "Noto Serif JP", "Cormorant Garamond", Georgia, serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-ui: "Outfit", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 72px;
  --radius-btn: 999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

body {
  font-family: var(--font-ui);
  font-weight: 300;
  background: var(--void-deep);
  color: var(--champagne);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  position: relative;
}

.page-stars {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 1.4s var(--ease-out);
}

.page-stars.is-ready {
  opacity: 1;
}

@media (max-width: 899px) {
  .page-stars {
    mix-blend-mode: normal;
    opacity: 0.72;
  }

  .page-stars.is-ready {
    opacity: 0.72;
  }
}

main,
.nav,
.preloader,
.mobile-menu,
.cart-drawer {
  position: relative;
  z-index: 1;
}

body.is-loaded {
  cursor: auto;
}

@media (max-width: 1024px) {
  body,
  body.is-loaded {
    cursor: auto;
  }
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--emerald);
  color: var(--void);
  text-decoration: none;
  font-size: 0.875rem;
}

.skip-link:focus {
  top: 1rem;
}

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

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: grid;
  place-items: center;
  background: var(--void);
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  text-align: center;
}

.preloader__mark {
  display: block;
  text-align: center;
  margin-bottom: 2rem;
}

.preloader__line {
  width: 120px;
  height: 1px;
  background: var(--border);
  margin: 0 auto 1rem;
  overflow: hidden;
}

.preloader__line span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--emerald);
  animation: loadLine 1.4s var(--ease-out) forwards;
}

.preloader__text {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
}

@keyframes loadLine {
  to {
    width: 100%;
  }
}

/* Cursor */
.cursor {
  display: none;
}

@media (min-width: 1025px) {
  .cursor {
    display: block;
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    mix-blend-mode: difference;
  }

  .cursor__dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--emerald-bright);
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }

  .cursor__ring {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 1px solid var(--emerald);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), opacity 0.3s;
  }

  .cursor.is-hover .cursor__ring {
    width: 56px;
    height: 56px;
    opacity: 0.6;
  }
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 clamp(1.5rem, 5vw, 4.5rem);
  transition: background 0.4s, backdrop-filter 0.4s;
}

.nav.is-scrolled {
  background: rgba(7, 6, 5, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.75rem;
  text-decoration: none;
  letter-spacing: 0.12em;
  text-shadow:
    0 0 16px rgba(219, 229, 244, 0.22),
    0 0 28px rgba(26, 143, 92, 0.2);
  line-height: 1;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.75rem);
  margin-left: auto;
}

.nav__langs {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav__lang {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 0.35rem 0.55rem;
  border: 1px solid var(--border);
  transition: color 0.25s, border-color 0.25s;
}

.nav__lang:hover {
  color: var(--emerald-bright);
  border-color: rgba(26, 143, 92, 0.45);
}

.brand-mark,
.brand-inline {
  font-family: var(--font-brand);
  font-weight: 400;
  color: #eef8f7;
  letter-spacing: 0.1em;
  text-transform: none;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "palt" 1;
}

.brand-mark__digits,
.brand-inline__digits {
  font-weight: 400;
  letter-spacing: 0.12em;
}

.brand-mark__pow,
.brand-inline__pow {
  font-size: 0.52em;
  vertical-align: super;
  line-height: 0;
  font-weight: 400;
  margin-left: 0.04em;
  color: var(--emerald-bright);
}

.preloader__mark.brand-mark {
  font-size: clamp(3rem, 12vw, 6rem);
  line-height: 0.9;
}

.nav__logo.brand-mark {
  font-size: 1.82rem;
}

.nav__links {
  display: none;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .nav__links {
    display: flex;
  }
}

.nav__links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s;
}

.nav__links a:hover {
  color: var(--emerald-bright);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__cart {
  position: relative;
  background: none;
  border: none;
  color: var(--champagne);
  cursor: pointer;
  padding: 0.5rem;
}

.nav__cart-count {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 16px;
  height: 16px;
  font-size: 0.65rem;
  background: var(--emerald);
  color: var(--void);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.nav .nav__cta {
  display: none;
}

.nav__menu-btn {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

@media (max-width: 899px) {
  .nav {
    justify-content: space-between;
    padding: 0 1rem;
    gap: 0.5rem;
  }

  .nav__logo {
    position: static;
    transform: none;
    flex-shrink: 0;
    font-size: 1.45rem;
    max-width: 4.5rem;
    text-shadow: none;
  }

  .nav__right {
    margin-left: 0;
    flex-shrink: 0;
    gap: 0.35rem;
  }

  .nav__actions {
    gap: 0.25rem;
  }

  .nav__lang {
    padding: 0.3rem 0.45rem;
    font-size: 0.62rem;
  }
}

@media (min-width: 900px) {
  .nav__menu-btn {
    display: none;
  }

  .nav .nav__cta {
    display: inline-flex;
  }
}

.nav__menu-btn span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--champagne);
  transition: transform 0.3s, opacity 0.3s;
}

.nav__menu-btn.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav__menu-btn.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--void);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--champagne);
  text-decoration: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.btn:focus-visible {
  outline: 2px solid var(--emerald-bright);
  outline-offset: 3px;
}

.btn--gold {
  background: linear-gradient(135deg, var(--emerald-deep), var(--emerald));
  color: var(--void);
  box-shadow: 0 8px 28px rgba(26, 143, 92, 0.22);
}

.btn--gold:hover {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-bright));
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26, 143, 92, 0.32);
}

.btn--outline {
  background: transparent;
  color: var(--champagne);
  border: 1px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--emerald-bright);
  color: var(--emerald-bright);
  background: var(--emerald-muted);
}

.btn--ghost {
  background: transparent;
  color: var(--muted);
  padding: 0.5rem 1rem;
}

.btn--ghost:hover {
  color: var(--emerald);
}

.btn--lg {
  padding: 1.1rem 2.5rem;
}

.btn--full {
  width: 100%;
}

/* Layout */
.container {
  width: min(1280px, 92vw);
  margin-inline: auto;
}

.section {
  padding: clamp(5rem, 12vw, 10rem) 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section-sub {
  color: var(--muted);
  margin-top: 1rem;
  max-width: 32ch;
  font-size: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 2rem) clamp(1.25rem, 4vw, 3rem) 3rem;
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 55% 45% at 50% 38%, rgba(78, 207, 150, 0.14), transparent 64%),
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(13, 107, 72, 0.18), transparent 56%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(46, 140, 98, 0.12), transparent 48%),
    linear-gradient(180deg, transparent 35%, var(--void) 100%);
  pointer-events: none;
}

.hero__canvas {
  display: none;
}

.hero__diamond-slot {
  position: absolute;
  top: clamp(4rem, 11vh, 6.5rem);
  left: 50%;
  transform: translateX(-50%);
  width: min(88vw, 520px);
  height: min(58vh, 600px);
  z-index: 1;
  pointer-events: none;
}

.hero__diamond {
  opacity: 0;
  transition: opacity 1.2s var(--ease-out);
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  contain: layout style;
}

.hero__diamond.is-ready,
.hero__diamond--static {
  opacity: 1;
}

.chatbot-fab {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}

.chatbot-fab:focus {
  outline: none;
}

.chatbot-fab:focus-visible {
  outline: 2px solid rgba(78, 207, 150, 0.55);
  outline-offset: 4px;
}

.chatbot-fab:active {
  background: transparent;
}

@media (max-width: 899px) {
  .hero__diamond:not(.is-sticky) .chatbot-fab {
    pointer-events: auto;
    cursor: grab;
    touch-action: pan-y;
  }

  .hero__diamond.is-sticky .chatbot-fab {
    pointer-events: auto;
    cursor: pointer;
  }

  .hero__diamond.is-touch .chatbot-fab {
    cursor: grabbing;
  }

  .hero__diamond.is-touch:not(.is-sticky) .hero__diamond-glow {
    opacity: 0.72;
    transform: scale(1.08);
  }

  .hero__diamond.is-touch:not(.is-sticky) canvas {
    filter:
      drop-shadow(0 0 22px rgba(78, 207, 150, 0.2))
      drop-shadow(0 24px 48px rgba(0, 0, 0, 0.5));
  }
}

.chatbot-fab__ring {
  position: absolute;
  inset: -6%;
  border-radius: 50%;
  border: 1px solid rgba(192, 206, 224, 0.22);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
  pointer-events: none;
}

.hero__diamond.is-sticky .chatbot-fab__ring {
  opacity: 1;
  animation: chatbotPulse 2.8s ease-in-out infinite;
}

@keyframes chatbotPulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.hero__diamond.is-sticky .chatbot-fab {
  cursor: pointer;
}

.hero__diamond.is-sticky .hero__diamond-glow {
  inset: 8%;
  opacity: 0.75;
  filter: blur(18px);
}

.hero__diamond canvas {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 28px 55px rgba(0, 0, 0, 0.48));
  transition: filter 0.45s var(--ease-out);
}

.hero__diamond.is-hover:not(.is-sticky) canvas {
  filter:
    drop-shadow(0 0 32px rgba(255, 255, 255, 0.12))
    drop-shadow(0 0 52px rgba(26, 143, 92, 0.28))
    drop-shadow(0 32px 60px rgba(0, 0, 0, 0.55));
}

.hero__diamond.is-sticky canvas {
  filter:
    drop-shadow(0 0 18px rgba(192, 206, 224, 0.22))
    drop-shadow(0 8px 24px rgba(0, 0, 0, 0.55));
}

.hero__diamond-glow {
  position: absolute;
  inset: 24% 14% 30%;
  background: radial-gradient(
    ellipse at center,
    rgba(78, 207, 150, 0.26),
    rgba(26, 143, 92, 0.1) 45%,
    transparent 74%
  );
  filter: blur(36px);
  opacity: 0.46;
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  pointer-events: none;
}

.hero__diamond.is-hover .hero__diamond-glow {
  opacity: 1;
  transform: scale(1.14);
}

.hero__diamond--static::after {
  content: "";
  position: absolute;
  inset: 18% 24% 22%;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(220, 230, 255, 0.55) 35%,
    rgba(255, 255, 255, 0.88) 55%,
    rgba(26, 143, 92, 0.35) 100%
  );
  clip-path: polygon(
    50% 0%,
    86% 16%,
    100% 38%,
    52% 100%,
    48% 100%,
    0% 38%,
    14% 16%
  );
  filter: drop-shadow(0 0 24px rgba(26, 143, 92, 0.22));
  animation: diamondStaticSpin 24s linear infinite;
}

@keyframes diamondStaticSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 900px) {
  .hero__diamond-slot {
    top: clamp(4.5rem, 13vh, 7.5rem);
    width: min(50vw, 560px);
    height: min(66vh, 640px);
  }
}

/* ——— Chatbot panel ——— */
.chatbot-panel {
  position: fixed;
  right: 1.25rem;
  bottom: 6.5rem;
  width: min(92vw, 360px);
  max-height: min(70vh, 520px);
  display: flex;
  flex-direction: column;
  background: rgba(4, 4, 6, 0.94);
  border: 1px solid rgba(192, 206, 224, 0.14);
  border-radius: 1rem;
  backdrop-filter: blur(18px);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  z-index: 130;
  transform: translateY(12px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
}

.chatbot-panel.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chatbot-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem 0.75rem;
  border-bottom: 1px solid rgba(192, 206, 224, 0.08);
}

.chatbot-panel__eyebrow {
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(192, 206, 224, 0.55);
}

.chatbot-panel__head h2 {
  margin: 0.15rem 0 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--champagne);
}

.chatbot-panel__close {
  background: none;
  border: none;
  color: rgba(192, 206, 224, 0.7);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.15rem 0.35rem;
}

.chatbot-panel__body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chatbot-panel__bubble {
  margin: 0;
  max-width: 92%;
  padding: 0.75rem 0.9rem;
  border-radius: 0.85rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

.chatbot-panel__bubble--bot {
  align-self: flex-start;
  background: rgba(192, 206, 224, 0.08);
  border: 1px solid rgba(192, 206, 224, 0.12);
  color: rgba(232, 236, 244, 0.92);
}

.chatbot-panel__bubble--user {
  align-self: flex-end;
  background: rgba(26, 143, 92, 0.12);
  border: 1px solid rgba(26, 143, 92, 0.22);
  color: var(--champagne);
}

.chatbot-panel__form {
  display: flex;
  gap: 0.5rem;
  padding: 0 1rem 0.75rem;
}

.chatbot-panel__form input {
  flex: 1;
  min-width: 0;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(192, 206, 224, 0.16);
  background: rgba(0, 0, 0, 0.35);
  color: var(--champagne);
  font: inherit;
}

.chatbot-panel__form .btn {
  padding-inline: 1rem;
  flex-shrink: 0;
}

.chatbot-panel__cta {
  margin: 0 1rem 1rem;
  width: calc(100% - 2rem);
}

@media (max-width: 899px) {
  .hero {
    display: grid;
    grid-template-areas:
      "head"
      "diamond"
      "body"
      "actions";
    grid-template-rows: auto minmax(248px, 40dvh) auto auto;
    align-content: start;
    justify-items: stretch;
    align-items: stretch;
    gap: 0;
    padding: calc(var(--nav-h) + 1.35rem) 1.35rem 2rem;
    min-height: 100dvh;
    min-height: 100svh;
  }

  .hero__content {
    display: contents;
  }

  .hero__head,
  .hero__sub,
  .hero__actions {
    position: relative;
    z-index: 3;
  }

  .hero__head {
    grid-area: head;
    padding-bottom: 0.25rem;
  }

  .hero__eyebrow {
    margin-bottom: 0.9rem;
    letter-spacing: 0.22em;
    font-size: 0.62rem;
  }

  .hero__title {
    margin-bottom: 0;
    font-size: clamp(1.9rem, 8.2vw, 2.7rem);
    line-height: 1.02;
  }

  .hero__sub {
    grid-area: body;
    margin: 1.15rem 0 1.35rem;
    max-width: none;
    font-size: 0.92rem;
    line-height: 1.65;
    text-align: left;
  }

  .hero__actions {
    grid-area: actions;
    flex-direction: column;
    gap: 0.65rem;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__diamond-slot {
    grid-area: diamond;
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: min(84vw, 332px);
    height: min(38dvh, 332px);
    margin: 0.25rem auto 0;
    justify-self: center;
    align-self: center;
    z-index: 2;
  }

  .hero__gradient {
    z-index: 0;
    background:
      radial-gradient(ellipse 85% 42% at 50% 46%, rgba(78, 207, 150, 0.12), transparent 68%),
      linear-gradient(180deg, transparent 58%, rgba(1, 1, 2, 0.55) 90%, var(--void) 100%);
  }
}

@media (min-width: 900px) {
  .hero__diamond-slot {
    top: clamp(4.5rem, 13vh, 7.5rem);
    width: min(50vw, 560px);
    height: min(66vh, 640px);
  }
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 900px;
}

.hero__head {
  margin-bottom: 0;
}

.hero__eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--emerald-bright);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 10vw, 6.5rem);
  font-weight: 400;
  line-height: 0.98;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero__title-line {
  display: block;
}

.hero__title-line--accent {
  color: var(--emerald-bright);
}

.hero__sub {
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  color: #c8d2d0;
  max-width: 52ch;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__scroll {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: 3rem;
  z-index: 3;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (min-width: 768px) {
  .hero__scroll {
    display: flex;
  }
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(var(--emerald), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

.hero__stats {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: none;
  flex-direction: column;
  gap: 2rem;
  text-align: right;
}

@media (min-width: 1100px) {
  .hero__stats {
    display: flex;
  }
}

.hero__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--emerald);
}

.hero__stats span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Manifesto */
.manifesto__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .manifesto__grid {
    grid-template-columns: 120px 1fr 200px;
    gap: 4rem;
    align-items: start;
  }
}

.manifesto__label {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--emerald);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  justify-self: start;
}

@media (max-width: 899px) {
  .manifesto__label {
    writing-mode: horizontal-tb;
    transform: none;
  }
}

.manifesto__quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  line-height: 1.45;
  border: none;
}

.manifesto__quote strong {
  color: var(--emerald-bright);
  font-weight: 500;
}

.manifesto__quote em {
  font-style: italic;
  color: var(--emerald);
}

.manifesto__quote p + p {
  margin-top: 1.5rem;
}

.manifesto__caption {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-card__img-wrap--render {
  background: #050506;
}

.product-card__img-wrap--render img {
  object-fit: contain;
  padding: 0.75rem;
}

/* Collections horizontal */
.collections {
  padding-bottom: 4rem;
}

.collections__header {
  margin-bottom: 3rem;
}

.collections__track-wrap {
  overflow: hidden;
  height: 85vh;
  min-height: 520px;
  max-height: 900px;
}

.collections__track {
  display: flex;
  gap: 2rem;
  height: 100%;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  width: max-content;
}

.collection-card {
  flex: 0 0 clamp(280px, 42vw, 480px);
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--obsidian);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s var(--ease-out);
}

.collection-card:hover {
  border-color: rgba(26, 143, 92, 0.4);
  transform: translateY(-4px);
}

.collection-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  min-height: 280px;
}

.collection-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: contrast(1.06) saturate(0.9);
  transition: transform 1.2s var(--ease-out);
}

.collection-card:hover .collection-card__media img {
  transform: scale(1.06);
}

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 6, 5, 0.9) 100%);
}

.collection-card__body {
  padding: 1.75rem;
}

.collection-card__index {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--emerald);
}

.collection-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin: 0.5rem 0;
}

.collection-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.collection-card__link {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald);
  text-decoration: none;
  transition: color 0.25s;
}

.collection-card__link:hover {
  color: var(--emerald-bright);
}

.collections__progress {
  margin-top: 2rem;
  height: 2px;
  background: var(--surface);
}

.collections__progress-bar {
  height: 100%;
  width: 0;
  background: var(--emerald);
  transform-origin: left;
}

/* Products */
.products__intro {
  color: var(--muted);
  max-width: 48ch;
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

.products__head {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .products__head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.products__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}

.products__filters::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.25s;
}

.filter-btn:hover,
.filter-btn.is-active {
  border-color: var(--emerald);
  color: var(--emerald);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-card {
  position: relative;
  background: var(--obsidian);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.4s;
}

.product-card:hover {
  border-color: rgba(26, 143, 92, 0.35);
  transform: translateY(-6px);
}

.product-card.is-hidden {
  display: none;
}

.product-card__img-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}

.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: contrast(1.05) saturate(0.92);
  transition: transform 0.8s var(--ease-out);
}

.product-card:hover .product-card__img-wrap img {
  transform: scale(1.05);
}

.product-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  max-width: calc(100% - 2rem);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  background: rgba(7, 6, 5, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(26, 143, 92, 0.35);
  color: var(--emerald-bright);
}

.product-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.product-card__cat {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0.35rem 0 0.35rem;
}

.product-card__gems {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--emerald-bright);
  margin-bottom: 1rem;
}

.product-card__actions {
  display: flex;
  gap: 0.5rem;
}

.product-card__actions .btn {
  flex: 1;
  padding: 0.65rem;
  font-size: 0.65rem;
}

/* Materials */
.materials__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .materials__grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.materials__visual {
  position: relative;
}

.materials__orb {
  position: absolute;
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  background: radial-gradient(circle, rgba(26, 143, 92, 0.2), transparent 70%);
  filter: blur(40px);
  animation: orbFloat 8s ease-in-out infinite;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, -20px);
  }
}

/* Encuadre sin deformar — crop centrado, no stretch */
.media-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--void);
}

.media-frame--portrait {
  aspect-ratio: 4 / 5;
  max-height: min(72vh, 720px);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.materials__visual .media-frame img {
  filter: contrast(1.05) saturate(0.92);
}

.materials__list {
  list-style: none;
  margin-top: 2rem;
}

.materials__list li {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  gap: 0.35rem;
}

.materials__list li span {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--emerald);
}

.materials__list li p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Exclusivity */
.exclusivity {
  background: linear-gradient(135deg, var(--obsidian) 0%, var(--void) 100%);
  border-block: 1px solid var(--border);
}

.exclusivity__inner {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.exclusivity__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 1rem;
}

.exclusivity__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.exclusivity__title em {
  font-style: italic;
  color: var(--emerald-bright);
}

.exclusivity__text {
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.exclusivity__counter-num {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--emerald);
  display: block;
  line-height: 1;
}

.exclusivity__counter-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* CTA */
.cta-section__box {
  text-align: center;
  padding: clamp(3rem, 8vw, 5rem);
  border: 1px solid var(--border);
  background: radial-gradient(ellipse at center, rgba(26, 143, 92, 0.08), transparent 70%);
}

.cta-section__box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 300;
  margin-bottom: 1rem;
}

.cta-section__box p {
  color: var(--muted);
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

.footer__logo {
  display: inline-block;
}

.footer__logo.brand-mark {
  font-size: 2.08rem;
  color: var(--emerald-bright);
}

.footer__brand p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.footer__links {
  display: flex;
  gap: 2rem;
}

.footer__links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__links a:hover {
  color: var(--emerald);
}

.footer__copy {
  grid-column: 1 / -1;
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.6;
}

/* Drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
}

.drawer.is-open {
  pointer-events: auto;
}

.drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.4s;
}

.drawer.is-open .drawer__backdrop {
  opacity: 1;
}

.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(400px, 100%);
  height: 100%;
  background: var(--obsidian);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
}

.drawer.is-open .drawer__panel {
  transform: translateX(0);
}

.drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.drawer__head h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
}

.drawer__close {
  background: none;
  border: none;
  color: var(--champagne);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
}

.drawer__items {
  flex: 1;
  overflow-y: auto;
  list-style: none;
  padding: 1rem;
}

.drawer__item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.drawer__item img {
  width: 64px;
  height: 80px;
  object-fit: cover;
}

.drawer__item-info h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
}

.drawer__item-info p {
  font-size: 0.85rem;
  color: var(--emerald);
}

.drawer__empty {
  padding: 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.drawer__foot {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
}

.drawer__total {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.drawer__total strong {
  color: var(--emerald-bright);
  font-size: 1.25rem;
}

/* Modal */
.modal {
  border: none;
  padding: 0;
  background: transparent;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  height: 100dvh;
  margin: 0;
  inset: 0;
  z-index: 9000;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal[open] {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal[open] .modal__box {
  animation: modalBoxIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.modal.is-closing {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition-duration: 0.45s;
}

.modal.is-closing .modal__box {
  animation: modalBoxOut 0.45s cubic-bezier(0.55, 0, 0.45, 1) both;
}

.modal::backdrop {
  background:
    radial-gradient(circle at 50% 48%, rgba(26, 143, 92, 0.1), transparent 58%),
    rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(14px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal[open]::backdrop {
  animation: modalBackdropIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.modal.is-closing::backdrop {
  animation: modalBackdropOut 0.45s cubic-bezier(0.55, 0, 0.45, 1) both;
}

.modal__box {
  width: min(540px, 94vw);
  margin: 0;
  padding: 2.6rem;
  flex-shrink: 0;
  transform-origin: center center;
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(26, 143, 92, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(20, 19, 23, 0.98), rgba(10, 10, 13, 0.98));
  border: 1px solid rgba(26, 143, 92, 0.24);
  position: relative;
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow:
    0 42px 110px rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 42px rgba(26, 143, 92, 0.14);
}

.modal__box::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 60%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(26, 143, 92, 0.18) 45%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(26, 143, 92, 0.14) 55%,
    transparent 100%
  );
  transform: translateX(-120%) rotate(6deg);
  animation: modalShimmer 4.2s ease-in-out 0.6s 1 both;
  pointer-events: none;
}

.modal__ornament {
  width: 96px;
  height: 2px;
  margin: 0 auto 1.1rem;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(26, 143, 92, 0.4) 18%,
    rgba(232, 213, 163, 0.95) 50%,
    rgba(26, 143, 92, 0.4) 82%,
    transparent 100%
  );
  box-shadow: 0 0 16px rgba(26, 143, 92, 0.28);
  position: relative;
  z-index: 1;
}

.modal__ornament::before,
.modal__ornament::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px;
  height: 1px;
  background: rgba(232, 213, 163, 0.52);
}

.modal__ornament::before {
  right: calc(100% + 6px);
}

.modal__ornament::after {
  left: calc(100% + 6px);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: 1px solid rgba(26, 143, 92, 0.24);
  color: rgba(232, 213, 163, 0.9);
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.24s var(--ease-out), border-color 0.24s, color 0.24s;
}

.modal__close:hover {
  transform: scale(1.06);
  border-color: rgba(26, 143, 92, 0.5);
  color: var(--emerald-bright);
}

.modal__box h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.4rem);
  font-weight: 500;
  margin-bottom: 0.45rem;
  color: #f3ecdd;
  text-align: center;
  position: relative;
  z-index: 1;
}

.modal__box > p {
  color: #b8b0a4;
  font-size: 0.95rem;
  margin-bottom: 1.35rem;
  text-align: center;
  max-width: 42ch;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.modal__form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.modal__form label span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.modal__form input,
.modal__form select,
.modal__form textarea {
  background: rgba(7, 7, 10, 0.72);
  border: 1px solid rgba(26, 143, 92, 0.18);
  color: var(--champagne);
  padding: 0.75rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  border-radius: 0.72rem;
  transition: border-color 0.24s, box-shadow 0.24s;
}

.modal__form input:focus,
.modal__form select:focus,
.modal__form textarea:focus {
  outline: none;
  border-color: rgba(26, 143, 92, 0.7);
  box-shadow: 0 0 0 3px rgba(26, 143, 92, 0.14);
}

.modal__success {
  color: var(--emerald-bright);
  text-align: center;
  padding: 1rem;
  position: relative;
  z-index: 1;
}

@keyframes modalBoxIn {
  0% {
    transform: translateY(14px) scale(0.965);
    opacity: 0;
    filter: blur(6px);
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes modalBoxOut {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
  }
  100% {
    transform: translateY(10px) scale(0.975);
    opacity: 0;
    filter: blur(4px);
  }
}

@keyframes modalBackdropIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes modalBackdropOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes modalShimmer {
  0% {
    transform: translateX(-120%) rotate(6deg);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateX(120%) rotate(6deg);
    opacity: 0;
  }
}

/* Reduced motion */
@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;
  }

  html.lenis {
    scroll-behavior: auto;
  }
}
