/* ═══════════════════════════════════════════════════
   ZAYTUN AL BADR — Premium Olive Oil
   style.css
   ═══════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --plum:        #5C1E5C;
  --plum-dark:   #3A1040;
  --plum-mid:    #7A3080;
  --plum-light:  #9B5AA0;
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-dark:   #9B7C2E;
  --gold-pale:   #F5E8B8;
  --olive:       #4A5C1E;
  --olive-light: #6B8530;
  --ivory:       #F8F0DC;
  --ivory-dark:  #EEE0C0;
  --stone:       #C8B89A;
  --charcoal:    #26201E;
  --off-white:   #FFFAF2;
  --white:       #FFFFFF;

  --font-serif:  'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-gold:   cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm:   0 2px 12px rgba(58, 16, 64, 0.08);
  --shadow-md:   0 8px 32px rgba(58, 16, 64, 0.14);
  --shadow-lg:   0 20px 60px rgba(58, 16, 64, 0.22);
  --shadow-xl:   0 40px 80px rgba(58, 16, 64, 0.30);
  --glow-gold:   0 0 40px rgba(201, 168, 76, 0.35);

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   40px;

  --ann-h:       40px;
  --hdr-h:       80px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--off-white);
  overflow-x: hidden;
  cursor: none;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { cursor: none; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── SELECTION ── */
::selection { background: var(--gold); color: var(--charcoal); }

/* ── GRAIN ── */
.grain-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ── CURSOR ── */
.cursor {
  position: fixed; width: 10px; height: 10px;
  border-radius: 50%; background: var(--gold);
  pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: multiply;
}
.cursor-follower {
  position: fixed; width: 32px; height: 32px;
  border-radius: 50%; border: 1.5px solid var(--gold);
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--ease-out), width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.6;
}
.cursor--hover { width: 16px; height: 16px; background: var(--plum); }
.cursor-follower--hover { width: 48px; height: 48px; opacity: 0.3; }

/* ── CONTAINER ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ── UTILITIES ── */
.gold-rule {
  width: 64px; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  margin: 22px 0 28px;
  position: relative;
}
.gold-rule::before, .gold-rule::after {
  content: ''; position: absolute; top: 50%; transform: translateY(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
}
.gold-rule::before { left: -10px; }
.gold-rule::after  { right: -10px; }
.gold-rule--center { margin-left: auto; margin-right: auto; }

.eyebrow-label {
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.eyebrow-label.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif); font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700; line-height: 1.15; color: var(--plum-dark);
}
.section-title em {
  font-style: italic; font-weight: 400;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-title.light { color: var(--ivory); }
.section-title.light em { background: linear-gradient(135deg, var(--gold), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.section-header.centered { text-align: center; }
.section-sub {
  max-width: 620px; margin: 16px auto 0;
  font-size: 1.05rem; line-height: 1.7; color: #5A4E48; opacity: 0.85;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 50%, var(--plum-mid) 100%);
  color: var(--gold-light); font-weight: 600; font-size: 0.92rem;
  letter-spacing: 0.04em; border: 1px solid rgba(201,168,76,0.3);
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(92, 30, 92, 0.4);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(92, 30, 92, 0.55), var(--glow-gold); }
.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 30px; border-radius: var(--radius-xl);
  border: 1.5px solid rgba(201,168,76,0.5); color: var(--ivory);
  font-weight: 500; font-size: 0.92rem; letter-spacing: 0.04em;
  backdrop-filter: blur(4px); background: rgba(255,255,255,0.04);
  transition: all 0.3s var(--ease-out);
}
.btn-ghost:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; border-radius: var(--radius-xl);
  border: 1.5px solid var(--plum); color: var(--plum);
  font-weight: 500; font-size: 0.88rem; letter-spacing: 0.04em;
  transition: all 0.3s var(--ease-out);
}
.btn-outline:hover { background: var(--plum); color: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ── REVEAL ANIMATIONS ── */
.reveal-section { opacity: 1; }
[data-reveal] { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease-gold), transform 0.8s var(--ease-gold); }
[data-reveal="left"]  { transform: translateX(-50px); }
[data-reveal="right"] { transform: translateX(50px); }
[data-reveal].visible { opacity: 1; transform: translate(0); }
[data-reveal-delay]   { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease-gold), transform 0.7s var(--ease-gold); }
[data-reveal-delay].visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   ANNOUNCEMENT BAR
═══════════════════════════════════════ */
.announcement-bar {
  height: var(--ann-h); background: var(--plum-dark);
  display: flex; align-items: center; justify-content: space-between;
  overflow: hidden; position: sticky; top: 0; z-index: 1001;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.ann-marquee {
  flex: 1; overflow: hidden; position: relative;
}
.ann-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.ann-track span {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-pale); padding: 0 40px; flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ann-actions {
  display: flex; align-items: center; gap: 16px;
  padding: 0 20px; flex-shrink: 0;
}
.ann-link {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-pale); transition: color 0.2s; opacity: 0.8;
}
.ann-link:hover { color: var(--gold-light); opacity: 1; }
.ann-cta {
  font-size: 0.68rem; letter-spacing: 0.12em; font-weight: 600;
  padding: 5px 14px; border-radius: 20px;
  border: 1px solid var(--gold); color: var(--gold);
  transition: all 0.2s;
}
.ann-cta:hover { background: var(--gold); color: var(--plum-dark); }

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.header {
  position: sticky; top: var(--ann-h); left: 0; right: 0;
  height: var(--hdr-h); z-index: 900;
  background: transparent;
  transition: background 0.5s var(--ease-out), backdrop-filter 0.5s, box-shadow 0.5s, transform 0.35s var(--ease-out);
}
.header.scrolled {
  background: var(--ivory);
  backdrop-filter: none;
  box-shadow: 0 2px 24px rgba(58, 16, 64, 0.12);
}
.header.hidden { transform: translateY(-100%); }
.header-inner {
  height: 100%; display: flex; align-items: center; gap: 32px;
}
.logo-link { flex-shrink: 0; }
.logo-img { height: 56px; width: auto; object-fit: contain; filter: brightness(1.1); }
.header.scrolled .logo-img { filter: none; }
.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link {
  padding: 8px 14px; font-size: 0.88rem; font-weight: 500;
  color: var(--ivory); border-radius: 20px;
  transition: background 0.3s, color 0.3s;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 1.5px; background: var(--gold);
  transition: width 0.3s var(--ease-out); border-radius: 1px;
}
.nav-link:hover::after { width: 60%; }
/* Solid state — dark text on light background */
.header.scrolled .nav-link { color: var(--plum-dark); }
/* CTA button always visible */
.header-cta { font-size: 0.85rem; padding: 10px 22px; margin-left: 12px; }
/* Transparent state — keep CTA readable over dark hero */
.header:not(.scrolled) .header-cta {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.6);
  color: var(--gold-light);
  box-shadow: none;
}

