/* =========================================================
   Light Market · Dark Luxe v4
   Gallery-lit · Charcoal & warm gold · Editorial
   ========================================================= */

:root {
  /* Warm near-black canvas, bone text, luminous antique gold */
  --bg:         #0c0a07;
  --bg-2:       #090703;
  --bg-3:       #14100a;
  --surface:    #16110a;
  --surface-2:  #1d160d;

  --ink:        #f2e9d7;   /* primary text · warm bone */
  --ink-2:      #e8dcc4;
  --ink-soft:   #c4b69b;   /* secondary */
  --muted:      #8c7e66;   /* labels / captions */

  --gold:       #c9a253;
  --gold-2:     #ddbd80;
  --gold-3:     #f1ddac;
  --gold-deep:  #8a6a31;

  --line:       rgba(201,162,78,.18);   /* gold hairline */
  --line-2:     rgba(242,233,215,.10);  /* neutral hairline */

  --wa:         #25D366;
  --wa-dark:    #1eb257;

  --radius:     22px;
  --radius-sm:  12px;

  --shadow-md:  0 22px 55px rgba(0,0,0,.5);
  --shadow-lg:  0 40px 100px rgba(0,0,0,.62);
  --shadow-xl:  0 60px 140px rgba(0,0,0,.7);
  --glow-gold:  0 0 70px rgba(201,162,78,.22);

  --container:  1280px;

  --ease:       cubic-bezier(.2,.7,.2,1);
  --ease-out:   cubic-bezier(.16,1,.3,1);

  --font-display: 'Cormorant Garamond', 'David Libre', Georgia, serif;
  --font-body:    'Heebo', system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --font-mark:    'Italiana', 'Cormorant Garamond', serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Warm ambient glow + vignette fixed behind everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(201,162,78,.10) 0%, transparent 45%),
    radial-gradient(100% 100% at 50% 120%, rgba(138,106,49,.08) 0%, transparent 55%),
    radial-gradient(140% 120% at 50% 50%, transparent 55%, rgba(0,0,0,.55) 100%);
}
/* Fine film grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .05;
  mix-blend-mode: soft-light;
}

body.is-loading { overflow: hidden; }
body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; }
::selection { background: var(--gold); color: #14100a; }

/* Keep real content above the ambient layers */
.nav, .hero, .marquee, .features, .story, .products, .cta, .footer,
.mobile-menu, .wa-float, .scroll-progress, .loader { position: relative; z-index: 2; }

