  :root {
    --green-deep: #1e3a1e;
    --green-mid: #2d5a27;
    --green-light: #4a7c3f;
    --gold: #c8922a;
    --gold-light: #e8b84b;
    --cream: #f5f0e8;
    --cream-dark: #e8dfc8;
    --soil: #6b4c2a;
    --text-dark: #1a1a14;
    --text-mid: #3d3d2e;
    --text-light: #6b6b55;
    --white: #fdfcf8;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Source Serif 4', Georgia, serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ───── NAV ───── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 3rem;
    background: rgba(30, 58, 30, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(200,146,42,0.3);
  }
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 900;
    color: var(--gold-light);
    letter-spacing: 0.05em;
    text-decoration: none;
  }
  .nav-logo span { color: var(--cream); font-weight: 700; }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    color: var(--cream-dark);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold-light); }

  /* ───── HERO ───── */
  .hero {
    min-height: 100vh;
    background:
      linear-gradient(160deg, rgba(30,58,30,0.88) 0%, rgba(30,58,30,0.65) 50%, rgba(100,76,42,0.5) 100%),
      url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1800&q=80') center/cover no-repeat;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 0 3rem 5rem;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
      90deg,
      transparent,
      transparent 120px,
      rgba(200,146,42,0.04) 120px,
      rgba(200,146,42,0.04) 121px
    );
    pointer-events: none;
  }
  .hero-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--green-deep);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease both;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.02;
    max-width: 820px;
    animation: fadeUp 0.8s 0.15s ease both;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold-light);
  }
  .hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--cream-dark);
    font-weight: 300;
    max-width: 540px;
    margin-top: 1.5rem;
    line-height: 1.7;
    animation: fadeUp 0.8s 0.3s ease both;
  }
  .hero-cta {
    display: inline-block;
    margin-top: 2.5rem;
    padding: 1rem 2.2rem;
    background: var(--gold);
    color: var(--green-deep);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.2s;
    animation: fadeUp 0.8s 0.45s ease both;
  }
  .hero-cta:hover { background: var(--gold-light); transform: translateY(-2px); }

  .hero-location {
    position: absolute; bottom: 2rem; right: 3rem;
    color: rgba(245,240,232,0.6);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeUp 0.8s 0.6s ease both;
  }
  .hero-location::before { content: '📍 '; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ───── SECTION SHARED ───── */
  section { padding: 6rem 3rem; }
  .section-label {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    font-weight: 600;
  }
  h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--green-deep);
    line-height: 1.15;
  }
  .ruled {
    width: 60px; height: 3px;
    background: var(--gold);
    margin: 1.5rem 0;
  }

  /* ───── OVERVIEW ───── */
  .overview {
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .overview-text p {
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--text-mid);
    margin-bottom: 1rem;
  }
  .overview-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .pillar {
    padding: 1.5rem 1.8rem;
    background: var(--white);
    border-left: 4px solid var(--green-light);
    box-shadow: 0 2px 16px rgba(30,58,30,0.06);
  }
  .pillar h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--green-deep);
    margin-bottom: 0.4rem;
  }
  .pillar p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

  /* ───── PROGRAMS ───── */
  .programs { background: var(--green-deep); }
  .programs h2 { color: var(--cream); }
  .programs .section-label { color: var(--gold-light); }
  .programs .ruled { background: var(--gold); }
  .programs-intro {
    color: var(--cream-dark);
    font-size: 1rem;
    max-width: 560px;
    line-height: 1.75;
    margin-bottom: 3rem;
    font-weight: 300;
  }
  .programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  .program-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(200,146,42,0.25);
    padding: 2rem;
    transition: background 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
  }
  .program-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }
  .program-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px); }
  .program-card:hover::before { transform: scaleX(1); }
  .program-letter {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(200,146,42,0.2);
    line-height: 1;
    margin-bottom: 0.5rem;
  }
  .program-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
  }
  .program-card p { font-size: 0.9rem; color: var(--cream-dark); line-height: 1.65; }
  .program-outcomes {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(200,146,42,0.2);
  }
  .program-outcomes p {
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  .program-outcomes ul {
    list-style: none;
    font-size: 0.85rem;
    color: rgba(245,240,232,0.7);
    line-height: 1.7;
  }
  .program-outcomes ul li::before { content: '→ '; color: var(--gold); }

  /* ───── TEAM ───── */
  .team { background: var(--white); }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
  }
  .team-card {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 1.5rem;
  }
  .team-avatar {
    width: 90px; height: 90px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--cream);
    flex-shrink: 0;
    border: 3px solid var(--gold);
  }
  .team-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--green-deep);
    margin-bottom: 0.2rem;
  }
  .team-role {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.75rem;
  }
  .team-info p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.75; }

  .team-collective {
    margin-top: 4rem;
    padding: 2.5rem;
    background: var(--cream);
    border-left: 5px solid var(--green-light);
  }
  .team-collective h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--green-deep);
    margin-bottom: 1rem;
  }
  .team-tags {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
  }
  .team-tag {
    padding: 0.3rem 0.8rem;
    background: var(--green-light);
    color: var(--cream);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
  }

  /* ───── PATHWAYS ───── */
  .pathways { background: var(--cream-dark); }
  .pathways-intro {
    font-size: 1rem;
    color: var(--text-mid);
    max-width: 600px;
    line-height: 1.75;
    margin-bottom: 3rem;
  }
  .pathways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }
  .pathway-block {
    background: var(--white);
    padding: 1.75rem;
    border-top: 3px solid var(--green-light);
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  }
  .pathway-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--green-deep);
    margin-bottom: 0.75rem;
  }
  .pathway-block p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

  /* ───── LOCATION ───── */
  .location {
    background: var(--soil);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
    padding: 0;
  }
  .location-text {
    padding: 5rem 4rem;
  }
  .location-text .section-label { color: var(--gold-light); }
  .location-text h2 { color: var(--cream); }
  .location-text .ruled { background: var(--gold); }
  .location-text p {
    color: rgba(245,240,232,0.8);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 300;
  }
  .location-map {
    background:
      linear-gradient(135deg, rgba(100,76,42,0.7) 0%, rgba(45,90,39,0.6) 100%),
      url('https://images.unsplash.com/photo-1464226184884-fa280b87c399?w=900&q=80') center/cover no-repeat;
    display: flex; align-items: center; justify-content: center;
    min-height: 400px;
  }
  .location-pin {
    text-align: center;
    color: var(--cream);
    font-family: 'Playfair Display', serif;
  }
  .location-pin .pin-icon { font-size: 3rem; display: block; margin-bottom: 0.5rem; }
  .location-pin h4 { font-size: 1.3rem; color: var(--gold-light); }
  .location-pin p { font-size: 0.85rem; opacity: 0.8; margin-top: 0.3rem; }

  /* ───── CONTACT / CTA FOOTER ───── */
  .cta-section {
    background: var(--green-mid);
    text-align: center;
    padding: 6rem 3rem;
  }
  .cta-section h2 { color: var(--cream); margin: 0 auto; max-width: 700px; }
  .cta-section .ruled { margin: 1.5rem auto; }
  .cta-section p {
    color: var(--cream-dark);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.75;
  }
  .cta-btn {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    background: var(--gold);
    color: var(--green-deep);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.2s;
  }
  .cta-btn:hover { background: var(--gold-light); transform: translateY(-2px); }

  footer {
    background: var(--green-deep);
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(200,146,42,0.2);
  }
  footer .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--gold-light);
  }
  footer p { font-size: 0.8rem; color: rgba(245,240,232,0.4); }

  /* ───── RESPONSIVE ───── */
  @media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    section { padding: 4rem 1.5rem; }
    .overview { grid-template-columns: 1fr; gap: 3rem; }
    .team-grid { grid-template-columns: 1fr; }
    .location { grid-template-columns: 1fr; }
    .location-map { min-height: 250px; }
    .location-text { padding: 3rem 1.5rem; }
    footer { flex-direction: column; gap: 0.5rem; text-align: center; }
  }

  /* ───── SCROLL ANIMATIONS ───── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }