/* ZON Teasan — style.css */

/* ── RESET & ROOT ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:       #0a0a0a;
  --green-deep:  #1c3528;
  --green-mid:   #2a4a38;
  --cream:       #f4ead8;
  --cream-light: #fdf6ec;
  --gold:        #d4a93c;
  --amber-light: #e8c96a;
  --muted:       rgba(244,234,216,0.5);
  --nav-height:  88px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'EB Garamond', 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

#main-content {
  display: flex;
  flex-direction: column;
}

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

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

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--cream-light);
}

/* ── NAV ──────────────────────────────────────────────────── */
#nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.4s;
}
#nav .nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cinzel', serif;
}
#nav-logo-img { height: 60px; width: auto; }
#nav-logo-txt { font-size: 1rem; letter-spacing: 0.1em; color: var(--cream-light); }
#nav-logo-txt span { color: var(--gold); }

.nav-links { list-style: none; display: flex; gap: 2.5rem; }
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.nav-order {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.6rem 1.4rem;
  transition: all 0.3s;
}
.nav-order:hover { background: var(--gold); color: var(--black); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--cream-light); transition: all 0.3s; }

/* ── MOBILE MENU ──────────────────────────────────────────── */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--green-deep);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mm-close {
  position: absolute;
  top: 2rem; right: 2rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
}
.mml {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-light);
  transition: color 0.3s;
}
.mml:hover { color: var(--gold); }
.mm-order-btn {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 1rem 2.5rem;
}

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
  z-index: 0;
}
#hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  padding: 140px 2rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 2rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream-light);
  margin-bottom: 1.5rem;
  text-align: center;
}
.hero-title em { font-style: italic; color: var(--amber-light); }
.hero-tagline {
  font-family: 'EB Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--cream);
  opacity: 0.8;
  margin-bottom: 2rem;
  text-align: center;
}
.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin: 0 auto 2rem;
}
/* HERO BUTTONS — side by side, always */
.hero-ctas {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
}
.btn-primary {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 1.1rem 2.5rem;
  border: 1px solid var(--gold);
  transition: all 0.3s;
  cursor: pointer;
  display: inline-block;
  min-width: 160px;
  text-align: center;
}
.btn-primary:hover { background: transparent; color: var(--gold); }
.btn-secondary {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: transparent;
  color: var(--cream-light);
  padding: 1.1rem 2.5rem;
  border: 1px solid rgba(244,234,216,0.4);
  transition: all 0.3s;
  cursor: pointer;
  display: inline-block;
  min-width: 160px;
  text-align: center;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* HERO SCROLL — centred below buttons */
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 3rem;
  text-decoration: none;
  cursor: pointer;
  color: var(--gold);
}
.hero-scroll-label {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-scroll-arrow {
  width: 12px;
  height: 12px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}

/* ── STORY ────────────────────────────────────────────────── */
#story { background: var(--cream-light); color: var(--black); padding: 8rem 0; }
#story .section-label { color: var(--green-deep); }
#story .section-title { color: var(--green-deep); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-bottom: 4rem; }
.story-text p { color: rgba(10,20,15,0.8); margin-bottom: 1.5rem; font-size: 1.05rem; line-height: 1.85; }
.story-pull {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--green-deep);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.4;
}
.patent-badge {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  border: 1px solid rgba(28,53,40,0.25);
  padding: 0.5rem 1rem;
  display: inline-block;
  margin-top: 1rem;
}
.story-portrait { position: relative; }
.story-portrait img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.story-image-caption { color: #d4a93c !important;
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  text-align: center;
  padding: 1rem;
  background: rgba(28,53,40,0.06);
}
.story-portraits { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2rem; }
.story-portrait-item img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.story-portraits-caption {
  grid-column: 1/-1;
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  text-align: center;
  padding-top: 1rem;
  opacity: 0.6;
}

