:root{
  --bg:#ffffff;
  --surface:#f7f5f0;
  --surface-2:#fdfbf7;
  --text:#0b0b0d;
  --muted-text:#5c5c66;
  --muted-text-2:#75757f;
  --gold:#c9a44b;
  --gold-2:#e7d7a0;

  --ink-rgb: 11 11 13;
  --white-rgb: 255 255 255;
  --gold-rgb: 201 164 75;
  --gold-2-rgb: 231 215 160;

  --border: rgb(var(--ink-rgb) / 0.10);
  --border-strong: rgb(var(--ink-rgb) / 0.18);
  --border-soft: rgb(var(--ink-rgb) / 0.06);
  --shadow: rgb(var(--ink-rgb) / 0.08);
  --shadow-strong: rgb(var(--ink-rgb) / 0.14);
  --shadow-soft: rgb(var(--ink-rgb) / 0.05);

  --bg-gradient: linear-gradient(180deg, var(--bg), var(--surface-2));
  --header-bg: rgb(var(--white-rgb) / 0.92);
  --header-bg-strong: rgb(var(--white-rgb) / 0.98);
  --glass: rgb(var(--white-rgb) / 0.75);
  --glass-strong: rgb(var(--white-rgb) / 0.92);

  --glow-gold: rgb(var(--gold-rgb) / 0.35);
  --glow-gold-strong: rgb(var(--gold-rgb) / 0.55);
  --glow-gold-soft: rgb(var(--gold-2-rgb) / 0.55);
  --glow-neutral: rgb(var(--white-rgb) / 0.65);

  --hero-sheen: linear-gradient(120deg, rgb(var(--white-rgb) / 0.75), transparent 40%, rgb(var(--gold-2-rgb) / 0.6), transparent 70%);
  --card-sheen: linear-gradient(120deg, transparent 35%, rgb(var(--white-rgb) / 0.5) 45%, transparent 55%);
  --flag-pill: linear-gradient(135deg, rgb(var(--gold-rgb) / 0.25), rgb(var(--gold-2-rgb) / 0.4));
  --bar-bg: linear-gradient(135deg, rgb(var(--gold-rgb) / 0.22), rgb(var(--gold-2-rgb) / 0.22));

  --btn-primary-bg: linear-gradient(135deg, var(--gold), var(--gold-2));
  --btn-primary-bg-hover: linear-gradient(135deg, rgb(var(--gold-rgb) / 0.98), rgb(var(--gold-2-rgb) / 0.92));
  --btn-primary-bg-active: linear-gradient(135deg, rgb(var(--gold-rgb) / 0.88), rgb(var(--gold-2-rgb) / 0.78));
  --btn-secondary-bg: var(--bg);
  --btn-secondary-hover: rgb(var(--gold-rgb) / 0.08);

  --focus-ring: 0 0 0 3px rgb(var(--gold-rgb) / 0.35);

  --ticker-bg: linear-gradient(90deg, rgb(var(--white-rgb) / 0.96), rgb(var(--gold-2-rgb) / 0.28), rgb(var(--white-rgb) / 0.96));
  --ticker-text: var(--text);

  --radius: 22px;
  --radius2: 28px;
  --max: 1200px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg-gradient);
  overflow-x:hidden;
}
a{color:inherit; text-decoration:none}
button{font-family:inherit}

.is-primed .header{
  opacity:0;
  transform: translateY(-12px);
}
.is-primed .hero__content{
  opacity:0;
  transform: translateY(22px);
  filter: blur(12px);
}
.is-primed .hero__visual{
  opacity:0;
  transform: translate3d(0,26px,0) scale(.96) rotateX(8deg);
}
.is-primed .bottle{
  opacity:0;
  transform: translate(-50%,-50%) scale(.9) rotateX(10deg) rotateY(-8deg);
}
.is-primed .hero__scroll{
  opacity:0;
  transform: translateY(8px);
}
.is-primed .bg__glow{
  opacity:.10;
  transform: scale(.9);
}

.is-hero-ready .header{animation: headerDrop .55s ease forwards;}
.is-hero-ready .hero__content{animation: heroRise .85s cubic-bezier(.22,.61,.36,1) forwards;}
.is-hero-ready .hero__visual{animation: heroFocus 1.05s cubic-bezier(.18,.68,.35,1) forwards;}
.is-hero-ready .bottle{animation: bottleEntry 1s cubic-bezier(.18,.68,.35,1) .25s forwards;}
.is-hero-ready .hero__scroll{animation: fadeIn .65s ease .55s forwards;}
.is-hero-ready .bg__glow{animation: glowLift 1.4s ease forwards;}

