/* ═══════════════════════════════════════
   KONKUWAN HERBS — DESIGN SYSTEM v3
   Aesthetic: Refined organic. Patagonia × Ayala Serfaty.
═══════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --forest:     #162F22;
  --forest-mid: #2B5240;
  --sage:       #4A7860;
  --leaf:       #6A9E7A;
  --earth:      #B8844A;
  --cream:      #F4EFE6;
  --cream-dark: #EAE3D6;
  --white:      #FFFFFF;
  --ink:        #0F1A13;
  --muted:      #6B7B6E;
  --border:     #D8D0C4;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:  3px;
  --radius:     6px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w:      1100px;
  --section-pad: 110px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ── BASE ── */
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--white);
  font-weight: 300;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--forest);
}
h4 {
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0;
  color: var(--forest);
  line-height: 1.3;
}
h1 { font-size: clamp(40px, 6vw, 72px); }
h2 { font-size: clamp(30px, 4vw, 52px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
}

p { color: #3D4F42; line-height: 1.8; }
p + p { margin-top: 1em; }

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}
section { padding: var(--section-pad) 0; }
.section-alt { background: var(--cream); }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(244, 239, 230, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(216, 208, 196, 0.5);
  transition: background var(--transition), border-color var(--transition);
}
nav.scrolled {
  background: rgba(22, 47, 34, 0.97);
  border-bottom-color: rgba(255,255,255,0.08);
}
nav.scrolled .nav-logo-text { color: var(--white); }
nav.scrolled .nav-logo-sub  { color: rgba(255,255,255,0.45); }
nav.scrolled .nav-links a   { color: rgba(255,255,255,0.82); }
nav.scrolled .nav-links a:hover, nav.scrolled .nav-links a.active { color: var(--white); }
nav.scrolled .nav-cta {
  background: rgba(255,255,255,0.12);
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,0.25);
}
nav.scrolled .nav-cta:hover { background: rgba(255,255,255,0.2); }
nav.scrolled .hamburger span { background: var(--white); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-logo svg { width: 32px; height: 32px; flex-shrink: 0; }
.nav-logo img { height: 40px; width: auto; display: block; flex-shrink: 0; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: -0.01em;
  line-height: 1;
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--sage);
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.01em;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--sage);
  transition: width var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--forest); font-weight: 500; }

.nav-cta {
  background: var(--forest);
  color: var(--white) !important;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--forest-mid); }

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--forest);
  padding: 32px 40px 48px;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 28px; margin-bottom: 36px; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 30px;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  letter-spacing: -0.01em;
  display: block;
}
.mobile-cta {
  display: inline-block;
  background: var(--white);
  color: var(--forest) !important;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.06);
  transition: transform 10s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 18, 10, 0.72) 0%,
    rgba(5, 18, 10, 0.45) 35%,
    rgba(5, 18, 10, 0.60) 65%,
    rgba(5, 18, 10, 0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 40px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
  margin-bottom: 28px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: rgba(255,255,255,0.55);
}
.hero h1 {
  font-size: clamp(44px, 7vw, 82px);
  color: var(--white);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin-bottom: 28px;
  font-style: italic;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5), 0 1px 8px rgba(0,0,0,0.4);
}
.hero h1 strong {
  font-style: normal;
  font-weight: 600;
  color: #C8D9B0;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.72;
  font-weight: 300;
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 44px;
  background: rgba(255,255,255,0.28);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.28; transform: scaleY(1); }
  50%       { opacity: 0.75; transform: scaleY(0.55); }
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--white);
  color: var(--forest);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--transition);
  display: inline-block;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--cream); }
.btn-primary.dark {
  background: var(--forest);
  color: var(--white);
}
.btn-primary.dark:hover { background: var(--forest-mid); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.38);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: var(--transition);
  display: inline-block;
  font-family: var(--font-body);
  cursor: pointer;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.07);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--sage);
  border-bottom: 1px solid var(--leaf);
  padding-bottom: 2px;
  transition: var(--transition);
}
.btn-text:hover { color: var(--forest); border-color: var(--forest); gap: 14px; }

.submit-btn {
  background: var(--forest);
  color: var(--white);
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
  width: 100%;
}
.submit-btn:hover { background: var(--forest-mid); }

