:root {
  --bg: #090909;
  --bg-soft: #111111;
  --panel: #151515;
  --cream: #f5efe3;
  --gold: #c9a96a;
  --gold-light: #ead8ad;
  --muted: #aaa39a;
  --line: rgba(255,255,255,.12);
  --shadow: 0 25px 70px rgba(0,0,0,.45);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 10% 10%, rgba(201,169,106,.08), transparent 30%),
    var(--bg);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img, svg { display: block; max-width: 100%; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section { padding: 110px 0; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .26em;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}

.site-header.scrolled {
  background: rgba(9,9,9,.82);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  height: 86px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.28rem;
  letter-spacing: .12em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--muted);
  font-size: .53rem;
  letter-spacing: .22em;
}

.main-nav {
  margin-left: auto;
  display: flex;
  gap: 30px;
}

.main-nav a {
  color: #d9d3ca;
  font-size: .78rem;
  font-weight: 600;
  transition: color .2s ease;
}

.main-nav a:hover { color: var(--gold-light); }

.header-cta {
  padding: 12px 18px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  transition: .25s ease;
}

.header-cta:hover {
  background: var(--gold);
  color: #111;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 1px;
  display: block;
  margin: 6px 0;
  background: var(--cream);
  transition: .25s ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 125px 0 70px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9,9,9,1) 0%, rgba(9,9,9,.93) 42%, rgba(9,9,9,.5) 100%),
    radial-gradient(circle at 75% 40%, rgba(201,169,106,.18), transparent 28%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 70px;
}

.hero-copy h1 {
  max-width: 690px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 7.4rem);
  font-weight: 600;
  line-height: .84;
  letter-spacing: -.045em;
}

.hero-copy h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  font-style: italic;
}

.hero-text {
  max-width: 610px;
  margin: 30px 0 0;
  color: #c7c0b8;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid transparent;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #111;
}

.btn-secondary {
  border-color: var(--line);
  color: var(--cream);
}

.btn-secondary:hover { border-color: var(--gold); }

.hero-meta {
  display: flex;
  gap: 50px;
  margin-top: 48px;
}

.hero-meta div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-meta strong {
  font-family: var(--serif);
  font-size: 1.28rem;
  letter-spacing: .03em;
}

.hero-meta span {
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  isolation: isolate;
}

.halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
}

.halo-one {
  width: 490px;
  height: 490px;
  top: 38px;
  right: -28px;
  border: 1px solid rgba(201,169,106,.28);
  box-shadow: inset 0 0 90px rgba(201,169,106,.08), 0 0 100px rgba(201,169,106,.07);
}

.halo-two {
  width: 280px;
  height: 280px;
  right: 75px;
  bottom: 28px;
  border: 1px solid rgba(255,255,255,.08);
}

.bottle-main {
  position: absolute;
  left: 50%;
  top: 53%;
  z-index: 4;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 35px 30px rgba(0,0,0,.58));
}

.bottle-cap {
  width: 82px;
  height: 74px;
  margin-inline: auto;
  background:
    linear-gradient(90deg, #1d1d1d, #383838 48%, #171717),
    #222;
  border: 1px solid #494949;
  border-radius: 5px 5px 2px 2px;
  box-shadow: inset 0 1px rgba(255,255,255,.13);
}

.bottle-neck {
  width: 58px;
  height: 30px;
  margin-inline: auto;
  background: linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,.22), rgba(255,255,255,.06));
  border-inline: 1px solid rgba(255,255,255,.2);
}

.bottle-body {
  width: 245px;
  height: 330px;
  padding: 50px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(255,255,255,.16), transparent 22%),
    linear-gradient(135deg, rgba(43,33,17,.75), rgba(8,8,8,.92));
  border: 1px solid rgba(234,216,173,.38);
  border-radius: 15px 15px 24px 24px;
  box-shadow:
    inset 0 0 40px rgba(255,255,255,.05),
    inset 0 -50px 80px rgba(201,169,106,.08);
  text-align: center;
}

.bottle-kicker {
  color: var(--gold-light);
  font-size: .58rem;
  letter-spacing: .28em;
}

.bottle-body strong {
  margin-top: 38px;
  font-family: var(--serif);
  font-size: 2.05rem;
  font-weight: 600;
  line-height: .9;
}

.bottle-body small {
  margin-top: auto;
  color: var(--gold);
  font-size: .56rem;
  letter-spacing: .25em;
}