/* ============ LOADER ============ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background: transparent;
}
.loader__inner {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: opacity .5s var(--ease);
}
.loader::before,
.loader::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background: #0a0805;
  z-index: 2;
  transition: transform 1.1s var(--ease-out);
  will-change: transform;
}
.loader::before { top: 0; box-shadow: inset 0 -1px 0 rgba(201,162,78,.12); }
.loader::after  { bottom: 0; box-shadow: inset 0 1px 0 rgba(201,162,78,.12); }
body.loaded .loader__inner { opacity: 0; transition: opacity .35s var(--ease); }
body.loaded .loader::before { transform: translateY(-100%); transition-delay: .2s; }
body.loaded .loader::after  { transform: translateY(100%);  transition-delay: .2s; }
body.loaded .loader { visibility: hidden; transition: visibility 0s linear 1.35s; }

.loader__mark {
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUp .8s var(--ease-out) .1s forwards;
  filter: drop-shadow(0 0 18px rgba(201,162,78,.4));
}
.loader__brand {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-2);
  font-size: clamp(36px, 5.5vw, 58px);
  font-weight: 400;
  letter-spacing: .04em;
  line-height: 1;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp .9s var(--ease-out) .3s forwards;
}
.loader__brand i { font-style: italic; color: var(--gold-3); }
.loader__sub {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: rgba(241,221,172,.5);
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUp .8s var(--ease-out) .55s forwards;
}
.loader__bar {
  margin-top: 18px;
  width: 220px;
  height: 1px;
  background: rgba(241,221,172,.14);
  overflow: hidden;
  opacity: 0;
  animation: fadeUp .6s var(--ease-out) .8s forwards;
}
.loader__bar span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold-2), var(--gold-3), var(--gold-2), transparent);
  transform: translateX(-100%);
  animation: loadbar 1.6s var(--ease-out) 1s forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes loadbar { to { transform: translateX(100%); } }

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 100;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-3));
  box-shadow: 0 0 12px rgba(201,162,78,.6);
  transition: width .1s linear;
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s var(--ease-out) var(--d, 0s),
              transform 1s var(--ease-out) var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-line { display: block; overflow: hidden; }
.reveal-line > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease-out) var(--d, 0s);
  will-change: transform;
}
.reveal-line.is-visible > span { transform: translateY(0); }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: env(safe-area-inset-top, 0) 0 0;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10,8,5,.66);
  backdrop-filter: saturate(150%) blur(18px);
  -webkit-backdrop-filter: saturate(150%) blur(18px);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.nav__brand {
  font-family: var(--font-mark);
  font-size: 19px;
  letter-spacing: .32em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav__brand i { color: var(--gold); font-style: normal; font-weight: 500; }
.nav__mark { color: var(--gold); transition: transform .6s var(--ease); filter: drop-shadow(0 0 10px rgba(201,162,78,.35)); }
.nav__brand:hover .nav__mark { transform: rotate(-10deg) scale(1.1); }

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  font-size: 13px;
  letter-spacing: .2em;
}
.nav__links a {
  position: relative;
  color: var(--ink-soft);
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .4s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: transparent;
  color: var(--gold-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .15em;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.nav__cta:hover {
  background: linear-gradient(135deg, var(--gold-3), var(--gold) 60%, var(--gold-deep));
  color: #14100a;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(201,162,78,.6);
}
.nav__cta svg { transition: transform .35s var(--ease); }
.nav__cta:hover svg { transform: translateX(3px); }

.nav__burger {
  display: none;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  padding: 0;
  z-index: 60;
}
.nav__burger span {
  position: absolute;
  left: 50%;
  width: 16px;
  height: 1.5px;
  background: var(--gold-2);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform .4s var(--ease), opacity .3s var(--ease), top .4s var(--ease);
}
.nav__burger span:nth-child(1) { top: 14px; }
.nav__burger span:nth-child(2) { top: 20px; }
.nav__burger span:nth-child(3) { top: 26px; }
body.menu-open .nav__burger span:nth-child(1) { top: 20px; transform: translateX(-50%) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { top: 20px; transform: translateX(-50%) rotate(-45deg); }

@media (max-width: 880px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .nav__inner { grid-template-columns: 1fr auto; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, #14100a 0%, #0a0805 100%);
  color: var(--gold-3);
  z-index: 55;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s;
}
.mobile-menu::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 50% 30%, rgba(201,162,78,.12), transparent 60%);
  pointer-events: none;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu a {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(28px, 7vw, 44px);
  letter-spacing: .04em;
  padding: 14px 28px;
  color: var(--ink);
  transform: translateY(20px);
  opacity: 0;
  transition: opacity .5s var(--ease) .1s, transform .5s var(--ease) .1s, color .25s;
}
body.menu-open .mobile-menu a { transform: translateY(0); opacity: 1; }
body.menu-open .mobile-menu a:nth-child(2) { transition-delay: .18s; }
body.menu-open .mobile-menu a:nth-child(3) { transition-delay: .26s; }
body.menu-open .mobile-menu a:nth-child(4) { transition-delay: .34s; }
.mobile-menu a:hover { color: var(--gold-2); }
.mobile-menu__cta {
  margin-top: 30px;
  font-size: 18px !important;
  letter-spacing: .15em !important;
  font-family: var(--font-body) !important;
  background: var(--wa);
  color: #fff !important;
  padding: 16px 36px !important;
  border-radius: 999px;
  box-shadow: 0 14px 36px -10px rgba(37,211,102,.6);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: .12em;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), color .35s var(--ease), background .35s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn svg { flex-shrink: 0; transition: transform .35s var(--ease); }

/* Primary = ivory plate, dark ink · museum-clean on near-black */
.btn--primary {
  background: linear-gradient(180deg, #f7efdd, #ece0c6);
  color: #15110a;
  box-shadow: 0 16px 40px -14px rgba(0,0,0,.8), inset 0 1px 0 rgba(255,255,255,.6);
}
.btn__label {
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: 1.3em;
}
.btn__txt { display: block; transition: transform .55s var(--ease-out); }
.btn__txt + .btn__txt { position: absolute; top: 100%; left: 0; }
.btn--primary:hover .btn__txt { transform: translateY(-100%); }
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px -16px rgba(0,0,0,.85), inset 0 1px 0 rgba(255,255,255,.6);
}
.btn__icon { display: inline-flex; }
.btn--primary:hover .btn__icon svg { transform: translateX(-4px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--gold-3), var(--gold) 60%, var(--gold-deep));
  border-radius: 999px;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .5s var(--ease-out);
  z-index: -1;
}
.btn--ghost:hover {
  color: #15110a;
  border-color: transparent;
  transform: translateY(-3px);
}
.btn--ghost:hover::before { transform: scaleY(1); transform-origin: top; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-3) 0%, var(--gold-2) 35%, var(--gold) 65%, var(--gold-deep) 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #15110a;
  box-shadow: 0 18px 46px -12px rgba(201,162,78,.6), inset 0 1px 0 rgba(255,255,255,.4);
  font-weight: 600;
  transition: background-position .8s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.btn--gold:hover {
  background-position: 100% 50%;
  transform: translateY(-3px);
  box-shadow: 0 26px 64px -12px rgba(201,162,78,.7), inset 0 1px 0 rgba(255,255,255,.4);
}

