/* ===========================
   IL FENICIO — Design System
   =========================== */

:root {
  --deep:       #070412;
  --violet:     #2A1880;
  --violet-mid: #150E50;
  --gold:       #E8A800;
  --gold-light: #F5C842;
  --white:      #FFFFFF;
  --off-white:  #EDE8F5;
  --muted:      #9B94B8;
  --border:     rgba(232, 168, 0, 0.2);
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;
  --ease: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--deep);
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

h1 { font-size: clamp(3.5rem, 9vw, 8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.9rem); }

p {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--muted);
  max-width: 65ch;
  line-height: 1.8;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--ease), padding var(--ease), border-color var(--ease);
  background: rgba(7, 4, 18, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

/* Homepage: navbar trasparente finché non si scrolla */
.page-home .nav {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}
.page-home .nav.scrolled {
  background: rgba(7, 4, 18, 0.95);
  backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}
.nav.scrolled {
  background: rgba(7, 4, 18, 0.95);
  backdrop-filter: blur(24px);
  padding: 1rem 2rem;
  border-bottom-color: var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  line-height: 1;
}
.nav-logo span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.52rem;
  letter-spacing: 0.45em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--ease);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  transition: var(--ease);
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--deep);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    transform: translateX(100%);
    transition: transform var(--ease);
    z-index: 99;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 0.9rem; letter-spacing: 0.3em; }
}

/* ── HERO ── */
#particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 2rem 5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 45%, rgba(42, 24, 128, 0.85) 0%, rgba(20, 10, 60, 0.6) 50%, transparent 80%),
    var(--deep);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 38px,
    rgba(232, 168, 0, 0.012) 38px,
    rgba(232, 168, 0, 0.012) 40px
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-eyebrow.visible { opacity: 1; transform: translateY(0); }

/* Word reveal */
.hero-title {
  color: var(--white);
  line-height: 0.88;
}
.hero-title em {
  display: block;
  font-style: italic;
  color: var(--gold);
  text-shadow: 0 0 120px rgba(232, 168, 0, 0.5), 0 0 40px rgba(232, 168, 0, 0.3);
}
.word-reveal {
  display: block;
  opacity: 0;
  transform: translateY(40px) skewY(3deg);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.word-reveal.visible { opacity: 1; transform: translateY(0) skewY(0); }

/* Bottle wrap & effects */
.bottle-wrap {
  position: relative;
  width: min(280px, 40vw);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease 0.6s, transform 1s ease 0.6s;
}
.bottle-wrap.visible { opacity: 1; transform: translateY(0); }

.hero-bottle {
  width: 100%;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 20px 40px rgba(42, 24, 128, 0.8)) drop-shadow(0 0 80px rgba(232, 168, 0, 0.15));
  animation: float 7s ease-in-out infinite;
}

/* Pulsing glow behind bottle */
.bottle-glow {
  position: absolute;
  width: 200%;
  height: 200%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(42, 24, 128, 0.7) 0%, rgba(232, 168, 0, 0.08) 40%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
  z-index: 1;
}

/* Expanding rings */
.bottle-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232, 168, 0, 0.3);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 2;
}
.ring-1 { width: 120%; height: 120%; animation: ringExpand 4s ease-out 0s infinite; }
.ring-2 { width: 150%; height: 150%; animation: ringExpand 4s ease-out 1.2s infinite; }
.ring-3 { width: 180%; height: 180%; animation: ringExpand 4s ease-out 2.4s infinite; }

/* Light rays */
.bottle-rays {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  z-index: 2;
  background:
    conic-gradient(from 0deg at 50% 50%,
      transparent 0deg,
      rgba(232, 168, 0, 0.04) 10deg,
      transparent 20deg,
      transparent 60deg,
      rgba(232, 168, 0, 0.04) 70deg,
      transparent 80deg,
      transparent 160deg,
      rgba(232, 168, 0, 0.03) 170deg,
      transparent 180deg,
      transparent 240deg,
      rgba(232, 168, 0, 0.04) 250deg,
      transparent 260deg,
      transparent 300deg,
      rgba(232, 168, 0, 0.03) 310deg,
      transparent 320deg
    );
  border-radius: 50%;
  width: 300%;
  height: 300%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: raysRotate 20s linear infinite;
}