/* ── SENSORY ──────────────────────────────────────────────── */
#sensory { background: var(--green-deep); padding: 8rem 0 4rem; }
#cup-ritual { background: var(--green-deep); padding: 0 0 8rem; }
.sensory-header { text-align: center; margin-bottom: 4rem; }
.sensory-header p { color: var(--cream); opacity: 0.7; margin-top: 1rem; }
.sensory-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; margin-bottom: 4rem; }
.sensory-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(212,169,60,0.12); padding: 2rem; }
.sensory-icon { font-size: 1.5rem; display: block; margin-bottom: 0.75rem; }
.sensory-card-label { font-family: 'Cinzel',serif; font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.sensory-card h3 { font-family: 'Cormorant Garamond',serif; font-size: 1.2rem; font-weight: 300; color: var(--cream-light); margin-bottom: 0.75rem; }
.sensory-card p { font-size: 0.9rem; color: var(--cream); opacity: 0.75; line-height: 1.7; }
.sensory-portrait-wrap { text-align: center; margin-bottom: 2rem; }
.sensory-portrait-wrap img { max-width: 760px; width: 100%; margin: 0 auto; display: block; object-fit: contain; }
.sensory-portrait-caption { text-align: center; font-style: italic; color: var(--cream); opacity: 0.55; font-size: 0.9rem; }

/* ── LIFESTYLE ────────────────────────────────────────────── */
#lifestyle { overflow: hidden; }
#lifestyle-strip { display: flex; }
.lifestyle-portrait { position: relative; flex: 1; min-height: 400px; overflow: hidden; }
.lifestyle-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s; }
.lifestyle-portrait:hover img { transform: scale(1.05); }
.lifestyle-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.2); }

/* ── SCIENCE ──────────────────────────────────────────────── */
#science { background: var(--black); padding: 8rem 0; }
.science-intro { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; margin: 3rem 0; }
.science-text p { color: var(--cream); opacity: 0.8; margin-bottom: 1.5rem; line-height: 1.85; }
.highlight-box { border-left: 2px solid var(--gold); padding-left: 1.5rem; margin: 2rem 0; }
.highlight-box p { font-family: 'Cormorant Garamond',serif; font-size: 1.2rem; font-style: italic; color: var(--cream-light); opacity: 1 !important; }
.science-stat-column { display: flex; flex-direction: column; gap: 2rem; }
.science-stat { border-top: 1px solid rgba(212,169,60,0.2); padding-top: 1.5rem; }
.stat-number { font-family: 'Cinzel',serif; font-size: 1.8rem; color: var(--gold); margin-bottom: 0.25rem; }
.stat-label  { font-family: 'Cinzel',serif; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cream-light); margin-bottom: 0.5rem; }
.stat-desc   { font-size: 0.85rem; color: var(--cream); opacity: 0.6; line-height: 1.6; }
.patent-block, .citations-block { margin-top: 3rem; border-top: 1px solid rgba(212,169,60,0.15); padding-top: 3rem; }
.patent-block h3, .citations-block h3 { font-family: 'Cinzel',serif; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; }
.patent-item { display: flex; gap: 2rem; margin-bottom: 2rem; }
.patent-num { font-family: 'Cinzel',serif; font-size: 0.65rem; color: var(--gold); letter-spacing: 0.1em; min-width: 120px; padding-top: 0.2rem; }
.patent-details h4 { color: var(--cream-light); margin-bottom: 0.5rem; font-size: 0.95rem; font-weight: 400; }
.patent-details p { color: var(--cream); opacity: 0.65; font-size: 0.88rem; line-height: 1.7; }
.citation { color: var(--cream); opacity: 0.5; font-size: 0.82rem; line-height: 1.7; margin-bottom: 1rem; }

/* ── BENEFITS ─────────────────────────────────────────────── */
#benefits { background: var(--cream-light); padding: 8rem 0; }
.benefits-header { text-align: center; margin-bottom: 4rem; }
.benefits-header .section-label { color: var(--green-deep); }
.benefits-header .section-title { color: var(--green-deep); }
.benefits-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 2rem; margin-bottom: 3rem; }
.benefit-card { background: rgba(28,53,40,0.04); border: 1px solid rgba(28,53,40,0.1); padding: 1.5rem; }
.benefit-icon { font-size: 1.5rem; display: block; margin-bottom: 0.75rem; }
.benefit-card h3 { font-family: 'Cinzel',serif; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-deep); margin-bottom: 0.75rem; }
.benefit-card p  { font-size: 0.85rem; color: rgba(10,20,15,0.7); line-height: 1.7; }
.disclaimer { font-size: 0.78rem; color: rgba(10,20,15,0.45); line-height: 1.6; text-align: center; max-width: 700px; margin: 0 auto; }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
#testimonials { background: var(--green-deep); padding: 8rem 0; overflow: hidden; }
.testimonials-header { text-align: center; margin-bottom: 4rem; }
.testimonials-track-wrap { overflow: hidden; width: 100%; }
.testimonials-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  align-items: stretch;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,169,60,0.15);
  padding: 2.5rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow: hidden;
}
.testimonial-quote { font-family: 'Cormorant Garamond',serif; font-size: 3rem; color: var(--gold); line-height: 1; opacity: 0.45; margin-bottom: 1rem; }
.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 1.5rem;
  font-style: italic;
  flex: 1;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