.btn--whatsapp {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 14px 34px -10px rgba(37,211,102,.5);
  width: 100%;
  padding: 16px 26px;
}
.btn--whatsapp::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  transition: left .7s var(--ease);
}
.btn--whatsapp:hover {
  background: var(--wa-dark);
  transform: translateY(-3px);
  box-shadow: 0 18px 44px -10px rgba(30,178,87,.6);
}
.btn--whatsapp:hover::after { left: 120%; }
.btn--whatsapp:hover svg { transform: rotate(-12deg) scale(1.1); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 90% 60% at 60% 8%, rgba(201,162,78,.14) 0%, transparent 55%),
    radial-gradient(ellipse 120% 90% at 50% 0%, #15100a 0%, var(--bg) 55%, var(--bg-2) 100%);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .5;
}
.orb--1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(221,189,128,.5) 0%, transparent 65%);
  top: -180px; right: -150px;
  animation: float 16s ease-in-out infinite;
}
.orb--2 {
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(138,106,49,.5) 0%, transparent 65%);
  bottom: -200px; left: -130px;
  animation: float 20s ease-in-out infinite reverse;
}
.orb--3 { display: none; }
@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(28px,-36px) scale(1.08); }
}
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(242,233,215,.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(242,233,215,.035) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(ellipse at center, #000 25%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 25%, transparent 72%);
}
.grain { display: none; }

.hero__grid {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
  z-index: 2;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  background: rgba(241,221,172,.04);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .25em;
  color: var(--gold-2);
  margin-bottom: 32px;
}
.hero__eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,162,78,.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,162,78,.5); }
  50%     { box-shadow: 0 0 0 8px rgba(201,162,78,0); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(46px, 6.6vw, 92px);
  font-weight: 400;
  line-height: 1.02;
  color: var(--ink);
  margin: 0 0 32px;
  letter-spacing: -.02em;
}
.hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-2);
  position: relative;
  text-shadow: 0 0 40px rgba(201,162,78,.25);
}
.hero__title em::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: .06em;
  height: 1px;
  background: currentColor;
  opacity: .35;
  transform: scaleX(0);
  transform-origin: right;
  animation: underlineIn 1.1s var(--ease-out) 1.4s forwards;
}
@keyframes underlineIn { to { transform: scaleX(1); } }

