/* ═══════════════════════════════════════════
   VARIABLES
═══════════════════════════════════════════ */
:root {
  --gold:        #c9a227;
  --gold-light:  #e8c84a;
  --gold-muted:  #9a7b1e;
  --gold-pale:   rgba(201,162,39,0.12);
  --green-deep:  #050a07;
  --green-dark:  #0d1f12;
  --green:       #1b4332;
  --green-mid:   #2d6a4f;
  --green-light: #74c69d;
  --off-white:   #f8f5f0;
  --cream:       #faf7f2;
  --warm-white:  #fffef9;
  --dark:        #050a07;
  --text-dark:   #1a1a18;
  --text-mid:    #4a4a42;
  --text-muted:  #7a7a70;

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

  --ease-lux:    cubic-bezier(0.76, 0, 0.24, 1);
  --ease-out:    cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
  cursor: none;
}

body.loading { overflow: hidden; }

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
em  { font-style: italic; }
strong { font-weight: 600; }

/* ═══════════════════════════════════════════
   LOADER
═══════════════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#loaderCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.loader-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.loader-brand {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.loader-bar {
  width: 200px;
  height: 1px;
  background: rgba(201,162,39,0.2);
  position: relative;
  overflow: hidden;
}

.loader-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0%;
  background: var(--gold);
  transition: width 0.1s linear;
}

.loader-pct {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(201,162,39,0.6);
}

/* ═══════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════ */
#cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: background 0.2s;
}

#cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.6);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-lux), height 0.3s var(--ease-lux),
              border-color 0.3s, opacity 0.3s;
}

@media (pointer: coarse) {
  #cursor-dot, #cursor-ring { display: none; }
  body { cursor: auto; }
}

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  transition: background 0.4s var(--ease-lux), padding 0.4s var(--ease-lux),
              box-shadow 0.4s;
}

#nav.scrolled {
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 48px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav-logo { height: 52px; overflow: hidden; }
.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: height 0.4s var(--ease-lux);
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s var(--ease-lux);
}
.nav-links a:hover::after { right: 0; }
.nav-links a:hover { color: var(--gold-light); }

#nav.scrolled .nav-links a { color: var(--text-dark); }
#nav.scrolled .nav-links a:hover { color: var(--gold); }

.nav-cta {
  padding: 8px 20px !important;
  border: 1px solid rgba(201,162,39,0.6);
  border-radius: 2px;
  transition: background 0.3s, color 0.3s, border-color 0.3s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--dark) !important;
  border-color: var(--gold) !important;
}
#nav.scrolled .nav-cta {
  border-color: var(--gold);
  color: var(--gold) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: rgba(255,255,255,0.8);
  transition: background 0.3s;
}
#nav.scrolled .nav-hamburger span { background: var(--text-dark); }

/* ═══════════════════════════════════════════
   MOBILE MENU
═══════════════════════════════════════════ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-lux);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--cream);
  transition: color 0.3s;
}
.mobile-link:hover { color: var(--gold); }

/* ═══════════════════════════════════════════
   SCROLL SPINE
═══════════════════════════════════════════ */
#scrollSpine {
  position: fixed;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0;
}

.spine-track {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(201,162,39,0.2);
  transform: translateX(-50%);
}

.spine-fill {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0%;
  background: var(--gold);
  transition: height 0.1s linear;
}

.spine-nodes {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.spine-node {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.node-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(201,162,39,0.3);
  border: 1px solid rgba(201,162,39,0.4);
  transition: all 0.3s var(--ease-lux);
  display: block;
}

.spine-node:hover .node-dot,
.spine-node.active .node-dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(201,162,39,0.6);
  transform: scale(1.4);
}

.spine-node::after {
  content: attr(data-label);
  position: absolute;
  left: 18px;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.3s var(--ease-lux);
  pointer-events: none;
}

.spine-node:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(5,10,7,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero-logo-wrap {
  margin-bottom: 32px;
}

.hero-logo-img {
  height: 80px;
  width: auto;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 0.5s;
}
.hero-logo-img[src] {
  opacity: 1;
}

.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201,162,39,0.7);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.92;
  color: var(--cream);
  margin-bottom: 12px;
  overflow: hidden;
}

.hero-line {
  display: block;
  font-size: clamp(4.5rem, 11vw, 10rem);
}

.hero-line-2 {
  font-size: clamp(3rem, 8vw, 7rem);
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(0.7rem, 1.5vw, 0.95rem);
  letter-spacing: 0.45em;
  color: rgba(250,247,242,0.5);
  margin-bottom: 20px;
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  color: rgba(250,247,242,0.75);
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}

.stat-n {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-l {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.45);
  margin-top: 6px;
  text-align: center;
  line-height: 1.5;
}

.stat-div {
  width: 1px;
  height: 40px;
  background: rgba(201,162,39,0.25);
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(201,162,39,0.5);
}