.testimonial-author { font-family: 'Cinzel',serif; font-size: 0.58rem; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; }
.testimonials-controls { display: flex; justify-content: center; gap: 1rem; margin-top: 3rem; align-items: center; }
.t-btn { width: 44px; height: 44px; border: 1px solid rgba(212,169,60,0.4); background: transparent; color: var(--gold); font-size: 1.2rem; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; }
.t-btn:hover { background: var(--gold); color: var(--black); }
.t-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(212,169,60,0.3); cursor: pointer; display: inline-block; margin: 0 0.25rem; transition: background 0.3s; }
.t-dot.active { background: var(--gold); }

/* ── ORDER ────────────────────────────────────────────────── */
#order { background: var(--black); padding: 8rem 0; }
.order-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.order-portraits { display: flex; flex-direction: column; gap: 1rem; }
.order-portrait-item img { width: 100%; object-fit: contain; height: auto; aspect-ratio: unset; }
#order .section-label { color: var(--gold); }
#order .section-title { color: var(--cream-light); font-size: clamp(2rem,3.5vw,3rem); }
.order-product-sub { font-family: 'Cinzel',serif; font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); opacity: 0.7; margin: 1rem 0; }
.order-description { color: var(--cream); opacity: 0.75; line-height: 1.85; margin-bottom: 2rem; }
.order-price { font-family: 'Cormorant Garamond',serif; font-size: 2.5rem; color: var(--cream-light); margin-bottom: 0.5rem; }
.order-price-note { font-size: 0.8rem; color: var(--cream); opacity: 0.45; margin-bottom: 2rem; }
.order-divider { border: none; border-top: 1px solid rgba(212,169,60,0.15); margin: 2rem 0; }
.qty-label { font-family: 'Cinzel',serif; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cream); opacity: 0.5; display: block; margin-bottom: 0.75rem; }
.qty-control { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.qty-btn { width: 36px; height: 36px; border: 1px solid rgba(212,169,60,0.3); background: transparent; color: var(--gold); font-size: 1.2rem; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { background: var(--gold); color: var(--black); }
#qty-num { font-family: 'Cinzel',serif; font-size: 1rem; color: var(--cream-light); min-width: 24px; text-align: center; }
.order-btn { font-family: 'Cinzel',serif; font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; background: var(--gold); color: var(--black); border: none; padding: 1.2rem 3rem; cursor: pointer; width: 100%; margin-bottom: 2rem; transition: all 0.3s; }
.order-btn:hover { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.shipping-note { font-size: 0.82rem; color: var(--cream); opacity: 0.5; line-height: 1.7; margin-bottom: 1.5rem; }
.payment-icons { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2rem; }
.pay-icon { font-family: 'Cinzel',serif; font-size: 0.58rem; letter-spacing: 0.1em; border: 1px solid rgba(212,169,60,0.2); padding: 0.4rem 0.8rem; color: var(--cream); opacity: 0.5; }
.enquiry-note { font-size: 0.85rem; color: var(--cream); opacity: 0.55; }
.enquiry-note a { color: var(--gold); text-decoration: underline; }

/* ── MEDIA ────────────────────────────────────────────────── */
#media { background: var(--cream-light); padding: 8rem 0; }
.media-header { text-align: center; margin-bottom: 4rem; }
.media-header .section-label { color: var(--green-deep); }
.media-header .section-title { color: var(--green-deep); }
.media-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.media-card { background: #fff; border: 1px solid rgba(28,53,40,0.08); padding: 2.5rem; position: relative; }
.media-tag { font-family: 'Cinzel',serif; font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; background: var(--green-deep); color: var(--gold); padding: 0.35rem 0.8rem; position: absolute; top: 0; right: 2rem; }
.media-outlet { font-family: 'Cinzel',serif; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-deep); margin-bottom: 0.5rem; margin-top: 2rem; }
.media-date { font-size: 0.82rem; color: rgba(10,20,15,0.45); margin-bottom: 1.5rem; }
.media-card h3 { font-family: 'Cormorant Garamond',serif; font-size: 1.2rem; font-weight: 400; color: var(--green-deep); margin-bottom: 1rem; line-height: 1.4; }
.media-card p  { font-size: 0.88rem; color: rgba(10,20,15,0.65); line-height: 1.7; margin-bottom: 1.5rem; }
.media-link { font-family: 'Cinzel',serif; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green-deep); border-bottom: 1px solid rgba(28,53,40,0.25); padding-bottom: 2px; transition: all 0.3s; }
.media-link:hover { color: var(--gold); border-color: var(--gold); }

/* ── GALLERY ──────────────────────────────────────────────── */
#gallery { background: var(--green-deep); padding: 6rem 0; }
.gallery-grid { display: grid; gap: 12px; }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 0.6rem 0.8rem; font-family: 'Cinzel',serif; font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; }

/* ── LIGHTBOX ─────────────────────────────────────────────── */
#zon-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lb-close { position: absolute; top: 20px; right: 28px; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; line-height: 1; }
.lb-prev  { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); background: rgba(212,169,60,0.2); border: 1px solid rgba(212,169,60,0.4); color: var(--gold); width: 44px; height: 44px; font-size: 1.4rem; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lb-next  { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); background: rgba(212,169,60,0.2); border: 1px solid rgba(212,169,60,0.4); color: var(--gold); width: 44px; height: 44px; font-size: 1.4rem; cursor: pointer; display: flex; align-items: center; justify-content: center; }
#lb-img   { max-width: 90vw; max-height: 80vh; object-fit: contain; }
#lb-cap   { margin-top: 14px; font-family: 'Cinzel',serif; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; text-align: center; }
#lb-ctr   { margin-top: 6px; font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* ── FOOTER ───────────────────────────────────────────────── */
footer { background: var(--black); border-top: 1px solid rgba(212,169,60,0.1); padding: 5rem 0 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand-name { font-family: 'Cinzel',serif; font-size: 1rem; letter-spacing: 0.2em; color: var(--cream-light); margin-bottom: 0.5rem; }
.footer-brand-sub  { font-family: 'Cinzel',serif; font-size: 0.58rem; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 1rem; opacity: 0.7; }
.footer-desc { font-size: 0.85rem; color: var(--cream); opacity: 0.45; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: var(--cream); opacity: 0.4; transition: opacity 0.3s; }
.footer-social a:hover { opacity: 1; }
.footer-col h4 { font-family: 'Cinzel',serif; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; opacity: 0.7; }
.footer-col ul  { list-style: none; }
.footer-col li  { margin-bottom: 0.75rem; }
.footer-col a   { font-size: 0.85rem; color: var(--cream); opacity: 0.5; transition: opacity 0.3s; }
.footer-col a:hover { opacity: 1; }
.footer-bottom { display: flex; justify-content: center; align-items: center; border-top: 1px solid rgba(212,169,60,0.08); padding-top: 2rem; }
.footer-copy { font-size: 0.77rem; color: #ffffff; opacity: 0.4; letter-spacing: 0.05em; text-align: center; }
.footer-admin-link { font-family: 'Cinzel',serif; font-size: 0.55rem; letter-spacing: 0.2em; color: rgba(212,169,60,0.2); text-decoration: none; text-transform: uppercase; transition: color 0.3s; }
.footer-admin-link:hover { color: rgba(212,169,60,0.5); }

/* ── BACK TO TOP ──────────────────────────────────────────── */
.back-to-top { position: fixed; bottom: 2rem; right: 2rem; background: var(--gold); color: var(--black); border: none; width: 44px; height: 44px; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; z-index: 50; }
.back-to-top.visible { opacity: 1; pointer-events: auto; }

/* ── CUSTOM CURSOR ────────────────────────────────────────── */
@media (hover: hover) and (pointer: fine) {
  html, body, *, *::before, *::after { cursor: none !important; }
}
#zon-cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(212,169,60,0.8);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2147483647;
  opacity: 0;
  transition: opacity 0.4s, width 0.3s, height 0.3s, background-color 0.3s;
  will-change: transform;
  transform: translate(-200px,-200px);
}
#zon-cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 6px; height: 6px;
  background: #d4a93c;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2147483647;
  opacity: 0;
  will-change: transform;
  transform: translate(-200px,-200px);
}
#zon-cursor-ring.is-visible { opacity: 1; }
#zon-cursor-dot.is-visible  { opacity: 1; }
#zon-cursor-ring.is-hovering { width: 52px; height: 52px; border-color: rgba(212,169,60,0.4); background-color: rgba(212,169,60,0.07); }
#zon-cursor-ring.is-clicking { width: 24px; height: 24px; background-color: rgba(212,169,60,0.2); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .story-grid     { grid-template-columns: 1fr; gap: 3rem; }
  .science-intro  { grid-template-columns: 1fr; gap: 3rem; }
  .order-grid     { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top     { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .sensory-grid   { grid-template-columns: repeat(2,1fr); }
  .benefits-grid  { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-order { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.8rem) !important; }
  .hero-ctas { flex-wrap: wrap; }
  .btn-primary, .btn-secondary { min-width: 140px; font-size: 0.6rem; }
  .sensory-grid   { grid-template-columns: 1fr; }
  .benefits-grid  { grid-template-columns: repeat(2,1fr); }
  .media-grid     { grid-template-columns: 1fr; }
  .footer-top     { grid-template-columns: 1fr; }
  .lifestyle-portrait { min-height: 200px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: clamp(1.6rem, 8vw, 2.4rem) !important; }
  .benefits-grid { grid-template-columns: 1fr; }
  .btn-primary, .btn-secondary { min-width: 100%; }
  .hero-ctas { flex-direction: column; width: 100%; align-items: stretch; }
  .story-portraits { grid-template-columns: 1fr; }
}
@media (max-width: 360px) {
  .hero-title { font-size: clamp(1.4rem, 9vw, 2rem) !important; }
}

/* Prevent blank space at bottom */
html, body { min-height: 100%; }
#main-content + footer { margin-top: 0; }

/* Requested fixes: transparent vertical scroll-to-top button */
.back-to-top,
.back-to-top:hover,
.back-to-top:focus {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  color: var(--cream-light) !important;
  width: 40px !important;
  height: 96px !important;
  right: 1.5rem !important;
  bottom: 1.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 0 !important;
}
.back-to-top span {
  display: block;
  width: 1px;
  height: 44px;
  background: var(--gold);
}
.back-to-top em {
  font-family: 'Cinzel', serif;
  font-style: normal;
  font-size: 0.58rem;
  letter-spacing: 0.45em;
  writing-mode: horizontal-tb;
  color: var(--cream-light);
  opacity: 0.8;
}

/* Requested fixes: reliable mobile menu */
body.mm-open { overflow: hidden; }
#mobile-menu {
  display: flex !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
#mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Requested fixes: legal links popup */
body.legal-modal-open { overflow: hidden; }
#legal-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
#legal-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.legal-modal-card {
  position: relative;
  width: min(760px, 100%);
  max-height: 82vh;
  overflow: auto;
  background: var(--green-deep);
  border: 1px solid rgba(212,169,60,0.28);
  padding: clamp(1.4rem, 4vw, 3rem);
  box-shadow: 0 24px 90px rgba(0,0,0,0.55);
}
.legal-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: 0;
  color: var(--gold);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
