/* =========================================================
   Nigella Excellence — Prestige Landing Page
   ========================================================= */

:root {
  --bg: #faf6ee;
  --bg-deep: #f3ead6;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --muted: #8a8170;
  --gold: #c9a96e;
  --gold-light: #e6c988;
  --gold-deep: #8c7340;
  --night: #0d0d0d;
  --night-2: #161311;
  --blue: #8fa9c9;
  --blue-deep: #3f5677;
  --rule: rgba(140, 115, 64, 0.25);

  --serif: 'Cormorant Garamond', 'Trajan Pro', Georgia, serif;
  --sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  --container: 1240px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.15;
  margin: 0;
}

h1 { font-size: clamp(56px, 9vw, 132px); }
h2 { font-size: clamp(34px, 4.6vw, 60px); font-weight: 500; }
h3 { font-size: 22px; font-weight: 500; letter-spacing: 1px; }
h4 { font-size: 13px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold-deep); font-weight: 500; }

p { margin: 0 0 18px; color: var(--ink-soft); }

em { font-style: italic; color: var(--gold-deep); font-family: var(--serif); }
strong { font-weight: 500; color: var(--ink); }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 400;
  margin-bottom: 18px;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-block;
  padding: 16px 34px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.45s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-deep));
  color: var(--night);
  box-shadow: 0 8px 30px rgba(140, 115, 64, 0.25);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(140, 115, 64, 0.4);
}
.btn--ghost {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn--large { padding: 20px 50px; font-size: 12px; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 22px 0;
  background: rgba(250, 246, 238, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  z-index: 200;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease-out), padding 0.3s var(--ease-out), border-color 0.4s var(--ease-out);
}
body.no-scroll .site-header {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
  pointer-events: none;
}
body.no-scroll .brand,
body.no-scroll .menu-toggle {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.site-header.scrolled {
  padding: 12px 0;
  border-bottom-color: var(--rule);
  background: rgba(250, 246, 238, 0.95);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { height: 48px; transition: height 0.3s var(--ease-out); }
.scrolled .logo { height: 38px; }

.main-nav {
  display: flex;
  gap: 38px;
}
.main-nav a {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease-out);
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after { width: 100%; }

@media (max-width: 760px) {
  .main-nav { display: none; }
}

/* =========================================================
   Hamburger button + Overlay menu (all viewports)
   ========================================================= */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: 0;
  padding: 8px 4px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ink);
  z-index: 110;
  position: relative;
}
.menu-toggle__icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 16px;
  position: relative;
}
.menu-toggle__bar {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  transform-origin: center;
  transition: transform 0.4s var(--ease-out), opacity 0.25s var(--ease-out), background 0.3s var(--ease-out);
}
.menu-toggle__label {
  display: inline-block;
}
.menu-toggle.is-open .menu-toggle__bar { background: #fff; }
.menu-toggle.is-open .menu-toggle__bar:nth-child(1) { transform: translateY(7.25px) rotate(45deg); }
.menu-toggle.is-open .menu-toggle__bar:nth-child(2) { opacity: 0; }
.menu-toggle.is-open .menu-toggle__bar:nth-child(3) { transform: translateY(-7.25px) rotate(-45deg); }
.menu-toggle.is-open .menu-toggle__label {
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 560px) {
  .menu-toggle__label { display: none; }
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #161311 0%, #0d0d0d 100%);
  color: #fff;
  z-index: 110;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out), visibility 0.5s var(--ease-out);
  padding: 100px 40px 40px;
  overflow-y: auto;
}
.menu-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(201, 169, 110, 0.18), transparent 50%),
    radial-gradient(ellipse at 80% 90%, rgba(143, 169, 201, 0.10), transparent 50%);
  pointer-events: none;
}
.menu-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("assets/nigella-flower.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 800px;
  opacity: 0.04;
  filter: invert(1);
  pointer-events: none;
}
.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: rgba(201, 169, 110, 0.10);
  border: 1px solid rgba(201, 169, 110, 0.55);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.menu-close:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.22);
  transform: rotate(90deg);
}
.menu-close span {
  position: absolute;
  left: 16px; right: 16px; top: 50%;
  height: 1.5px;
  background: var(--gold-light);
  transition: background 0.3s var(--ease-out);
}
.menu-close:hover span { background: #fff; }
.menu-close span:nth-child(1) { transform: rotate(45deg); }
.menu-close span:nth-child(2) { transform: rotate(-45deg); }
@media (max-width: 560px) {
  .menu-close {
    top: 14px;
    right: 14px;
    width: 50px;
    height: 50px;
  }
  .menu-close span { left: 14px; right: 14px; }
}

.menu-nav {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
.menu-link {
  display: inline-block;
  padding: 6px 24px;
  font-family: var(--serif);
  font-size: clamp(34px, 6vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  letter-spacing: 1px;
  position: relative;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), color 0.3s var(--ease-out);
}
.menu-overlay.is-open .menu-link {
  opacity: 1;
  transform: translateY(0);
}
.menu-overlay.is-open .menu-link:nth-child(1) { transition-delay: 0.10s; }
.menu-overlay.is-open .menu-link:nth-child(2) { transition-delay: 0.18s; }
.menu-overlay.is-open .menu-link:nth-child(3) { transition-delay: 0.26s; }
.menu-overlay.is-open .menu-link:nth-child(4) { transition-delay: 0.34s; }
.menu-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out), left 0.4s var(--ease-out);
}
.menu-link:hover { color: var(--gold-light); }
.menu-link:hover::after { width: 60%; left: 20%; }