.scroll-line-wrap {
  width: 1px;
  height: 50px;
  background: rgba(201,162,39,0.15);
  overflow: hidden;
}

.scroll-line-inner {
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: translateY(-100%);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%   { transform: translateY(-100%); }
  50%  { transform: translateY(0%); }
  100% { transform: translateY(100%); }
}

/* Entrance animations */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   SECTION SHARED
═══════════════════════════════════════════ */
.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold-muted);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.section-title em {
  color: var(--green-mid);
  font-style: italic;
}

.section-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 640px;
  margin-bottom: 56px;
}

/* ═══════════════════════════════════════════
   MISSION
═══════════════════════════════════════════ */
#mission {
  background: var(--dark);
  padding: 140px 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-inner {
  max-width: 1100px;
  position: relative;
  z-index: 2;
}

.mission-label {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(201,162,39,0.5);
  margin-bottom: 32px;
}

.mission-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 0 18px;
}

.mw {
  display: inline-block;
  overflow: hidden;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.9s var(--ease-out);
}
.mw.visible { clip-path: inset(0 0 0% 0); }
.mw.gold { color: var(--gold); }

.mission-body {
  font-family: var(--font-accent);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.8;
  color: rgba(250,247,242,0.6);
  max-width: 680px;
  font-weight: 300;
}

.mission-mol {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  opacity: 0.15;
  pointer-events: none;
}

.mol-svg { width: 100%; height: 100%; }
.mol-ring {
  transform-origin: center;
  animation: molSpin 20s linear infinite;
}
@keyframes molSpin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════ */
#statsbar {
  background: var(--green);
  padding: 56px 80px;
}

.statsbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.sbar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 140px;
}

.sbar-n {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.sbar-l {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.55);
  text-align: center;
}

.sbar-div {
  width: 1px;
  height: 48px;
  background: rgba(201,162,39,0.2);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   FOUNDER
═══════════════════════════════════════════ */
#founder {
  background: var(--cream);
  padding: 140px 80px;
  position: relative;
}

.founder-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 100px;
  align-items: start;
}

.founder-photo-col { position: relative; }

.founder-photo-wrap {
  position: relative;
  width: 320px;
}

.founder-photo-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
  position: relative;
  z-index: 2;
  filter: contrast(1.05) saturate(0.9);
  display: block;
}

.founder-photo-border {
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  z-index: 1;
  opacity: 0.4;
}

.founder-photo-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(201,162,39,0.08) 0%, transparent 70%);
  z-index: 0;
}

.founder-name-card {
  margin-top: 28px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(201,162,39,0.25);
}
.founder-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
}
.founder-role {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-top: 4px;
}

.founder-text-col { padding-top: 12px; }

.founder-quote {
  margin: 24px 0 36px;
}

.fq-large {
  font-family: var(--font-accent);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--green);
  border-left: 3px solid var(--gold);
  padding-left: 24px;
}

.founder-body p {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.founder-body em { color: var(--green-mid); font-style: italic; }

.founder-sig {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  gap: 6px;
}
.sig-svg { width: 180px; }
.sig-img { width: 140px; height: auto; object-fit: contain; }
.founder-sig span {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold-muted);
}

/* ═══════════════════════════════════════════
   GLOBAL
═══════════════════════════════════════════ */
#global {
  background: var(--off-white);
  padding: 140px 80px;
}

.global-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.global-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.globe-card {
  background: var(--warm-white);
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: 6px;
  padding: 32px 24px;
  transition: transform 0.4s var(--ease-lux), box-shadow 0.4s var(--ease-lux),
              border-color 0.4s;
  opacity: 0;
  transform: translateY(30px);
}
.globe-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.globe-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(201,162,39,0.1);
  border-color: rgba(201,162,39,0.4);
}

.globe-icon { width: 40px; height: 40px; margin-bottom: 20px; }
.globe-region {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 8px;
}
.globe-loc {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.globe-desc {
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   PRODUCTS
═══════════════════════════════════════════ */
#products {
  background: var(--cream);
  padding: 140px 80px;
}

.products-inner { max-width: 1300px; margin: 0 auto; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.prod-card {
  background: var(--warm-white);
  border: 1px solid rgba(45,106,79,0.1);
  border-radius: 8px;
  padding: 36px 28px;
  transition: transform 0.4s var(--ease-lux), box-shadow 0.4s, border-color 0.4s;
  opacity: 0;
  transform: translateY(24px);
  position: relative;
  overflow: hidden;
}
.prod-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-lux);
}
.prod-card:hover::before { transform: scaleX(1); }
.prod-card.visible { opacity: 1; transform: translateY(0); }
.prod-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(27,67,50,0.1);
  border-color: rgba(201,162,39,0.3);
}