#legal-modal-title {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: clamp(1.2rem, 3vw, 2rem);
  letter-spacing: 0.08em;
  margin: 0 2rem 1.25rem 0;
}
#legal-modal-content {
  color: var(--cream-light);
  opacity: 0.82;
  line-height: 1.8;
  font-size: 0.95rem;
}

/* FINAL FIX: mobile menu spacing/layout */
#mobile-menu {
  padding: 6rem 1.5rem 3rem !important;
  text-align: center !important;
}
#mobile-menu #mm-links {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1.45rem !important;
  width: 100% !important;
}
#mobile-menu .mml {
  display: block !important;
  width: 100% !important;
  max-width: 320px !important;
  padding: 0.35rem 0 !important;
  line-height: 1.45 !important;
  text-decoration: none !important;
  white-space: normal !important;
}
#mobile-menu .mm-order-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 0.75rem !important;
  min-width: 180px !important;
  min-height: 48px !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  font-family: 'Cinzel', serif !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.26em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}
#mobile-menu .mm-close {
  z-index: 2 !important;
}


/* Requested update: sleek upward-arrow scroll button */
.back-to-top,
.back-to-top:hover,
.back-to-top:focus {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  color: var(--gold) !important;
  width: 44px !important;
  height: 44px !important;
  right: 1.5rem !important;
  bottom: 1.5rem !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
}
.back-to-top span {
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  color: var(--gold) !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 2rem !important;
  line-height: 1 !important;
  font-weight: 300 !important;
  transform: translateY(-2px);
}
.back-to-top em { display: none !important; }
.back-to-top:hover { transform: translateY(-4px); }