.hero__subtitle {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 0 42px;
  font-weight: 300;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__meta {
  display: inline-flex;
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 18px 30px;
}
.meta:first-child { padding-inline-start: 0; }
.meta:last-child { padding-inline-end: 0; }
.meta + .meta { border-inline-start: 1px solid var(--line); }
.meta__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 30px;
  color: var(--gold-2);
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1;
}
.meta__lbl {
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--muted);
  text-transform: uppercase;
}
.meta__sep { display: none; }

/* Hero visual · spotlit pedestal */
.hero__visual {
  position: relative;
  height: 620px;
}
.hero__stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__stage::before {
  /* warm spotlight pool */
  content: "";
  position: absolute;
  bottom: 4%;
  left: 50%;
  width: 78%;
  height: 40%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(221,189,128,.5) 0%, rgba(201,162,78,.12) 40%, transparent 70%);
  filter: blur(34px);
  z-index: 0;
}
.hero__stage::after {
  /* faint halo ring behind the product */
  content: "";
  position: absolute;
  top: 46%;
  left: 50%;
  width: 62%;
  aspect-ratio: 1;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,78,.16) 0%, transparent 62%);
  z-index: 0;
}
.hero__img {
  position: relative;
  max-height: 100%;
  max-width: 80%;
  object-fit: contain;
  filter: drop-shadow(0 50px 70px rgba(0,0,0,.6)) drop-shadow(0 12px 24px rgba(0,0,0,.45));
  z-index: 2;
  animation: heroFloat 7s ease-in-out infinite;
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .4em;
  z-index: 2;
  text-transform: uppercase;
}
.hero__scroll .line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(.3); opacity: .3; transform-origin: top; }
  50%     { transform: scaleY(1);  opacity: .9; transform-origin: top; }
}

@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 30px; }
  .hero__visual { height: 460px; order: -1; }
  .hero__title { font-size: clamp(42px, 9vw, 72px); }
}
@media (max-width: 720px) {
  .hero { padding: 130px 0 70px; min-height: auto; }
  .hero__visual { height: 360px; }
  .hero__meta { gap: 14px; padding: 14px 18px; flex-wrap: wrap; justify-content: center; }
  .meta__sep { display: none; }
  .hero__scroll { display: none; }
}

/* ============ MARQUEE ============ */
.marquee {
  background: linear-gradient(180deg, #100c07, #0a0805);
  color: var(--gold-2);
  padding: 26px 0;
  overflow: hidden;
  position: relative;
  border-block: 1px solid var(--line);
}
.marquee__track {
  display: inline-flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-style: italic;
  letter-spacing: .03em;
  align-items: center;
}
.marquee__track span { color: var(--ink-2); }
.marquee__track i { color: var(--gold); font-style: normal; font-size: .7em; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(50%); }
}
html[dir="rtl"] .marquee__track { animation-direction: reverse; }

/* ============ FEATURES STRIP ============ */
.features {
  max-width: var(--container);
  margin: 0 auto;
  padding: 76px 28px 34px;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
}
.feature svg { color: var(--gold); flex-shrink: 0; filter: drop-shadow(0 0 10px rgba(201,162,78,.25)); }
.feature strong {
  display: block;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1.2;
  color: var(--ink);
}
.feature span {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 3px;
  letter-spacing: .02em;
}
@media (max-width: 880px) {
  .features { padding: 50px 22px 20px; }
  .features__grid { grid-template-columns: repeat(2, 1fr); gap: 14px 22px; }
  .feature { padding: 16px 0; gap: 12px; }
  .feature strong { font-size: 16px; }
  .feature span { font-size: 11.5px; }
}
@media (max-width: 460px) {
  .features__grid { grid-template-columns: 1fr; }
}

