/* ==========================================================================
   EVOKA — Design tokens (luxury dark + gold)
   ========================================================================== */
:root{
  --ink:        #f4ead3;
  --ink-soft:   #cbbc9c;
  --cream:      #faf6ee;
  --paper:      #f1e9d8;
  --paper-soft: #e9dfc9;

  --bg-deep:    #0b0a08;
  --bg-panel:   #17130e;
  --bg-raised:  #201a12;
  --hairline:   rgba(201,162,74,.22);

  --emerald:    #3f7d63;
  --emerald-dk: #123a2c;
  --emerald-lt: #5f9a80;
  --gold:       #c9a24a;
  --gold-lt:    #e8c877;
  --gold-dk:    #8f6f2e;
  --wine:       #a8355a;
  --wine-dk:    #521429;

  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 14px rgba(0,0,0,.35);
  --shadow-md: 0 16px 40px rgba(0,0,0,.45);
  --shadow-lg: 0 28px 70px rgba(0,0,0,.55);
  --shadow-gold: 0 8px 30px rgba(201,162,74,.18);

  --ease: cubic-bezier(.22,.9,.32,1);
}

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

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family: inherit; cursor:pointer; }
h1,h2,h3,h4{ font-family: var(--font-display); margin:0; font-weight:600; color: var(--ink); }

/* ==========================================================================
   Preloader — branded curtain reveal
   ========================================================================== */
.preloader{
  position:fixed; inset:0; z-index:999; background: var(--bg-deep);
  display:flex; align-items:center; justify-content:center;
  transition: transform .9s var(--ease) .15s;
}
.preloader-mark{ position:relative; width:120px; height:120px; display:flex; align-items:center; justify-content:center; }
.preloader-logo{
  width:64px; height:auto; opacity:0; transform: scale(.7);
  animation: markIn .7s var(--ease) .2s forwards;
}
.preloader-ring{
  position:absolute; inset:0; width:120px; height:120px; transform: rotate(-90deg);
}
.preloader-ring circle{
  fill:none; stroke: var(--gold); stroke-width:1.5; stroke-linecap:round;
  stroke-dasharray: 276; stroke-dashoffset: 276;
  animation: ringDraw 1.1s var(--ease) .1s forwards;
}
@keyframes markIn{ to{ opacity:1; transform:scale(1); } }
@keyframes ringDraw{ to{ stroke-dashoffset: 0; } }
body.preloader-done .preloader{ transform: translateY(-100%); pointer-events:none; }
body.preloader-hidden .preloader{ display:none; }

/* magnetic buttons: JS applies inline transform on mousemove, this eases the return */
.magnetic{ transition: transform .35s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease); }

/* tap ripple — touch-friendly feedback on buttons & cards, mirrors desktop hover energy on mobile */
.ripple{
  position:absolute; border-radius:50%; background: rgba(201,162,74,.4);
  transform: scale(0); animation: rippleAnim .65s var(--ease) forwards; pointer-events:none; z-index:5;
}
@keyframes rippleAnim{ to{ transform:scale(1); opacity:0; } }

/* 3D tilt-ready cards: JS sets rotateX/rotateY inline, perspective lives on the grid parent */
.category-grid, .product-grid{ perspective: 1200px; }
.category-card, .product-card{ transform-style: preserve-3d; will-change: transform; }
p{ margin:0; }
:focus-visible{ outline: 3px solid var(--gold); outline-offset: 3px; }

#home, #about, #categories, #products, #contact{ scroll-margin-top: 96px; }

.section-inner{ max-width: 1220px; margin: 0 auto; padding: 0 24px; position:relative; z-index:1; }
.eyebrow{
  font-family: var(--font-body); font-weight: 700; letter-spacing:.14em; text-transform:uppercase;
  font-size: .74rem; color: var(--gold-lt); margin: 0 0 10px;
}
.eyebrow.center{ text-align:center; }
.section-title{ font-size: clamp(1.8rem, 3.4vw, 2.6rem); text-align:left; margin-bottom: 12px; }
.section-title.center{ text-align:center; }
.section-lede{
  max-width: 620px; margin: 0 auto 44px; color: var(--ink-soft); font-size: 1.02rem; line-height:1.6;
}
.section-lede.center{ text-align:center; }

.btn{
  display:inline-flex; align-items:center; gap:10px; padding: 14px 26px; border-radius: 999px;
  font-weight:700; font-size:.95rem; border: 1.5px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space:nowrap; position:relative; overflow:hidden;
}
.btn svg{ width:18px; height:18px; }
.btn::before{
  content:""; position:absolute; top:0; left:-60%; width:40%; height:100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-18deg); transition: left .6s var(--ease); pointer-events:none;
}
.btn:hover::before{ left:130%; }
.btn-primary{ background: var(--gold); color: var(--bg-deep); box-shadow: var(--shadow-gold); }
.btn-primary:hover{ background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 10px 34px rgba(201,162,74,.32); }
.btn-ghost{ border-color: var(--gold); color: var(--ink); }
.btn-ghost:hover{ background: var(--gold); color: var(--bg-deep); transform: translateY(-2px); }

/* reveal-on-scroll */
.reveal{
  opacity:0; transform: translateY(28px) scale(.97) perspective(900px) rotateX(6deg); filter: blur(4px);
  transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease);
  transform-origin: bottom center;
}
.reveal.in-view{ opacity:1; transform: translateY(0) scale(1) perspective(900px) rotateX(0deg); filter: blur(0); }