.menu-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer;
}
.menu-toggle span {
  display: block; width: 24px; height: 1.5px; background: var(--ivory);
  transition: all 0.3s var(--ease-out); transform-origin: center;
}
.header.scrolled .menu-toggle span { background: var(--plum-dark); }

/* Mobile Nav */
.mob-overlay {
  position: fixed; inset: 0; background: rgba(58, 16, 64, 0.6);
  z-index: 920; opacity: 0; pointer-events: none; transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}
.mob-overlay.open { opacity: 1; pointer-events: all; }
.mob-nav {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 85vw);
  background: var(--plum-dark); z-index: 930;
  display: flex; flex-direction: column; padding: 80px 32px 40px;
  transform: translateX(100%); transition: transform 0.4s var(--ease-out);
  border-left: 1px solid rgba(201,168,76,0.2);
}
.mob-nav.open { transform: translateX(0); }
.mob-close {
  position: absolute; top: 20px; right: 20px;
  color: var(--gold); padding: 8px;
}
.mob-link {
  font-family: var(--font-serif); font-size: 1.4rem; font-weight: 500;
  color: var(--ivory-dark); padding: 12px 0;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  transition: color 0.2s, padding-left 0.2s;
}
.mob-link:hover { color: var(--gold-light); padding-left: 8px; }
.mob-cta { margin-top: 32px; text-align: center; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  /* Pull up behind the sticky header so the transparent header overlays it */
  margin-top: calc(-1 * var(--hdr-h));
  padding-top: calc(var(--hdr-h) + 40px);
  background: linear-gradient(150deg, var(--plum-dark) 0%, var(--plum) 45%, #7A2E6A 70%, #4A1A40 100%);
}
.hero-geo-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
  background-image:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 60%);
}
.hero-geo-bg::before {
  content: '';
  position: absolute; right: -100px; top: -100px; width: 700px; height: 700px;
  border-radius: 50%; border: 1px solid rgba(201,168,76,0.08);
}
.hero-geo-bg::after {
  content: '';
  position: absolute; right: -50px; top: -50px; width: 500px; height: 500px;
  border-radius: 50%; border: 1px solid rgba(201,168,76,0.06);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; padding: 80px 28px;
  max-width: 1240px; margin: 0 auto; width: 100%;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
}
.eyebrow-rule {
  flex: 1; max-width: 48px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow-rule:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.eyebrow-text {
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; white-space: nowrap;
}
.hero-title {
  font-family: var(--font-serif); font-size: clamp(2.4rem, 4.5vw, 4.4rem);
  font-weight: 800; line-height: 1.1; color: var(--ivory);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic; font-weight: 400;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
  font-size: 1.05rem; line-height: 1.75; color: rgba(245, 237, 216, 0.78);
  max-width: 480px; margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.hero-badge {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.76rem; font-weight: 500; letter-spacing: 0.08em;
  color: rgba(232, 201, 106, 0.85); padding: 6px 14px;
  border: 1px solid rgba(201,168,76,0.25); border-radius: 20px;
  background: rgba(201,168,76,0.06);
}
.badge-gem {
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-frame {
  position: relative; width: clamp(320px, 40vw, 520px); height: clamp(400px, 50vw, 640px);
}
.hero-ring {
  position: absolute; border-radius: 50%; pointer-events: none;
  border: 1px solid rgba(201,168,76,0.2);
  animation: ring-pulse 6s ease-in-out infinite;
}
.hero-ring--outer {
  inset: -40px; animation-delay: 0s;
}
.hero-ring--inner {
  inset: -20px; border-color: rgba(201,168,76,0.12); animation-delay: 1.5s;
}
@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.02); opacity: 1; }
}
.hero-corner {
  position: absolute; width: 24px; height: 24px;
  border-color: var(--gold); border-style: solid; opacity: 0.6;
}
.hero-corner--tl { top: -8px; left: -8px; border-width: 2px 0 0 2px; border-radius: 4px 0 0 0; }
.hero-corner--tr { top: -8px; right: -8px; border-width: 2px 2px 0 0; border-radius: 0 4px 0 0; }
.hero-corner--bl { bottom: -8px; left: -8px; border-width: 0 0 2px 2px; border-radius: 0 0 0 4px; }
.hero-corner--br { bottom: -8px; right: -8px; border-width: 0 2px 2px 0; border-radius: 0 0 4px 0; }
.hero-product {
  position: absolute; inset: 0; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl), var(--glow-gold);
}
.hero-product img { object-fit: cover; width: 100%; height: 100%; }
.hero-product-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero-float-1, .hero-float-2 {
  position: absolute; display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 12px 18px; border-radius: var(--radius-md);
  background: rgba(58, 16, 64, 0.85); backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.3);
  box-shadow: var(--shadow-md);
  animation: float-bob 4s ease-in-out infinite;
}
.hero-float-1 { bottom: 40px; left: -30px; animation-delay: 0s; }
.hero-float-2 { top: 60px; right: -30px; animation-delay: 1.5s; }
.float-top { font-size: 1.1rem; font-weight: 800; color: var(--gold-light); font-family: var(--font-serif); }
.float-bot { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); }
@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(245,237,216,0.5); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  z-index: 3;
}
.scroll-bar {
  width: 1.5px; height: 48px; background: rgba(201,168,76,0.2);
  position: relative; border-radius: 1px;
}
.scroll-dot {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--gold);
  animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0%   { top: 0; opacity: 1; }
  80%  { top: calc(100% - 4px); opacity: 0.4; }
  100% { top: 0; opacity: 0; }
}

