/* ─── DESIGN TOKENS ─── */
:root {
  --espresso:   #1C0A00;
  --mahogany:   #3D1500;
  --amber:      #C8820A;
  --gold:       #E8A020;
  --cream:      #F6EED8;
  --parchment:  #FAF5E9;
  --ash:        #FDFAF3;
  --smoke:      #6B4C35;
  --mist:       #C4A882;

  --bg:         var(--ash);
  --surface:    var(--parchment);
  --text-h:     var(--espresso);
  --text-b:     var(--mahogany);
  --text-m:     var(--smoke);
  --accent:     var(--amber);
  --accent2:    var(--gold);
  --border:     rgba(60,20,0,0.10);
  --glass:      rgba(246,238,216,0.72);

  --ff-display: 'Cormorant Garamond', serif;
  --ff-body:    'Inter', sans-serif;
  --ff-label:   'Bebas Neue', sans-serif;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.7, 0, 0.84, 0);
  --ease-circ:  cubic-bezier(0.0, 0.55, 0.45, 1);
}

[data-theme="dark"] {
  --bg:         #0D0500;
  --surface:    #1A0C04;
  --text-h:     #F6EED8;
  --text-b:     #D4B896;
  --text-m:     #9B7A5A;
  --accent:     #E8A020;
  --accent2:    #C8820A;
  --border:     rgba(200,130,10,0.15);
  --glass:      rgba(26,12,4,0.80);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text-b);
  overflow-x: hidden;
}
body, section, .product-card, .aside-card, .pillar, .testimonial {
  transition: background-color 0.6s var(--ease-out), color 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── CUSTOM CURSOR ─── */
#cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none; mix-blend-mode: multiply;
}
[data-theme="dark"] #cursor { mix-blend-mode: screen; }
.cursor-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor-ring {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--accent);
  transform: translate(-50%, -50%);
  transition: transform 0.18s var(--ease-out), width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.6;
  position: absolute; top: 0; left: 0;
}
body:hover .cursor-ring { opacity: 1; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ─── LOADER ─── */
#loader {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--espresso);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 24px;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}
#loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  font-family: var(--ff-display); font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300; color: var(--cream); letter-spacing: 0.15em;
  opacity: 0; animation: fadeUp 0.8s 0.3s var(--ease-out) forwards;
}
.loader-line {
  width: 0; height: 1px; background: var(--amber);
  animation: expandLine 1.2s 0.6s var(--ease-out) forwards;
}
.loader-pct {
  font-family: var(--ff-label); font-size: 1rem; color: var(--mist);
  letter-spacing: 0.3em;
}
@keyframes expandLine { to { width: 240px; } }
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 48px;
  transition: background 0.5s, padding 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  padding: 16px 48px;
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo {
  font-family: var(--ff-display); font-size: 1.5rem; font-weight: 600;
  color: var(--cream); letter-spacing: 0.05em;
  display: flex; align-items: center; gap: 10px;
  transition: color 0.4s var(--ease-out);
}
nav.scrolled .nav-logo {
  color: var(--text-h);
}
.nav-logo-mark {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-label); font-size: 0.75rem; color: white;
  letter-spacing: 0.05em; flex-shrink: 0;
}
.nav-links {
  display: flex; align-items: center; gap: 40px; list-style: none;
}
.nav-links a {
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cream); font-weight: 500; position: relative;
  transition: color 0.4s var(--ease-out);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
nav.scrolled .nav-links a {
  color: var(--text-h);
}
.nav-cta {
  padding: 10px 24px; border: 1px solid var(--accent);
  border-radius: 2px; font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent);
  transition: background 0.3s, color 0.3s;
  display: flex; align-items: center; gap: 8px;
}
.nav-cta:hover { background: var(--accent); color: white; }
.theme-toggle {
  width: 44px; height: 24px; border-radius: 12px;
  background: var(--border); border: 1px solid var(--border);
  position: relative; cursor: pointer;
  transition: background 0.3s;
  display: flex; align-items: center; padding: 2px;
  flex-shrink: 0;
}
.theme-toggle.active { background: var(--espresso); }
[data-theme="dark"] .theme-toggle { background: var(--accent); }
nav:not(.scrolled) .theme-toggle {
  border-color: rgba(246, 238, 216, 0.3);
  background: rgba(246, 238, 216, 0.08);
}
[data-theme="dark"] nav:not(.scrolled) .theme-toggle {
  border-color: var(--border);
  background: var(--accent);
}
.toggle-thumb {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--cream);
  transition: transform 0.35s var(--ease-out);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
}
[data-theme="dark"] .toggle-thumb { transform: translateX(20px); }