/* directional reveal variants — same engine as .reveal, entrance direction only */
.fade-left, .fade-right, .zoom-in{
  transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease);
  filter: blur(4px);
}
.fade-left{ opacity:0; transform: translateX(-42px); }
.fade-left.in-view{ opacity:1; transform: translateX(0); filter: blur(0); }
.fade-right{ opacity:0; transform: translateX(42px); }
.fade-right.in-view{ opacity:1; transform: translateX(0); filter: blur(0); }
.zoom-in{ opacity:0; transform: scale(.88); }
.zoom-in.in-view{ opacity:1; transform: scale(1); filter: blur(0); }

/* staggered cascade for grid items revealed together */
.category-grid .reveal:nth-child(1),.product-grid .reveal:nth-child(1){ transition-delay: 0s; }
.category-grid .reveal:nth-child(2),.product-grid .reveal:nth-child(2){ transition-delay: .06s; }
.category-grid .reveal:nth-child(3),.product-grid .reveal:nth-child(3){ transition-delay: .12s; }
.category-grid .reveal:nth-child(4),.product-grid .reveal:nth-child(4){ transition-delay: .18s; }
.category-grid .reveal:nth-child(5),.product-grid .reveal:nth-child(5){ transition-delay: .24s; }
.category-grid .reveal:nth-child(6),.product-grid .reveal:nth-child(6){ transition-delay: .3s; }
.category-grid .reveal:nth-child(n+7),.product-grid .reveal:nth-child(n+7){ transition-delay: .34s; }

/* underline draw-in for section titles, tied to reveal state */
.section-title{ position:relative; display:inline-block; }
.section-title.center{ display:block; }
.section-title::after{
  content:""; position:absolute; left:0; bottom:-10px; height:3px; width:44px; background: var(--gold);
  transform-origin:left; transform: scaleX(0); transition: transform .7s var(--ease) .2s;
}
.section-title.center::after{ left:50%; transform-origin:center; transform: translateX(-50%) scaleX(0); }
.section-title.reveal.in-view::after{ transform: scaleX(1); }
.section-title.center.reveal.in-view::after{ transform: translateX(-50%) scaleX(1); }

/* ==========================================================================
   Floating decorative shapes — reused across About / Categories / Products / Contact
   so every section feels alive without repeating the hero's own animation
   ========================================================================== */
.section-shapes{ position:absolute; inset:0; overflow:hidden; pointer-events:none; z-index:0; }
.section-shapes span{
  position:absolute; border-radius:50%; filter: blur(2px); opacity:.16;
  animation: shapeFloat 20s ease-in-out infinite;
}
.section-shapes span:nth-child(1){ width:220px; height:220px; background: radial-gradient(circle, var(--gold), transparent 70%); top:-6%; right:6%; animation-duration:24s; }
.section-shapes span:nth-child(2){ width:160px; height:160px; background: radial-gradient(circle, var(--wine), transparent 70%); bottom:-8%; left:4%; animation-duration:19s; animation-delay:-6s; }
.section-shapes span:nth-child(3){ width:130px; height:130px; background: radial-gradient(circle, var(--emerald), transparent 70%); top:38%; left:46%; animation-duration:27s; animation-delay:-11s; }
@keyframes shapeFloat{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(26px,-32px) scale(1.12); }
}
[data-parallax]{ will-change: transform; }

/* ==========================================================================
   Background watermark (large, faint, rotating)
   ========================================================================== */