/* ═══════════════════════════════════════
   TRUST STRIP
═══════════════════════════════════════ */
.trust-strip {
  background: linear-gradient(135deg, var(--ivory) 0%, var(--ivory-dark) 100%);
  padding: 52px 0;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.trust-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px;
}
.trust-card {
  text-align: center; padding: 24px 16px;
  border-right: 1px solid rgba(201,168,76,0.18);
  transition: background 0.3s;
  cursor: default;
}
.trust-card:last-child { border-right: none; }
.trust-card:hover { background: rgba(201,168,76,0.06); border-radius: var(--radius-sm); }
.trust-icon {
  width: 44px; height: 44px; margin: 0 auto 14px;
  color: var(--plum); opacity: 0.85;
}
.trust-card h3 {
  font-family: var(--font-serif); font-size: 0.9rem; font-weight: 600;
  color: var(--plum-dark); margin-bottom: 4px;
}
.trust-card p { font-size: 0.78rem; color: #6A5E58; opacity: 0.85; }

/* ═══════════════════════════════════════
   STORY
═══════════════════════════════════════ */
.story {
  padding: 120px 0; position: relative; overflow: hidden;
  background: var(--off-white);
}
.story-texture {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235C1E5C' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.story-img-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3/4; box-shadow: var(--shadow-xl);
}
.story-img-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.story-quote-block {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--plum-dark); border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-md); padding: 24px 28px;
  max-width: 280px; box-shadow: var(--shadow-lg);
}
.story-qmark {
  font-family: var(--font-serif); font-size: 3rem; line-height: 0.8;
  color: var(--gold); display: block; margin-bottom: 8px;
}
.story-quote-block p {
  font-family: var(--font-serif); font-style: italic;
  color: var(--ivory); font-size: 0.9rem; line-height: 1.6;
}
.story-lead {
  font-size: 1.08rem; line-height: 1.75; color: var(--plum-dark);
  font-weight: 500; margin-bottom: 16px;
}
.story-body {
  font-size: 0.97rem; line-height: 1.8; color: #4A4040; margin-bottom: 14px;
}
.story-pillars { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.story-pillar { display: flex; align-items: flex-start; gap: 16px; }
.pillar-num {
  font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700;
  color: var(--gold); line-height: 1; flex-shrink: 0;
}
.pillar-text strong { font-size: 0.92rem; font-weight: 600; color: var(--plum-dark); display: block; }
.pillar-text p { font-size: 0.83rem; color: #6A5E58; margin-top: 2px; }

/* ═══════════════════════════════════════
   STATS
═══════════════════════════════════════ */
.stats-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 100%);
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08); pointer-events: none;
}
.stats-grid {
  display: flex; align-items: center; justify-content: center; gap: 0;
}
.stat-item { flex: 1; text-align: center; padding: 20px 16px; }
.stat-sep { width: 1px; height: 60px; background: rgba(201,168,76,0.2); flex-shrink: 0; }
.stat-val {
  display: flex; align-items: baseline; justify-content: center;
  font-family: var(--font-serif); font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800; color: var(--gold-light); line-height: 1;
}
.stat-sfx { font-size: 1.6rem; font-weight: 600; color: var(--gold); margin-left: 4px; }
.stat-lbl { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,237,216,0.6); margin-top: 8px; }

/* ═══════════════════════════════════════
   PRODUCTS
═══════════════════════════════════════ */
.products { padding: 120px 0; background: var(--ivory); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.prod-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
  border: 1px solid rgba(201,168,76,0.12);
}
.prod-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.prod-card--featured { border-color: rgba(201,168,76,0.3); box-shadow: var(--shadow-md); }
.prod-card--featured:hover { box-shadow: var(--shadow-xl), var(--glow-gold); }
.prod-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
  background: rgba(58,16,64,0.75); color: var(--gold-light);
  backdrop-filter: blur(8px); border: 1px solid rgba(201,168,76,0.3);
}
.prod-tag--gold { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--plum-dark); }
.prod-img-wrap { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.prod-img-wrap img { transition: transform 0.6s var(--ease-out); object-fit: cover; }
.prod-card:hover .prod-img-wrap img { transform: scale(1.04); }
.prod-img-hover {
  position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 24px;
  background: linear-gradient(to top, rgba(58,16,64,0.7) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.prod-card:hover .prod-img-hover { opacity: 1; }
.prod-hover-btn {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--gold-light); padding: 9px 20px; border-radius: 20px;
  border: 1.5px solid var(--gold); background: rgba(58,16,64,0.6);
  backdrop-filter: blur(8px); transition: background 0.2s;
}
.prod-hover-btn:hover { background: var(--gold); color: var(--plum-dark); }
.prod-body { padding: 24px 24px 28px; }
.prod-size {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 6px;
}
.prod-sizes {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.prod-sizes span {
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3);
  border-radius: 12px; padding: 3px 10px;
  color: var(--gold-dark); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em;
}
.size-sep {
  background: none !important; border: none !important;
  padding: 0 !important; color: var(--stone) !important;
  font-size: 0.65rem !important;
}
.prod-name {
  font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700;
  color: var(--plum-dark); margin-bottom: 10px;
}
.prod-desc { font-size: 0.88rem; line-height: 1.7; color: #5A4E48; margin-bottom: 16px; }
.prod-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.prod-tags span {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.08em;
  padding: 4px 10px; border-radius: 12px;
  border: 1px solid rgba(92,30,92,0.18); color: var(--plum);
  background: rgba(92,30,92,0.04);
}
.prod-cta { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════
   SPOTLIGHT
═══════════════════════════════════════ */
.spotlight {
  position: relative; padding: 120px 0; overflow: hidden;
  background: var(--plum-dark);
}
.spotlight-bg-img {
  position: absolute; inset: 0; z-index: 0;
}
.spotlight-bg-img img { object-fit: cover; opacity: 0.15; filter: blur(2px); }
.spotlight-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(58,16,64,0.97) 0%, rgba(92,30,92,0.88) 100%);
}
.spotlight-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.spotlight-lead {
  font-size: 1.05rem; line-height: 1.75; color: rgba(245,237,216,0.78); margin-bottom: 36px;
}
.tasting-notes { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.tasting-note { display: flex; align-items: flex-start; gap: 16px; }
.tasting-ico {
  width: 36px; height: 36px; flex-shrink: 0; color: var(--gold);
  padding: 6px; border: 1px solid rgba(201,168,76,0.3); border-radius: 8px;
  background: rgba(201,168,76,0.06);
}
.tasting-note strong { font-size: 0.9rem; font-weight: 600; color: var(--ivory); display: block; margin-bottom: 2px; }
.tasting-note p { font-size: 0.82rem; color: rgba(245,237,216,0.6); }
.spotlight-img-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3/4; box-shadow: var(--shadow-xl), var(--glow-gold);
}
.spotlight-seal {
  position: absolute; bottom: -20px; left: -20px;
  width: 90px; height: 90px;
}
.seal-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--gold);
  animation: ring-spin 12s linear infinite;
  background: conic-gradient(from 0deg, rgba(201,168,76,0.3), transparent, rgba(201,168,76,0.3));
}
@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.seal-content {
  position: absolute; inset: 8px; border-radius: 50%;
  background: var(--plum-dark); border: 1px solid rgba(201,168,76,0.3);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.seal-num { font-family: var(--font-serif); font-size: 1rem; font-weight: 800; color: var(--gold-light); }
.seal-sub { font-size: 0.55rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); margin-top: 1px; }