/* ─── HERO ─── */
#hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--espresso);
}
.hero-canvas-wrap {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
#hero-canvas { width: 100%; height: 100%; display: block; }

/* Gradient overlay */
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 60% 50%, transparent 30%, rgba(28,10,0,0.85) 100%),
              linear-gradient(to right, rgba(28,10,0,0.92) 35%, transparent 65%);
}

.hero-content {
  position: relative; z-index: 10;
  padding: 0 clamp(24px,6vw,100px);
  max-width: 780px;
}
.hero-eyebrow {
  font-family: var(--ff-label); font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  letter-spacing: 0.4em; color: var(--amber);
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
  opacity: 0; transform: translateY(30px);
  transition: opacity 1s 1.2s var(--ease-out), transform 1s 1.2s var(--ease-out);
}
.hero-eyebrow.visible { opacity: 1; transform: none; }
.eyebrow-line { flex: 0 0 48px; height: 1px; background: var(--amber); }

.hero-h1 {
  font-family: var(--ff-display); font-weight: 300;
  font-size: clamp(3.2rem, 8vw, 8rem);
  line-height: 0.94; color: var(--cream);
  letter-spacing: -0.01em; margin-bottom: 32px;
}
.hero-h1 em { font-style: italic; color: var(--amber); }
.hero-h1 .line { overflow: hidden; display: block; }
.hero-h1 .line-inner {
  display: block; transform: translateY(110%);
  transition: transform 1s var(--ease-out);
}
.hero-h1 .line-inner.visible { transform: none; }

.hero-sub {
  font-size: clamp(0.9rem, 1.4vw, 1.1rem); line-height: 1.75;
  color: rgba(246,238,216,0.65); max-width: 480px; margin-bottom: 52px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 1s 1.8s var(--ease-out), transform 1s 1.8s var(--ease-out);
}
.hero-sub.visible { opacity: 1; transform: none; }

.hero-actions {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  transition: opacity 1s 2s var(--ease-out), transform 1s 2s var(--ease-out);
}
.hero-actions.visible { opacity: 1; transform: none; }

.btn-primary {
  padding: 16px 40px; background: var(--amber); color: white;
  font-family: var(--ff-body); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: 2px; position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-100%) skewX(-20deg);
  transition: transform 0.5s var(--ease-out);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 60px rgba(200,130,10,0.4); }
.btn-primary:hover::before { transform: translateX(120%) skewX(-20deg); }

.btn-ghost {
  padding: 16px 32px; border: 1px solid rgba(246,238,216,0.3);
  color: var(--cream); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase; border-radius: 2px;
  transition: border-color 0.3s, color 0.3s;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }

.hero-stats {
  position: absolute; bottom: 60px; right: clamp(24px, 6vw, 100px);
  display: flex; gap: 48px; z-index: 10;
  opacity: 0; transition: opacity 1s 2.2s var(--ease-out);
}
.hero-stats.visible { opacity: 1; }
.stat { text-align: right; }
.stat-num {
  font-family: var(--ff-display); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300; color: var(--cream); line-height: 1;
  display: flex; align-items: baseline; gap: 4px; justify-content: flex-end;
}
.stat-num sup { font-size: 0.45em; color: var(--amber); }
.stat-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mist); margin-top: 6px; }

.scroll-cue {
  position: absolute; bottom: 60px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; animation: fadeIn 1s 2.5s forwards;
}
.scroll-cue span { font-family: var(--ff-label); font-size: 0.65rem; letter-spacing: 0.4em; color: var(--mist); }
.scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--amber), transparent); animation: scrollPulse 2s 3s infinite; }
@keyframes scrollPulse { 0%,100%{opacity:0.3;transform:scaleY(0.8)} 50%{opacity:1;transform:scaleY(1)} }
@keyframes fadeIn { to { opacity: 1; } }

