:root {
  --bone: #F5F0E8;
  --cream: #EDE7DB;
  --warm-white: #FAF8F4;
  --charcoal: #2A2520;
  --dark: #1A1714;
  --rust: #B8652A;
  --rust-light: #D4874A;
  --sage: #7A8B6F;
  --stone: #8C8378;
  --stone-light: #B5ADA5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 40px;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.5s ease;
}
nav::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 150px;
  background: linear-gradient(to bottom, rgba(26, 23, 20, 0.85) 0%, rgba(26, 23, 20, 0.5) 45%, rgba(26, 23, 20, 0) 100%);
  z-index: -1; pointer-events: none;
  transition: opacity 0.5s ease;
}
nav.scrolled {
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 16px 40px;
  box-shadow: 0 1px 0 rgba(42, 37, 32, 0.08);
}
nav.scrolled::before { opacity: 0; }
.nav-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; letter-spacing: 4px;
  color: var(--bone); text-decoration: none; transition: color 0.5s;
}
nav.scrolled .nav-mark { color: var(--charcoal); }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--bone);
  text-decoration: none; position: relative; transition: color 0.5s;
}
nav.scrolled .nav-links a { color: var(--charcoal); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--rust);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--rust-light) !important; }
.nav-cta {
  background: var(--rust) !important; color: var(--bone) !important;
  padding: 10px 24px !important; letter-spacing: 1.5px !important;
  font-size: 12px !important; transition: background 0.3s !important;
}
.nav-cta:hover { background: var(--rust-light) !important; }
.nav-cta::after { display: none !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--bone); margin: 6px 0; transition: all 0.3s;
}
nav.scrolled .nav-toggle span { background: var(--charcoal); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  background: url('../images/hero.jpg') center center / cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(26, 23, 20, 0.97) 0%, rgba(26, 23, 20, 0.85) 35%,
    rgba(26, 23, 20, 0.55) 65%, rgba(26, 23, 20, 0.35) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 40px 100px; max-width: 1200px; margin: 0 auto; width: 100%;
}
.hero-eyebrow {
  font-size: clamp(26px, 4.4vw, 52px);
  line-height: 1.08; letter-spacing: clamp(1.5px, 0.4vw, 4px);
  text-transform: uppercase; font-weight: 600;
  color: var(--bone); margin-bottom: 22px;
  max-width: 760px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.55);
  opacity: 0; animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero-eyebrow::after {
  content: ''; display: block; width: 64px; height: 2px;
  background: var(--rust); margin-top: 22px;
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 300; line-height: 1.12;
  color: var(--bone); max-width: 820px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  opacity: 0; animation: fadeUp 0.8s ease 0.5s forwards;
}
.hero-tagline em { font-style: italic; font-weight: 400; color: var(--rust-light); }
.hero-sub {
  font-size: 17px; line-height: 1.7; color: var(--stone-light);
  max-width: 520px; margin-top: 32px; font-weight: 300;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
  opacity: 0; animation: fadeUp 0.8s ease 0.7s forwards;
}
.hero-actions {
  margin-top: 44px; display: flex; gap: 20px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s ease 0.9s forwards;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; background: var(--rust);
  color: var(--bone); text-decoration: none;
  font-size: 13px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; border: none; transition: all 0.4s ease; cursor: pointer;
}
.btn-primary:hover { background: var(--rust-light); transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; background: transparent;
  color: var(--bone); text-decoration: none;
  font-size: 13px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; border: 1px solid rgba(245, 240, 232, 0.25);
  transition: all 0.4s ease; cursor: pointer;
}
.btn-secondary:hover { border-color: var(--rust-light); color: var(--rust-light); }
.hero-credit {
  position: absolute; bottom: 20px; right: 40px; z-index: 3;
  font-size: 11px; color: rgba(181,173,165,0.5); letter-spacing: 0.5px;
}
.hero-credit a { color: rgba(181,173,165,0.5); text-decoration: none; }
.hero-credit a:hover { color: var(--rust-light); }