/* ═══════════════════════════════════════
   WHY US
═══════════════════════════════════════ */
.why-us { padding: 120px 0; background: var(--off-white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.why-card {
  padding: 36px 28px; border-radius: var(--radius-md);
  background: var(--white); border: 1px solid rgba(201,168,76,0.12);
  transition: all 0.4s var(--ease-out); position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease-out);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(201,168,76,0.3); }
.why-ico { width: 52px; height: 52px; color: var(--plum); margin-bottom: 20px; }
.why-card h3 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--plum-dark); margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; line-height: 1.7; color: #5A4E48; }

/* ═══════════════════════════════════════
   QUALITY
═══════════════════════════════════════ */
.quality { padding: 120px 0; background: var(--ivory); position: relative; overflow: hidden; }
.quality-pattern {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%235C1E5C' fill-opacity='1' fill-rule='evenodd'%3E%3Ccircle cx='40' cy='40' r='2'/%3E%3Ccircle cx='0' cy='0' r='2'/%3E%3Ccircle cx='80' cy='0' r='2'/%3E%3Ccircle cx='0' cy='80' r='2'/%3E%3Ccircle cx='80' cy='80' r='2'/%3E%3C/g%3E%3C/svg%3E");
}
.quality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: flex-start; }
.quality-lead { font-size: 1.02rem; line-height: 1.75; color: var(--plum-dark); font-weight: 500; margin-bottom: 28px; }
.quality-points { display: flex; flex-direction: column; gap: 20px; }
.quality-point { display: flex; align-items: flex-start; gap: 16px; }
.q-check {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--plum), var(--plum-mid));
  color: var(--gold-light); display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; box-shadow: 0 4px 12px rgba(92,30,92,0.3);
}
.quality-point strong { font-size: 0.92rem; font-weight: 600; color: var(--plum-dark); display: block; margin-bottom: 3px; }
.quality-point p { font-size: 0.83rem; line-height: 1.65; color: #5A4E48; }
.quality-docs-title {
  font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700;
  color: var(--plum-dark); margin: 16px 0 28px;
}
.doc-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.doc-card {
  background: var(--white); border: 1px solid rgba(201,168,76,0.2); border-radius: var(--radius-md);
  padding: 20px 18px; display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center; transition: all 0.3s; cursor: default;
}
.doc-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.doc-ico { width: 36px; height: 36px; color: var(--plum); }
.doc-card span { font-size: 0.82rem; font-weight: 500; color: var(--plum-dark); }
.doc-req {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 16px;
  border: 1.5px solid var(--gold); color: var(--gold-dark);
  cursor: pointer; transition: all 0.2s;
}
.doc-req:hover { background: var(--gold); color: var(--plum-dark); }
.docs-note { font-size: 0.82rem; color: #6A5E58; line-height: 1.6; font-style: italic; }

/* ═══════════════════════════════════════
   TASTE
═══════════════════════════════════════ */
.taste { position: relative; padding: 120px 0; overflow: hidden; }
.taste-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--plum-dark) 0%, #4A1040 40%, var(--plum) 80%, var(--plum-dark) 100%);
}
.taste-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 100%, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.taste > .container { position: relative; z-index: 2; }
.taste-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.taste-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-md); padding: 32px 24px;
  transition: all 0.4s var(--ease-out);
}
.taste-card:hover { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.4); transform: translateY(-6px); }
.taste-card--hl {
  background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.3);
}
.taste-num {
  font-family: var(--font-serif); font-size: 2rem; font-weight: 800;
  color: rgba(201,168,76,0.3); line-height: 1; margin-bottom: 16px;
}
.taste-card h3 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--ivory); margin-bottom: 12px; }
.taste-card p  { font-size: 0.87rem; line-height: 1.7; color: rgba(245,237,216,0.65); }