.is-primed .card{
  opacity:0;
  transform: translateY(26px) scale(.98);
}
.is-primed .card.is-visible{
  opacity:1;
  transform: translateY(0) scale(1);
  transition-delay: var(--card-delay, 0s);
}

.is-hero-ready .section__head{
  animation: fadeIn .7s ease .24s forwards;
}

.bg{
  position:fixed; inset:0; z-index:-1; overflow:hidden;
}
.bg__glow{
  position:absolute; width:62vmax; height:62vmax; border-radius:999px;
  filter: blur(55px);
  opacity:.36;
  animation: float 14s ease-in-out infinite;
  transform: translate3d(0,0,0);
  will-change: transform, opacity;
}
.bg__glow--a{left:-22vmax; top:-22vmax; background: radial-gradient(circle at 30% 30%, var(--glow-gold-strong), transparent 55%)}
.bg__glow--b{right:-26vmax; bottom:-26vmax; animation-duration: 18s; background: radial-gradient(circle at 30% 30%, var(--glow-gold-soft), transparent 58%)}
.bg__noise{
  position:absolute; inset:-40%;
  background-image: url("../assets/images/ui/noise.svg");
  opacity:.06;
  transform: rotate(10deg);
}
@keyframes float{
  0%,100%{transform: translate3d(0,0,0) scale(1)}
  50%{transform: translate3d(2.2vmax,-1.4vmax,0) scale(1.04)}
}

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, var(--header-bg-strong), var(--header-bg));
  border-bottom: 1px solid var(--border);
}
.header__inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.brand__logo{
  width: 120px;
  height: auto;
  display: block;
}
.brand__text{
  display:flex;
  flex-direction:column;
  gap: 3px;
}
.brand__name{
  font-family: Cinzel, serif;
  letter-spacing: .22em;
  font-weight:700;
  font-size: 16px;
}
.brand__sub{
  font-size: 11px;
  color: var(--muted-text-2);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.nav{display:none; gap:14px; color: var(--muted-text); font-size: 13px;}
.nav__link{opacity:1; padding: 8px 10px; border-radius: 999px; border: 1px solid transparent; color: var(--muted-text);}
.nav__link:hover{color: var(--text); border-color: var(--border); background: rgb(var(--gold-rgb) / 0.06);}
.nav__link.is-active,
.nav__link[aria-current="true"]{
  opacity:1;
  color: var(--gold);
  border-color: rgb(var(--gold-rgb) / 0.45);
  box-shadow: inset 0 -2px 0 rgb(var(--gold-rgb) / 0.55);
}
.nav__link:focus-visible{outline:none; box-shadow: var(--focus-ring); border-color: var(--gold);}

.wa{
  width: 42px; height: 42px;
  display:grid; place-items:center;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--btn-secondary-bg);
  cursor:pointer;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.wa:hover{transform: translateY(-1px); border-color: var(--gold); background: var(--btn-secondary-hover);}
.wa:focus-visible{outline:none; box-shadow: var(--focus-ring); border-color: var(--gold);}
.wa__icon{
  width: 20px; height: 20px; background: currentColor; color: var(--text);
  -webkit-mask: url("../assets/images/ui/whatsapp.svg") center/contain no-repeat;
          mask: url("../assets/images/ui/whatsapp.svg") center/contain no-repeat;
}

.ticker{
  background: var(--ticker-bg);
  color: var(--ticker-text);
  overflow:hidden;
  border-bottom: 1px solid rgb(var(--gold-rgb) / 0.18);
  box-shadow: 0 6px 16px rgb(var(--ink-rgb) / 0.06);
}
.ticker__track{
  display:inline-flex;
  align-items:center;
  white-space: nowrap;
  width: max-content;
  animation: ticker 24s linear infinite;
  will-change: transform;
}
.ticker__item{
  padding: 7px 40px 7px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .02em;
}
.ticker__item [dir="rtl"]{
  letter-spacing: 0;
}

.hero{
  max-width: var(--max);
  margin: 0 auto;
  padding: 44px 16px 10px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items:center;
  perspective: 1400px;
  transform-style: preserve-3d;
}
.hero__content{
  margin-top: -10px;
}
.hero__flag{
  display:flex; align-items:center; gap: 10px;
  margin-bottom: 6px;
}
.flag__pill{
  background: var(--flag-pill);
  border: 1px solid rgb(var(--gold-rgb) / 0.35);
  color: var(--text);
  font-size: 11px;
  letter-spacing:.18em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 999px;
  box-shadow: 0 8px 24px var(--shadow-soft);
}
.flag__text{
  color: var(--muted-text);
  font-size: 13px;
}
.hero__kicker{
  color: var(--gold);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 11px;
  margin: 0 0 10px;
}
.hero__title{
  margin: 0;
  font-family: Cinzel, serif;
  letter-spacing: .08em;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.08;
}
.hero__accent{
  color: var(--gold);
  text-shadow: 0 0 18px rgb(var(--gold-rgb) / 0.25);
}
.hero__desc{
  margin: 14px 0 0;
  color: var(--muted-text);
  line-height: 1.65;
  max-width: 56ch;
}
.hero__actions{
  display:flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap:wrap;
}
.btn{
  border: 1px solid var(--border);
  background: var(--btn-secondary-bg);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  gap: 10px;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  letter-spacing: .02em;
}
.btn:hover{transform: translateY(-1px); background: var(--btn-secondary-hover); border-color: var(--gold);}
.btn:active{transform: translateY(0); background: rgb(var(--gold-rgb) / 0.12);}
.btn:focus-visible{outline:none; box-shadow: var(--focus-ring); border-color: var(--gold);}
.btn--primary{
  border-color: rgb(var(--gold-rgb) / 0.6);
  background: var(--btn-primary-bg);
  color: var(--text);
}
.btn--primary:hover{background: var(--btn-primary-bg-hover);}
.btn--primary:active{background: var(--btn-primary-bg-active);}
.btn--ghost{background: var(--btn-secondary-bg); border-color: var(--gold);}
.btn--ghost:hover{background: var(--btn-secondary-hover);}
.btn--wa{border-color: var(--gold); background: rgb(var(--gold-rgb) / 0.14);}
.btn--wa:hover{background: rgb(var(--gold-rgb) / 0.2);}
.btn__icon{
  width: 18px; height: 18px; background: currentColor; color: var(--text);
  -webkit-mask: url("../assets/images/ui/whatsapp.svg") center/contain no-repeat;
          mask: url("../assets/images/ui/whatsapp.svg") center/contain no-repeat;
}

.hero__chips{margin-top: 18px; display:flex; gap:10px; flex-wrap:wrap;}
.chip{
  font-size: 12px;
  color: var(--muted-text);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 10px;
  background: var(--surface);
}
.hero__trust{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px;
  margin: 16px 0 0;
}
.trust__item{
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--bg), var(--surface));
  color: var(--muted-text);
  font-size: 12.5px;
  padding: 10px 12px;
  border-radius: 14px;
  box-shadow: 0 10px 24px var(--shadow-soft);
}
.hero__bar{
  position:relative;
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgb(var(--gold-rgb) / 0.45);
  background: var(--bar-bg);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  box-shadow: 0 10px 28px var(--shadow);
}
.bar__glow{
  position:absolute; inset:-30%; background: radial-gradient(circle at 30% 50%, rgb(var(--white-rgb) / 0.7), transparent 45%);
  filter: blur(30px); opacity:.35; pointer-events:none;
}
.bar__text{font-size: 13px; letter-spacing:.02em; color: var(--text);}
.bar__cta{
  font-weight:700;
  color: var(--text);
  border: 1px solid var(--border-strong);
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--bg);
  box-shadow: inset 0 0 0 1px var(--border-soft);
}
.bar__cta:focus-visible{outline:none; box-shadow: var(--focus-ring);}