.prod-icon { width: 60px; height: 60px; margin-bottom: 20px; }
.prod-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.prod-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.prod-tag {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-muted);
  border-top: 1px solid rgba(201,162,39,0.15);
  padding-top: 14px;
}

/* ═══════════════════════════════════════════
   ACHIEVEMENTS
═══════════════════════════════════════════ */
#achievements {
  background: var(--green-dark);
  padding: 140px 80px;
  position: relative;
  overflow: hidden;
}
#achievements::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.ach-inner { max-width: 1200px; margin: 0 auto; }

.ach-hero-card {
  background: rgba(201,162,39,0.06);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 12px;
  padding: 60px;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s;
}
.ach-hero-card:hover { border-color: rgba(201,162,39,0.5); }

.ach-badge {
  background: var(--gold);
  color: var(--dark);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 3px;
  text-align: center;
  align-self: start;
  white-space: nowrap;
}

.ach-hero-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--cream);
  margin-bottom: 16px;
  font-weight: 600;
}
.ach-hero-content p {
  font-size: clamp(0.85rem, 1.4vw, 0.95rem);
  line-height: 1.85;
  color: rgba(250,247,242,0.6);
}
.ach-hero-content em { color: var(--gold-light); font-style: italic; }

.ach-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.ach-hero-tags span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,162,39,0.3);
  padding: 5px 12px;
  border-radius: 2px;
}

.ach-mol-bg {
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-50%);
  width: 300px; height: 300px;
  opacity: 0.15;
  pointer-events: none;
}
.ach-mol-svg {
  width: 100%; height: 100%;
  animation: molSpin 30s linear infinite;
}

.ach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.ach-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: 8px;
  padding: 36px;
  transition: transform 0.4s var(--ease-lux), border-color 0.4s;
}
.ach-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,162,39,0.35);
}
.ach-icon { font-size: 2rem; margin-bottom: 16px; }
.ach-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 12px;
  font-weight: 600;
}
.ach-card p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(250,247,242,0.55);
}

/* ═══════════════════════════════════════════
   MANUFACTURING
═══════════════════════════════════════════ */
#manufacturing {
  background: var(--off-white);
  padding: 140px 80px;
}

.mfg-inner { max-width: 1200px; margin: 0 auto; }

.mfg-network {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 60px auto;
}

.mfg-center-node {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 8px rgba(45,106,79,0.1), 0 0 0 16px rgba(45,106,79,0.05);
}

.mfg-center-inner { text-align: center; }
.mfg-center-n {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.mfg-center-l {
  display: block;
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.7);
  line-height: 1.4;
}

.mfg-pulse {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 1px solid rgba(45,106,79,0.5);
  animation: mfgPulse 3s ease-out infinite;
}
.mfg-pulse-2 { animation-delay: 1.5s; }
@keyframes mfgPulse {
  0%   { width: 100px; height: 100px; opacity: 0.6; }
  100% { width: 260px; height: 260px; opacity: 0; }
}

.mfg-spoke {
  position: absolute;
  top: 50%; left: 50%;
  width: 130px;
  height: 1px;
  background: linear-gradient(90deg, rgba(45,106,79,0.6), rgba(45,106,79,0.1));
  transform-origin: left center;
}
.mfg-spoke-1 { transform: rotate(0deg)   translateY(-0.5px); }
.mfg-spoke-2 { transform: rotate(60deg)  translateY(-0.5px); }
.mfg-spoke-3 { transform: rotate(120deg) translateY(-0.5px); }
.mfg-spoke-4 { transform: rotate(180deg) translateY(-0.5px); }
.mfg-spoke-5 { transform: rotate(240deg) translateY(-0.5px); }
.mfg-spoke-6 { transform: rotate(300deg) translateY(-0.5px); }

.mfg-node-outer {
  position: absolute;
  right: -8px; top: -8px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}

.mfg-partners {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.mfg-partner-card {
  border: 1px solid rgba(45,106,79,0.15);
  border-radius: 6px;
  padding: 24px 28px;
  background: var(--warm-white);
  transition: transform 0.3s var(--ease-lux), border-color 0.3s;
}
.mfg-partner-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,162,39,0.3);
}

.partner-tag {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 8px;
}
.partner-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.partner-cert {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--green-mid);
  text-transform: uppercase;
}

.mfg-partner-more {
  background: var(--gold-pale);
  border-color: rgba(201,162,39,0.25);
}
.mfg-partner-more .partner-name { color: var(--gold-muted); }

.mfg-footer-note {
  margin-top: 40px;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
  padding: 24px;
  border-top: 1px solid rgba(201,162,39,0.15);
}

/* ═══════════════════════════════════════════
   QUALITY
═══════════════════════════════════════════ */
#quality {
  background: var(--dark);
  padding: 140px 80px;
}