/* ═══════════════════════════════════════
   EXPORT
═══════════════════════════════════════ */
.export { padding: 120px 0; background: var(--off-white); }
.export-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.export-lead { font-size: 1.02rem; line-height: 1.75; color: var(--plum-dark); font-weight: 500; margin-bottom: 32px; }
.export-opts { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.export-opt { display: flex; align-items: flex-start; gap: 14px; }
.export-opt-ico { font-size: 1.3rem; line-height: 1; flex-shrink: 0; }
.export-opt strong { font-size: 0.9rem; font-weight: 600; color: var(--plum-dark); display: block; margin-bottom: 2px; }
.export-opt p { font-size: 0.83rem; line-height: 1.6; color: #5A4E48; }
.export-img-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3/4; box-shadow: var(--shadow-xl);
}
.export-badge {
  position: absolute; top: 24px; right: 24px; z-index: 2;
  background: rgba(58,16,64,0.85); backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.4); border-radius: var(--radius-md);
  padding: 14px 18px; text-align: center;
}
.export-badge span { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone); display: block; }
.export-badge strong { font-family: var(--font-serif); font-size: 1.1rem; color: var(--gold-light); display: block; }

/* ═══════════════════════════════════════
   GALLERY
═══════════════════════════════════════ */
.gallery { padding: 120px 0; background: var(--ivory); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px; margin-top: 56px;
}
.gallery-item {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  cursor: pointer; aspect-ratio: 4/5;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s, transform 0.4s var(--ease-out);
}
.gallery-item--lg {
  grid-row: span 2; aspect-ratio: auto;
}
.gallery-item--tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.gallery-hover {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(58,16,64,0.45); opacity: 0; transition: opacity 0.4s;
  color: var(--gold-light); backdrop-filter: blur(2px);
}
.gallery-item:hover .gallery-hover { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(26, 10, 30, 0.95); backdrop-filter: blur(16px);
  display: none; align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lb-wrap {
  position: relative; max-width: min(90vw, 800px); max-height: 90vh;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.lb-img { max-height: 80vh; width: auto; max-width: 100%; border-radius: var(--radius-md); object-fit: contain; }
.lb-caption { color: var(--stone); font-size: 0.85rem; letter-spacing: 0.08em; }
.lb-close { position: fixed; top: 24px; right: 24px; color: var(--gold); padding: 12px; z-index: 10; transition: transform 0.2s; }
.lb-close:hover { transform: rotate(90deg); }
.lb-prev, .lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  color: var(--gold); padding: 16px; z-index: 10;
  background: rgba(58,16,64,0.5); border-radius: 50%;
  transition: background 0.2s, transform 0.2s;
}
.lb-prev:hover, .lb-next:hover { background: rgba(58,16,64,0.9); transform: translateY(-50%) scale(1.1); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq { padding: 120px 0; background: var(--off-white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: flex-start; }
.faq-left p { font-size: 0.97rem; line-height: 1.75; color: #5A4E48; margin-top: 12px; margin-bottom: 32px; }
.faq-img { border-radius: var(--radius-lg); object-fit: cover; height: 260px; box-shadow: var(--shadow-md); }
.faq-right { display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  border-bottom: 1px solid rgba(201,168,76,0.18); overflow: hidden;
  border-radius: var(--radius-sm); margin-bottom: 4px;
}
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 22px; text-align: left;
  font-family: var(--font-serif); font-size: 1rem; font-weight: 600;
  color: var(--plum-dark); background: transparent;
  transition: background 0.2s, color 0.2s;
}
.faq-q:hover { background: rgba(92,30,92,0.04); }
.faq-q[aria-expanded="true"] { background: rgba(92,30,92,0.06); color: var(--plum); }
.faq-ico {
  font-size: 1.4rem; font-weight: 300; color: var(--gold); flex-shrink: 0;
  transition: transform 0.3s var(--ease-spring);
  width: 24px; height: 24px; line-height: 22px; text-align: center;
}
.faq-q[aria-expanded="true"] .faq-ico { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
}
.faq-a.open { max-height: 400px; padding-bottom: 8px; }
.faq-a p { font-size: 0.9rem; line-height: 1.78; color: #5A4E48; padding: 4px 22px 16px; }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact { position: relative; padding: 120px 0; overflow: hidden; }
.contact-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(150deg, var(--plum-dark) 0%, var(--plum) 50%, #4A1A40 100%);
}
.contact-overlay::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 10 L90 50 L50 90 L10 50 Z' stroke='rgba(201,168,76,0.04)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.contact > .container { position: relative; z-index: 2; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: flex-start; }
.contact-lead { font-size: 1.02rem; line-height: 1.75; color: rgba(245,237,216,0.78); margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.cdetail {
  display: flex; align-items: flex-start; gap: 16px;
  transition: transform 0.2s;
}
.cdetail:hover { transform: translateX(4px); }
.cdetail-ico {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 10px; background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.cdetail-text span { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); display: block; margin-bottom: 2px; }
.cdetail-text strong { font-size: 0.95rem; color: var(--ivory); font-weight: 500; line-height: 1.5; }

/* Form */
.contact-form-wrap {
  background: rgba(255,255,255,0.97); border-radius: var(--radius-lg);
  padding: 44px 40px; box-shadow: var(--shadow-xl);
  border: 1px solid rgba(201,168,76,0.2);
}
.form-title {
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700;
  color: var(--plum-dark); margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grp { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-grp label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; color: var(--plum-dark); }
.form-grp input, .form-grp select, .form-grp textarea {
  border: 1.5px solid rgba(201,168,76,0.25); border-radius: var(--radius-sm);
  padding: 12px 16px; font-size: 0.9rem; font-family: var(--font-sans);
  color: var(--charcoal); background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-grp input:focus, .form-grp select:focus, .form-grp textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  background: var(--white);
}
.form-grp textarea { resize: vertical; min-height: 120px; }
.form-grp select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%235C1E5C' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 36px; }
.form-submit { width: 100%; justify-content: center; padding: 15px; font-size: 0.95rem; }
.form-note { font-size: 0.78rem; color: #8A7A72; text-align: center; margin-top: 14px; }

/* ═══════════════════════════════════════
   INSTAGRAM SECTION
═══════════════════════════════════════ */
.instagram-section {
  padding: 100px 0; background: var(--ivory);
  position: relative; overflow: hidden;
}
.instagram-section::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--plum), var(--gold), var(--plum-mid), var(--gold), var(--plum));
}
.insta-header {
  text-align: center; margin-bottom: 52px;
}
.insta-handle {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--plum); margin-top: 8px;
  padding: 8px 20px; border: 1.5px solid rgba(92,30,92,0.2); border-radius: 24px;
  transition: all 0.3s;
}
.insta-handle:hover { background: var(--plum); color: var(--gold-light); border-color: var(--plum); }
.insta-handle svg { color: var(--gold); }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 12px;
}
.insta-item {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.insta-item:first-child {
  grid-row: span 2;
}
.insta-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s var(--ease-out);
}
.insta-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.insta-item:hover img { transform: scale(1.07); }
.insta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(58,16,64,0.78) 0%, rgba(58,16,64,0.15) 50%, transparent 100%);
  opacity: 0; transition: opacity 0.4s;
  display: flex; flex-direction: column; justify-content: flex-end; align-items: center;
  padding: 20px; gap: 6px; text-align: center;
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-overlay-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(201,168,76,0.15); border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); margin-bottom: 4px;
  transform: translateY(8px); transition: transform 0.35s var(--ease-spring);
}
.insta-item:hover .insta-overlay-icon { transform: translateY(0); }
.insta-overlay-label {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(245,237,216,0.75); font-weight: 500;
}
.insta-cta-row {
  text-align: center; margin-top: 40px; display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--plum-dark); color: var(--stone);
  padding-top: 80px; padding-bottom: 0; position: relative; overflow: hidden;
}
.footer-pattern {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--plum), var(--gold), var(--plum-mid), var(--gold), var(--plum));
}
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
  gap: 40px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.footer-logo { height: 60px; width: auto; object-fit: contain; margin-bottom: 16px; filter: brightness(1.1); }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: rgba(200,184,154,0.7); margin-bottom: 20px; }
