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

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--soil);
  color: var(--cream);
  padding: 10px 20px;
  font-family: 'DM Mono', monospace;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ── FOCUS VISIBLE ── */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--moss);
  outline-offset: 3px;
  border-radius: 2px;
}
/* Higher contrast focus for dark backgrounds */
.hero-right :focus-visible,
.lab-sec :focus-visible,
.founder-sec :focus-visible,
footer :focus-visible {
  outline-color: var(--wheat);
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .reveal.on { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}


:root {
  --soil: #1a1208;
  --bark: #3d2b14;
  --clay: #7a4f2a;
  --ochre: #b07642;
  --wheat: #d4a96a;
  --cream: #f5edd8;
  --off-white: #faf7f0;
  --moss: #4a5e38;
  --sage: #7a9160;
  --leaf: #9eb87a;
  --text-primary: #1a1208;
  --text-secondary: #5c4a2e;
  --text-muted: #9a7d5a;
  --border: rgba(58,42,20,0.12);
  --border-strong: rgba(58,42,20,0.25);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Instrument Sans', sans-serif;
  background: var(--off-white);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 1rem;
}

/* ── CONTAINER ── */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250,247,240,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 64px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--soil);
  text-decoration: none;
  letter-spacing: 0.01em;
  user-select: none;
}
.nav-logo span { color: var(--moss); }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}
.nav-links li a {
  font-family: 'DM Mono', monospace;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.nav-links li a:hover,
.nav-links li a.active { color: var(--soil); }
.nav-cta {
  background: var(--soil) !important;
  color: var(--cream) !important;
  padding: 8px 18px !important;
  border-radius: 2px;
}
.nav-cta:hover { background: var(--moss) !important; color: var(--cream) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span { width: 22px; height: 1.5px; background: var(--soil); display: block; }

/* ── PAGE OFFSET ── */
.page-offset { padding-top: 64px; min-height: 100vh; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.anim { animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) forwards; opacity: 0; }
.d1 { animation-delay: 0.05s; }
.d2 { animation-delay: 0.18s; }
.d3 { animation-delay: 0.32s; }
.d4 { animation-delay: 0.46s; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.on { opacity: 1; transform: none; }
.rd1 { transition-delay: 0.1s; }
.rd2 { transition-delay: 0.2s; }
.rd3 { transition-delay: 0.3s; }
.rd4 { transition-delay: 0.4s; }

/* ── SHARED ── */
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::after { content: ''; width: 36px; height: 1px; background: var(--clay); flex-shrink: 0; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 3.8vw, 3.5rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--soil);
  margin-bottom: 48px;
}
.section-title em { font-style: italic; color: var(--moss); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--soil);
  color: var(--cream);
  padding: 13px 28px;
  border: none;
  border-radius: 2px;
  font-family: 'DM Mono', monospace;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--moss); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--soil);
  padding: 13px 28px;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  font-family: 'DM Mono', monospace;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.btn-secondary:hover { border-color: var(--clay); background: rgba(122,79,42,0.04); }