.perfume-card {
  position: absolute;
  width: 180px;
  height: 245px;
  display: grid;
  place-items: end center;
  padding: 24px;
  border: 1px solid rgba(201,169,106,.22);
  background: rgba(255,255,255,.025);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}

.perfume-card span {
  color: var(--gold-light);
  font-family: var(--serif);
  letter-spacing: .15em;
}

.card-back {
  top: 90px;
  left: 20px;
  transform: rotate(-9deg);
}

.card-front {
  right: 4px;
  bottom: 65px;
  z-index: 5;
  transform: rotate(8deg);
}

.floating-label {
  position: absolute;
  z-index: 7;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(8,8,8,.68);
  color: #d8d1c7;
  font-size: .58rem;
  letter-spacing: .18em;
  backdrop-filter: blur(8px);
}

.label-one { left: 2px; bottom: 155px; }
.label-two { right: 20px; top: 105px; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 25px;
  z-index: 3;
  width: 27px;
  height: 45px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 8px;
  border-radius: 20px;
  background: var(--gold);
  transform: translateX(-50%);
  animation: scroll 1.7s infinite;
}

@keyframes scroll {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 17px); }
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #0c0c0c;
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px 0;
  animation: marquee 24s linear infinite;
}

.marquee span {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: .12em;
}

.marquee i {
  color: var(--gold);
  font-size: .62rem;
}

@keyframes marquee { to { transform: translateX(-50%); } }

.products { background: var(--bg-soft); }

.section-heading {
  max-width: 660px;
  margin-bottom: 52px;
}

.section-heading h2,
.statement-copy h2,
.coverage h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 600;
  line-height: .95;
  letter-spacing: -.03em;
}

.section-heading > p:last-child {
  margin-top: 18px;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card {
  position: relative;
  min-height: 310px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.008));
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,169,106,.46);
  background: linear-gradient(145deg, rgba(201,169,106,.095), rgba(255,255,255,.01));
}

.product-card-wide {
  min-height: 250px;
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 60px;
}

.product-number {
  color: var(--muted);
  font-size: .65rem;
  letter-spacing: .18em;
}

.product-card h3 {
  max-width: 230px;
  margin: auto 0 18px;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.04;
}

.product-card-wide h3 {
  max-width: none;
  margin: 0;
  font-size: 2.4rem;
}

.card-line {
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.product-card-wide .card-line {
  flex: 1;
}

.product-icon {
  position: relative;
  width: 94px;
  height: 94px;
  margin: 42px auto;
}

.icon-diamond {
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.icon-diamond::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201,169,106,.35);
}

.icon-orbit {
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.icon-orbit::before,
.icon-orbit::after {
  content: "";
  position: absolute;
  inset: 14px -10px;
  border: 1px solid rgba(201,169,106,.35);
  border-radius: 50%;
  transform: rotate(60deg);
}

.icon-orbit::after { transform: rotate(-60deg); }

.icon-arch {
  border: 1px solid var(--gold);
  border-radius: 50px 50px 0 0;
}

.icon-arch::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 128px;
  height: 1px;
  background: rgba(201,169,106,.45);
  transform: translateX(-50%);
}

.icon-equal::before,
.icon-equal::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid var(--gold);
}

.icon-equal::after { transform: rotate(45deg); }

.icon-drop {
  flex: 0 0 auto;
  margin: 0 0 0 60px;
  border: 1px solid var(--gold);
  border-radius: 60% 40% 70% 30% / 65% 35% 65% 35%;
  transform: rotate(45deg);
}

.statement {
  background:
    radial-gradient(circle at 18% 50%, rgba(201,169,106,.11), transparent 25%),
    var(--bg);
}

.statement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}

.statement-art {
  position: relative;
  min-height: 500px;
}

.art-ring {
  position: absolute;
  inset: 30px 10% 40px;
  border: 1px solid rgba(201,169,106,.25);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(201,169,106,.05);
}

.mini-bottle {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(234,216,173,.34);
  background: linear-gradient(135deg, #252015, #080808);
  box-shadow: var(--shadow);
  font-family: var(--serif);
  color: var(--gold-light);
}

.bottle-a {
  left: 16%;
  bottom: 60px;
  width: 145px;
  height: 245px;
  border-radius: 12px 12px 25px 25px;
  transform: rotate(-8deg);
}

.bottle-b {
  left: 41%;
  top: 45px;
  z-index: 2;
  width: 170px;
  height: 315px;
  border-radius: 12px 12px 30px 30px;
}

.bottle-c {
  right: 8%;
  bottom: 28px;
  width: 135px;
  height: 210px;
  border-radius: 50% 50% 25px 25px;
  transform: rotate(7deg);
}

.statement-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 26px 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 700;
}

.coverage {
  padding-top: 0;
  background: var(--bg);
}

.coverage-wrap {
  min-height: 310px;
  padding: 55px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(255,255,255,.04), transparent),
    radial-gradient(circle at 80% 50%, rgba(201,169,106,.12), transparent 22%);
}

.coverage-pin {
  position: relative;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(201,169,106,.36);
  border-radius: 50%;
}

.coverage-pin::before,
.coverage-pin::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201,169,106,.18);
  border-radius: 50%;
}

.coverage-pin::after { inset: 38px; }

.coverage-pin span {
  position: absolute;
  inset: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  background: var(--gold);
  transform: translate(-50%,-60%) rotate(-45deg);
}

.contact { background: var(--bg-soft); }

.contact-card {
  position: relative;
  padding: 90px 25px;
  overflow: hidden;
  border: 1px solid rgba(201,169,106,.28);
  text-align: center;
}

.contact-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: rgba(201,169,106,.085);
  filter: blur(90px);
  transform: translate(-50%,-50%);
}

.contact-card > *:not(.contact-glow) {
  position: relative;
  z-index: 2;
}

.contact h2 {
  max-width: 760px;
  margin-inline: auto;
}

.phone-link {
  display: block;
  width: max-content;
  margin: 28px auto 34px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  letter-spacing: .08em;
}

.btn-large {
  min-height: 62px;
  padding-inline: 32px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 16px 40px rgba(0,0,0,.38);
  transition: transform .25s ease;
}

.whatsapp-float:hover { transform: translateY(-4px) scale(1.04); }

.whatsapp-float svg {
  width: 31px;
  fill: white;
}

footer {
  padding: 38px 0;
  border-top: 1px solid var(--line);
  background: #080808;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.footer-wrap p,
.footer-wrap > a {
  color: var(--muted);
  font-size: .75rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.25,1);
}

.js-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.cursor-glow {
  position: fixed;
  z-index: 1;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(201,169,106,.035);
  filter: blur(40px);
  transform: translate(-50%, -50%);
}

@media (max-width: 980px) {
  .main-nav, .header-cta { display: none; }

  .menu-toggle { display: block; }

  .main-nav.open {
    position: absolute;
    top: 86px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    border: 1px solid var(--line);
    background: rgba(10,10,10,.97);
    backdrop-filter: blur(14px);
  }

  .main-nav.open a {
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-copy {
    z-index: 2;
    padding-top: 40px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .product-grid { grid-template-columns: repeat(2, 1fr); }

  .product-card-wide { grid-column: 1 / -1; }

  .statement-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .statement-art { min-height: 430px; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }

  .section { padding: 78px 0; }

  .nav-wrap { height: 74px; }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .main-nav.open { top: 74px; }

  .hero {
    min-height: auto;
    padding: 120px 0 50px;
  }

  .hero-copy h1 { font-size: clamp(3.35rem, 17vw, 5.3rem); }

  .hero-text { font-size: .93rem; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn { width: 100%; }

  .hero-meta {
    gap: 26px;
    justify-content: space-between;
  }

  .hero-visual {
    min-height: 430px;
    transform: scale(.87);
    margin-inline: -40px;
  }

  .bottle-body {
    width: 215px;
    height: 290px;
  }

  .card-back { left: 10px; }
  .card-front { right: 8px; }

  .scroll-cue { display: none; }

  .product-grid { grid-template-columns: 1fr; }

  .product-card { min-height: 270px; }

  .product-card-wide {
    min-height: 300px;
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .product-card-wide h3 {
    font-size: 1.9rem;
  }

  .icon-drop {
    margin: 20px auto;
  }

  .product-card-wide .card-line { width: 100%; }

  .statement-art {
    min-height: 340px;
    transform: scale(.9);
    margin-inline: -25px;
  }

  .bottle-a {
    left: 3%;
    width: 105px;
    height: 190px;
  }

  .bottle-b {
    left: 34%;
    width: 130px;
    height: 250px;
  }

  .bottle-c {
    right: 1%;
    width: 105px;
    height: 160px;
  }

  .coverage-wrap {
    min-height: 380px;
    padding: 40px 25px;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .coverage-pin { align-self: center; }

  .contact-card { padding: 65px 18px; }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .cursor-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