.footer-socials { display: flex; gap: 12px; }
.fsocial {
  width: 38px; height: 38px; border-radius: 8px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201,168,76,0.2); color: var(--stone);
  transition: all 0.2s;
}
.fsocial:hover { background: rgba(201,168,76,0.12); border-color: var(--gold); color: var(--gold-light); }
.footer-col h4 {
  font-family: var(--font-serif); font-size: 0.95rem; font-weight: 600;
  color: var(--gold-light); margin-bottom: 20px; letter-spacing: 0.04em;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.85rem; color: rgba(200,184,154,0.65); transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact li svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.footer-contact li a, .footer-contact li span { font-size: 0.83rem; color: rgba(200,184,154,0.65); }
.footer-contact li a:hover { color: var(--gold-light); }
.footer-cta-col h4 {
  font-family: var(--font-serif); font-size: 0.95rem; font-weight: 600;
  color: var(--gold-light); margin-bottom: 12px;
}
.footer-cta-col > p { font-size: 0.83rem; color: rgba(200,184,154,0.6); margin-bottom: 20px; line-height: 1.6; }
.footer-cta-btn { font-size: 0.82rem; padding: 11px 20px; }
.footer-seal {
  margin-top: 24px; text-align: center; padding: 14px;
  border: 1px solid rgba(201,168,76,0.2); border-radius: var(--radius-md);
  background: rgba(201,168,76,0.04);
}
.footer-seal span { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 800; color: var(--gold); display: block; }
.footer-seal small { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); opacity: 0.7; }
.footer-bottom { padding: 24px 0; }
.footer-divider-geo {
  height: 1px; margin-bottom: 24px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}