/* ════════════════════
   HOME – HERO
════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: calc(100vh - 64px);
}
.hero-left-wrap {
  background: var(--off-white);
  display: flex;
  justify-content: flex-end;
}
.hero-left {
  width: 100%;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px 80px 48px;
}
.hero-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-tag::before { content: ''; width: 28px; height: 1px; background: var(--moss); }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 500;
  line-height: 1.0;
  color: var(--soil);
}
.hero-title em { font-style: italic; color: var(--moss); }
.hero-divider {
  width: 44px; height: 1px;
  background: var(--ochre);
  margin: 22px 0;
  transform-origin: left;
  animation: lineGrow 0.9s 0.5s cubic-bezier(0.16,1,0.3,1) forwards;
  transform: scaleX(0);
}
.hero-body {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.78;
  margin-bottom: 40px;
  max-width: 400px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-right {
  background-color: var(--soil);
  background-image: linear-gradient(rgba(26,18,8,0.72), rgba(26,18,8,0.82)), url('../images/hero.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-svg {
  width: 58%;
  max-width: 320px;
  animation: float 7s ease-in-out infinite;
}
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  gap: 40px;
  padding: 22px 40px;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--wheat);
  display: block;
  line-height: 1;
}
.stat-lbl {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(212,169,106,0.45);
  margin-top: 4px;
}

/* ════════════════════
   HOME – CHALLENGE
════════════════════ */
.section-challenge {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}
.section-challenge::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--ochre), transparent);
}
.challenge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 52px;
}
.challenge-intro { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.82; }
.challenge-intro p + p { margin-top: 16px; }
.challenge-points { border: 1px solid var(--border); }
.challenge-point {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 18px;
  transition: background 0.2s;
}
.challenge-point:last-child { border-bottom: none; }
.challenge-point:hover { background: rgba(122,79,42,0.04); }
.c-num { font-family: 'DM Mono', monospace; font-size: 0.75rem; color: var(--text-muted); padding-top: 2px; flex-shrink: 0; }
.c-txt { font-size: 1rem; color: var(--text-secondary); line-height: 1.6; }
.challenge-closing {
  background: var(--soil);
  padding: 36px 44px;
  display: flex;
  gap: 28px;
  align-items: center;
}
.closing-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--wheat);
  line-height: 1;
  flex-shrink: 0;
  font-style: italic;
}
.closing-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--cream);
}
.closing-text strong { font-style: normal; font-weight: 600; color: var(--wheat); }

/* ════════════════════
   HOME – WHAT WE DO
════════════════════ */
.section-what { padding: 100px 0; background: var(--off-white); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.card {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--moss);
  transition: height 0.35s cubic-bezier(0.16,1,0.3,1);
}
.card:hover { background: var(--cream); border-color: rgba(74,94,56,0.25); }
.card:hover::before { height: 100%; }
.card-num { font-family: 'DM Mono', monospace; font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.1em; margin-bottom: 20px; }
.card-icon { width: 36px; height: 36px; margin-bottom: 16px; }
.card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.65rem; font-weight: 600; color: var(--soil); margin-bottom: 12px; line-height: 1.2; }
.card-body { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }
.card-link { font-family: 'DM Mono', monospace; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--moss); display: flex; align-items: center; gap: 6px; }
.card-link::after { content: '→'; transition: transform 0.2s; }
.card:hover .card-link::after { transform: translateX(4px); }
.cta-center { text-align: center; }

/* ════════════════════
   WHAT WE DO PAGE
════════════════════ */
.page-hdr {
  background: var(--soil);
  padding: 80px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hdr::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 48px;
  background: var(--off-white);
  clip-path: ellipse(52% 100% at 50% 100%);
}
.page-hdr-label { font-family: 'DM Mono', monospace; font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(212,169,106,0.6); margin-bottom: 16px; }
.page-hdr-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3.2rem, 5.5vw, 5rem); font-weight: 600; color: var(--cream); line-height: 1.05; }
.page-hdr-title em { font-style: italic; color: var(--wheat); }
.page-hdr-sub { font-size: 1.05rem; color: rgba(245,237,216,0.6); max-width: 480px; margin-top: 18px; line-height: 1.7; }

.work-sec { padding: 80px 0; border-bottom: 1px solid var(--border); }
.work-sec:nth-child(even) { background: var(--cream); }
.work-inner { display: grid; grid-template-columns: 260px 1fr; gap: 72px; align-items: start; }
.work-num { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; color: rgba(26,18,8,0.07); line-height: 1; margin-bottom: 12px; }
.work-label { font-family: 'DM Mono', monospace; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--moss); margin-bottom: 14px; }
.work-title { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 600; color: var(--soil); line-height: 1.2; }
.work-body { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.82; margin-bottom: 28px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-family: 'DM Mono', monospace; font-size: 0.75rem; letter-spacing: 0.07em; padding: 6px 13px; border: 1px solid var(--border-strong); color: var(--text-secondary); }