.hero__visual{
  position:relative;
  height: 380px;
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 20% 20%, rgb(var(--gold-2-rgb) / 0.25), transparent 45%),
    radial-gradient(circle at 70% 70%, rgb(var(--gold-rgb) / 0.18), transparent 55%),
    var(--surface);
  overflow:hidden;
  box-shadow: 0 24px 60px var(--shadow);
  transform-style: preserve-3d;
}
.hero__shine{
  position:absolute; inset:-30%;
  background: var(--hero-sheen);
  opacity:.4;
  filter: blur(22px);
  mix-blend-mode: screen;
  animation: sheen 9s linear infinite;
  animation-play-state: paused;
  z-index: 2;
  pointer-events:none;
}
.hero__scene{
  position:absolute; inset:0;
  transform-style: preserve-3d;
  animation: sceneOrbit 12s ease-in-out infinite;
  animation-play-state: paused;
  will-change: transform;
  z-index: 1;
  pointer-events:none;
}
.halo{
  position:absolute; inset:12%;
  border-radius: 32px;
  filter: blur(30px);
  mix-blend-mode: screen;
  opacity:.75;
  transform: translateZ(-20px);
}
.halo--outer{background: radial-gradient(circle at 40% 40%, rgb(var(--gold-rgb) / 0.35), transparent 45%);}
.halo--inner{inset:24%; background: radial-gradient(circle at 60% 60%, rgb(var(--gold-2-rgb) / 0.35), transparent 45%);}
.sparkles{
  position:absolute; inset:0; pointer-events:none;
}
.sparkles span{
  position:absolute; width: 7px; height: 7px; border-radius: 999px;
  background: rgb(var(--white-rgb) / 0.85);
  box-shadow: 0 0 22px rgb(var(--gold-rgb) / 0.6);
  animation: twinkle 2.2s ease-in-out infinite;
  animation-play-state: paused;
}
.sparkles span:nth-child(1){left:18%; top:20%; animation-delay:.1s;}
.sparkles span:nth-child(2){left:72%; top:24%; animation-delay:.45s;}
.sparkles span:nth-child(3){left:28%; top:68%; animation-delay:.8s;}
.sparkles span:nth-child(4){left:64%; top:74%; animation-delay:1.1s;}
.sparkles span:nth-child(5){left:86%; top:42%; animation-delay:1.3s;}
.sparkles span:nth-child(6){left:10%; top:46%; animation-delay:1.6s;}
.hero__frame{
  position:absolute; left:50%; width:72%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(var(--gold-rgb) / 0.4), transparent);
  opacity:.55;
  transform: translateZ(16px);
}
.hero__frame--top{top: 20%;}
.hero__frame--bottom{bottom: 18%;}
.orb{
  position:absolute; width: 230px; height: 230px; border-radius:50%;
  filter: blur(12px); opacity:.65;
  animation: drift 10s ease-in-out infinite;
}
.orb--a{left:-50px; top:40px; background: radial-gradient(circle at 30% 30%, var(--glow-gold-strong), transparent 65%)}
.orb--b{right:-60px; bottom:-50px; background: radial-gradient(circle at 30% 30%, var(--glow-gold-soft), transparent 65%); animation-duration: 13s;}
@keyframes drift{
  0%,100%{transform: translate3d(0,0,18px);}
  50%{transform: translate3d(18px,-10px,46px);}
}