/* Reflection puddle */
.bottle-reflection {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 30px;
  background: radial-gradient(ellipse, rgba(232, 168, 0, 0.2) 0%, transparent 70%);
  filter: blur(8px);
  z-index: 2;
  animation: reflectionPulse 7s ease-in-out infinite;
}

.hero-sub {
  font-size: 0.72rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease 1s, transform 0.8s ease 1s;
}
.hero-sub.visible { opacity: 1; transform: translateY(0); }
.hero-sub::before, .hero-sub::after { content: '◆'; color: var(--gold); font-size: 0.45rem; }

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease 1.2s, transform 0.8s ease 1.2s;
}
.hero-cta.visible { opacity: 1; transform: translateY(0); }

.scroll-line {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  animation: pulse 2.5s ease-in-out infinite;
  z-index: 2;
}
.scroll-line::after {
  content: '';
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ── NEW KEYFRAMES ── */
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.15); }
}
@keyframes ringExpand {
  0%   { transform: translate(-50%, -50%) scale(0.3); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}
@keyframes raysRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes reflectionPulse {
  0%, 100% { opacity: 0.6; width: 55%; }
  50%       { opacity: 1;   width: 70%; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--ease);
}
.btn-gold {
  background: var(--gold);
  color: var(--deep);
  font-weight: 500;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(232, 168, 0, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(232, 168, 0, 0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(232, 168, 0, 0.06);
  transform: translateY(-3px);
}

/* ── SECTIONS ── */
section { padding: 8rem 0; }
.section-label {
  font-size: 0.63rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: block;
}

/* ── INTRO ── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}
.intro-image {
  position: relative;
  display: flex;
  justify-content: center;
}
.intro-image img {
  max-width: 380px;
  filter: drop-shadow(0 30px 80px rgba(42, 24, 128, 0.6));
  animation: float 8s ease-in-out infinite;
  animation-delay: 1s;
}
.intro-image::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 24, 128, 0.35), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.intro-text h2 { color: var(--white); margin-bottom: 1.5rem; }
.intro-text p + p { margin-top: 1rem; }

/* ── HERO PHOTO (immagine1) ── */
.hero-photo {
  padding: 0;
  align-items: flex-end;
  justify-items: start;
}

.hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: contrast(1.05) saturate(1.08) brightness(1.02);
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(7,4,18,0.6) 0%, rgba(7,4,18,0.1) 50%, transparent 100%),
    linear-gradient(to top,   rgba(7,4,18,0.7) 0%, transparent 40%);
}
.hero-photo .hero-content {
  padding: 0 4rem 5rem;
  align-items: flex-start;
  text-align: left;
  max-width: 750px;
  gap: 1rem;
}
.hero-photo .hero-title {
  font-size: clamp(4.5rem, 12vw, 11rem);
  letter-spacing: 0.08em;
}
.hero-photo .hero-title em {
  font-style: normal;
  letter-spacing: 0.08em;
}
.hero-photo .hero-sub     { justify-content: flex-start; }
.hero-photo .hero-cta     { justify-content: flex-start; }
.hero-photo .hero-eyebrow { text-align: left; }

@media (max-width: 768px) {
  .hero-photo .hero-content {
    padding: 0 1.5rem 4rem;
    align-items: flex-start;
    text-align: left;
  }
}

/* ── QUOTE PHOTO (immagine3) ── */
.quote-photo {
  position: relative;
  overflow: hidden;
}
.quote-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.quote-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
  image-rendering: -webkit-optimize-contrast;
  filter: contrast(1.1) saturate(1.15) brightness(1.02);
}
.quote-photo:hover .quote-photo-bg img { transform: scale(1); }
.quote-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 4, 18, 0.72);
}

/* ── QUOTE ── */
.quote-section {
  background: linear-gradient(135deg, var(--violet-mid) 0%, rgba(42, 24, 128, 0.4) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 7rem 0;
  text-align: center;
}
.quote-section blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-style: italic;
  color: var(--white);
  max-width: 820px;
  margin: 2rem auto;
  line-height: 1.35;
}
.quote-section cite {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ── FEATURE CARDS ── */
.features { background: linear-gradient(180deg, var(--deep) 0%, rgba(21, 14, 80, 0.4) 50%, var(--deep) 100%); }
.features-header { text-align: center; margin-bottom: 4rem; }
.features-header h2 { color: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.feature-card {
  background: var(--deep);
  padding: 3rem 2.2rem;
  position: relative;
  overflow: hidden;
  transition: background var(--ease), transform var(--ease);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.feature-card:hover { background: rgba(42, 24, 128, 0.15); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-num {
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(232, 168, 0, 0.07);
  line-height: 1;
  margin-bottom: 1rem;
}
.feature-card h3 { color: var(--white); margin-bottom: 0.8rem; }
.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 1.5rem;
  transition: gap var(--ease);
}
.feature-link:hover { gap: 0.8rem; }

/* ── PAGE HERO ── */
.page-hero {
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  padding: 9rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 70%, rgba(42, 24, 128, 0.5), transparent 70%),
    var(--deep);
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 58px,
    rgba(232, 168, 0, 0.012) 58px,
    rgba(232, 168, 0, 0.012) 60px
  );
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content h1 { color: var(--white); }

/* ── SPECS BAR ── */
.specs-bar {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  overflow: hidden;
}
.spec {
  flex: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--border);
  transition: background var(--ease);
}
.spec:last-child { border-right: none; }
.spec:hover { background: rgba(232, 168, 0, 0.04); }
.spec-value {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
}
.spec-label {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* ── BOTANICHE ── */
.botaniche-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border);
  margin-top: 3rem;
  border: 1px solid var(--border);
}
.botanica-item {
  background: var(--deep);
  padding: 1.8rem;
  border-left: 3px solid transparent;
  transition: all var(--ease);
}
.botanica-item:hover {
  background: rgba(42, 24, 128, 0.15);
  border-left-color: var(--gold);
}
.botanica-item h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.botanica-item p { font-size: 0.88rem; margin: 0; max-width: none; }

/* ── VALUES ── */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  margin-top: 4rem;
}
.value-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.value-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(232, 168, 0, 0.4);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.3rem;
  font-family: var(--font-display);
  transition: border-color var(--ease), background var(--ease);
}
.value-item:hover .value-icon {
  border-color: var(--gold);
  background: rgba(232, 168, 0, 0.08);
}
.value-item h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 0.5rem; }
.value-item p { font-size: 0.92rem; margin: 0; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 7rem;
  align-items: start;
}
.contact-info h3 { color: var(--white); margin-bottom: 2.5rem; }
.contact-detail {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-label {
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.contact-detail p { margin: 0; color: var(--off-white); font-size: 0.95rem; max-width: none; }

.form-group { margin-bottom: 1.6rem; }
.form-group label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--off-white);
  padding: 0.9rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--ease), background var(--ease);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(232, 168, 0, 0.6);
  background: rgba(232, 168, 0, 0.03);
}
.form-group textarea { height: 160px; resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }

/* ── FOOTER ── */
footer {
  background: var(--violet-mid);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  line-height: 1;
}
.footer-brand-logo span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}
.footer-brand p { margin-top: 1.2rem; font-size: 0.9rem; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.8rem; }
.footer-col a { color: var(--muted); font-size: 0.9rem; transition: color var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: var(--muted); margin: 0; max-width: none; }
.age-badge {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
}

/* ── PRIVACY ── */
.privacy-content { max-width: 800px; }
.privacy-content h2 {
  font-size: 1.6rem;
  color: var(--white);
  margin: 3.5rem 0 1rem;
  padding-top: 3.5rem;
  border-top: 1px solid var(--border);
}
.privacy-content h2:first-of-type { border-top: none; }
.privacy-content p { margin-bottom: 1rem; max-width: none; }
.privacy-content ul { color: var(--muted); padding-left: 1.5rem; margin-bottom: 1rem; }
.privacy-content li { margin-bottom: 0.5rem; font-size: 0.95rem; }
.privacy-content a { color: var(--gold); text-decoration: underline; }

/* ── ANIMATIONS ── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* ── CUSTOM CURSOR ── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  margin: -3px 0 0 -3px;
  transition: opacity 0.3s, width 0.25s, height 0.25s, margin 0.25s;
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1px solid rgba(232,168,0,0.45);
  margin: -17px 0 0 -17px;
  transition: opacity 0.3s, width 0.4s cubic-bezier(0.16,1,0.3,1), height 0.4s cubic-bezier(0.16,1,0.3,1), margin 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.3s;
}
.cursor-dot.hovered  { width: 10px; height: 10px; margin: -5px 0 0 -5px; }
.cursor-ring.hovered { width: 54px; height: 54px; margin: -27px 0 0 -27px; border-color: rgba(232,168,0,0.9); }

/* ── FOCUS VISIBLE (WCAG) ── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── TICKER ── */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  background: rgba(42, 24, 128, 0.12);
}
.ticker-inner {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
  font-size: 0.62rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  user-select: none;
}
.ticker-track .t-gold { color: var(--gold); font-size: 0.45rem; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── FEATURE CARD — sweep + tilt ── */
.feature-card {
  transform-style: preserve-3d;
  will-change: transform;
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(232,168,0,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--ease);
  pointer-events: none;
  z-index: 0;
}
.feature-card:hover::after { opacity: 1; }
.feature-card > * { position: relative; z-index: 1; }
.feature-num {
  font-family: var(--font-display);
  font-size: 5.5rem;
  color: rgba(232,168,0,0.06);
  line-height: 1;
  margin-bottom: 0.8rem;
  transition: color var(--ease);
}
.feature-card:hover .feature-num { color: rgba(232,168,0,0.12); }

/* ── FEATURE LINK ── */
.feature-link {
  position: relative;
  overflow: hidden;
}
.feature-link::after {
  content: '→';
  position: absolute;
  right: 0;
  transform: translateX(150%);
  transition: transform var(--ease);
}
.feature-link:hover { gap: 0.4rem; }
.feature-link:hover::after { transform: translateX(0); }

/* ── QUOTE MARK ── */
.quote-section blockquote::before {
  content: '\201C';
  display: block;
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(232,168,0,0.2);
  line-height: 0.6;
  margin-bottom: 1rem;
}

/* ── FOOTER GLOW ── */
footer::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(232,168,0,0.4), transparent);
}