/* Lab */
.lab-sec {
  padding: 100px 0;
  background-color: var(--soil);
  background-image: linear-gradient(rgba(26,18,8,0.78), rgba(26,18,8,0.85)), url('../images/living-lab.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.lab-sec::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(74,94,56,0.22) 0%, transparent 65%);
  pointer-events: none;
}
.lab-sec .section-label { color: var(--wheat); }
.lab-sec .section-label::after { background: var(--wheat); }
.lab-sec .section-title { color: var(--cream); max-width: 540px; }
.lab-sec .section-title em { color: var(--wheat); }
.lab-inner { position: relative; z-index: 1; }
.lab-desc { font-size: 1.05rem; color: rgba(245,237,216,0.6); max-width: 500px; line-height: 1.8; margin-top: -24px; margin-bottom: 48px; }
.lab-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; margin-bottom: 48px; }
.lab-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 28px 20px; transition: background 0.25s; }
.lab-item:hover { background: rgba(255,255,255,0.08); }
.lab-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--sage); margin-bottom: 16px; }
.lab-text { font-size: 1rem; color: rgba(245,237,216,0.7); line-height: 1.6; }
.lab-note { border: 1px solid rgba(255,255,255,0.1); padding: 28px 36px; max-width: 580px; }
.lab-note p { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-style: italic; color: rgba(245,237,216,0.55); line-height: 1.7; }

/* Partners */
.partner-sec { padding: 100px 0; background: var(--off-white); }
.partner-intro { font-size: 1.05rem; color: var(--text-secondary); max-width: 500px; line-height: 1.8; margin-top: -24px; margin-bottom: 48px; }
.partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 60px; }
.p-card { background: var(--off-white); border: 1px solid var(--border); padding: 36px; transition: background 0.2s; }
.p-card:hover { background: var(--cream); }
.p-icon { width: 28px; height: 28px; margin-bottom: 18px; color: var(--moss); }
.p-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--soil); margin-bottom: 10px; }
.p-body { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; }
.partner-cta { background: var(--cream); border: 1px solid var(--border); padding: 52px 60px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.partner-cta-text { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; font-weight: 500; color: var(--soil); line-height: 1.2; max-width: 440px; }
.partner-cta-text em { font-style: italic; color: var(--moss); }

/* ════════════════════
   ABOUT PAGE
════════════════════ */
.about-story { padding: 80px 0; background: var(--cream); border-bottom: 1px solid var(--border); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 3.8vw, 3.2rem); font-weight: 600; color: var(--soil); line-height: 1.1; margin-bottom: 28px; }
.about-title em { font-style: italic; color: var(--moss); }
.about-body { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.84; }
.about-body p + p { margin-top: 16px; }
.quote-block { background: var(--soil); padding: 48px 44px; }
.quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 4.5rem; color: var(--wheat); line-height: 0.8; display: block; margin-bottom: 14px; }
.quote-text { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-style: italic; color: var(--cream); margin-bottom: 24px; line-height: 1.6; }
.quote-attr { font-family: 'DM Mono', monospace; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(212,169,106,0.5); }

.why-sec { padding: 100px 0; background: var(--off-white); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.why-body { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.84; }
.why-body p + p { margin-top: 20px; }
.why-visual { background: var(--cream); border: 1px solid var(--border); padding: 44px; text-align: center; position: sticky; top: 88px; }
.why-svg { width: 100%; max-width: 230px; margin-bottom: 20px; }
.why-caption { font-family: 'Cormorant Garamond', serif; font-size: 0.92rem; font-style: italic; color: var(--text-muted); line-height: 1.5; }

.approach-sec { padding: 100px 0; background: var(--cream); }
.approach-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.step { background: var(--cream); border: 1px solid var(--border); padding: 40px 32px; position: relative; overflow: hidden; }
.step::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--moss), var(--sage)); transform: scaleX(0); transform-origin: left; transition: transform 0.35s cubic-bezier(0.16,1,0.3,1); }
.step:hover::after { transform: scaleX(1); }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: rgba(26,18,8,0.06); line-height: 1; margin-bottom: 16px; }
.step-verb { font-family: 'Cormorant Garamond', serif; font-size: 1.65rem; font-weight: 600; color: var(--soil); margin-bottom: 10px; }
.step-body { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; }