.bg-watermark{
  position: fixed; inset:0; z-index:-1; pointer-events:none;
  display:flex; align-items:center; justify-content:center; overflow:hidden;
}
.watermark-svg{
  width: 130vmax; height: 130vmax; color: var(--gold);
  opacity: .035;
  animation: spin 160s linear infinite;
}
@keyframes spin{ to{ transform: rotate(360deg); } }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index: 500;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease), border-color .35s var(--ease);
  padding: 22px 0; background: transparent; border-bottom: 1px solid transparent;
}
.site-header.scrolled{
  background: rgba(11,10,8,.86); backdrop-filter: blur(14px);
  box-shadow: 0 4px 30px rgba(0,0,0,.35); padding: 12px 0; border-bottom: 1px solid var(--hairline);
}
.header-inner{
  max-width: 1220px; margin:0 auto; padding: 0 24px;
  display:flex; align-items:center; justify-content:space-between;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand-mark{ width:38px; height:38px; color: var(--gold); transition: transform .4s var(--ease); }
.brand:hover .brand-mark{ transform: rotate(18deg); }
.brand-word{
  font-family: var(--font-display); font-weight:700; font-size:1.5rem; letter-spacing:.03em;
  color: var(--ink);
}
.nav-desktop{ display:flex; gap:34px; }
.nav-desktop a{
  font-weight:600; font-size:.95rem; color: var(--ink-soft); position:relative; padding: 4px 0;
  transition: color .25s var(--ease);
}
.nav-desktop a:hover{ color: var(--ink); }
.nav-desktop a::after{
  content:""; position:absolute; left:0; right:100%; bottom:-2px; height:2px; background: var(--gold);
  transition: right .3s var(--ease);
}
.nav-desktop a:hover::after{ right:0; }
.nav-desktop a.active{ color: var(--ink); }
.nav-desktop a.active::after{ right:0; background: var(--gold-lt); }

.hamburger{
  display:none; width:44px; height:44px; border-radius:50%; border:1.5px solid var(--gold);
  background: transparent; align-items:center; justify-content:center; color: var(--gold);
}
.hamburger svg{ width:22px; height:22px; }

/* ==========================================================================
   Mobile nav
   ========================================================================== */
.mobile-nav-overlay{
  position: fixed; inset:0; background: rgba(18,20,17,.5); backdrop-filter: blur(2px);
  z-index: 700; opacity:0; pointer-events:none; transition: opacity .35s var(--ease);
}
.mobile-nav-overlay.active{ opacity:1; pointer-events:auto; }
.mobile-nav{
  position: fixed; top:0; right:0; bottom:0; width: min(340px, 84vw); z-index: 800;
  background: linear-gradient(165deg, var(--bg-panel), var(--bg-deep));
  color: var(--ink); padding: 28px 26px; display:flex; flex-direction:column; gap: 8px;
  transform: translateX(100%); transition: transform .45s var(--ease);
  box-shadow: -20px 0 50px rgba(0,0,0,.5); border-left: 1px solid var(--hairline);
}
.mobile-nav.active{ transform: translateX(0); }
.mobile-nav-close{
  align-self:flex-end; width:38px; height:38px; border-radius:50%; border:1.5px solid var(--gold);
  background:transparent; color: var(--gold); display:flex; align-items:center; justify-content:center;
}
.mobile-nav-close svg{ width:18px; height:18px; }
.mobile-nav-brand{ display:flex; align-items:center; gap:10px; margin: 8px 0 26px; }
.mobile-nav-brand .brand-mark{ color: var(--gold); width:34px; height:34px; }
.mobile-nav-brand span{ font-family: var(--font-display); font-size:1.3rem; font-weight:700; }
.mnav-link{
  font-family: var(--font-display); font-size:1.4rem; font-weight:600; padding: 12px 0;
  border-bottom: 1px solid var(--hairline); color: var(--ink);
  opacity:0; transform: translateX(20px); transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.mobile-nav.active .mnav-link{ opacity:1; transform: translateX(0); }
.mobile-nav.active .mnav-link:nth-child(3){ transition-delay: .05s; }
.mobile-nav.active .mnav-link:nth-child(4){ transition-delay: .1s; }
.mobile-nav.active .mnav-link:nth-child(5){ transition-delay: .15s; }
.mobile-nav.active .mnav-link:nth-child(6){ transition-delay: .2s; }
.mobile-nav.active .mnav-link:nth-child(7){ transition-delay: .25s; }
.mnav-call{
  margin-top: auto; display:flex; align-items:center; gap:10px; font-weight:700; color: var(--ink);
  background: rgba(201,162,74,.12); padding: 12px 16px; border-radius: 999px; width: fit-content;
  border: 1px solid var(--hairline);
}
.mnav-call svg{ width:18px; height:18px; color: var(--gold); }
.mnav-insta{
  display:flex; align-items:center; gap:10px; font-weight:700; color: var(--ink);
  background: rgba(201,162,74,.12); padding: 12px 16px; border-radius: 999px; width: fit-content;
  border: 1px solid var(--hairline);
}
.mnav-insta svg{ width:18px; height:18px; color: var(--gold); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position:relative; min-height: 100vh; display:flex; align-items:center;
  padding: 140px 24px 80px; overflow:hidden;
  background: var(--bg-deep);
}
.hero-mesh{
  position:absolute; inset:-10%; z-index:0; pointer-events:none;
  background:
    radial-gradient(circle at 82% 18%, rgba(201,162,74,.22), transparent 42%),
    radial-gradient(circle at 8% 85%, rgba(168,53,90,.18), transparent 40%),
    radial-gradient(circle at 45% 105%, rgba(201,162,74,.10), transparent 45%),
    radial-gradient(circle at 25% 10%, rgba(168,53,90,.10), transparent 38%);
  background-size: 140% 140%;
  animation: meshDrift 22s ease-in-out infinite alternate;
  filter: blur(2px);
}
@keyframes meshDrift{
  0%{ background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%; }
  100%{ background-position: 6% 8%, -8% -6%, 4% -5%, -5% 6%; }
}
.hero-grain{
  position:absolute; inset:0; z-index:0; pointer-events:none; opacity:.5; mix-blend-mode:multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}
.hero-fragrance-drift{ position:absolute; inset:0; pointer-events:none; z-index:0; }
.hero-fragrance-drift span{
  position:absolute; width:14px; height:14px; border-radius:50%; background: var(--c);
  opacity:.35; filter: blur(1px); animation: drift 18s ease-in-out infinite;
}
.hero-fragrance-drift span:nth-child(1){ top:15%; left:6%; animation-duration:22s; }
.hero-fragrance-drift span:nth-child(2){ top:65%; left:14%; animation-duration:26s; animation-delay:-4s; }
.hero-fragrance-drift span:nth-child(3){ top:30%; left:92%; animation-duration:19s; animation-delay:-8s; }
.hero-fragrance-drift span:nth-child(4){ top:80%; left:88%; animation-duration:24s; animation-delay:-2s; }
.hero-fragrance-drift span:nth-child(5){ top:8%; left:48%; animation-duration:21s; animation-delay:-11s; }
.hero-fragrance-drift span:nth-child(6){ top:92%; left:52%; animation-duration:27s; animation-delay:-6s; }
.hero-fragrance-drift span:nth-child(7){ top:45%; left:2%; animation-duration:23s; animation-delay:-9s; width:9px; height:9px; }
.hero-fragrance-drift span:nth-child(8){ top:22%; left:70%; animation-duration:20s; animation-delay:-14s; width:10px; height:10px; }
.hero-fragrance-drift span:nth-child(9){ top:58%; left:38%; animation-duration:29s; animation-delay:-3s; width:8px; height:8px; }
.hero-fragrance-drift span:nth-child(10){ top:75%; left:60%; animation-duration:25s; animation-delay:-17s; width:11px; height:11px; }
@keyframes drift{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(30px,-40px) scale(1.4); }
}

.hero-inner{ position:relative; z-index:2; max-width: 620px; }
.hero-title{
  font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1.03; letter-spacing:-.01em; color: var(--ink);
}
.hero-title em{ font-style: italic; color: var(--gold-lt); font-weight: 500; }
.hero-sub{ margin-top: 22px; font-size: 1.12rem; color: var(--ink-soft); line-height:1.65; max-width: 480px; }
.hero-cta{ margin-top: 34px; display:flex; gap:16px; flex-wrap:wrap; }

/* cinematic word-cascade entrance, triggered by body.loaded */
.intro-line{
  display:inline-block; opacity:0; transform: translateY(38px); filter: blur(6px);
  transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease);
  transition-delay: calc(var(--d) * .12s + .1s);
}
.hero-title .intro-line{ overflow:hidden; }
p.intro-line, div.intro-line{ display:block; }
body.loaded .intro-line{ opacity:1; transform: translateY(0); filter: blur(0); }