/* ============ STORY (manifesto) ============ */
.story {
  padding: 150px 28px 140px;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.story .eyebrow { display: block; margin-bottom: 36px; }
.story__quote { margin: 0; position: relative; }
.story__mark {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(120px, 18vw, 200px);
  color: var(--gold);
  line-height: .6;
  opacity: .28;
  height: .5em;
  user-select: none;
  text-shadow: 0 0 60px rgba(201,162,78,.3);
}
.story__quote p {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
  letter-spacing: -.01em;
}
.story__quote p em { font-style: italic; color: var(--gold-2); font-weight: 500; }
.story__quote footer {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--muted);
}
.story__line { display: inline-block; width: 48px; height: 1px; background: var(--gold); }
@media (max-width: 720px) {
  .story { padding: 90px 22px 90px; }
  .story__quote p { font-size: clamp(24px, 6.5vw, 32px); }
}

/* ============ SECTION HEADINGS ============ */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .4em;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
  font-weight: 500;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 18px;
  line-height: 1.04;
  letter-spacing: -.02em;
}
.section-title em { font-style: italic; color: var(--gold-2); font-weight: 500; }
.section-sub { color: var(--ink-soft); font-size: 17px; font-weight: 300; margin: 0; }
.section-head { max-width: 720px; margin: 0 auto 80px; text-align: center; }

/* ============ PRODUCTS ============ */
.products {
  padding: 150px 28px 150px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,162,78,.10), transparent 65%),
    var(--bg);
  position: relative;
}
.products__list {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.product {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.product:nth-child(even) .product__media { order: 2; }

/* Gallery media panel · spotlit, framed */
.product__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  isolation: isolate;
  transition: transform .8s var(--ease), box-shadow .8s var(--ease);
  box-shadow: var(--shadow-lg);
}
.product--light .product__media {
  background:
    radial-gradient(ellipse 65% 55% at 50% 42%, #2a2014 0%, #17110b 55%, #0c0805 100%);
}
.product--dark .product__media {
  background:
    radial-gradient(ellipse 65% 55% at 50% 42%, #241b11 0%, #140e08 58%, #080502 100%);
}
.product__media:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl), var(--glow-gold);
}
/* spotlight pool from top */
.product__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 60% 42% at 50% 18%, rgba(241,221,172,.22) 0%, transparent 60%);
  pointer-events: none;
}
/* inset gold frame + vignette */
.product__media::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 4;
  pointer-events: none;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 10px);
  box-shadow: inset 0 0 120px rgba(0,0,0,.55);
}

.product__media-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 1s var(--ease);
  will-change: transform;
  z-index: 2;
}
.product__media:hover .product__media-inner { transform: scale(1.04); }
.product__media-inner img {
  max-width: 76%;
  max-height: 84%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transition: transform 1s var(--ease), filter 1s var(--ease);
}
.product--light .product__media-inner img {
  filter: drop-shadow(0 36px 50px rgba(0,0,0,.55)) drop-shadow(0 10px 18px rgba(0,0,0,.4));
}
.product--dark .product__media-inner img {
  filter: drop-shadow(0 36px 50px rgba(0,0,0,.6)) drop-shadow(0 10px 18px rgba(0,0,0,.45));
}

.product__num {
  position: absolute;
  top: 30px;
  inset-inline-end: 34px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
  font-style: italic;
  color: rgba(241,221,172,.6);
  z-index: 5;
  letter-spacing: .15em;
}
.product__num::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-inline-end: 10px;
  opacity: .5;
}

.badge {
  position: absolute;
  top: 30px;
  inset-inline-start: 30px;
  z-index: 5;
  font-size: 10px;
  letter-spacing: .35em;
  padding: 6px 0;
  font-weight: 500;
  text-transform: uppercase;
}
.badge--new {
  color: var(--gold-3);
  border-bottom: 1px solid var(--gold-3);
  padding-bottom: 4px;
}
.badge--sale {
  color: var(--gold-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--gold-3);
  padding-bottom: 4px;
}
.badge--sale .badge__pct {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
}

.product__info { display: flex; flex-direction: column; gap: 20px; }
.product__cat {
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.product__name {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  line-height: 1.05;
  letter-spacing: -.02em;
}
.product__desc {
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 300;
  margin: 0;
  line-height: 1.85;
  max-width: 480px;
}
.product__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 4px 0;
  border-top: 1px solid var(--line);
}
.product__specs li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.product__specs li:nth-child(odd) { border-inline-end: 1px solid var(--line); padding-inline-end: 18px; }
.product__specs li:nth-child(even) { padding-inline-start: 18px; }
.product__specs span {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
}
.product__specs strong {
  font-weight: 500;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 18px;
}

