/* ==========================================================================
   JUGTI — Society for Hilly India
   Shared stylesheet
   Palette sampled directly from the JUGTI logo (green mountains, red figure,
   navy figure).
   ========================================================================== */

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

:root {
  --green-deep:  #093d33;
  --green-mid:   #17624e;
  --green-light: #3f9070;
  --green-pale:  #e3efe9;
  --red:         #bd2325;
  --red-dark:    #9c1c1e;
  --red-pale:    #f8e5e5;
  --navy:        #1f2f66;
  --navy-pale:   #e6e9f2;
  --cream:       #f9f5ef;
  --dark:        #1c1c1c;
  --muted:       #5a5a4e;
  --white:       #ffffff;
  --border:      rgba(9,61,51,0.14);
  --shadow-sm:   0 2px 10px rgba(9,61,51,0.06);
  --shadow-md:   0 10px 30px rgba(9,61,51,0.10);
  --radius:      16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--green-mid); }

.container { max-width: 1240px; margin: 0 auto; }

/* Screen-reader only helper */
.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;
}

/* Skip link for keyboard users */
.skip-link {
  position: absolute; left: 12px; top: -48px;
  background: var(--red); color: #fff; padding: 10px 18px;
  border-radius: 8px; z-index: 200; transition: top .2s;
  font-size: 14px; text-decoration: none;
}
.skip-link:focus { top: 12px; }

/* ─── NAV ─────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img { height: 46px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--green-deep);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2px;
  padding: 6px 0;
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .22s ease;
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--red); }
.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: background .2s, transform .2s;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; padding: 10px;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--green-deep); border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── BUTTONS ─────────────────────────────────────────────────────────── */
.btn-primary, .btn-outline, .btn-light {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform .2s, background .2s, border-color .2s, color .2s;
  font-family: inherit;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: #fff; transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--green-deep); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ─── SECTION HEADERS ─────────────────────────────────────────────────── */
.section { padding: 96px 24px; }
.section-tag {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); font-weight: 600; margin-bottom: 12px; display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; color: var(--green-deep);
  line-height: 1.18; margin-bottom: 18px;
}
.section-desc {
  color: var(--muted); max-width: 620px;
  font-size: 16.5px; line-height: 1.8;
}
.center { text-align: center; }
.center .section-desc { margin-left: auto; margin-right: auto; }

/* ─── HERO (home) ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  padding: 96px 24px 120px;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(9,61,51,0.90) 0%, rgba(9,61,51,0.55) 55%, rgba(9,61,51,0.88) 100%),
    url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80') center/cover no-repeat;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 110px; background: linear-gradient(to top, var(--cream), transparent);
}
.hero-inner { max-width: 1240px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }
.hero-eyebrow {
  font-size: 12px; letter-spacing: 3.5px; text-transform: uppercase;
  color: #fff; font-weight: 600; margin-bottom: 20px;
  display: inline-block; padding: 7px 16px;
  border: 1px solid rgba(255,255,255,0.35); border-radius: 100px;
  background: rgba(189,35,37,0.30);
  opacity: 0; animation: fadeUp .8s .15s forwards;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 700; color: #fff; line-height: 1.08;
  max-width: 760px; margin-bottom: 26px;
  opacity: 0; animation: fadeUp .8s .3s forwards;
}
.hero h1 em { font-style: italic; color: #ffd27a; }
.hero-sub {
  font-size: 18.5px; color: rgba(255,255,255,0.9);
  max-width: 560px; margin-bottom: 44px; font-weight: 300;
  opacity: 0; animation: fadeUp .8s .45s forwards;
}
.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .8s .6s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── PAGE HERO (inner pages) ─────────────────────────────────────────── */
.page-hero {
  background: var(--green-deep);
  color: #fff;
  padding: 72px 24px 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 88% -10%, rgba(189,35,37,0.28), transparent 60%);
}
.page-hero-inner { max-width: 1240px; margin: 0 auto; position: relative; }
.breadcrumb {
  font-size: 13px; color: rgba(255,255,255,0.7);
  margin-bottom: 18px; letter-spacing: .3px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: #ffd27a; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 700; line-height: 1.12; max-width: 780px;
}
.page-hero p {
  margin-top: 16px; max-width: 620px;
  color: rgba(255,255,255,0.82); font-size: 17px; font-weight: 300;
}

/* ─── STATS ───────────────────────────────────────────────────────────── */
.stats {
  background: var(--green-mid);
}
.stats-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 40px 28px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif; font-size: 38px;
  font-weight: 700; color: #ffd27a; display: block; line-height: 1;
}
.stat-label {
  font-size: 13px; color: rgba(255,255,255,0.72);
  letter-spacing: .4px; margin-top: 8px; display: block;
}