/* V6 FIX: keep hero/top section clean on mobile and prevent the image from looking like a separate block */
#hero-bg {
  background-position: center center !important;
}
#hero-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.52) 45%, rgba(0,0,0,0.72) 100%) !important;
}
@media (max-width: 768px) {
  #hero {
    min-height: 92svh !important;
    background: var(--black) !important;
  }
  #hero-bg {
    opacity: 0.38 !important;
    background-size: cover !important;
    background-position: center center !important;
  }
  .hero-content {
    min-height: 92svh !important;
    justify-content: center !important;
    padding: calc(var(--nav-height) + 1.25rem) 1.25rem 3rem !important;
  }
}
@media (max-width: 480px) {
  #hero-bg { opacity: 0.34 !important; }
  .hero-eyebrow { margin-bottom: 1.25rem !important; }
  .hero-tagline { margin-bottom: 1.5rem !important; }
  .hero-scroll { margin-top: 1.8rem !important; }
}

/* ── V7 TOP/HERO FIX ────────────────────────────────────────
   Keeps the site from starting as a loose image block on mobile.
   The hero is now always the first full-screen section, with its
   background locked behind the centered headline/buttons. */
#hero {
  position: relative !important;
  min-height: 100vh !important;
  min-height: 100svh !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  background: var(--black) !important;
  overflow: hidden !important;
}
#hero-bg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-image: url('../assets/hero1.jpg');
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  z-index: 0 !important;
}
#hero-overlay {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(rgba(0,0,0,0.64), rgba(0,0,0,0.58)) !important;
  z-index: 1 !important;
}
.hero-content {
  position: relative !important;
  z-index: 2 !important;
  min-height: 100vh !important;
  min-height: 100svh !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: calc(var(--nav-height) + 2rem) 2rem 6rem !important;
  margin: 0 auto !important;
}
.hero-scroll {
  position: absolute !important;
  left: 50% !important;
  bottom: 2.25rem !important;
  transform: translateX(-50%) !important;
  margin-top: 0 !important;
  z-index: 3 !important;
}