/* SECTION UTILS */
.section-label {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--rust); font-weight: 600; margin-bottom: 24px;
}
.section-divider { width: 60px; height: 1px; background: var(--rust); margin-bottom: 40px; }

/* PHILOSOPHY */
.philosophy { padding: 140px 40px; background: var(--warm-white); }
.philosophy-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.philosophy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 300; line-height: 1.25; color: var(--charcoal); margin-bottom: 36px;
}
.philosophy h2 em { font-style: italic; font-weight: 400; }
.philosophy p {
  font-size: 16px; line-height: 1.85; color: var(--stone); margin-bottom: 24px; font-weight: 300;
}
.philosophy-img { position: relative; margin-top: 20px; }
.philosophy-img img { width: 100%; height: 420px; object-fit: cover; display: block; }
.philosophy-img-caption {
  margin-top: 12px; font-size: 12px; color: var(--stone-light);
  letter-spacing: 0.5px; font-style: italic;
}
.philosophy-quote {
  margin-top: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 300; font-style: italic;
  line-height: 1.5; color: var(--charcoal);
  border-left: 2px solid var(--rust); padding-left: 28px;
}

/* IMAGE BREAK */
.img-break { width: 100%; height: 480px; position: relative; overflow: hidden; }
.img-break img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-break-overlay {
  position: absolute; inset: 0;
  background: rgba(26,23,20,0.7);
  display: flex; align-items: center; justify-content: center;
}
.img-break-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 300; font-style: italic;
  color: var(--bone); text-align: center;
  max-width: 700px; padding: 0 40px; line-height: 1.4;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

/* QUOTE FEATURE */
.quote-feature { background: var(--dark); padding: 130px 40px; text-align: center; }
.quote-feature blockquote { max-width: 880px; margin: 0 auto; }
.quote-feature p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300; font-style: italic; line-height: 1.3;
  color: var(--bone);
}
.quote-feature em { color: var(--rust-light); font-style: italic; }
.quote-feature cite {
  display: block; margin-top: 34px;
  font-family: 'DM Sans', sans-serif; font-style: normal;
  font-size: 13px; font-weight: 500; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--stone-light);
}
.quote-feature cite::before { content: '\2014\00a0'; }

/* FOCUS */
.focus { padding: 120px 40px; background: var(--cream); }
.focus-header { text-align: center; max-width: 640px; margin: 0 auto 80px; }
.focus-header .section-label { text-align: center; }
.focus-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px); font-weight: 300; line-height: 1.2; color: var(--charcoal);
}
.focus-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
.focus-card {
  background: var(--warm-white); padding: 48px 32px;
  position: relative; transition: all 0.5s ease; cursor: default; overflow: hidden;
}
.focus-card-img {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s;
}
.focus-card-img img { width: 100%; height: 100%; object-fit: cover; }
.focus-card-img::after {
  content: ''; position: absolute; inset: 0; background: rgba(26, 23, 20, 0.82);
}
.focus-card:hover .focus-card-img { opacity: 1; }
.focus-card:hover .focus-num,
.focus-card:hover h3,
.focus-card:hover p { color: var(--bone); position: relative; z-index: 2; }
.focus-card:hover .focus-line { background: var(--rust-light); position: relative; z-index: 2; }
.focus-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 300; color: var(--stone);
  transition: color 0.5s; margin-bottom: 24px;
}
.focus-line { width: 32px; height: 1px; background: var(--rust); margin-bottom: 24px; transition: all 0.5s; }
.focus-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 500; margin-bottom: 16px;
  transition: color 0.5s; color: var(--charcoal);
}
.focus-card p {
  font-size: 14px; line-height: 1.75; color: var(--stone); transition: color 0.5s; font-weight: 300;
}