/* ─── ABOUT ───────────────────────────────────────────────────────────── */
.about-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
  width: 100%; border-radius: var(--radius);
  aspect-ratio: 4/3; object-fit: cover;
}
.about-img-accent {
  position: absolute; bottom: -28px; right: -28px; width: 52%;
  border-radius: 12px; border: 6px solid var(--cream);
  aspect-ratio: 1; object-fit: cover;
}
.about-badge {
  position: absolute; top: -20px; left: -20px;
  background: var(--red); color: #fff;
  width: 104px; height: 104px; border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; text-align: center;
  border: 5px solid var(--cream); z-index: 2;
}
.about-badge strong { font-size: 26px; font-weight: 700; line-height: 1; }
.about-badge span { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; line-height: 1.2; }
.about-quote {
  margin-top: 30px; padding: 22px 26px;
  background: var(--green-pale); border-left: 4px solid var(--green-light);
  border-radius: 0 10px 10px 0;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 17px; color: var(--green-deep); line-height: 1.6;
}
.reg-badge {
  display: inline-block; background: var(--red-pale); color: var(--red-dark);
  font-size: 12.5px; padding: 7px 16px; border-radius: 100px;
  border: 1px solid rgba(189,35,37,0.25); font-weight: 500;
}

/* ─── FOCUS AREAS ─────────────────────────────────────────────────────── */
.focus { background: var(--green-deep); }
.focus .section-tag { color: #ffd27a; }
.focus .section-title { color: #fff; }
.focus .section-desc { color: rgba(255,255,255,0.68); }
.focus-header { max-width: 1240px; margin: 0 auto 56px; }
.focus-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.focus-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius); padding: 34px 28px;
  transition: background .3s, transform .3s;
}
.focus-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.focus-icon {
  width: 54px; height: 54px; border-radius: 12px;
  background: rgba(189,35,37,0.22);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; font-size: 25px;
}
.focus-card h3 {
  font-family: 'Playfair Display', serif; font-size: 20px;
  color: #fff; margin-bottom: 10px; font-weight: 700;
}
.focus-card p { font-size: 14.5px; color: rgba(255,255,255,0.66); line-height: 1.75; }

/* ─── OBJECTIVES ──────────────────────────────────────────────────────── */
.obj-layout {
  max-width: 1240px; margin: 56px auto 0;
  display: grid; grid-template-columns: 1fr 2fr; gap: 72px; align-items: start;
}
.obj-sticky { position: sticky; top: 100px; }
.obj-sticky p { color: var(--muted); font-size: 15px; line-height: 1.8; margin-top: 14px; }
.obj-list { display: flex; flex-direction: column; gap: 14px; }
.obj-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px; background: var(--white);
  border-radius: 12px; border: 1px solid var(--border);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.obj-item:hover { border-color: var(--green-light); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.obj-num {
  font-family: 'Playfair Display', serif; font-size: 30px;
  font-weight: 700; color: var(--red); line-height: 1; min-width: 46px;
}
.obj-item h4 { font-size: 16.5px; font-weight: 600; color: var(--green-deep); margin-bottom: 6px; }
.obj-item p { font-size: 14.5px; color: var(--muted); line-height: 1.7; }

/* ─── FEATURE / SPLIT BLOCK (reusable) ────────────────────────────────── */
.split {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.mission-cards { display: grid; gap: 18px; margin-top: 8px; }
.mission-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 26px 28px;
}
.mission-card h3 {
  font-family: 'Playfair Display', serif; font-size: 20px;
  color: var(--green-deep); margin-bottom: 8px;
}
.mission-card p { color: var(--muted); font-size: 15px; }
.mission-card .tick { color: var(--red); font-weight: 700; }

/* ─── VALUES STRIP ────────────────────────────────────────────────────── */
.values-grid {
  max-width: 1240px; margin: 48px auto 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.value {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 28px 24px;
}
.value .num {
  font-family: 'Playfair Display', serif; color: var(--red);
  font-size: 15px; font-weight: 700; letter-spacing: 1px;
}
.value h4 { color: var(--green-deep); font-size: 17px; margin: 8px 0 6px; }
.value p { font-size: 14px; color: var(--muted); }

/* ─── TEAM ────────────────────────────────────────────────────────────── */
.team { background: var(--green-pale); }
.team-band-title {
  max-width: 1240px; margin: 0 auto 26px;
  display: flex; align-items: center; gap: 16px;
}
.team-band-title h3 {
  font-family: 'Playfair Display', serif; font-size: 22px; color: var(--green-deep);
  white-space: nowrap;
}
.team-band-title .rule { height: 1px; background: var(--border); flex: 1; }
.team-grid {
  max-width: 1240px; margin: 0 auto 56px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.team-grid.execs { grid-template-columns: repeat(4, 1fr); }
.team-card {
  background: var(--white); border-radius: var(--radius);
  padding: 30px 22px; text-align: center;
  border: 1px solid rgba(9,61,51,0.10); transition: transform .2s, box-shadow .2s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 74px; height: 74px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700;
  color: #fff; margin: 0 auto 16px; letter-spacing: .5px;
}
.team-card h4 {
  font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700;
  color: var(--green-deep); margin-bottom: 5px;
}
.team-role {
  font-size: 11.5px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--red); font-weight: 600;
}
.team-card.small { padding: 24px 18px; }
.team-card.small .team-avatar { width: 60px; height: 60px; font-size: 20px; }
.team-card.small h4 { font-size: 15.5px; }

/* ─── DONATE ──────────────────────────────────────────────────────────── */
.donate { background: var(--red); }
.donate-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.donate h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 50px); font-weight: 700;
  color: #fff; line-height: 1.18; margin-bottom: 18px;
}
.donate > .donate-grid p.lead { color: rgba(255,255,255,0.9); font-size: 16.5px; line-height: 1.8; margin-bottom: 30px; }
.donate-amounts { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.amount-btn {
  background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.45);
  color: #fff; padding: 11px 24px; border-radius: 100px;
  font-size: 15px; font-weight: 600; cursor: pointer; transition: background .2s;
  font-family: inherit;
}
.amount-btn:hover, .amount-btn.active { background: rgba(255,255,255,0.32); border-color: #fff; }
.donate-info {
  background: rgba(255,255,255,0.12); border-radius: var(--radius);
  padding: 38px; border: 1px solid rgba(255,255,255,0.22);
}
.donate-info h3 {
  font-family: 'Playfair Display', serif; font-size: 22px;
  color: #fff; margin-bottom: 22px; font-weight: 700;
}
.bank-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.18); font-size: 14px; gap: 16px;
}
.bank-row:last-of-type { border-bottom: none; }
.bank-row span:first-child { color: rgba(255,255,255,0.75); }
.bank-row span:last-child { color: #fff; font-weight: 600; text-align: right; }
.tax-note { margin-top: 18px; font-size: 12.5px; color: rgba(255,255,255,0.72); line-height: 1.6; }

/* ─── CONTACT ─────────────────────────────────────────────────────────── */
.contact-layout {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: 13px; font-weight: 600; color: var(--green-deep); margin-bottom: 6px; }
input, textarea, select {
  width: 100%; padding: 12px 15px; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 15px; font-family: inherit;
  background: var(--white); color: var(--dark); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--green-light); box-shadow: 0 0 0 3px rgba(63,144,112,0.15);
}
textarea { height: 130px; resize: vertical; }
.contact-details h3 {
  font-family: 'Playfair Display', serif; font-size: 24px;
  color: var(--green-deep); margin-bottom: 26px; font-weight: 700;
}
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.contact-icon {
  width: 48px; height: 48px; background: var(--green-pale); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
}
.contact-item h4 {
  font-size: 12.5px; font-weight: 600; color: var(--green-light);
  letter-spacing: .5px; text-transform: uppercase; margin-bottom: 4px;
}
.contact-item p { font-size: 15px; color: var(--dark); line-height: 1.6; }
.contact-item a { color: var(--green-mid); text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }
.map-wrap { margin-top: 8px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 300px; border: 0; display: block; }