.product__buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 12px;
}
.product__price { display: flex; align-items: baseline; gap: 12px; }
.price {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  letter-spacing: -.02em;
}
.price__cur { font-size: 24px; color: var(--gold-2); font-weight: 500; }
.price--old {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 20px;
  font-family: var(--font-display);
}
.product__buy .btn--whatsapp { width: auto; flex: 1; min-width: 220px; }

@media (max-width: 880px) {
  .products { padding: 80px 22px 90px; }
  .products__list { gap: 80px; }
  .product { grid-template-columns: 1fr; gap: 28px; }
  .product:nth-child(even) .product__media { order: 0; }
  .product__media { aspect-ratio: 4 / 5; }
  .product__info { gap: 16px; }
  .badge { top: 22px; inset-inline-start: 24px; }
  .product__num { top: 22px; inset-inline-end: 24px; font-size: 18px; }
  .product__name { font-size: 34px; }
  .price { font-size: 44px; }
  .product__specs { grid-template-columns: 1fr; }
  .product__specs li:nth-child(odd) { border-inline-end: none; padding-inline-end: 4px; }
  .product__specs li:nth-child(even) { padding-inline-start: 4px; }
  .product__buy { flex-direction: column; align-items: stretch; }
  .product__buy .btn--whatsapp { width: 100%; }
}

/* ============ CTA ============ */
.cta {
  position: relative;
  padding: 140px 24px;
  background: linear-gradient(180deg, #110c07 0%, #060402 100%);
  color: var(--gold-3);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--line);
}
.cta__bg { position: absolute; inset: 0; z-index: -1; }
.cta__orb {
  position: absolute;
  width: 820px; height: 820px;
  background: radial-gradient(circle, rgba(201,162,78,.26) 0%, transparent 60%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  filter: blur(40px);
  animation: spotlightPulse 6s ease-in-out infinite;
}
@keyframes spotlightPulse {
  0%,100% { opacity: .7; transform: translate(-50%,-50%) scale(1); }
  50%     { opacity: 1;  transform: translate(-50%,-50%) scale(1.06); }
}
.cta__lines { position: absolute; inset: 0; display: flex; justify-content: space-around; }
.cta__lines span {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,162,78,.16), transparent);
  animation: lineFade 4s ease-in-out infinite;
}
.cta__lines span:nth-child(2) { animation-delay: -1s; }
.cta__lines span:nth-child(3) { animation-delay: -2s; }
.cta__lines span:nth-child(4) { animation-delay: -3s; }
.cta__lines span:nth-child(5) { animation-delay: -.5s; }
@keyframes lineFade { 0%,100% { opacity: .3; } 50% { opacity: 1; } }

.cta__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.cta .eyebrow { color: var(--gold-2); }
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 400;
  color: #fff;
  margin: 0 0 20px;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.cta__title em { font-style: italic; color: var(--gold-2); font-weight: 500; text-shadow: 0 0 40px rgba(201,162,78,.3); }