/* ── BOTANICA BORDER REVEAL ── */
.botanica-item {
  border-left: 3px solid transparent;
  background-image: linear-gradient(var(--deep), var(--deep)),
                    linear-gradient(to bottom, var(--gold), var(--gold));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-size: 100% 0%, 100% 0%;
  transition: background-size var(--ease), background-color var(--ease);
}
.botanica-item:hover {
  background-size: 100% 100%, 100% 100%;
  background-color: rgba(42,24,128,0.15);
  border-left-color: var(--gold);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .intro-grid { gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {

  /* ── Spacing ── */
  section { padding: 3rem 0; }
  .container { padding: 0 1.25rem; }

  /* ── Hero mobile ── */
  .hero { min-height: 100svh; }
  .hero-photo .hero-content {
    padding: 0 1.25rem 2.5rem;
    gap: 0.8rem;
  }
  .hero-photo .hero-title {
    font-size: clamp(3.2rem, 20vw, 5rem);
    letter-spacing: 0.06em;
  }
  .hero-eyebrow { font-size: 0.58rem; letter-spacing: 0.4em; }
  .hero-sub     { font-size: 0.62rem; letter-spacing: 0.3em; }
  .hero-cta {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }

  /* ── Ticker ── */
  .ticker { display: block; overflow: hidden; }

  /* ── Intro ── */
  .intro-grid   { grid-template-columns: 1fr; gap: 0; }
  .intro-image  { display: none; }
  .intro-text h2 { font-size: clamp(1.7rem, 7vw, 2.4rem); }

  /* ── Quote ── */
  .quote-section { padding: 3.5rem 0; }
  .quote-section blockquote {
    font-size: clamp(1.15rem, 5vw, 1.6rem);
    margin: 1.2rem auto;
  }
  .quote-section blockquote::before {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
  }

  /* ── Features ── */
  .features { padding: 3rem 0; }
  .features-header { margin-bottom: 2rem; }
  .features-header h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card {
    padding: 1.8rem 1.5rem;
    transform: none !important;
    transition: background var(--ease) !important;
  }
  .feature-num {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
  }
  .feature-card h3 { font-size: 1.3rem; }
  .feature-card p  { font-size: 0.88rem; }

  /* ── Values ── */
  .values-grid   { grid-template-columns: 1fr; gap: 2rem; }
  .value-icon    { width: 40px; height: 40px; font-size: 1rem; }
  .value-item h3 { font-size: 1.1rem; }

  /* ── Specs ── */
  .specs-bar { flex-wrap: wrap; }
  .spec { flex: 0 0 50%; border-bottom: 1px solid var(--border); padding: 1.4rem 1rem; }
  .spec-value { font-size: 2rem; }

  /* ── Botaniche ── */
  .botaniche-grid { grid-template-columns: 1fr; }

  /* ── Contact ── */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* ── Footer ── */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
  .footer-brand-logo { font-size: 1.6rem; }
  footer { padding: 3rem 0 2rem; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  /* ── Page hero ── */
  .page-hero { min-height: 35vh; padding: 7rem 0 2.5rem; }
  .page-hero-content h1 { font-size: clamp(2.5rem, 12vw, 4rem); }

  /* ── Nav mobile ── */
  .nav-links a { font-size: 1.1rem; }

  /* ── Buttons ── */
  .btn { min-height: 48px; }

  /* ── Hide scroll indicator on mobile (overlaps buttons) ── */
  .scroll-line { display: none; }

  /* ── Hero image: cover on mobile to avoid letterbox black gaps ── */
  .hero-photo-img { object-fit: cover; object-position: center center; }

  /* ── Disable 3D effects on touch ── */
  .feature-card,
  .botanica-item { will-change: auto; }
}

/* ── AGE GATE ── */
#age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 2rem;
  transition: opacity 0.6s ease;
}
#age-gate.hidden {
  opacity: 0;
  pointer-events: none;
}
.age-gate-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.15em;
  margin-bottom: 0.25rem;
}
.age-gate-logo span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-top: 0.2rem;
}
.age-gate-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1.8rem auto;
  opacity: 0.5;
}
.age-gate-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.age-gate-sub {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 2.5rem;
}
.age-gate-btns {
  display: flex;
  gap: 1rem;
}
.age-gate-btns .btn { min-width: 140px; justify-content: center; }
.age-gate-legal {
  margin-top: 2.5rem;
  font-size: 0.65rem;
  color: var(--muted);
  max-width: 340px;
  line-height: 1.7;
}
#age-gate-no {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
}
#age-gate-no:hover { border-color: var(--muted); color: var(--white); }

@media (max-width: 768px) {
  .age-gate-btns { flex-direction: column; width: 100%; }
  .age-gate-btns .btn { width: 100%; }
}