.quality-inner { max-width: 1200px; margin: 0 auto; }
#quality .section-title { color: var(--cream); }
#quality .section-sub { color: rgba(250,247,242,0.5); }

.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.qual-card {
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 8px;
  padding: 40px 32px;
  transition: transform 0.4s var(--ease-lux), border-color 0.4s, background 0.4s;
}
.qual-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,162,39,0.5);
  background: rgba(201,162,39,0.04);
}
.qual-card-gold { border-color: rgba(201,162,39,0.35); }

.qual-badge {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.qual-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--cream);
  margin-bottom: 14px;
  font-weight: 600;
}
.qual-card p {
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(250,247,242,0.5);
}

.quality-line {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 72px;
}
.ql-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,0.3), transparent);
}
.ql-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(0.9rem, 1.6vw, 1.15rem);
  color: rgba(201,162,39,0.7);
  text-align: center;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════
   RESEARCH
═══════════════════════════════════════════ */
#research {
  background: var(--cream);
  padding: 140px 80px;
}

.research-inner { max-width: 1200px; margin: 0 auto; }

.research-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.research-text .section-title { color: var(--green); }

.research-text p {
  font-size: clamp(0.85rem, 1.4vw, 0.95rem);
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.research-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.research-services span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-mid);
  border: 1px solid rgba(45,106,79,0.3);
  padding: 6px 14px;
  border-radius: 2px;
}

.research-svg { width: 100%; max-width: 300px; margin: 0 auto; display: block; }
.research-ring-1 { animation: molSpin 25s linear infinite; transform-origin: 140px 140px; }
.research-ring-2 { animation: molSpin 18s linear infinite reverse; transform-origin: 140px 140px; }

.research-partner-name {
  text-align: center;
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.research-partner-name strong { color: var(--green-mid); }

/* ═══════════════════════════════════════════
   FAQs
═══════════════════════════════════════════ */
#faqs {
  background: var(--off-white);
  padding: 140px 80px;
}

.faq-inner {
  max-width: 860px;
  margin: 0 auto;
}

.faq-list { margin-top: 20px; }

.faq-item {
  border-bottom: 1px solid rgba(27,67,50,0.1);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.3s;
}
.faq-q:hover { color: var(--green-mid); }

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold-muted);
  transition: transform 0.4s var(--ease-lux), background 0.3s, border-color 0.3s, color 0.3s;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-lux);
}
.faq-item.open .faq-a { max-height: 400px; }

.faq-a p {
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  line-height: 1.85;
  color: var(--text-mid);
  padding-bottom: 28px;
}
.faq-a a { color: var(--green-mid); text-decoration: underline; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
#footer {
  background: var(--dark);
  padding: 80px 80px 0;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(201,162,39,0.1);
}

.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 20px;
  opacity: 0.85;
}

.footer-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(250,247,242,0.4);
  margin-bottom: 24px;
}

.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: rgba(201,162,39,0.6);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--dark);
  background: var(--gold);
}

.footer-col-title {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 24px;
}

.footer-office {
  margin-bottom: 20px;
}
.fo-region {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,162,39,0.5);
  margin-bottom: 4px;
}
.fo-addr {
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(250,247,242,0.45);
}

.footer-products ul li {
  font-size: 0.82rem;
  line-height: 1;
  color: rgba(250,247,242,0.35);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.3s;
}
.footer-products ul li:hover { color: rgba(201,162,39,0.7); }

.footer-contact p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(250,247,242,0.4);
  margin-bottom: 24px;
}

.footer-cta {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid rgba(201,162,39,0.5);
  border-radius: 2px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.footer-cta:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.footer-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-certs span {
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-light);
  border: 1px solid rgba(116,198,157,0.2);
  padding: 4px 8px;
  border-radius: 2px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.7rem;
  color: rgba(250,247,242,0.2);
  letter-spacing: 0.08em;
  flex-wrap: wrap;
  gap: 12px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  #nav       { padding: 16px 32px; }
  .nav-links { gap: 24px; }
  .founder-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .founder-photo-wrap {
    width: 240px;
    margin: 0 auto;
  }
  .founder-photo-wrap img { height: 320px; }
  .research-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }
  #scrollSpine { display: none; }

  #mission, #global, #products, #achievements, #manufacturing,
  #quality, #research, #faqs, #founder, #statsbar, #footer {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .mission-headline { font-size: clamp(2rem, 8vw, 3.5rem); }
  .ach-hero-card { grid-template-columns: 1fr; gap: 20px; padding: 32px; }
  .ach-mol-bg { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .quality-line { flex-direction: column; }
  .ql-quote { white-space: normal; }
  .statsbar-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .sbar-div { width: 40px; height: 1px; }
  .hero-stats { gap: 0; flex-wrap: wrap; }
  .hero-stat { padding: 0 16px; }
}