.cta__sub { font-size: 16px; font-weight: 300; color: #c9bfa8; margin: 0 0 36px; }
.cta__phone { margin-top: 28px; font-size: 14px; letter-spacing: .15em; color: #9d9281; }
.cta__phone a {
  color: var(--gold-2);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color .3s, color .3s;
}
.cta__phone a:hover { color: var(--gold-3); border-color: var(--gold); }

/* ============ FOOTER ============ */
.footer {
  background: linear-gradient(180deg, #0a0704 0%, #050301 100%);
  color: #c9bfa8;
  padding: 92px 28px 32px;
  position: relative;
}
.footer__top {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line-2);
}
.footer__brand { max-width: 380px; }
.footer__logo {
  font-family: var(--font-mark);
  font-size: 24px;
  letter-spacing: .4em;
  color: var(--gold-2);
  margin-bottom: 16px;
}
.footer__logo span { color: var(--gold); }
.footer__tagline { font-size: 14px; font-weight: 300; color: #9d9281; margin: 0; line-height: 1.8; }
.footer__col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: .35em;
  color: var(--gold-2);
  text-transform: uppercase;
  margin: 0 0 18px;
  font-weight: 500;
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: #c9bfa8;
  padding: 6px 0;
  transition: color .25s var(--ease), padding .25s var(--ease);
  position: relative;
}
.footer__col a::before {
  content: "→";
  position: absolute;
  inset-inline-start: -20px;
  opacity: 0;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  color: var(--gold);
}
.footer__col a:hover { color: var(--gold-3); padding-inline-start: 14px; }
.footer__col a:hover::before { opacity: 1; transform: translateX(6px); }

.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer__copy { font-size: 12px; letter-spacing: .15em; color: #7a7060; margin: 0; }
.footer__credit {
  font-size: 12px;
  letter-spacing: .15em;
  color: #7a7060;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer__heart { color: var(--gold); display: inline-block; }
.footer__credit a {
  color: var(--gold-2);
  font-weight: 500;
  letter-spacing: .12em;
  position: relative;
  transition: color .25s var(--ease);
}
.footer__credit a::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform .4s var(--ease);
}
.footer__credit a:hover { color: var(--gold-3); }
.footer__credit a:hover::after { transform: scaleX(1); }

@media (max-width: 760px) {
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { justify-content: center; text-align: center; }
}

/* ============ FLOATING WHATSAPP ============ */
.wa-float {
  position: fixed;
  bottom: 20px;
  inset-inline-end: 20px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(37,211,102,.5);
  z-index: 60;
  transition: transform .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
  bottom: calc(20px + env(safe-area-inset-bottom, 0));
}
.wa-float__icon { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; }
.wa-float__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--wa);
  opacity: .55;
  animation: ring 2.4s ease-out infinite;
}
.wa-float__ring--2 { animation-delay: -1.2s; }
@keyframes ring {
  0%   { transform: scale(.95); opacity: .55; }
  100% { transform: scale(1.6); opacity: 0; }
}
.wa-float:hover {
  background: var(--wa-dark);
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 16px 40px rgba(30,178,87,.6);
}

/* ============ MAGNETIC HOVER STATE ============ */
[data-magnet] { transition: transform .35s var(--ease); }

/* ============ MOBILE FINE-TUNING ============ */
@media (max-width: 540px) {
  .nav__inner { padding: 12px 18px; }
  .nav__brand { font-size: 16px; letter-spacing: .28em; }
  .nav__brand .nav__mark { width: 18px; height: 18px; }

  .hero { padding: 110px 0 60px; }
  .hero__grid { padding: 0 20px; gap: 24px; }
  .hero__title { font-size: clamp(40px, 11vw, 56px); margin-bottom: 24px; }
  .hero__subtitle { font-size: 15px; margin-bottom: 32px; }
  .hero__eyebrow { font-size: 10px; padding: 6px 14px; letter-spacing: .2em; }
  .hero__actions { width: 100%; }
  .hero__actions .btn { flex: 1; min-width: 0; padding: 14px 18px; font-size: 13px; }
  .hero__meta { gap: 12px; padding: 12px 16px; }
  .meta__num { font-size: 18px; }
  .meta__lbl { font-size: 9px; letter-spacing: .18em; }
  .hero__visual { height: 320px; }

  .marquee { padding: 20px 0; }
  .section-head { margin-bottom: 50px; }

  .product__name { font-size: 28px; }
  .product__desc { font-size: 14.5px; }
  .price { font-size: 38px; }
  .price__cur { font-size: 18px; }

  .cta { padding: 90px 20px; }
  .cta__title { font-size: clamp(30px, 7vw, 42px); }

  .footer { padding: 70px 22px 28px; }

  .wa-float { width: 56px; height: 56px; bottom: 16px; inset-inline-end: 16px; }
  .wa-float svg { width: 22px; height: 22px; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal, .reveal-line > span { opacity: 1; transform: none; }
  .hero__img, .orb { animation: none; }
}