.intro-showcase{ opacity:0; transform: scale(.82) rotate(-4deg); transition: opacity 1.1s var(--ease) .5s, transform 1.1s var(--ease) .5s; }
body.loaded .intro-showcase{ opacity:1; transform: scale(1) rotate(0deg); }

.hero-showcase{
  position:absolute; right: 4%; top:50%; transform: translateY(-50%); width: 42vw; max-width: 560px; height: 560px;
  z-index:1;
}
.showcase-inner{ position:absolute; inset:0; transition: transform .35s ease-out; }
.hero-showcase::before{
  content:""; position:absolute; inset:-6%; border-radius:50%; z-index:0; pointer-events:none;
  background: radial-gradient(circle, rgba(191,157,90,.16), transparent 68%);
  animation: dialGlow 6s ease-in-out infinite;
}
@keyframes dialGlow{ 0%,100%{ opacity:.55; transform:scale(1); } 50%{ opacity:1; transform:scale(1.05); } }

/* fragrance dial: tick-marked ring + counter-rotating inner ring + gold indicator */
.showcase-ring{
  position:absolute; inset: 8%; border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, rgba(191,157,90,.55) 0deg .9deg, transparent .9deg 30deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 13px), #000 calc(100% - 12px));
          mask: radial-gradient(farthest-side, transparent calc(100% - 13px), #000 calc(100% - 12px));
  animation: spin 90s linear infinite;
}
.showcase-ring::before{
  content:""; position:absolute; inset:13%; border: 1.5px dashed rgba(201,162,74,.3); border-radius:50%;
  animation: spin 46s linear infinite reverse;
}
.showcase-ring::after{
  content:""; position:absolute; top:-3px; left:50%; width:7px; height:7px; margin-left:-3.5px;
  background: var(--gold); border-radius:50%; box-shadow: 0 0 10px 2px rgba(191,157,90,.65);
}
.showcase-img{ display:none; } /* legacy — superseded by .reel-frame */

.reel-frame{
  position:absolute; inset: 9%; border-radius: 50%; overflow:hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--hairline), 0 0 0 9px var(--bg-panel);
  background: var(--bg-panel);
}
.reel-slide{
  position:absolute; inset:0; opacity:0; display:flex; align-items:center; justify-content:center;
  background: radial-gradient(circle at 50% 42%, var(--cream) 0%, var(--paper-soft) 78%, var(--paper-soft) 100%);
  animation: reelCycle 24s infinite;
}
.reel-slide img{
  position:relative; width:68%; height:68%; object-fit:contain;
  animation: kenburns 9s ease-in-out infinite alternate;
}
.reel-caption{
  position:absolute; left:50%; bottom:9%; transform:translateX(-50%);
  background: var(--bg-panel); color: var(--gold-lt); padding: 6px 16px; border-radius:999px;
  font-family: var(--font-display); font-size: .78rem; font-weight:600; letter-spacing:.03em;
  white-space:nowrap; border: 1px solid var(--hairline); box-shadow: var(--shadow-sm);
}
.reel-vignette{
  position:absolute; inset:0; pointer-events:none; border-radius:50%;
  box-shadow: inset 0 0 46px rgba(30,22,12,.22);
}
.reel-slide:nth-child(1){ animation-delay: 0s; }
.reel-slide:nth-child(1) img{ animation-delay: 0s; }
.reel-slide:nth-child(2){ animation-delay: -4s; }
.reel-slide:nth-child(2) img{ animation-delay: -1.5s; }
.reel-slide:nth-child(3){ animation-delay: -8s; }
.reel-slide:nth-child(3) img{ animation-delay: -3s; }
.reel-slide:nth-child(4){ animation-delay: -12s; }
.reel-slide:nth-child(4) img{ animation-delay: -4.5s; }
.reel-slide:nth-child(5){ animation-delay: -16s; }
.reel-slide:nth-child(5) img{ animation-delay: -6s; }
.reel-slide:nth-child(6){ animation-delay: -20s; }
.reel-slide:nth-child(6) img{ animation-delay: -7.5s; }