/* ── STATS STRIP ── */
.stats-strip {
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 52px 40px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 500;
  color: var(--forest);
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
}
.stat-suffix { font-size: 40px; color: var(--sage); font-family: var(--font-display); }
.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.4;
  font-weight: 300;
}

/* ── WHY SPLIT ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
  order: 2;
}
.why-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.why-image:hover img { transform: scale(1.04); }
.why-image-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--forest);
  font-weight: 500;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.why-content { order: 1; }
.why-content p { font-size: 17px; margin-bottom: 20px; }

/* ── PRODUCT CARDS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.product-card {
  background: var(--white);
  overflow: hidden;
  transition: background var(--transition);
  cursor: pointer;
}
.product-card:hover { background: var(--cream); }
.product-card.hidden { display: none; }
.product-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--cream-dark);
}
.product-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.06); }
.product-card-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  color: var(--sage);
}
.product-card-body { padding: 28px 28px 32px; }
.product-botanical {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 6px;
  font-family: var(--font-display);
}
.product-card-body h3 { font-size: 22px; margin-bottom: 8px; color: var(--forest); }
.product-form { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.product-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 22px; }
.tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 2px;
  background: var(--cream-dark);
  color: var(--forest-mid);
  font-weight: 500;
  letter-spacing: 0.03em;
}
.tag-available { background: #EAF4ED; color: #2B6B42; }
.product-cta {
  font-size: 13px;
  color: var(--sage);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.product-card:hover .product-cta { color: var(--forest); gap: 10px; }

/* ── FILTER BAR ── */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 9px 20px;
  font-size: 13px;
  border-radius: 2px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font-family: var(--font-body);
  transition: var(--transition);
  font-weight: 400;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

/* ── RECOGNITION ── */
.recognition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 48px;
}
.recognition-item {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background var(--transition);
}
.recognition-item:hover { background: var(--cream); }
.recognition-item:nth-child(4n) { border-right: none; }
.recognition-item:nth-last-child(-n+4) { border-bottom: none; }
.recognition-name { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--forest); margin-bottom: 8px; }
.recognition-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--forest);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before { content: ''; position: absolute; top: -80px; right: -80px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,0.03); pointer-events: none; }
.cta-banner::after  { content: ''; position: absolute; bottom: -100px; left: -60px; width: 440px; height: 440px; border-radius: 50%; background: rgba(255,255,255,0.025); pointer-events: none; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-banner p  { color: rgba(255,255,255,0.62); max-width: 480px; margin: 0 auto 36px; position: relative; z-index: 1; }

/* ── FOOTER ── */
footer {
  background: #0A110C;
  color: rgba(255,255,255,0.5);
  padding: 72px 0 40px;
}
footer .nav-logo svg { filter: brightness(0) invert(1); opacity: 0.55; }
footer .nav-logo img { filter: brightness(0) invert(1); opacity: 0.9; height: 36px; }
footer .nav-logo-text { color: rgba(255,255,255,0.88); }
footer .nav-logo-sub  { color: rgba(255,255,255,0.35); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 14px; max-width: 280px; margin-top: 20px; line-height: 1.7; color: rgba(255,255,255,0.35); }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: 13px; color: rgba(255,255,255,0.28); margin-top: 16px; line-height: 1.6; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.22);
}
.footer-tagline { font-family: var(--font-display); font-style: italic; font-size: 15px; color: rgba(255,255,255,0.25); }

/* ── PAGE HERO ── */
.page-hero {
  padding: 152px 0 80px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { max-width: 720px; }
.page-hero p { font-size: 19px; max-width: 600px; color: var(--muted); margin-top: 20px; font-weight: 300; }

/* ── SUPPLY PAGE ── */
.process-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.process-step:last-child { border-bottom: none; }
.step-number { font-family: var(--font-display); font-size: 52px; font-weight: 500; color: var(--cream-dark); line-height: 1; letter-spacing: -0.03em; padding-top: 4px; }
.step-content h3 { margin-bottom: 10px; }
.step-content p { font-size: 16px; }

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}
.quality-card { background: var(--white); padding: 40px; transition: background var(--transition); }
.quality-card:hover { background: var(--cream); }
.quality-card h4 { font-size: 17px; margin-bottom: 12px; }
.quality-card p { font-size: 15px; color: var(--muted); }