/* ─── MARQUEE ─── */
.marquee-section {
  overflow: hidden; background: var(--amber); padding: 18px 0;
  position: relative; z-index: 20;
}
.marquee-track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  display: flex; align-items: center; gap: 32px;
  padding: 0 48px; white-space: nowrap;
  font-family: var(--ff-label); font-size: 1rem; letter-spacing: 0.2em;
  color: white;
}
.marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.5); flex-shrink:0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ─── SECTIONS COMMON ─── */
.section { padding: clamp(80px, 12vw, 160px) clamp(24px, 6vw, 100px); }
.section-label {
  font-family: var(--ff-label); font-size: 0.8rem; letter-spacing: 0.4em;
  color: var(--accent); margin-bottom: 20px; display: flex; align-items: center; gap: 16px;
}
.section-label::before { content: ''; flex: 0 0 32px; height: 1px; background: var(--accent); }
h2.section-title {
  font-family: var(--ff-display); font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1.08; color: var(--text-h); letter-spacing: -0.01em;
}
h2.section-title em { font-style: italic; color: var(--accent); }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(48px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* ─── ABOUT / INTRO ─── */
#about { background: var(--bg); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 8vw, 120px);
  align-items: center; margin-top: 64px;
}
.about-visual {
  position: relative; aspect-ratio: 4/5; border-radius: 4px; overflow: hidden;
}
.about-img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  transition: transform 6s var(--ease-out);
}
.about-visual:hover .about-img { transform: scale(1); }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  width: 130px; height: 130px; border-radius: 50%;
  background: var(--amber); display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center; gap: 4px;
}
.about-badge-num {
  font-family: var(--ff-display); font-size: 2.2rem; font-weight: 600; color: white; line-height: 1;
}
.about-badge-text { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.8); }
.about-text p {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem); line-height: 1.85; color: var(--text-m);
  margin-bottom: 24px;
}
.about-text p:first-of-type {
  font-family: var(--ff-display); font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 300; color: var(--text-h); line-height: 1.55; margin-bottom: 32px;
}
.about-pillars {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px;
}
.pillar {
  padding: 24px; border: 1px solid var(--border); border-radius: 4px;
  transition: border-color 0.3s, transform 0.4s var(--ease-out);
}
.pillar:hover { border-color: var(--amber); transform: translateY(-4px); }
.pillar-icon { font-size: 1.5rem; margin-bottom: 12px; }
.pillar h4 { font-family: var(--ff-display); font-size: 1.1rem; color: var(--text-h); margin-bottom: 6px; }
.pillar p { font-size: 0.85rem; line-height: 1.65; color: var(--text-m); }

/* ─── 3D ORIGIN MAP ─── */
#origins {
  background: var(--espresso); color: var(--cream);
  position: relative; overflow: hidden;
}
#origins .section-label { color: var(--amber); }
#origins .section-label::before { background: var(--amber); }
#origins h2.section-title { color: var(--cream); }
.origins-intro { font-size: clamp(0.9rem,1.3vw,1.05rem); line-height: 1.8; color: rgba(246,238,216,0.65); max-width: 560px; margin-top: 20px; }

.origins-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  margin-top: 64px; border: 1px solid rgba(200,130,10,0.2); border-radius: 4px; overflow: hidden;
}
.origin-card {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  cursor: pointer;
}
.origin-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.5s;
  filter: saturate(0.7) brightness(0.75);
}
.origin-card:hover img { transform: scale(1.07); filter: saturate(1) brightness(0.85); }
.origin-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,10,0,0.95) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
}
.origin-tag {
  font-family: var(--ff-label); font-size: 0.7rem; letter-spacing: 0.35em;
  color: var(--amber); margin-bottom: 8px;
}
.origin-name {
  font-family: var(--ff-display); font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 400; color: var(--cream); line-height: 1.1; margin-bottom: 10px;
}
.origin-desc { font-size: 0.8rem; line-height: 1.65; color: rgba(246,238,216,0.6); }
.origin-altitude {
  position: absolute; top: 20px; right: 20px;
  background: rgba(200,130,10,0.2); border: 1px solid var(--amber);
  padding: 6px 12px; border-radius: 2px;
  font-family: var(--ff-label); font-size: 0.65rem; letter-spacing: 0.2em; color: var(--amber);
}