.bottle{
  position:absolute; left:50%; top:52%;
  transform: translate(-50%,-50%);
  width: 210px; height: 290px;
  border-radius: 36px;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgb(var(--white-rgb) / 0.9), rgb(var(--white-rgb) / 0.65));
  overflow: hidden;
  padding: 14px;
  display:grid;
  place-items:center;
  transform-style: preserve-3d;
  will-change: transform;
  box-shadow: 0 18px 38px var(--shadow-strong);
}
.bottle__wrap{
  position:absolute; inset:0;
  transform-style: preserve-3d;
  animation: bottleFloat 6.5s ease-in-out infinite;
  animation-play-state: paused;
}
.bottle__img{
  display:block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 26px;
  background: rgb(var(--white-rgb) / 0.6);
  box-shadow: inset 0 0 0 1px rgb(var(--white-rgb) / 0.7);
  transition: opacity .35s ease;
}
.bottle__img.is-fading{opacity: 0;}
.hero__scroll{
  position:absolute; left: 18px; bottom: 16px;
  font-size: 12px; color: var(--muted-text-2);
  letter-spacing:.18em; text-transform: uppercase;
  z-index: 3;
}

.section{
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px 16px;
}
.section__head{
  display:grid;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-soft);
}
.section__title{
  margin:0;
  font-family: Cinzel, serif;
  letter-spacing: .18em;
  font-size: 22px;
  position: relative;
  padding-left: 14px;
  text-transform: uppercase;
}
.section__title::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:6px;
  height:6px;
  border-radius:999px;
  background: var(--gold);
  box-shadow: 0 0 10px rgb(var(--gold-rgb) / 0.55);
  transform: translateY(-50%);
}
.section__sub{
  margin:0;
  color: var(--muted-text-2);
  font-size: 13px;
  text-align:left;
  max-width: 56ch;
  line-height: 1.6;
  padding-left: 14px;
  border-left: 1px solid rgb(var(--gold-rgb) / 0.25);
}

.grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}

/* Card */
.card{
  position:relative;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg), var(--surface));
  overflow:hidden;
  box-shadow: 0 14px 34px var(--shadow);
  transform-style: preserve-3d;
  will-change: transform;
  cursor:pointer;
  outline: none;
  opacity:1;
  transition: opacity .38s ease, transform .38s ease, box-shadow .25s ease;
}
.card:focus-visible{box-shadow: var(--focus-ring), 0 14px 34px var(--shadow);}
.card::after{
  content:"";
  position:absolute; inset:-40%;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 30%), rgb(var(--gold-rgb) / 0.2), transparent 45%);
  opacity: 0;
  transition: opacity .18s ease;
  pointer-events:none;
}
.card:hover::after{opacity: 1;}

.card__media{
  height: 160px;
  background: var(--surface-2);
  overflow:hidden;
  position:relative;
}
.card__media img{
  width:100%; height:100%;
  object-fit: contain;
  transform: none;
  transition: transform .25s ease;
}
.card:hover .card__media img{transform: none;}
.card__shine{
  position:absolute; inset:-40%;
  background: var(--card-sheen);
  transform: translateX(-40%);
  opacity: 0;
  pointer-events:none;
}
.card:hover .card__shine{
  opacity: .8;
  animation: sweep .9s ease forwards;
}
@keyframes sweep{to{transform: translateX(40%);}}

.card__body{padding: 12px; display:flex; flex-direction:column; gap: 8px; transform: translateZ(18px);}
.card__top{display:flex; align-items:flex-start; justify-content:space-between; gap: 10px;}
.card__name{margin:0; font-weight:600; font-size: 14px;}
.card__meta{display:flex; flex-direction:column; align-items:flex-end; gap: 2px;}
.card__price{font-weight:700; color: var(--gold); font-size: 13px; white-space:nowrap; letter-spacing:.04em;}
.card__desc{margin:0; color: var(--muted-text-2); font-size: 12px; line-height: 1.5; min-height: 36px;}
.card__pill{display:inline-flex; align-self:flex-start; font-size:11px; color: var(--text);
  border: 1px solid rgb(var(--gold-rgb) / 0.35); background: rgb(var(--gold-rgb) / 0.12); border-radius: 999px; padding: 6px 8px;}
/* Footer */
.footer{padding: 40px 0 70px;}
.footer__inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 16px 0;
  border-top: 1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.footer__brand{
  font-family: Cinzel, serif;
  letter-spacing: .18em;
  font-weight:700;
}
.footer__note{color: var(--muted-text-2); margin-top: 6px; font-size: 13px;}

/* Modal */
.modal{position:fixed; inset:0; display:none; z-index:90;}
.modal.is-open{display:block;}
.modal__backdrop{position:absolute; inset:0; background: rgb(var(--ink-rgb) / 0.35); backdrop-filter: blur(10px);}
.modal__panel{
  position:absolute; left:50%; top:50%;
  transform: translate(-50%,-50%);
  width:min(960px, calc(100vw - 24px));
  max-height: min(86vh, 760px);
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg), var(--surface));
  box-shadow: 0 24px 70px var(--shadow-strong);
  overflow:hidden;
  animation: pop .16s ease-out;
}
@keyframes pop{
  from{transform: translate(-50%,-48%) scale(.985); opacity:.85}
  to{transform: translate(-50%,-50%) scale(1); opacity:1}
}
.modal__close{
  position:absolute; right: 12px; top: 12px;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  cursor:pointer;
}
.modal__close:focus-visible{outline:none; box-shadow: var(--focus-ring); border-color: var(--gold);}
.modal__content{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 420px;
}
.modal__gallery{position:relative; background: var(--surface);}
.modal__image{width:100%; height:100%; object-fit:cover; min-height: 420px;}
.galBtn{
  position:absolute; top:50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  cursor:pointer;
  display:grid; place-items:center;
  font-size: 22px;
}
.galBtn:focus-visible{outline:none; box-shadow: var(--focus-ring); border-color: var(--gold);}
.galBtn--prev{left: 12px;}
.galBtn--next{right: 12px;}