.capacity-table { width: 100%; border-collapse: collapse; margin-top: 40px; }
.capacity-table th {
  text-align: left;
  padding: 14px 20px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  border-bottom: 2px solid var(--border);
  background: var(--cream);
  font-family: var(--font-body);
}
.capacity-table td { padding: 18px 20px; border-bottom: 1px solid var(--border); font-size: 15px; }
.capacity-table tr:last-child td { border-bottom: none; }
.capacity-table td:first-child { font-weight: 500; color: var(--forest); }
.cap-note { font-size: 14px; color: var(--muted); margin-top: 20px; font-style: italic; }

/* ── IMPACT PAGE ── */
.impact-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  background: var(--border);
}
.impact-stat { background: var(--forest); padding: 52px 32px; text-align: center; }
.impact-stat .stat-number { color: var(--white); font-size: 60px; }
.impact-stat .stat-suffix { color: rgba(255,255,255,0.55); }
.impact-stat .stat-label  { color: rgba(255,255,255,0.52); }

.states-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}
.state-card { background: var(--white); padding: 32px; transition: background var(--transition); }
.state-card:hover { background: var(--cream); }
.state-name { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--forest); margin-bottom: 6px; }
.state-crops { font-size: 14px; color: var(--sage); margin-bottom: 10px; font-weight: 400; }
.state-desc { font-size: 13px; color: var(--muted); border-top: 1px solid var(--border); padding-top: 12px; margin-top: 10px; }

.tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}
.tile-card { background: var(--white); padding: 40px; transition: background var(--transition); }
.tile-card:hover { background: var(--cream); }
.tile-card h4 { margin-bottom: 12px; }
.tile-card p { font-size: 15px; color: var(--muted); }

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 28px; margin-top: 48px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 6px; bottom: 6px; width: 1px; background: var(--border); }
.timeline-item { position: relative; padding: 0 0 40px 32px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; left: -5px; top: 6px; width: 10px; height: 10px; border-radius: 50%; background: var(--sage); border: 2px solid var(--white); box-shadow: 0 0 0 1px var(--sage); }
.timeline-year { font-size: 11px; letter-spacing: 0.15em; font-weight: 500; color: var(--sage); text-transform: uppercase; margin-bottom: 6px; font-family: var(--font-body); }
.timeline-text { font-size: 16px; color: var(--ink); font-weight: 300; }

/* ── PARTNERS PAGE ── */
.partner-type { display: inline-block; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; color: var(--sage); margin-bottom: 8px; font-family: var(--font-body); }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}
.partner-card { background: var(--white); padding: 40px; transition: background var(--transition); }
.partner-card:hover { background: var(--cream); }
.partner-card h4 { font-size: 18px; color: var(--forest); margin-bottom: 10px; }
.partner-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── ABOUT PAGE ── */
.about-story-section { padding: var(--section-pad) 0; background: var(--forest); position: relative; overflow: hidden; }
.about-story-section::after { content: ''; position: absolute; right: -100px; top: -100px; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,0.025); pointer-events: none; }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-story-image { position: relative; aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; }
.about-story-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-story-content h2 { color: var(--white); }
.about-story-content .eyebrow { color: var(--leaf); }
.about-story-content p { color: rgba(255,255,255,0.68); margin-bottom: 20px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}
.team-card { background: var(--white); padding: 40px; text-align: center; transition: background var(--transition); }
.team-card:hover { background: var(--cream); }
.avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--forest) 0%, var(--sage) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
}
.avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-name { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--forest); margin-bottom: 4px; }
.team-title { font-size: 12px; color: var(--sage); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; font-weight: 500; }
.team-bio { font-size: 14px; color: var(--muted); line-height: 1.65; }

.advisors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}
.advisor-card { background: var(--white); padding: 36px 40px; transition: background var(--transition); }
.advisor-card:hover { background: var(--cream); }
.advisor-card strong { font-size: 18px; color: var(--forest); font-weight: 600; display: block; margin-bottom: 8px; }
.advisor-card p { font-size: 14px; color: var(--muted); }