/* GALLERY */
.portfolio { padding: 120px 40px; background: var(--warm-white); }
.portfolio-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.portfolio-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px); font-weight: 300; line-height: 1.2; color: var(--charcoal);
}
.portfolio-header p {
  font-size: 16px; line-height: 1.8; color: var(--stone); font-weight: 300; margin-top: 16px;
}
.gallery {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 320px 320px; gap: 6px;
}
.gallery-item { position: relative; overflow: hidden; cursor: default; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,23,20,0.85) 0%, rgba(26,23,20,0.2) 50%, transparent 100%);
  opacity: 0; transition: opacity 0.4s;
  display: flex; align-items: flex-end; padding: 28px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; color: var(--bone); font-weight: 400; letter-spacing: 0.5px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.gallery-item.wide { grid-column: span 2; }

/* ECOSYSTEM */
.ecosystem { padding: 120px 40px; background: var(--cream); }
.ecosystem-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.ecosystem h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px); font-weight: 300; line-height: 1.2;
  color: var(--charcoal); margin-bottom: 20px;
}
.ecosystem-sub {
  font-size: 16px; line-height: 1.8; color: var(--stone);
  max-width: 600px; margin: 0 auto 64px; font-weight: 300;
}
.ecosystem-tags {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px; max-width: 900px; margin: 0 auto;
}
.eco-tag {
  padding: 12px 24px; border: 1px solid rgba(42, 37, 32, 0.12);
  font-size: 13px; letter-spacing: 0.5px; color: var(--charcoal);
  font-weight: 400; transition: all 0.3s; cursor: default;
}
.eco-tag:hover { border-color: var(--rust); color: var(--rust); transform: translateY(-2px); }

/* FOUNDER */
.founder {
  padding: 0; position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; min-height: 600px;
}
.founder-img { position: relative; overflow: hidden; }
.founder-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-content {
  background: var(--dark); padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.founder-content .section-label { color: var(--rust-light); }
.founder-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 36px); font-weight: 300;
  line-height: 1.3; color: var(--bone); margin-bottom: 28px;
}
.founder-content p {
  font-size: 15px; line-height: 1.85; color: var(--stone-light);
  font-weight: 300; margin-bottom: 20px;
}
.founder-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--rust-light); text-decoration: none;
  font-size: 14px; letter-spacing: 1px; margin-top: 12px; transition: gap 0.3s;
}
.founder-link:hover { gap: 14px; }

/* BOARD */
.board { padding: 120px 40px; background: var(--cream); }
.board-header { text-align: center; max-width: 720px; margin: 0 auto 72px; }
.board-header .section-label { color: var(--rust); }
.board-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.4vw, 42px); font-weight: 300;
  line-height: 1.25; color: var(--charcoal); margin-top: 8px;
}
.board-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; max-width: 1100px; margin: 0 auto;
}
.board-member {
  background: var(--warm-white); padding: 44px 36px;
  border-top: 2px solid var(--rust);
}
.board-member h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 500; color: var(--charcoal);
  margin-bottom: 6px;
}
.board-role {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--rust); font-weight: 500; margin-bottom: 22px;
}
.board-member p:not(.board-role) {
  font-size: 14.5px; line-height: 1.8; color: var(--stone); font-weight: 300;
}

/* VISION */
.vision { padding: 140px 40px; background: var(--warm-white); text-align: center; }
.vision-inner { max-width: 720px; margin: 0 auto; }
.vision h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 56px); font-weight: 300;
  line-height: 1.2; color: var(--charcoal); margin-bottom: 32px;
}
.vision h2 em { font-style: italic; font-weight: 400; }
.vision p {
  font-size: 17px; line-height: 1.85; color: var(--stone); font-weight: 300; margin-bottom: 48px;
}