.menu-lang {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out) 0.5s, transform 0.6s var(--ease-out) 0.5s;
}
.menu-overlay.is-open .menu-lang { opacity: 1; transform: translateY(0); }
.menu-lang__label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.menu-lang__options {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.lang-btn {
  background: transparent;
  border: 0;
  padding: 6px 8px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s var(--ease-out);
  position: relative;
}
.lang-btn::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 8px; right: 8px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease-out);
}
.lang-btn:hover { color: #fff; }
.lang-btn.is-active { color: var(--gold-light); }
.lang-btn.is-active::after { transform: scaleX(1); }
.lang-sep { color: rgba(255, 255, 255, 0.3); }

.menu-foot {
  position: relative;
  z-index: 2;
  margin-top: 50px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out) 0.6s, transform 0.6s var(--ease-out) 0.6s;
}
.menu-overlay.is-open .menu-foot { opacity: 1; transform: translateY(0); }
.menu-mail {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.menu-mail:hover { color: #fff; border-color: #fff; }

body.no-scroll {
  overflow: hidden;
}

/* =========================================================
   Petals (background ambience)
   ========================================================= */
.petals {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 90;
  overflow: hidden;
}
.petal {
  position: absolute;
  top: -80px;
  width: 36px;
  height: 48px;
  background-image: url("assets/petal.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.55;
  filter: drop-shadow(0 4px 6px rgba(63, 86, 119, 0.2));
  animation: fall 22s linear infinite;
  will-change: transform, opacity;
}
.petal.p1  { left: 4%;  width: 28px; height: 38px; animation-duration: 26s; animation-delay: 0s;   opacity: 0.5;  }
.petal.p2  { left: 12%; width: 38px; height: 50px; animation-duration: 30s; animation-delay: -4s;  opacity: 0.55; }
.petal.p3  { left: 22%; width: 26px; height: 36px; animation-duration: 22s; animation-delay: -8s;  opacity: 0.45; }
.petal.p4  { left: 32%; width: 42px; height: 56px; animation-duration: 34s; animation-delay: -2s;  opacity: 0.6;  }
.petal.p5  { left: 42%; width: 30px; height: 40px; animation-duration: 26s; animation-delay: -12s; opacity: 0.5;  }
.petal.p6  { left: 52%; width: 36px; height: 48px; animation-duration: 28s; animation-delay: -6s;  opacity: 0.55; }
.petal.p7  { left: 62%; width: 28px; height: 38px; animation-duration: 24s; animation-delay: -10s; opacity: 0.5;  }
.petal.p8  { left: 72%; width: 40px; height: 54px; animation-duration: 32s; animation-delay: -3s;  opacity: 0.6;  }
.petal.p9  { left: 80%; width: 32px; height: 44px; animation-duration: 26s; animation-delay: -14s; opacity: 0.5;  }
.petal.p10 { left: 88%; width: 34px; height: 46px; animation-duration: 30s; animation-delay: -7s;  opacity: 0.55; }
.petal.p11 { left: 94%; width: 26px; height: 36px; animation-duration: 24s; animation-delay: -11s; opacity: 0.45; }
.petal.p12 { left: 68%; width: 22px; height: 30px; animation-duration: 20s; animation-delay: -16s; opacity: 0.4;  }

@keyframes fall {
  0%   { transform: translate3d(0, -10vh, 0) rotate(0deg);   opacity: 0; }
  10%  { opacity: var(--o, 0.55); }
  50%  { transform: translate3d(40px, 50vh, 0) rotate(180deg); }
  100% { transform: translate3d(-40px, 110vh, 0) rotate(360deg); opacity: 0; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 120px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(201, 169, 110, 0.18), transparent 60%),
    radial-gradient(ellipse at 0% 100%, rgba(143, 169, 201, 0.18), transparent 55%),
    linear-gradient(180deg, #faf6ee 0%, #f3ead6 100%);
  z-index: 2;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hero-flower {
  position: absolute;
  opacity: 0.55;
  filter: drop-shadow(0 20px 50px rgba(63, 86, 119, 0.15));
  will-change: transform;
}
.hero-flower img { width: 100%; height: auto; }

.hero-flower--left {
  left: -120px; bottom: -100px;
  width: 480px;
  animation: sway 9s ease-in-out infinite;
  transform-origin: bottom center;
}
.hero-flower--right {
  right: -180px; top: 10%;
  width: 540px;
  animation: sway 11s ease-in-out infinite -3s;
  transform-origin: bottom center;
  opacity: 0.45;
}
.hero-flower--top {
  left: 35%; top: -160px;
  width: 360px;
  animation: sway 8s ease-in-out infinite -1s;
  transform-origin: top center;
  opacity: 0.32;
}

@keyframes sway {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50%      { transform: rotate(3deg)  translateY(-10px); }
}

.hero-inner {
  position: relative;
  z-index: 3;
  text-align: center;
}

.hero-title {
  margin: 14px 0 30px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.hero-title .line-1,
.hero-title .line-2 {
  display: block;
}
.hero-title .line-2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--serif);
  font-weight: 500;
}

.hero-sub {
  max-width: 660px;
  margin: 0 auto 42px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.hero-cta {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.coming-soon {
  margin-top: 64px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 26px;
  background: rgba(13, 13, 13, 0.04);
  border: 1px solid var(--rule);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.cs-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.6);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.6); }
  70%  { box-shadow: 0 0 0 14px rgba(201, 169, 110, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0); }
}

.scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 4;
}
.scroll-cue__line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--gold) 50%, transparent);
  animation: scrollHint 2.4s ease-in-out infinite;
}
.scroll-cue__label {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-deep);
}
@keyframes scrollHint {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.5; }
  50%      { transform: scaleY(1);   transform-origin: top; opacity: 1; }
}