.facts-grid { border: 1px solid var(--border); margin-top: 48px; }
.fact-row { display: grid; grid-template-columns: 220px 1fr; border-bottom: 1px solid var(--border); }
.fact-row:last-child { border-bottom: none; }
.fact-row dt { padding: 18px 24px; font-size: 13px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; background: var(--cream); border-right: 1px solid var(--border); }
.fact-row dd { padding: 18px 24px; font-size: 15px; color: var(--forest); }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}
.contact-panel { background: var(--white); padding: 56px 48px; }
.contact-panel.panel-dark { background: var(--forest); }
.contact-panel.panel-dark h3, .contact-panel.panel-dark h4 { color: var(--white); }
.contact-panel.panel-dark .eyebrow { color: var(--leaf); }
.contact-panel.panel-dark label { color: rgba(255,255,255,0.6); }
.contact-panel.panel-dark p { color: rgba(255,255,255,0.55); }
.contact-panel.panel-dark input,
.contact-panel.panel-dark textarea,
.contact-panel.panel-dark select { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: var(--white); }
.contact-panel.panel-dark input::placeholder,
.contact-panel.panel-dark textarea::placeholder { color: rgba(255,255,255,0.3); }
.contact-panel.panel-dark .submit-btn { background: var(--white); color: var(--forest); }
.contact-panel.panel-dark .submit-btn:hover { background: var(--cream); }
.contact-panel h3 { margin-bottom: 8px; }
.contact-panel > p { margin-bottom: 32px; }

.form-group { margin-bottom: 22px; }
label { display: block; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; font-family: var(--font-body); }
input, textarea, select { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 15px; color: var(--ink); background: var(--white); transition: border-color var(--transition); outline: none; appearance: none; }
input:focus, textarea:focus, select:focus { border-color: var(--sage); }
textarea { min-height: 120px; resize: vertical; }

.contact-info-block { margin-top: 40px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.12); }
.contact-info-row { display: flex; gap: 12px; margin-bottom: 14px; font-size: 14px; align-items: flex-start; color: rgba(255,255,255,0.7); }
.contact-info-label { font-size: 11px; color: var(--leaf); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; width: 72px; flex-shrink: 0; padding-top: 2px; }
.contact-info-row a { color: rgba(255,255,255,0.7); }
.contact-info-row a:hover { color: var(--white); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── ACCESSIBILITY ── */
.skip-link { position: absolute; top: -100px; left: 20px; background: var(--forest); color: var(--white); padding: 8px 16px; border-radius: var(--radius-sm); z-index: 9999; font-size: 14px; transition: top 0.2s; }
.skip-link:focus { top: 10px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  :root { --section-pad: 88px; }
  .container { padding: 0 28px; }
  nav { padding: 0 28px; }
  .why-grid { gap: 48px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .recognition-grid { grid-template-columns: repeat(2, 1fr); }
  .recognition-item:nth-child(2n) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  .container { padding: 0 20px; }
  nav { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero h1 { font-size: 38px; }
  .hero-sub { font-size: 15px; }
  .hero-ctas { flex-direction: column; align-items: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 32px 20px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
  .stat-number { font-size: 44px; }

  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-image { aspect-ratio: 3/2; order: 1; }
  .why-content { order: 2; }

  .products-grid { grid-template-columns: 1fr; }
  .recognition-grid { grid-template-columns: 1fr; }
  .recognition-item { border-right: none !important; }
  .recognition-item:nth-last-child(-n+4) { border-bottom: 1px solid var(--border); }
  .recognition-item:last-child { border-bottom: none; }

  .impact-stats { grid-template-columns: repeat(2, 1fr); }
  .states-grid, .tiles-grid, .partners-grid { grid-template-columns: 1fr; }
  .quality-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-panel { padding: 40px 24px; }

  .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-story-image { aspect-ratio: 4/3; }
  .team-grid, .advisors-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .process-step { grid-template-columns: 1fr; gap: 16px; }
  .step-number { font-size: 36px; }

  .fact-row { grid-template-columns: 1fr; }
  .fact-row dt { border-right: none; border-bottom: 1px solid var(--border); }

  .page-hero { padding: 120px 0 60px; }
  .about-story-section { padding: var(--section-pad) 0; }
}