/* ─── PROCESS ─── */
#process { background: var(--surface); }
.process-timeline {
  margin-top: 72px; display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0; position: relative;
}
.process-timeline::before {
  content: ''; position: absolute; top: 44px; left: 10%; right: 10%;
  height: 1px; background: linear-gradient(to right, transparent, var(--amber), transparent);
}
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px; }
.step-node {
  width: 88px; height: 88px; border-radius: 50%;
  border: 1.5px solid var(--border); background: var(--bg);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  gap: 4px; margin-bottom: 28px; position: relative; z-index: 2;
  transition: border-color 0.4s, transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.process-step:hover .step-node {
  border-color: var(--amber);
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 50px rgba(200,130,10,0.2);
}
.step-icon { font-size: 1.6rem; }
.step-num { font-family: var(--ff-label); font-size: 0.65rem; letter-spacing: 0.2em; color: var(--accent); }
.step-title { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 400; color: var(--text-h); margin-bottom: 10px; }
.step-desc { font-size: 0.8rem; line-height: 1.7; color: var(--text-m); }

/* ─── PRODUCT SHOWCASE ─── */
#products { background: var(--bg); overflow: hidden; }
.products-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; flex-wrap: wrap; gap: 24px; }
.products-intro { font-size: clamp(0.9rem,1.3vw,1.05rem); line-height: 1.75; color: var(--text-m); max-width: 480px; margin-top: 16px; }

.products-scroll {
  display: flex; gap: 24px; overflow-x: auto; padding-bottom: 32px;
  scrollbar-width: none; -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}
.products-scroll::-webkit-scrollbar { display: none; }

.product-card {
  flex: 0 0 clamp(280px, 28vw, 380px); scroll-snap-align: start;
  border-radius: 4px; overflow: hidden; position: relative;
  background: var(--surface); border: 1px solid var(--border);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s;
}
.product-card:hover { transform: translateY(-12px); box-shadow: 0 40px 80px rgba(60,20,0,0.15); }
[data-theme="dark"] .product-card:hover { box-shadow: 0 40px 80px rgba(0,0,0,0.6); }
.product-img-wrap { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.product-card:hover .product-img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--amber); color: white; padding: 4px 12px;
  font-family: var(--ff-label); font-size: 0.65rem; letter-spacing: 0.25em; border-radius: 2px;
}
.product-body { padding: 28px; }
.product-origin { font-family: var(--ff-label); font-size: 0.7rem; letter-spacing: 0.3em; color: var(--accent); margin-bottom: 8px; }
.product-name { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 400; color: var(--text-h); margin-bottom: 12px; line-height: 1.2; }
.product-desc { font-size: 0.85rem; line-height: 1.7; color: var(--text-m); margin-bottom: 24px; }
.product-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid var(--border); }
.product-price { font-family: var(--ff-display); font-size: 1.4rem; color: var(--text-h); }
.product-price span { font-size: 0.75rem; font-family: var(--ff-body); color: var(--text-m); }
.product-cta { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); display: flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.product-card:hover .product-cta { gap: 12px; }
.flavor-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.flavor-tag { padding: 4px 10px; background: var(--border); border-radius: 20px; font-size: 0.72rem; color: var(--text-m); letter-spacing: 0.05em; }

/* ─── WHY MV GLOBEX ─── */
#why { background: var(--surface); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 8vw, 100px); align-items: center; margin-top: 64px; }
.why-visual { position: relative; }
.why-canvas-wrap { aspect-ratio: 1; position: relative; }
#why-canvas { width: 100%; height: 100%; }
.why-list { display: flex; flex-direction: column; gap: 0; }
.why-item {
  padding: 28px 0; border-bottom: 1px solid var(--border);
  display: flex; gap: 24px; align-items: flex-start;
  cursor: default; transition: padding 0.3s var(--ease-out);
}
.why-item:first-child { border-top: 1px solid var(--border); }
.why-item:hover { padding-left: 8px; }
.why-item-icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 50%;
  background: rgba(200,130,10,0.08); border: 1px solid rgba(200,130,10,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  transition: background 0.3s, border-color 0.3s;
}
.why-item:hover .why-item-icon { background: rgba(200,130,10,0.18); border-color: var(--amber); }
.why-item-text h4 { font-family: var(--ff-display); font-size: 1.25rem; color: var(--text-h); margin-bottom: 8px; }
.why-item-text p { font-size: 0.88rem; line-height: 1.75; color: var(--text-m); }