/* =========================================================
   About
   ========================================================= */
.about {
  position: relative;
  padding: 140px 0;
  background: linear-gradient(180deg, #f3ead6 0%, #faf6ee 100%);
  z-index: 2;
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.4fr;
  gap: 80px;
  align-items: center;
}
.about-flower {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flower-rotate {
  width: min(420px, 100%);
  position: relative;
  z-index: 2;
  animation: gentleRotate 60s linear infinite;
  transform-origin: center;
}
.flower-rotate img {
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(63, 86, 119, 0.18));
}
@keyframes gentleRotate {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.flower-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(201, 169, 110, 0.25), transparent 60%);
  filter: blur(40px);
  z-index: 1;
  animation: glowPulse 6s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.15); }
}

.about-text h2 { margin: 8px 0 28px; }

.pillars {
  list-style: none;
  margin: 50px 0 0;
  padding: 0;
  display: grid;
  gap: 22px;
}
.pillars li {
  position: relative;
  padding: 24px 28px 26px 86px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 4px;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.pillars li:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(13, 13, 13, 0.08);
}
.pillar-num {
  position: absolute;
  left: 24px; top: 24px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pillars h3 { margin: 0 0 6px; font-size: 18px; }
.pillars p { margin: 0; font-size: 14px; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
}

/* =========================================================
   Products
   ========================================================= */
.products {
  position: relative;
  padding: 140px 0;
  background: linear-gradient(180deg, #faf6ee 0%, #f3ead6 50%, #faf6ee 100%);
  z-index: 2;
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}
.section-head h2 { margin: 8px 0 24px; }
.section-head .lead {
  font-size: 16px;
  color: var(--ink-soft);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: stretch;
}

.product {
  position: relative;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}
.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(13, 13, 13, 0.12);
}
.product--center {
  background: linear-gradient(180deg, #1a1a1a, #0d0d0d);
  color: var(--bg);
}
.product--center h3 { color: var(--bg); }
.product--center p  { color: rgba(255,255,255,0.7); }
.product--center .product-tag { color: var(--gold-light); }

.product-visual {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-visual--oil {
  background: radial-gradient(circle at 50% 70%, #f3ead6, #faf6ee 70%);
}
.product-visual--seeds {
  background: radial-gradient(circle at 50% 60%, #2a1f14, #0d0d0d 80%);
}
.product-visual--flower {
  background: radial-gradient(circle at 50% 50%, #f3ead6, #faf6ee 70%);
}

.product-glow {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.4), transparent 70%);
  filter: blur(30px);
  animation: glowPulse 5s ease-in-out infinite;
}

.float-bottle, .float-bowl, .float-flower {
  position: relative;
  z-index: 2;
  will-change: transform;
}
.float-bottle img { height: 320px; width: auto; }
.float-bowl img   { width: 75%; max-width: 280px; }
.float-flower img { width: 80%; max-width: 280px; }

.float-bottle  { animation: floatY 6s ease-in-out infinite; }
.float-bowl    { animation: floatY 7s ease-in-out infinite -1s; }
.float-flower  { animation: spinSlow 30s linear infinite, floatY 6s ease-in-out infinite -2s; transform-origin: center; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes spinSlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.product-info {
  padding: 32px 30px 36px;
  flex: 1;
}
.product-info h3 { margin: 0 0 6px; }
.product-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 14px;
}
.product-info p { font-size: 14px; line-height: 1.7; }
.badge {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 16px;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: var(--night);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 100px;
}
.badge--soft {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold);
}

@media (max-width: 1000px) {
  .product-grid { grid-template-columns: 1fr; gap: 28px; }
  .product-visual { height: 320px; }
  .float-bottle img { height: 280px; }
}

/* =========================================================
   Resellers
   ========================================================= */
.resellers {
  position: relative;
  padding: 140px 0;
  text-align: center;
  background: linear-gradient(135deg, #161311, #0d0d0d);
  color: var(--bg);
  overflow: hidden;
  z-index: 2;
}
.resellers::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(201, 169, 110, 0.18), transparent 50%),
    radial-gradient(ellipse at 80% 90%, rgba(201, 169, 110, 0.12), transparent 50%);
  pointer-events: none;
}
.resellers-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/nigella-flower.svg");
  background-repeat: no-repeat;
  background-position: -150px center;
  background-size: 600px;
  opacity: 0.06;
  filter: invert(1);
}
.resellers-inner { position: relative; z-index: 2; }
.resellers h2 { color: var(--bg); margin: 8px 0 20px; }
.resellers .eyebrow { color: var(--gold-light); }
.resellers .lead {
  max-width: 640px;
  margin: 0 auto 38px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  position: relative;
  background: #0d0d0d;
  color: rgba(255, 255, 255, 0.7);
  padding: 100px 0 0;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 80px;
}
.logo--footer {
  height: 60px;
  filter: brightness(0) invert(1);
  margin-bottom: 22px;
}
.footer-tag {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--gold-light);
  margin: 0;
  max-width: 280px;
}
.footer-col h4 {
  color: var(--gold-light);
  margin-bottom: 18px;
}
.footer-col p,
.footer-col address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 16px;
}
.site-footer strong {
  color: #fff;
  font-weight: 500;
}
.footer-col address strong {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.5px;
  color: var(--gold-light);
  display: block;
  margin-bottom: 6px;
}
.reg {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-mail {
  display: inline-block;
  margin: 4px 0 18px;
  font-size: 14px;
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.3s var(--ease-out);
  word-break: break-word;
}
.footer-mail:hover { color: #fff; border-color: #fff; }
.footer-resell {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
}
.footer-soon-mini {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 1px;
}
.footer-bottom-inner p { margin: 0; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   Reveal-on-scroll animation
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children inside grids */
.product.reveal:nth-child(1) { transition-delay: 0s; }
.product.reveal:nth-child(2) { transition-delay: 0.15s; }
.product.reveal:nth-child(3) { transition-delay: 0.3s; }
.pillars li.reveal:nth-child(1) { transition-delay: 0s; }
.pillars li.reveal:nth-child(2) { transition-delay: 0.12s; }
.pillars li.reveal:nth-child(3) { transition-delay: 0.24s; }

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