@keyframes reelCycle{
  0%{ opacity:0; }
  2%{ opacity:1; }
  14%{ opacity:1; }
  16.66%{ opacity:0; }
  100%{ opacity:0; }
}
@keyframes kenburns{
  0%{ transform: scale(1) translate(0,0); }
  100%{ transform: scale(1.14) translate(-1.5%, -1.5%); }
}

.scroll-cue{
  position:absolute; left:50%; bottom: 28px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid var(--gold); border-radius: 20px; z-index:2;
}
.scroll-cue span{
  position:absolute; top:7px; left:50%; width:4px; height:8px; background: var(--gold); border-radius:2px;
  transform: translateX(-50%); animation: cue 1.6s ease-in-out infinite;
}
@keyframes cue{ 0%{ opacity:1; top:7px; } 70%{ opacity:0; top:22px; } 100%{ opacity:0; top:7px; } }

/* ==========================================================================
   About
   ========================================================================== */
.about{ padding: 100px 0; background: var(--bg-panel); position:relative; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.about-grid{ display:grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items:center; }
.about-copy h2{ font-size: clamp(1.9rem,3.2vw,2.7rem); margin-bottom: 20px; }
.about-copy p{ color: var(--ink-soft); line-height:1.75; margin-bottom: 16px; font-size:1.02rem; }
.about-stats{ display:flex; gap: 36px; margin-top: 30px; }
.about-stats strong{ display:block; font-family: var(--font-display); font-size: 2.1rem; color: var(--gold-lt); font-variant-numeric: tabular-nums; }
.about-stats span{ font-size:.82rem; color: var(--ink-soft); }

.about-visual{ position:relative; height: 420px; }
.about-visual img{
  position:absolute; border-radius: var(--radius-md); box-shadow: var(--shadow-md); object-fit:contain;
  background: var(--cream); padding:10px; border: 1px solid var(--hairline); box-sizing:border-box;
  cursor: zoom-in; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.about-visual img:hover{ transform: scale(1.035); box-shadow: var(--shadow-lg), var(--shadow-gold); z-index:4; }
.about-visual img:nth-child(1){ width:56%; height:78%; top:0; left:8%; z-index:2; }
.about-visual img:nth-child(2){ width:42%; height:48%; bottom:0; left:0; z-index:1; }
.about-visual img:nth-child(3){ width:38%; height:38%; bottom:6%; right:0; z-index:3; }

/* ==========================================================================
   Categories
   ========================================================================== */
.categories{ padding: 100px 0; background: var(--bg-deep); position:relative; }
.category-grid{
  display:grid; grid-template-columns: repeat(auto-fill, minmax(190px,1fr)); gap: 18px;
}
.category-card{
  background: var(--bg-panel); border-radius: var(--radius-md); padding: 26px 20px; text-align:left;
  border: 1px solid var(--hairline); cursor:pointer; position:relative; overflow:hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  display:flex; flex-direction:column; gap: 14px;
}
.category-card{ isolation:isolate; }
.category-card::before{
  content:""; position:absolute; inset:-1px; z-index:-1; border-radius: inherit; opacity:0;
  background: radial-gradient(circle at 30% 20%, rgba(201,162,74,.35), transparent 65%);
  transition: opacity .4s var(--ease);
}
.category-card:hover::before{ opacity:1; }
.category-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md), var(--shadow-gold); border-color: var(--gold); }
.category-card .cat-icon{
  width:50px; height:50px; border-radius: 14px; background: var(--bg-raised); color: var(--gold-lt);
  display:flex; align-items:center; justify-content:center;
  transition: transform .4s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.category-card:hover .cat-icon{ transform: scale(1.1) rotate(-6deg); background: var(--gold); color: var(--bg-deep); }
.category-card .cat-icon svg{ width:26px; height:26px; }
.category-card h3{ font-size: 1.08rem; }
.category-card p{ color: var(--ink-soft); font-size:.85rem; line-height:1.4; }
.category-card .cat-count{ font-size:.74rem; font-weight:700; color: var(--gold-lt); letter-spacing:.04em; }

/* ==========================================================================
   Products
   ========================================================================== */
.products{ padding: 90px 0 110px; background: var(--bg-panel); border-top: 1px solid var(--hairline); position:relative; }
.filter-bar{
  display:flex; flex-wrap:wrap; gap: 10px; justify-content:center; margin-bottom: 56px;
}
.filter-chip{
  padding: 9px 18px; border-radius: 999px; border: 1.5px solid var(--hairline); background: transparent;
  font-weight:600; font-size:.85rem; color: var(--ink-soft); transition: all .25s var(--ease);
}
.filter-chip:hover{ border-color: var(--gold); color: var(--ink); }
.filter-chip.active{ background: var(--gold); border-color: var(--gold); color: var(--bg-deep); }

.category-block{
  margin-bottom: 70px; scroll-margin-top: 110px;
  opacity:1; transition: opacity .28s var(--ease);
}
.category-block.filtering-out{ opacity:0; }
.category-block-head{
  display:flex; align-items:baseline; justify-content:space-between; gap: 12px; margin-bottom: 26px;
  border-bottom: 1px solid var(--hairline); padding-bottom: 14px;
}
.category-block-head h3{ font-size: 1.5rem; display:flex; align-items:center; gap: 12px; }
.category-block-head h3 .cat-icon-sm{
  width:34px; height:34px; border-radius:10px; background: var(--gold); color: var(--bg-deep);
  display:inline-flex; align-items:center; justify-content:center; flex-shrink:0;
}
.category-block-head h3 .cat-icon-sm svg{ width:18px; height:18px; }
.category-block-head span{ font-size:.8rem; color: var(--ink-soft); font-weight:600; }

.product-grid{
  display:grid; grid-template-columns: repeat(auto-fill, minmax(230px,1fr)); gap: 22px;
}
.product-card{
  background: var(--bg-raised); border-radius: var(--radius-md); overflow:hidden; cursor:pointer;
  border: 1px solid var(--hairline); position:relative;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .3s var(--ease);
  display:flex; flex-direction:column;
}
.product-card{ isolation:isolate; }
.product-card::before{
  content:""; position:absolute; inset:-1px; z-index:-1; border-radius: inherit; opacity:0;
  background: radial-gradient(circle at 70% 15%, rgba(201,162,74,.3), transparent 60%);
  transition: opacity .4s var(--ease);
}
.product-card:hover::before{ opacity:1; }
.product-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-md), var(--shadow-gold); border-color: var(--gold); }
.product-card .card-media{
  aspect-ratio: 1/1; background: linear-gradient(160deg, var(--cream), var(--paper-soft)); display:flex; align-items:center; justify-content:center;
  padding: 18px; position:relative; overflow:hidden;
}
.product-card .card-media::after{
  content:""; position:absolute; top:0; left:-75%; width:50%; height:100%; z-index:1;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.65), transparent);
  transform: skewX(-18deg); transition: left .7s var(--ease); pointer-events:none;
}
.product-card:hover .card-media::after{ left:130%; }
.product-card .card-media img{
  max-height:100%; max-width:100%; object-fit:contain; transition: transform .5s var(--ease);
}
.product-card:hover .card-media img{ transform: scale(1.07); }
.product-card .variant-badge{
  position:absolute; top:10px; right:10px; background: var(--wine); color: var(--ink); font-size:.68rem;
  font-weight:700; padding: 4px 9px; border-radius: 999px; letter-spacing:.03em;
}
.product-card .card-body{ padding: 16px 18px 20px; }
.product-card .card-body h4{ font-size: 1rem; margin-bottom:3px; color: var(--ink); }
.product-card .card-body .sub{ color: var(--gold-lt); font-weight:700; font-size:.82rem; }
.product-card .card-body .sizes{ margin-top:10px; display:flex; gap:6px; flex-wrap:wrap; }
.product-card .card-body .sizes span{
  font-size:.7rem; font-weight:700; padding: 3px 9px; border-radius:999px; background: var(--bg-panel); color: var(--gold-lt);
  border: 1px solid var(--hairline);
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact{ padding: 100px 0; background: var(--bg-deep); position:relative; overflow:hidden; }
.contact-grid{ display:grid; grid-template-columns: .9fr 1.1fr; gap: 60px; }
.contact-copy h2{ font-size: clamp(1.8rem,3vw,2.4rem); margin: 6px 0 16px; }
.contact-copy p{ color: var(--ink-soft); line-height:1.6; margin-bottom: 24px; }
.contact-list{ display:flex; flex-direction:column; gap: 16px; margin-bottom: 30px; }
.contact-list li{ display:flex; align-items:flex-start; gap: 14px; }
.contact-list svg{ width:22px; height:22px; color: var(--gold); flex-shrink:0; margin-top:2px; }
.contact-list strong{ display:block; font-size:1rem; color: var(--ink); }
.contact-list span{ font-size:.86rem; color: var(--ink-soft); }
.contact-list-call{ padding: 6px 0; }
.contact-phone-link{ font-size:.86rem; color: var(--ink-soft); display:inline-block; transition: color .2s; }
.contact-phone-link:hover{ color: var(--gold-lt); text-decoration: underline; }

.contact-form{
  background: var(--bg-panel); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm);
  display:flex; flex-direction:column; gap: 18px; border: 1px solid var(--hairline);
}
.contact-form label{ font-size:.85rem; font-weight:700; color: var(--gold-lt); display:flex; flex-direction:column; gap:8px; }
.contact-form input, .contact-form textarea{
  font-family: var(--font-body); font-size: .95rem; padding: 12px 14px; border-radius: 10px;
  border: 1.5px solid var(--hairline); resize: vertical; transition: border-color .25s var(--ease);
  background: var(--bg-deep); color: var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus{ border-color: var(--gold); outline:none; }
.form-note{ font-size:.85rem; color: var(--gold-lt); font-weight:700; min-height: 1em; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{
  position:relative; background: var(--bg-panel); color: rgba(244,234,211,.86); padding: 70px 0 26px;
  overflow:hidden; border-top: 1px solid var(--hairline);
}
.footer-watermark{ position:absolute; right:-10%; top:-20%; width: 480px; height:480px; opacity:.06; pointer-events:none; }
.footer-watermark svg{ width:100%; height:100%; color:#fff; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; position:relative; z-index:1; }
.footer-brand{ display:flex; flex-direction:column; gap: 10px; }
.footer-brand .brand-mark{ color:#fff; width:40px; height:40px; }
.footer-brand .brand-word{ color:#fff; font-size:1.5rem; }
.footer-brand p{ font-size:.88rem; color: rgba(255,255,255,.6); max-width:260px; margin-top:6px; }
.footer-phone{
  display:inline-flex; align-items:center; gap:8px; margin-top:8px; width:fit-content;
  font-size:.9rem; font-weight:700; color:#fff; opacity:.9; transition: opacity .2s, transform .2s;
}
.footer-phone svg{ width:16px; height:16px; flex-shrink:0; }
.footer-phone:hover{ opacity:1; transform: translateX(3px); }
.footer-links h4, .footer-social h4{ font-size:.78rem; text-transform:uppercase; letter-spacing:.1em; color: var(--gold-lt); margin-bottom: 14px; }
.footer-links{ display:flex; flex-direction:column; }
.footer-links a{ padding: 6px 0; font-size:.92rem; opacity:.86; transition: opacity .2s, transform .2s; }
.footer-links a:hover{ opacity:1; transform: translateX(4px); }
.footer-social{ display:flex; flex-direction:column; gap:10px; }
.footer-social a{ display:inline-flex; align-items:center; gap:10px; background: rgba(255,255,255,.1); padding: 10px 16px; border-radius:999px; font-weight:700; font-size:.88rem; width: fit-content; }
.footer-social a svg{ width:18px; height:18px; }
.footer-social a:hover{ background: var(--gold); color: var(--bg-deep); }
.footer-bottom{
  text-align:center; font-size:.78rem; color: rgba(255,255,255,.45); margin-top: 54px; padding-top: 26px;
  position:relative; z-index:1; border-top: 1px solid rgba(255,255,255,.12);
}
.footer-credit{ display:block; margin-top:6px; font-size:.72rem; color: rgba(244,234,211,.35); letter-spacing:.03em; }
.footer-credit-name{
  font-family: var(--font-display); font-style: italic; font-weight:600;
  color: var(--gold-lt); letter-spacing:.04em; padding-left:2px;
}

/* ==========================================================================
   Outlets band — closing strip, last container on the page
   ========================================================================== */
.outlet-band{
  background: var(--bg-deep); border-top: 1px solid var(--hairline); padding: 20px 0;
}
.outlet-band-inner{
  display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap: 14px;
}
.outlet-band-item{
  display:inline-flex; align-items:center; gap: 9px; font-size:.85rem; font-weight:600; color: var(--ink-soft);
}
.outlet-band-item svg{ width:16px; height:16px; color: var(--gold); flex-shrink:0; }
.outlet-band-item strong{ color: var(--ink); font-weight:700; }
.outlet-band-dot{ color: var(--gold); opacity:.6; }

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */
.whatsapp-float{
  position: fixed; left: 22px; bottom: 24px; z-index: 400; width: 52px; height:52px; border-radius:50%;
  background: #25D366; color:#fff; display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-md); transition: transform .3s var(--ease);
}
.whatsapp-float svg{ width:26px; height:26px; }
.whatsapp-float:hover{ transform: scale(1.1); background: #1ebe57; }

/* ==========================================================================
   Back-to-top button — mirrors the WhatsApp float on the opposite corner
   ========================================================================== */
.back-to-top{
  position: fixed; right: 22px; bottom: 24px; z-index: 400; width: 52px; height:52px; border-radius:50%;
  background: var(--bg-panel); color: var(--gold); border: 1.5px solid var(--hairline);
  display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-md);
  opacity:0; transform: translateY(16px) scale(.85); pointer-events:none;
  transition: opacity .35s var(--ease), transform .35s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.back-to-top.visible{ opacity:1; transform: translateY(0) scale(1); pointer-events:auto; }
.back-to-top:hover{ background: var(--gold); color: var(--bg-deep); border-color: var(--gold); }
.back-to-top svg{ width:22px; height:22px; }
@media (max-width: 600px){
  .back-to-top{ width:46px; height:46px; right:16px; bottom:16px; }
  .back-to-top svg{ width:18px; height:18px; }
}

/* ==========================================================================
   Modal
   ========================================================================== */
.modal-overlay{
  position: fixed; inset:0; background: rgba(18,20,17,.62); backdrop-filter: blur(4px);
  z-index: 900; display:flex; align-items:center; justify-content:center; padding: 20px;
  opacity:0; pointer-events:none; transition: opacity .3s var(--ease);
}
.modal-overlay.active{ opacity:1; pointer-events:auto; }
.modal{
  background: var(--bg-panel); border-radius: var(--radius-lg); max-width: 880px; width:100%; max-height: 88vh;
  overflow:auto; display:grid; grid-template-columns: 1fr 1fr; position:relative;
  transform: scale(.92) translateY(20px); transition: transform .35s var(--ease);
  box-shadow: var(--shadow-lg); border: 1px solid var(--hairline);
}
.modal-overlay.active .modal{ transform: scale(1) translateY(0); }
.modal-close{
  position:absolute; top:16px; right:16px; width:38px; height:38px; border-radius:50%;
  background: var(--bg-raised); border:none; color: var(--gold-lt); display:flex; align-items:center; justify-content:center;
  z-index:2; transition: background .2s, color .2s;
}
.modal-close:hover{ background: var(--gold); color: var(--bg-deep); }
.modal-close svg{ width:18px; height:18px; }
.modal-media{
  background: linear-gradient(160deg, var(--paper-soft), var(--cream)); display:flex; align-items:center; justify-content:center; padding: 40px;
}
.modal-media img{ max-height: 360px; object-fit:contain; border-radius: var(--radius-sm); }
.modal-body{ padding: 40px 40px 40px 24px; display:flex; flex-direction:column; }
.modal-eyebrow{ font-weight:700; letter-spacing:.1em; text-transform:uppercase; font-size:.72rem; color: var(--gold-lt); margin-bottom:8px; }
.modal-body h3{ font-size: 1.7rem; margin-bottom: 4px; color: var(--ink); }
.modal-sub{ color: var(--gold-lt); font-weight:700; margin-bottom: 16px; }
.modal-desc{ color: var(--ink-soft); line-height:1.7; font-size:.95rem; margin-bottom: 24px; }
.modal-sizes-label{ font-size:.76rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color: var(--ink-soft); display:block; margin-bottom:10px; }
.size-swatches{ display:flex; flex-wrap:wrap; gap: 10px; }
.size-swatch{
  padding: 10px 18px; border-radius: 999px; border: 1.5px solid var(--hairline); background: var(--bg-deep);
  font-weight:700; font-size:.88rem; color: var(--ink-soft); transition: all .22s var(--ease);
}
.size-swatch:hover{ border-color: var(--gold); color: var(--ink); }
.size-swatch.active{ background: var(--gold); border-color: var(--gold); color: var(--bg-deep); }

/* ==========================================================================
   Lightbox — quick image enlarge for the About gallery
   ========================================================================== */
.lightbox-overlay{
  position: fixed; inset:0; background: rgba(11,10,8,.86); backdrop-filter: blur(6px);
  z-index: 950; display:flex; align-items:center; justify-content:center; padding: 30px;
  opacity:0; pointer-events:none; transition: opacity .3s var(--ease);
}
.lightbox-overlay.active{ opacity:1; pointer-events:auto; }
.lightbox-overlay img{
  max-width: min(90vw, 640px); max-height: 82vh; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); transform: scale(.92); transition: transform .35s var(--ease);
  background: var(--cream);
}
.lightbox-overlay.active img{ transform: scale(1); }
.lightbox-close{
  position:absolute; top:24px; right:24px; width:44px; height:44px; border-radius:50%;
  background: var(--bg-panel); border:1.5px solid var(--hairline); color: var(--gold-lt);
  display:flex; align-items:center; justify-content:center; transition: background .2s, color .2s;
}
.lightbox-close:hover{ background: var(--gold); color: var(--bg-deep); }
.lightbox-close svg{ width:20px; height:20px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px){
  .nav-desktop{ display:none; }
  .hamburger{ display:flex; }
  .hero{ padding-top: 120px; min-height: auto; padding-bottom: 60px; flex-direction:column; text-align:center; }
  .hero-inner{ max-width: 100%; }
  .hero-sub{ margin-left:auto; margin-right:auto; }
  .hero-cta{ justify-content:center; }
  .hero-showcase{
    position:relative; inset:auto; right:auto; top:auto; transform:none;
    width: min(78vw, 340px); height: min(78vw, 340px); margin: 44px auto 0;
  }
  .about-grid{ grid-template-columns: 1fr; }
  .about-visual{ height: 380px; order:-1; }
  .contact-grid{ grid-template-columns: 1fr; }
  .modal{ grid-template-columns: 1fr; max-height: 92vh; }
  .modal-media{ padding: 30px; }
  .modal-body{ padding: 10px 26px 34px; }
  .footer-grid{ grid-template-columns: 1fr; gap: 34px; text-align:center; }
  .footer-brand{ align-items:center; }
  .footer-brand .brand-logo{ margin-left:auto; margin-right:auto; }
  .footer-brand p{ max-width: 320px; margin-left:auto; margin-right:auto; }
  .footer-links{ align-items:center; }
  .footer-social{ display:flex; flex-direction:column; align-items:center; }
  .footer-watermark{ width: 320px; height: 320px; right:-25%; top:-10%; }
}
@media (max-width: 600px){
  .section-inner{ padding: 0 18px; }
  .about, .categories, .products, .contact{ padding: 64px 0; }
  .hero-title{ font-size: 2.4rem; }
  .hero-cta{ flex-direction:column; align-items:stretch; }
  .hero-cta .btn{ justify-content:center; }
  .about-stats{ flex-wrap:wrap; gap: 22px; }
  .category-grid{ grid-template-columns: repeat(2,1fr); }
  .product-grid{ grid-template-columns: repeat(2,1fr); gap: 14px; }
  .product-card .card-body{ padding: 12px 12px 16px; }
  .whatsapp-float{ width:46px; height:46px; left:16px; bottom:16px; }
  .whatsapp-float svg{ width:22px; height:22px; }
  .outlet-band{ padding: 16px 0; }
  .outlet-band-inner{ flex-direction:column; gap:8px; }
}