/* ─── CERTIFICATIONS ─── */
#certs { background: var(--bg); padding: clamp(60px,8vw,100px) clamp(24px,6vw,100px); }
.certs-row { display: flex; align-items: center; justify-content: center; gap: clamp(32px,5vw,80px); flex-wrap: wrap; margin-top: 48px; }
.cert-item { text-align: center; opacity: 0.5; transition: opacity 0.3s; filter: grayscale(1); cursor: default; }
.cert-item:hover { opacity: 1; filter: none; }
.cert-icon { font-size: 2.8rem; margin-bottom: 10px; }
.cert-name { font-family: var(--ff-label); font-size: 0.75rem; letter-spacing: 0.25em; color: var(--text-h); }

/* ─── TESTIMONIALS ─── */
#testimonials { background: var(--espresso); padding: clamp(80px,12vw,140px) clamp(24px,6vw,100px); overflow: hidden; }
#testimonials .section-label { color: var(--amber); }
#testimonials .section-label::before { background: var(--amber); }
#testimonials h2.section-title { color: var(--cream); }
.testimonials-wrap { position: relative; margin-top: 64px; }
.testimonials-slider { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  padding: 36px; background: rgba(246,238,216,0.05); border: 1px solid rgba(200,130,10,0.2);
  border-radius: 4px; position: relative; transition: border-color 0.4s, transform 0.4s var(--ease-out);
}
.testimonial:hover { border-color: var(--amber); transform: translateY(-6px); }
.testimonial::before { content: '"'; font-family: var(--ff-display); font-size: 5rem; line-height: 0.7; color: var(--amber); opacity: 0.4; position: absolute; top: 24px; right: 24px; }
.testimonial-text { font-family: var(--ff-display); font-size: 1.1rem; font-style: italic; font-weight: 300; line-height: 1.75; color: rgba(246,238,216,0.85); margin-bottom: 28px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--amber); display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-size: 1.2rem; color: white; flex-shrink: 0; }
.author-name { font-size: 0.9rem; font-weight: 600; color: var(--cream); }
.author-role { font-size: 0.75rem; color: rgba(246,238,216,0.45); margin-top: 3px; }
.stars { color: var(--amber); font-size: 0.8rem; margin-bottom: 16px; letter-spacing: 3px; }

/* ─── SEO CONTENT SECTION ─── */
#content { background: var(--bg); }
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: clamp(48px,6vw,80px); margin-top: 48px; }
.content-main h3 { font-family: var(--ff-display); font-size: clamp(1.4rem,2.5vw,2rem); color: var(--text-h); margin-bottom: 16px; font-weight: 400; }
.content-main p { font-size: 0.95rem; line-height: 1.9; color: var(--text-m); margin-bottom: 20px; }
.content-aside { display: flex; flex-direction: column; gap: 24px; }
.aside-card { padding: 28px; background: var(--surface); border: 1px solid var(--border); border-radius: 4px; }
.aside-card h4 { font-family: var(--ff-display); font-size: 1.1rem; color: var(--text-h); margin-bottom: 12px; }
.aside-card p, .aside-card li { font-size: 0.85rem; line-height: 1.75; color: var(--text-m); }
.aside-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.aside-card li::before { content: '→ '; color: var(--accent); }

/* ─── CTA BANNER ─── */
#cta-section {
  position: relative; overflow: hidden;
  background: var(--mahogany);
  padding: clamp(80px,12vw,140px) clamp(24px,6vw,100px);
  text-align: center;
}
#cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(200,130,10,0.15) 0%, transparent 70%);
}
#cta-section h2 { font-family: var(--ff-display); font-size: clamp(2.5rem,6vw,5.5rem); font-weight: 300; color: var(--cream); line-height: 1.05; margin-bottom: 24px; position: relative; }
#cta-section h2 em { font-style: italic; color: var(--amber); }
#cta-section p { font-size: clamp(0.95rem,1.4vw,1.1rem); color: rgba(246,238,216,0.65); max-width: 520px; margin: 0 auto 48px; line-height: 1.8; position: relative; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; position: relative; }

/* ─── FOOTER ─── */
footer {
  background: var(--espresso); color: rgba(246,238,216,0.6);
  padding: clamp(60px,8vw,100px) clamp(24px,6vw,100px) 40px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand h3 { font-family: var(--ff-display); font-size: 1.8rem; font-weight: 300; color: var(--cream); margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; max-width: 280px; }
.footer-col h4 { font-family: var(--ff-label); font-size: 0.75rem; letter-spacing: 0.3em; color: var(--amber); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.85rem; color: rgba(246,238,216,0.55); transition: color 0.3s; }
.footer-col a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid rgba(246,238,216,0.1); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 0.8rem; }
.footer-socials { display: flex; gap: 16px; }
.social-link { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(246,238,216,0.15); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: border-color 0.3s, background 0.3s; }
.social-link:hover { border-color: var(--amber); background: rgba(200,130,10,0.1); }