.form-note {
  font-size: 13px; color: var(--muted); background: var(--green-pale);
  border-radius: 10px; padding: 12px 16px;
}

/* ─── CTA BANNER ──────────────────────────────────────────────────────── */
.cta-band { background: var(--navy); }
.cta-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-inner h2 {
  font-family: 'Playfair Display', serif; color: #fff;
  font-size: clamp(24px, 3vw, 34px); line-height: 1.25; max-width: 640px;
}
.cta-inner p { color: rgba(255,255,255,0.78); margin-top: 8px; max-width: 560px; }

/* ─── FOOTER ──────────────────────────────────────────────────────────── */
footer { background: var(--green-deep); padding: 64px 24px 30px; }
.footer-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px;
  padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo-chip {
  background: #fff; border-radius: 12px; padding: 12px 14px;
  display: inline-block; margin-bottom: 16px;
}
.footer-logo-chip img { height: 40px; width: auto; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.8; max-width: 320px; margin-bottom: 14px; }
footer h4 {
  font-size: 12.5px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.45); font-weight: 600; margin-bottom: 18px;
}
footer ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
footer ul li a { font-size: 14px; color: rgba(255,255,255,0.68); text-decoration: none; transition: color .2s; }
footer ul li a:hover { color: #fff; }
.footer-bottom {
  max-width: 1240px; margin: 0 auto; display: flex;
  justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
  padding-top: 26px; font-size: 13px; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: #ffd27a; text-decoration: none; }

/* ─── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .section { padding: 72px 24px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .about-grid, .split, .donate-grid, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .focus-grid { grid-template-columns: 1fr 1fr; }
  .team-grid, .team-grid.execs { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .obj-layout { grid-template-columns: 1fr; gap: 32px; }
  .obj-sticky { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-img-accent { display: none; }

  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 74px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 0 16px; box-shadow: var(--shadow-md);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 0 24px; }
  .nav-links a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-links a::after { display: none; }
  .nav-links li:last-child { padding: 12px 24px 0; }
  .nav-cta { text-align: center; padding: 12px !important; }
}

@media (max-width: 620px) {
  .focus-grid { grid-template-columns: 1fr; }
  .team-grid, .team-grid.execs { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
  .stat-num { font-size: 30px; }
  .nav-logo img { height: 40px; }
}

/* ─── MOTION PREFERENCE ───────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .hero-eyebrow, .hero h1, .hero-sub, .hero-btns { opacity: 1 !important; }
}
