:root {
  /* Drenched oxblood + gold — luxury oriental fragrance */
  --bg: oklch(0.16 0.035 25);
  --bg-deep: oklch(0.12 0.03 25);
  --surface: oklch(0.21 0.045 25);
  --surface-2: oklch(0.25 0.05 25);
  --line: oklch(0.33 0.045 30);
  --ink: oklch(0.95 0.012 80);
  --ink-soft: oklch(0.82 0.02 70);
  --muted: oklch(0.68 0.025 60);
  --gold: oklch(0.81 0.115 85);
  --gold-deep: oklch(0.7 0.12 80);
  --gold-soft: oklch(0.86 0.07 88);

  --maxw: 1200px;
  --pad: clamp(1.25rem, 5vw, 4rem);

  --step--1: clamp(0.82rem, 0.78rem + 0.2vw, 0.92rem);
  --step-0: clamp(1rem, 0.95rem + 0.25vw, 1.12rem);
  --step-1: clamp(1.3rem, 1.15rem + 0.7vw, 1.7rem);
  --step-2: clamp(1.7rem, 1.4rem + 1.4vw, 2.6rem);
  --step-3: clamp(2.3rem, 1.7rem + 2.9vw, 4.2rem);
  --step-4: clamp(3rem, 2rem + 5vw, 5.6rem);

  --z-sticky: 100;
  --z-nav: 200;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Jost", system-ui, sans-serif;
  font-size: var(--step-0);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: "Cinzel", "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.wrap { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }

.eyebrow {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: var(--step--1);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Buttons ---------- */
.btn {
  --bsize: 0.9rem 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: var(--bsize);
  font-family: "Jost", sans-serif;
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease),
    color 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  color: oklch(0.18 0.04 30);
  box-shadow: 0 8px 30px -12px oklch(0.7 0.12 80 / 0.6);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 38px -14px oklch(0.7 0.12 80 / 0.75); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: oklch(1 0 0 / 0.02); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem var(--pad);
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: oklch(0.13 0.03 25 / 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.brand-mark { display: flex; align-items: center; gap: 0.7rem; }
.brand-mark img { height: clamp(44px, 5vw, 56px); width: auto; transform-origin: left center; transition: transform 0.5s var(--ease); }
.scrolled .brand-mark img { transform: scale(0.82); }
.brand-mark .brand-name {
  font-family: "Cinzel", serif;
  font-size: var(--step--1);
  letter-spacing: 0.18em;
  color: var(--gold);
}
.nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.2rem); }
.nav a.nav-link {
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding-block: 0.3rem;
}
.nav a.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav a.nav-link:hover { color: var(--gold); }
.nav a.nav-link:hover::after { transform: scaleX(1); }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; gap: 5px; background: none;
    border: 0; cursor: pointer; padding: 8px;
  }
  .nav-toggle span { width: 26px; height: 2px; background: var(--gold); transition: transform 0.4s var(--ease), opacity 0.3s; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu {
    position: fixed; inset: 0; z-index: var(--z-sticky);
    background: oklch(0.12 0.03 25 / 0.97); backdrop-filter: blur(8px);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 1.6rem; opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
  }
  .mobile-menu.open { opacity: 1; pointer-events: auto; }
  .mobile-menu a { font-family: "Cinzel", serif; font-size: var(--step-1); color: var(--ink); letter-spacing: 0.1em; }
  .mobile-menu a:hover { color: var(--gold); }
}
@media (min-width: 861px) { .mobile-menu { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: grid; align-items: center; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 70% 30%, transparent 0%, oklch(0.12 0.03 25 / 0.55) 60%, var(--bg) 100%),
    linear-gradient(90deg, oklch(0.12 0.03 25 / 0.92) 0%, oklch(0.12 0.03 25 / 0.55) 45%, transparent 75%);
}
.hero-inner { padding-inline: var(--pad); padding-block: 7rem 3rem; max-width: 760px; }
.hero h1 { font-size: var(--step-4); margin-block: 1.2rem 0.6rem; }
.hero .tag { color: var(--gold); font-size: var(--step-1); font-family: "Cinzel", serif; letter-spacing: 0.04em; }
.hero p.lede { color: var(--ink-soft); font-size: var(--step-0); max-width: 52ch; margin-block: 1.4rem 2.2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.scroll-hint {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.scroll-hint .line { width: 1px; height: 38px; background: linear-gradient(var(--gold), transparent); animation: drop 2.4s var(--ease) infinite; }
@keyframes drop { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Trust strip ---------- */
.trust { border-block: 1px solid var(--line); background: var(--bg-deep); }
.trust .wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1rem, 4vw, 3.5rem); padding: 1.1rem 1.25rem; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; color: var(--ink-soft); font-size: var(--step--1); letter-spacing: 0.03em; }
.trust-item svg { width: 18px; height: 18px; color: var(--gold); flex: none; }

/* ---------- Sections ---------- */
section { padding-block: clamp(4rem, 9vw, 8rem); }
.sec-head { text-align: center; max-width: 60ch; margin-inline: auto; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sec-head h2 { font-size: var(--step-3); margin-block: 0.8rem; }
.sec-head p { color: var(--muted); }

/* Collection */
.grid-products {
  display: grid; gap: clamp(1.1rem, 2vw, 1.8rem);
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}
.product {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--surface), var(--bg-deep));
  border: 1px solid var(--line); border-radius: 4px; overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.product:hover { transform: translateY(-6px); border-color: var(--gold-deep); box-shadow: 0 24px 50px -28px oklch(0 0 0 / 0.8); }
.product-media { position: relative; aspect-ratio: 4 / 5; background: radial-gradient(circle at 50% 35%, var(--surface-2), var(--bg-deep)); overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.product:hover .product-media img { transform: scale(1.05); }
.product-badge {
  position: absolute; top: 0.85rem; left: 0.85rem; z-index: 2;
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold-deep); border-radius: 2px;
  padding: 0.28rem 0.55rem; background: oklch(0.12 0.03 25 / 0.6); backdrop-filter: blur(4px);
}
.product-body { padding: 1.3rem 1.3rem 1.5rem; display: flex; flex-direction: column; gap: 0.45rem; flex: 1; }
.product h3 { font-size: var(--step-1); font-weight: 500; letter-spacing: 0.02em; }
.product .vol { color: var(--muted); font-size: var(--step--1); letter-spacing: 0.08em; text-transform: uppercase; }
.product .price-row { margin-top: auto; padding-top: 1rem; display: flex; align-items: baseline; justify-content: space-between; gap: 0.8rem; }
.product .price { font-family: "Cinzel", serif; font-size: var(--step-1); color: var(--gold); }
.product .buy {
  font-size: var(--step--1); letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink);
  display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.5rem 0.9rem;
  border: 1px solid var(--line); border-radius: 2px; transition: all 0.4s var(--ease);
}
.product .buy:hover { background: var(--gold); color: oklch(0.18 0.04 30); border-color: var(--gold); }
.product .buy:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.collection-foot { text-align: center; margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.collection-foot p { color: var(--muted); margin-bottom: 1.2rem; }

/* Story */
.story { background: var(--bg-deep); border-block: 1px solid var(--line); padding-inline: var(--pad); }
.story-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.story-copy h2 { font-size: var(--step-3); margin-block: 1rem 1.5rem; }
.story-copy p + p { margin-top: 1.1rem; }
.story-copy p { color: var(--ink-soft); max-width: 56ch; }
.story-figure { position: relative; }
.story-figure img { width: 100%; border-radius: 4px; border: 1px solid var(--line); }
.story-figure::before {
  content: ""; position: absolute; inset: 14px -14px -14px 14px; z-index: -1;
  border: 1px solid var(--gold-deep); border-radius: 4px; opacity: 0.5;
}
@media (max-width: 820px) { .story-grid { grid-template-columns: 1fr; } .story-figure { order: -1; } }

/* Values */
.values-grid { display: grid; gap: clamp(1rem, 2vw, 1.6rem); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.value { padding: 2rem 1.6rem; border: 1px solid var(--line); border-radius: 4px; background: var(--surface); transition: border-color 0.4s var(--ease), transform 0.4s var(--ease); }
.value:hover { border-color: var(--gold-deep); transform: translateY(-4px); }
.value .vicon { width: 42px; height: 42px; color: var(--gold); margin-bottom: 1.1rem; }
.value h3 { font-size: var(--step-1); font-weight: 500; margin-bottom: 0.6rem; }
.value p { color: var(--muted); font-size: var(--step--1); line-height: 1.7; }

/* CTA */
.cta { position: relative; text-align: center; isolation: isolate; }
.cta::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(70% 120% at 50% 0%, oklch(0.3 0.06 30) 0%, var(--bg) 70%); }
.cta h2 { font-size: var(--step-3); margin-bottom: 1rem; }
.cta p { color: var(--ink-soft); max-width: 48ch; margin-inline: auto; margin-bottom: 2rem; }
.cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Footer */
.site-footer { background: var(--bg-deep); border-top: 1px solid var(--line); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2.5rem; align-items: flex-start; }
.footer-brand img { height: 76px; width: auto; }
.footer-brand p { color: var(--muted); font-size: var(--step--1); max-width: 34ch; margin-top: 1rem; }
.footer-col h3 { font-family: "Jost", sans-serif; font-weight: 500; font-size: var(--step--1); letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col a, .footer-col p.fi { display: block; color: var(--ink-soft); font-size: var(--step--1); padding-block: 0.3rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; color: var(--muted); font-size: 0.78rem; letter-spacing: 0.04em; }

/* Float WhatsApp */
.wa-float {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: var(--z-sticky);
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep)); color: oklch(0.18 0.04 30);
  box-shadow: 0 10px 30px -8px oklch(0 0 0 / 0.6); transition: transform 0.4s var(--ease);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float svg { width: 28px; height: 28px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-hint .line { animation: none; }
  .product:hover, .value:hover, .btn:hover, .wa-float:hover { transform: none; }
}