/* ─── PARALLAX LAYERS ─── */
.parallax-layer { will-change: transform; }

/* ─── FLOATING BEANS ─── */
.floating-bean {
  position: absolute; border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: radial-gradient(ellipse at 35% 35%, #3D1500, #1C0A00);
  opacity: 0;
  animation: floatBean linear infinite;
}
@keyframes floatBean {
  0%   { transform: translateY(100vh) rotate(0deg) scale(0); opacity: 0; }
  5%   { opacity: 0.6; transform: translateY(90vh) rotate(20deg) scale(1); }
  95%  { opacity: 0.4; }
  100% { transform: translateY(-20vh) rotate(720deg) scale(0.5); opacity: 0; }
}

/* ─── MOBILE MENU & HAMBURGER ─── */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 900;
  padding: 0;
}
.mobile-nav-toggle span {
  width: 24px;
  height: 1.5px;
  background-color: var(--text-h);
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out), background-color 0.4s var(--ease-out);
}
nav:not(.scrolled) .mobile-nav-toggle span {
  background-color: var(--cream);
}
[data-theme="dark"] nav:not(.scrolled) .mobile-nav-toggle span {
  background-color: var(--text-h);
}
.mobile-nav-toggle.active span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}
.mobile-nav-toggle.active span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--glass);
  backdrop-filter: blur(25px) saturate(1.5);
  -webkit-backdrop-filter: blur(25px) saturate(1.5);
  z-index: 750;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.mobile-nav-links a {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-h);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.mobile-nav-links a:hover {
  color: var(--accent);
}
.mobile-cta {
  font-family: var(--ff-body) !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase;
  padding: 12px 32px;
  border: 1.5px solid var(--accent);
  border-radius: 2px;
  color: var(--accent) !important;
  margin-top: 16px;
  display: inline-block;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .about-grid, .why-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .testimonials-slider { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-timeline { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .process-timeline::before { display: none; }
  .origins-grid { grid-template-columns: 1fr 1fr; }
  
  /* Disable custom cursor on touch/tablet screens */
  #cursor {
    display: none !important;
  }
  body {
    cursor: default;
  }
}
@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .origins-grid { grid-template-columns: 1fr; }
  .testimonials-slider { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  
  /* Stack timeline items vertically */
  .process-timeline { 
    grid-template-columns: 1fr; 
    gap: 48px; 
  }
  
  /* Show hamburger button and hide header CTA button */
  .mobile-nav-toggle {
    display: flex;
  }
  nav .nav-cta {
    display: none;
  }

  /* Hero Section Mobile Enhancements */
  #hero {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 120px 24px 60px;
    height: auto;
    min-height: 100svh;
  }
  .hero-content {
    padding: 0;
    max-width: 100%;
  }
  .hero-eyebrow {
    margin-bottom: 18px;
  }
  .hero-h1 {
    font-size: clamp(2.4rem, 10vw, 3.6rem);
    line-height: 1.05;
    margin-bottom: 24px;
  }
  .hero-sub {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 32px;
  }
  .hero-actions {
    gap: 16px;
  }
  .hero-actions .btn-primary {
    padding: 14px 28px;
    font-size: 0.75rem;
  }
  .hero-actions .btn-ghost {
    padding: 14px 24px;
    font-size: 0.75rem;
  }
  .hero-stats {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 48px;
    justify-content: flex-start;
    padding: 0;
    width: 100%;
    gap: 28px;
    flex-wrap: wrap;
  }
  .hero-stats .stat {
    text-align: left;
  }
  .hero-stats .stat-num {
    justify-content: flex-start;
  }
  .scroll-cue {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 700;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), background-color 0.4s var(--ease-out), color 0.4s var(--ease-out), border-color 0.4s var(--ease-out), visibility 0.4s;
  box-shadow: 0 10px 30px rgba(60,20,0,0.08);
}
[data-theme="dark"] .back-to-top {
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--accent);
  color: var(--espresso);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(200,130,10,0.25);
}
.back-to-top span {
  display: inline-block;
  transition: transform 0.3s var(--ease-out);
}
.back-to-top:hover span {
  transform: translateY(-2px);
}