@media (max-width: 700px) {
  #hero-bg {
    background-size: cover !important;
    background-position: center top !important;
  }
  .hero-content {
    padding: 112px 1.25rem 5.5rem !important;
  }
  .hero-eyebrow {
    font-size: 0.5rem !important;
    letter-spacing: 0.16em !important;
    line-height: 1.6 !important;
    margin-bottom: 1.25rem !important;
  }
  .hero-title {
    font-size: clamp(2rem, 10vw, 3rem) !important;
    line-height: 1.08 !important;
    margin-bottom: 1rem !important;
  }
  .hero-tagline {
    font-size: 1rem !important;
    margin-bottom: 1.25rem !important;
  }
  .hero-divider {
    margin-bottom: 1.25rem !important;
  }
  .hero-ctas {
    gap: 0.75rem !important;
  }
  .btn-primary,
  .btn-secondary {
    width: 100% !important;
    max-width: 280px !important;
    min-width: 0 !important;
    padding: 0.9rem 1rem !important;
  }
  .hero-scroll {
    bottom: 1.35rem !important;
  }
}


/* V9: standalone cup section + editable custom sections */
#cup-ritual { clear: both; }
#cup-ritual .sensory-portrait-wrap { margin-bottom: 1rem; }
.custom-cms-section { position: relative; overflow: hidden; }
.custom-cms-inner { position: relative; z-index: 1; }
.custom-cms-section .section-title { color: inherit; margin-bottom: 1.25rem; }
.custom-cms-section .section-label { color: inherit; opacity: .72; }
.custom-cms-text { max-width: 820px; margin: 1rem auto 0; font-size: 1.05rem; line-height: 1.85; }
.custom-cms-image { display:block; max-width: min(760px,100%); width:100%; height:auto; object-fit:contain; margin: 2rem auto; }

/* V12 FIX: force hero/header text visible above the image/overlay */
#hero .hero-content,
#hero .hero-eyebrow,
#hero .hero-title,
#hero .hero-tagline,
#hero .hero-ctas,
#hero .hero-divider {
  visibility: visible !important;
  opacity: 1 !important;
  position: relative;
  z-index: 5 !important;
}
#hero .hero-content { display: flex !important; flex-direction: column !important; }
#hero .hero-title { display: block !important; color: #fdf6ec !important; }
#hero .hero-eyebrow { display: block !important; color: #d4a93c !important; }
#hero .hero-tagline { display: block !important; color: #f4ead8 !important; }