.footer-bottom-row {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-bottom-row p { font-size: 0.78rem; color: rgba(200,184,154,0.4); }

/* ═══════════════════════════════════════
   FLOATING ELEMENTS
═══════════════════════════════════════ */
.float-wa, .float-inq {
  position: fixed; z-index: 800;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); cursor: pointer;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.float-wa  { bottom: 90px; right: 24px; background: #25D366; color: white; }
.float-inq { bottom: 152px; right: 24px; background: var(--plum); color: var(--gold-light); border: 1px solid rgba(201,168,76,0.3); }
.float-wa:hover, .float-inq:hover { transform: scale(1.1) translateY(-3px); box-shadow: var(--shadow-xl); }
.float-tooltip {
  position: absolute; right: 60px; white-space: nowrap;
  font-size: 0.78rem; font-weight: 600; padding: 6px 12px;
  border-radius: 20px; background: rgba(26,10,30,0.9); color: var(--gold-light);
  opacity: 0; transform: translateX(8px); transition: all 0.25s; pointer-events: none;
  letter-spacing: 0.04em;
}
.float-wa:hover  .float-tooltip,
.float-inq:hover .float-tooltip { opacity: 1; transform: translateX(0); }

.back-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 800;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--plum-dark); color: var(--gold); border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); opacity: 0; pointer-events: none;
  transition: all 0.4s var(--ease-out); cursor: pointer;
}
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { background: var(--plum); transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ═══════════════════════════════════════
   TILT CARD
═══════════════════════════════════════ */
.tilt-target { transform-style: preserve-3d; transition: transform 0.15s var(--ease-out); will-change: transform; }

/* ═══════════════════════════════════════
   MAGNETIC BUTTON
═══════════════════════════════════════ */
.magnetic-btn { transition: transform 0.4s var(--ease-spring), box-shadow 0.4s; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-card { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.18); }
  .trust-card:nth-child(3n) { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-cta-col { grid-column: span 2; }
}

@media (max-width: 960px) {
  :root { --hdr-h: 68px; }
  .nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 220px); }
  .insta-item:first-child { grid-row: span 1; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; padding: 60px 20px; }
  .hero-eyebrow { justify-content: center; }
  .hero-subtitle { margin: 0 auto 36px; }
  .hero-ctas { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-visual { justify-content: center; }
  .hero-frame { width: min(340px, 85vw); height: auto; aspect-ratio: 3/4; }
  .hero-float-1 { bottom: 20px; left: -10px; }
  .hero-float-2 { top: 30px; right: -10px; }
  .story-grid, .spotlight-grid, .export-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-img-wrap { aspect-ratio: 4/3; }
  .story-quote-block { position: relative; bottom: auto; right: auto; margin-top: 20px; }
  .quality-grid { grid-template-columns: 1fr; gap: 48px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .taste-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-img { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--lg, .gallery-item--tall { grid-row: span 1; aspect-ratio: 4/5; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .doc-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --ann-h: 36px; --hdr-h: 60px; }
  .ann-actions { display: none; }
  .ann-track span { padding: 0 24px; font-size: 0.68rem; }
  .hero-inner { padding: 40px 16px; }
  .products-grid, .why-grid, .taste-grid { grid-template-columns: 1fr; }
  .stats-grid { flex-direction: column; gap: 32px; }
  .stat-sep { width: 60px; height: 1px; background: rgba(201,168,76,0.2); }
  .doc-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom-row { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 180px); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-card:nth-child(3n) { border-bottom: 1px solid rgba(201,168,76,0.18); }
  .hero-frame { width: 85vw; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
}