.dots{
  position:absolute; left:0; right:0; bottom: 12px;
  display:flex; justify-content:center; gap: 8px;
}
.dot{
  width: 7px; height: 7px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.dot.is-active{background: rgb(var(--gold-rgb) / 0.65); border-color: rgb(var(--gold-rgb) / 0.75);}

.modal__info{padding: 18px 18px 16px; overflow:auto;}
.modal__kicker{
  color: var(--gold);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 11px;
}
.modal__title{margin: 10px 0 6px; font-size: 22px;}
.modal__price{
  font-family: Cinzel, serif;
  letter-spacing:.10em;
  font-weight:700;
  color: var(--gold);
  margin-bottom: 10px;
}
.modal__desc{margin: 0; color: var(--muted-text); line-height: 1.65; font-size: 13.5px; white-space: pre-line;}
.modal__meta{
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow:hidden;
}
.metaRow{display:flex; justify-content:space-between; gap: 12px; padding: 10px 12px; border-top: 1px solid var(--border-soft);}
.metaRow:first-child{border-top:0}
.metaLabel{color: var(--muted-text-2); font-size: 12px;}
.metaValue{color: var(--text); font-size: 12px; text-align:right;}

.modal__actions{display:flex; gap:10px; flex-wrap:wrap; margin-top: 14px;}
.modal__hint{margin-top: 12px; color: var(--muted-text-2); font-size: 12px;}

@keyframes sceneOrbit{
  0%{transform: translate3d(0,0,0) rotateX(0deg) rotateY(0deg);}
  25%{transform: translate3d(6px,-3px,0) rotateX(2.2deg) rotateY(-2.8deg);}
  50%{transform: translate3d(-5px,4px,0) rotateX(-2deg) rotateY(2.6deg);}
  75%{transform: translate3d(4px,2px,0) rotateX(1.6deg) rotateY(1.4deg);}
  100%{transform: translate3d(0,0,0) rotateX(0deg) rotateY(0deg);}
}
@keyframes sheen{
  0%{transform: translateX(-8%) rotate(0deg); opacity:.18;}
  50%{transform: translateX(6%) rotate(1deg); opacity:.45;}
  100%{transform: translateX(-8%) rotate(0deg); opacity:.18;}
}
@keyframes twinkle{
  0%,100%{transform: translateZ(28px) scale(.6); opacity:.45;}
  50%{transform: translateZ(40px) scale(1.15); opacity:1;}
}
@keyframes headerDrop{
  from{opacity:0; transform: translateY(-12px);}
  to{opacity:1; transform: translateY(0);}
}
@keyframes heroRise{
  0%{opacity:0; transform: translateY(22px); filter: blur(12px);}
  100%{opacity:1; transform: translateY(0); filter: blur(0);}
}
@keyframes heroFocus{
  0%{opacity:0; transform: translate3d(0,26px,0) scale(.96) rotateX(8deg);}
  100%{opacity:1; transform: translate3d(0,0,0) scale(1) rotateX(0);}
}
@keyframes bottleEntry{
  0%{opacity:0; transform: translate(-50%,-50%) scale(.9) rotateX(10deg) rotateY(-8deg);}
  100%{opacity:1; transform: translate(-50%,-50%) scale(1) rotateX(0) rotateY(0);}
}
@keyframes bottleFloat{
  0%,100%{transform: translate3d(0,-6px,28px) rotateX(2deg) rotateY(-2deg);}
  50%{transform: translate3d(0,4px,48px) rotateX(-1deg) rotateY(2deg);}
}
@keyframes glowLift{
  0%{opacity:.10; transform: scale(.9);}
  100%{opacity:.36; transform: scale(1);}
}
@keyframes fadeIn{
  from{opacity:0; transform: translateY(8px);}
  to{opacity:1; transform: translateY(0);}
}
@keyframes ticker{
  from{transform: translateX(0);}
  to{transform: translateX(-50%);}
}

.is-hero-ready .hero__scene,
.is-hero-ready .hero__shine,
.is-hero-ready .sparkles span,
.is-hero-ready .bottle__wrap{
  animation-play-state: running;
}

@media (prefers-reduced-motion: reduce){
  .hero__scene,
  .hero__shine,
  .sparkles span,
  .bottle__wrap{
    animation: none !important;
  }
  .ticker__track{
    animation: none;
    transform: translateX(0);
  }
}

@media (min-width: 760px){
  .nav{display:flex;}
  .grid{grid-template-columns: repeat(3, minmax(0,1fr));}
  .card__media{height: 170px;}
}
@media (max-width: 860px){
  .hero{grid-template-columns: 1fr;}
  .hero__visual{height: 320px;}
  .modal__panel{height: min(92vh, 760px);}
  .modal__content{
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    height: 100%;
  }
  .modal__image{min-height: 240px;}
}