.founder-sec { padding: 100px 0; background: var(--soil); }
.founder-inner { display: grid; grid-template-columns: 280px 1fr; gap: 72px; align-items: start; }
.founder-photo { background: var(--bark); aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.founder-initial { font-family: 'Cormorant Garamond', serif; font-size: 5rem; color: rgba(212,169,106,0.22); font-style: italic; }
.founder-photo-lbl { position: absolute; bottom: 14px; left: 0; right: 0; text-align: center; font-family: 'DM Mono', monospace; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(212,169,106,0.38); }
.founder-sec .section-label { color: var(--wheat); }
.founder-sec .section-label::after { background: var(--wheat); }
.founder-name { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 600; color: var(--cream); line-height: 1.1; margin-bottom: 6px; }
.founder-role { font-family: 'DM Mono', monospace; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(212,169,106,0.58); margin-bottom: 28px; }
.founder-bio { font-size: 1.05rem; color: rgba(245,237,216,0.7); line-height: 1.84; }
.founder-bio p + p { margin-top: 16px; }

.vision-sec { padding: 100px 0; background: var(--off-white); }
.vision-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.vision-text { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 500; font-style: italic; line-height: 1.45; color: var(--soil); }
.vision-text strong { font-style: normal; font-weight: 600; color: var(--moss); }

/* ════════════════════
   CONTACT PAGE
════════════════════ */
.contact-sec { padding: 100px 0; background: var(--off-white); min-height: calc(100vh - 64px); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-intro { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.8; max-width: 400px; margin-bottom: 48px; }
.contact-details { border: 1px solid var(--border); margin-bottom: 0; }
.c-detail { padding: 18px 22px; border-bottom: 1px solid var(--border); display: flex; gap: 16px; align-items: center; }
.c-detail:last-child { border-bottom: none; }
.c-detail svg { width: 15px; height: 15px; color: var(--moss); flex-shrink: 0; }
.c-detail-lbl { font-family: 'DM Mono', monospace; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; }
.c-detail-val { font-size: 1rem; color: var(--text-secondary); }
.contact-illustration { border: 1px solid var(--border); overflow: hidden; }
.contact-illustration svg { display: block; width: 100%; height: auto; }
.form-wrap { background: var(--cream); border: 1px solid var(--border); padding: 44px; }
.form-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--soil); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grp { margin-bottom: 20px; }
.form-lbl { font-family: 'DM Mono', monospace; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 7px; display: block; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 11px 14px;
  background: var(--off-white);
  border: 1px solid var(--border-strong);
  border-radius: 1px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--moss); }
.form-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

/* ── FOOTER ── */
footer { background: var(--soil); padding: 72px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 28px; }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600; color: var(--cream); margin-bottom: 10px; }
.footer-brand span { color: var(--sage); }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-style: italic; color: rgba(245,237,216,0.38); line-height: 1.5; }
.footer-col-title { font-family: 'DM Mono', monospace; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(212,169,106,0.42); margin-bottom: 18px; }
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-nav a { font-size: 1rem; color: rgba(245,237,216,0.55); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--cream); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-family: 'DM Mono', monospace; font-size: 0.72rem; letter-spacing: 0.08em; color: rgba(245,237,216,0.26); }
.footer-loc { font-family: 'DM Mono', monospace; font-size: 0.72rem; letter-spacing: 0.08em; color: rgba(245,237,216,0.26); }
.footer-loc::before { content: '◎ '; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .wrap, .nav-inner { padding-left: 32px; padding-right: 32px; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left-wrap { justify-content: flex-start; }
  .hero-left { max-width: 100%; padding: 64px 32px; }
  .challenge-grid, .about-inner, .why-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .work-inner, .founder-inner { grid-template-columns: 1fr; gap: 32px; }
  .cards-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .approach-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .lab-grid { grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
  .partner-grid { grid-template-columns: 1fr; gap: 16px; }
  .partner-cta { flex-direction: column; padding: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .wrap, .nav-inner { padding-left: 20px; padding-right: 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: var(--off-white); padding: 24px 20px;
    border-bottom: 1px solid var(--border);
    gap: 20px; z-index: 999;
  }
  .nav-toggle { display: flex; }
  .cards-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .lab-grid { grid-template-columns: 1fr 1fr; }
  .hero-left { padding: 48px 20px; }
}