/* FOOTER */
footer { padding: 80px 40px 40px; background: var(--dark); color: var(--stone); }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
}
.footer-brand .nav-mark { color: var(--bone); display: block; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: var(--stone); font-weight: 300; max-width: 280px; }
footer h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 500; color: var(--bone); margin-bottom: 20px;
}
footer ul { list-style: none; }
footer li { margin-bottom: 12px; font-size: 14px; font-weight: 300; color: var(--stone); }
footer a { color: var(--stone); text-decoration: none; font-size: 14px; font-weight: 300; transition: color 0.3s; }
footer a:hover { color: var(--rust-light); }
.footer-soon {
  margin-top: 14px; font-size: 11px; font-weight: 400; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--rust-light);
}
.footer-bottom {
  max-width: 1200px; margin: 60px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 12px; color: var(--stone); font-weight: 300; letter-spacing: 0.5px; }
.footer-images {
  font-size: 11px; color: rgba(181,173,165,0.4); margin-top: 16px;
  max-width: 1200px; margin-left: auto; margin-right: auto;
}
.footer-images a { color: rgba(181,173,165,0.4); font-size: 11px; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* SUB-PAGE HEADER (dark band, keeps light nav legible) */
.page-header {
  background: var(--dark); color: var(--bone);
  padding: 180px 40px 90px; text-align: center;
}
.page-header .section-label { color: var(--rust-light); }
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 66px); font-weight: 300; line-height: 1.1;
  color: var(--bone); margin-top: 12px;
}
.page-header p {
  color: var(--stone-light); max-width: 560px; margin: 22px auto 0;
  font-weight: 300; line-height: 1.7; font-size: 17px;
}
.page-section { padding: 90px 40px; }
.page-section-inner { max-width: 1100px; margin: 0 auto; }

/* Accessibility helper + honeypot */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* PATHWAY CARDS (get-involved) */
.pathway-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
  max-width: 980px; margin: 0 auto;
}
.pathway-card {
  background: var(--warm-white); border-top: 2px solid var(--rust);
  box-shadow: 0 1px 0 rgba(42, 37, 32, 0.04);
  padding: 44px 38px; display: flex; flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.pathway-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(42, 37, 32, 0.08); }
.pathway-card.coming-soon:hover { transform: none; box-shadow: 0 1px 0 rgba(42, 37, 32, 0.04); }
.pathway-card h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 500;
  color: var(--charcoal); margin-bottom: 12px;
}
.pathway-card p { font-size: 15px; line-height: 1.75; color: var(--stone); font-weight: 300; margin-bottom: 26px; }
.pathway-card .btn-primary { align-self: flex-start; }
.pathway-card.coming-soon { opacity: 0.85; }
.pathway-card .soon-tag {
  align-self: flex-start; font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--stone); border: 1px solid rgba(42,37,32,0.18); padding: 10px 18px;
}

.pathway-card .btn-primary,
.pathway-card .soon-tag,
.pathway-card .newsletter-form {
  margin-top: auto;
}

.pathway-card .newsletter-form {
  display: flex;
  gap: 12px;
  width: 100%;
}
.pathway-card .newsletter-form input[type="email"] {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--charcoal);
  background: var(--warm-white);
  border: 1px solid rgba(42, 37, 32, 0.18);
  padding: 13px 16px;
  flex: 1;
  min-width: 0;
}
.pathway-card .newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--rust);
}
.pathway-card .newsletter-form button {
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  border: none;
  background: var(--rust);
  color: var(--bone);
  padding: 13px 26px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.3s;
  flex-shrink: 0;
}
.pathway-card .newsletter-form button:hover {
  background: var(--rust-light);
}

/* FORMS */
.form { max-width: 620px; margin: 0 auto; }
.form-row { margin-bottom: 22px; display: flex; flex-direction: column; }
.form-row label { font-size: 13px; letter-spacing: 0.5px; color: var(--charcoal); margin-bottom: 8px; font-weight: 500; }
.form-row input, .form-row select, .form-row textarea {
  font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--charcoal);
  background: var(--warm-white); border: 1px solid rgba(42, 37, 32, 0.18);
  padding: 14px 16px; width: 100%; transition: border-color 0.3s;
}
.form-row textarea { min-height: 150px; resize: vertical; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--rust);
}
.form button[type="submit"] {
  font-family: 'DM Sans', sans-serif; cursor: pointer; border: none;
  background: var(--rust); color: var(--bone); padding: 15px 34px;
  font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; transition: background 0.3s;
}
.form button[type="submit"]:hover { background: var(--rust-light); }
.form button[type="submit"]:disabled { opacity: 0.6; cursor: default; }
.form-status { font-size: 14px; margin-top: 14px; min-height: 20px; font-weight: 400; }
.form-status--success { color: var(--sage); }
.form-status--error { color: #c0492b; }
.contact-direct { text-align: center; margin-top: 48px; color: var(--stone); font-size: 14px; font-weight: 300; }
.contact-direct a { color: var(--rust); text-decoration: none; }
.contact-direct a:hover { color: var(--rust-light); }

/* FOOTER newsletter strip */
.footer-cta {
  max-width: 1200px; margin: 0 auto 56px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.12);
  display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap;
}
.footer-cta-text h3 {
  font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: 26px; color: var(--bone); margin-bottom: 6px;
}
.footer-cta-text p { color: var(--stone); font-size: 14px; font-weight: 300; }
.newsletter-form { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; position: relative; }
.newsletter-form input[type="email"] {
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--bone);
  background: rgba(245, 240, 232, 0.06); border: 1px solid rgba(245, 240, 232, 0.20);
  padding: 13px 16px; min-width: 260px;
}
.newsletter-form input[type="email"]::placeholder { color: var(--stone); }
.newsletter-form input[type="email"]:focus { outline: none; border-color: var(--rust-light); }
.newsletter-form button[type="submit"] {
  font-family: 'DM Sans', sans-serif; cursor: pointer; border: none;
  background: var(--rust); color: var(--bone); padding: 13px 26px;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; transition: background 0.3s;
}
.newsletter-form button[type="submit"]:hover { background: var(--rust-light); }
.newsletter-form button[type="submit"]:disabled { opacity: 0.6; cursor: default; }
.newsletter-form .form-status { flex-basis: 100%; margin-top: 4px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .philosophy-inner { grid-template-columns: 1fr; gap: 48px; }
  .focus-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 280px 280px; }
  .gallery-item.wide { grid-column: span 1; }
  .founder { grid-template-columns: 1fr; }
  .founder-img { height: 400px; }
  .board-grid { grid-template-columns: 1fr; max-width: 560px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(245, 240, 232, 0.98);
    backdrop-filter: blur(20px); padding: 32px 24px; gap: 24px;
  }
  .nav-links.open a { color: var(--charcoal) !important; }
  .hero-content { padding: 0 24px 80px; }
  .philosophy { padding: 80px 24px; }
  .philosophy-img img { height: 300px; }
  .img-break { height: 320px; }
  .focus { padding: 80px 24px; }
  .focus-grid { grid-template-columns: 1fr; }
  .portfolio { padding: 80px 24px; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: repeat(4, 260px); }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-overlay { opacity: 1; }
  .ecosystem { padding: 80px 24px; }
  .board { padding: 80px 24px; }
  .board-header { margin-bottom: 48px; }
  .founder-content { padding: 60px 24px; }
  .vision { padding: 80px 24px; }
  footer { padding: 60px 24px 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-credit { right: 24px; bottom: 12px; }
  .page-header { padding: 140px 24px 64px; }
  .page-section { padding: 64px 24px; }
  .pathway-grid { grid-template-columns: 1fr; }
  .footer-cta { flex-direction: column; align-items: flex-start; }
  .newsletter-form input[type="email"] { min-width: 0; width: 100%; }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-eyebrow, .hero-tagline, .hero-sub, .hero-actions { opacity: 1 !important; animation: none !important; }
}
