/* =========================================================
   Dost Aid Global Organization — Site Styles
   Elementor-ready: section / container / column patterns
   Brand: Forest Green #008A48 · Gold #E0B05A
   ========================================================= */

:root {
  --green: #008A48;
  --green-deep: #065F34;
  --green-dark: #043F22;
  --green-soft: #E8F6EE;
  --green-mist: #F3FAF6;
  --gold: #E0B05A;
  --gold-deep: #C9953A;
  --gold-soft: #F8E9C9;
  --ink: #142018;
  --ink-soft: #3D4A40;
  --muted: #5C6B61;
  --line: #D5E5DB;
  --white: #FFFFFF;
  --sand: #F7F4EE;
  --shadow: 0 18px 50px rgba(4, 63, 34, 0.12);
  --radius: 4px;
  --container: 1120px;
  --header-h: 64px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(224, 176, 90, 0.12), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(0, 138, 72, 0.08), transparent 55%),
    linear-gradient(180deg, #fbfdfb 0%, var(--green-mist) 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--green-deep);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--gold-deep);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--green-dark);
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }

p { margin: 0 0 1em; color: var(--ink-soft); }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  position: relative;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.75rem;
}

.lede {
  font-size: 1.15rem;
  color: var(--muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.55rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
  box-shadow: 0 10px 28px rgba(201, 149, 58, 0.28);
}

.btn-primary:hover {
  background: var(--gold-deep);
  color: var(--white);
}

.btn-secondary {
  background: var(--green);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--green-deep);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  border-color: var(--green);
  color: var(--green-deep);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(213, 229, 219, 0.8);
  transition: box-shadow 0.3s var(--ease);
  /* Override Hello Elementor .site-header spacing */
  padding: 0 !important;
  padding-block-start: 0 !important;
  padding-block-end: 0 !important;
  display: block !important;
  flex-wrap: nowrap !important;
  min-height: 0 !important;
}

.site-header.scrolled {
  box-shadow: 0 8px 30px rgba(4, 63, 34, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  height: var(--header-h);
  gap: 0.75rem;
  padding-block: 0 !important;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--green-dark);
  text-decoration: none;
  min-width: 0;
  line-height: 1;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 650;
  color: var(--green-dark);
}

.brand-tag {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav a {
  padding: 0.4rem 0.7rem;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.92rem;
  border-radius: 999px;
  position: relative;
  line-height: 1.2;
}

.nav a:hover,
.nav a.active {
  color: var(--green-deep);
  background: var(--green-soft);
}

.nav .btn {
  margin-left: 0.35rem;
  padding: 0.45rem 0.95rem;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--green-dark);
  transition: 0.25s var(--ease);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--green-dark);
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  animation: heroDrift 18s var(--ease) infinite alternate;
}

@keyframes heroDrift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.14) translate3d(-1.8%, -1.2%, 0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(4, 63, 34, 0.88) 0%, rgba(4, 63, 34, 0.55) 48%, rgba(4, 63, 34, 0.25) 100%),
    linear-gradient(0deg, rgba(4, 63, 34, 0.7) 0%, transparent 45%);
}

.hero-content {
  width: min(100% - 2.5rem, var(--container));
  margin: 0 auto;
  padding: 7rem 0 4.5rem;
  max-width: 680px;
  margin-left: max(1.25rem, calc((100% - var(--container)) / 2));
}

.hero .eyebrow {
  color: var(--gold);
  animation: riseIn 0.8s var(--ease) both;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
  animation: riseIn 0.9s 0.08s var(--ease) both;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  max-width: 34rem;
  animation: riseIn 1s 0.16s var(--ease) both;
}

.hero .btn-row {
  animation: riseIn 1.05s 0.24s var(--ease) both;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-hero {
  position: relative;
  min-height: 42vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.page-hero .hero-media,
.page-hero .hero-overlay { position: absolute; inset: 0; }
.page-hero .hero-overlay {
  background: linear-gradient(100deg, rgba(4, 63, 34, 0.9), rgba(4, 63, 34, 0.45));
}
.page-hero .hero-content {
  padding: 6.5rem 0 3rem;
  max-width: 720px;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.88); }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: -3rem;
  position: relative;
  z-index: 2;
}

.stat {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ---------- Split / features ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-visual {
  position: relative;
  overflow: hidden;
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-visual img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  object-position: center;
}

.split-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(4, 63, 34, 0.35));
  pointer-events: none;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.feature-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.7rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(224, 176, 90, 0.25);
}

/* ---------- Program grid ---------- */
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.program-item {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.6rem 1.4rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  height: 100%;
}

.program-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(0, 138, 72, 0.35);
}

.program-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green-deep);
  margin-bottom: 1rem;
  border-radius: 12px;
}

.program-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.program-item p {
  font-size: 0.98rem;
  margin-bottom: 0;
}

.program-item a.more {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--green);
}

/* ---------- Values / impact band ---------- */
.band-green {
  background:
    linear-gradient(135deg, rgba(4, 63, 34, 0.96), rgba(0, 138, 72, 0.92)),
    url("https://dostaid.com/wp-content/uploads/dostaid/images/gallery-clothing-01.jpg") center / contain no-repeat,
    var(--green-dark);
  color: var(--white);
}

.band-green h2,
.band-green h3 { color: var(--white); }

.band-green p { color: rgba(255, 255, 255, 0.88); }

.band-green .eyebrow { color: var(--gold); }

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.value {
  padding: 1.4rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}

.value h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.value p {
  margin: 0;
  font-size: 0.95rem;
}

/* ---------- Quote ---------- */
.quote-block {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.quote-block blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.4;
  color: var(--green-dark);
  font-weight: 500;
}

.quote-block cite {
  display: block;
  margin-top: 1.25rem;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 340px));
  gap: 2rem;
  justify-content: center;
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.team-card h3 { margin-bottom: 0.2rem; }
.team-role {
  color: var(--gold-deep);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- Gallery ---------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
}

.filter-btn {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 560;
  cursor: pointer;
  transition: 0.25s var(--ease);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.gallery-grid {
  columns: 3 280px;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  background: var(--green-dark);
  cursor: zoom-in;
  animation: riseIn 0.7s var(--ease) both;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.55s var(--ease), opacity 0.35s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.05);
  opacity: 0.88;
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.4rem 1rem 0.9rem;
  background: linear-gradient(transparent, rgba(4, 63, 34, 0.85));
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.3s var(--ease);
}

.gallery-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item.hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(4, 30, 18, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--green-dark);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ---------- Tables / donate ---------- */
.donate-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.account-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.account-card h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.15rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  background: var(--gold-soft);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 999px;
}

.detail-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.5rem;
  padding: 0.45rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
}

.detail-row:last-child { border-bottom: 0; }

.detail-row dt {
  color: var(--muted);
  font-weight: 500;
}

.detail-row dd {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  word-break: break-word;
}

.copy-btn {
  border: 0;
  background: var(--green-soft);
  color: var(--green-deep);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 0.4rem;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.6rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--green-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--green-mist);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 138, 72, 0.15);
  background: var(--white);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

.info-panel {
  background: var(--green-dark);
  color: var(--white);
  padding: 1.6rem;
}

.info-panel h3 { color: var(--white); }
.info-panel p,
.info-panel li { color: rgba(255,255,255,0.85); }
.info-panel a { color: var(--gold); }
.info-panel ul { padding-left: 1.1rem; margin: 0.5rem 0 0; }

.legal-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.95rem;
}

.legal-table th,
.legal-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.legal-table th {
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 650;
}

.partners {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.partner-chip {
  padding: 0.55rem 0.9rem;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ---------- CTA strip ---------- */
.cta-strip {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 1.5rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: var(--shadow);
}

.cta-strip h2 { margin-bottom: 0.35rem; }
.cta-strip p { margin: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background:
    linear-gradient(180deg, var(--green-dark), #022816);
  color: rgba(255, 255, 255, 0.9);
  padding: 4rem 0 1.5rem;
  margin-top: 2rem;
}

.site-footer p,
.site-footer li,
.site-footer span,
.site-footer dd,
.site-footer dt {
  color: rgba(255, 255, 255, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: rgba(255,255,255,0.96);
  border-radius: 50%;
  padding: 4px;
  flex-shrink: 0;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.site-footer h4 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
}

.site-footer a:hover { color: var(--gold); }

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 0.45rem; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.88rem;
}

.footer-bottom span {
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .split,
  .donate-grid,
  .cta-strip,
  .footer-grid { grid-template-columns: 1fr; }
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); }
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s var(--ease);
    box-shadow: var(--shadow);
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav .btn { margin: 0.5rem 0 0; }
}

@media (max-width: 640px) {
  .program-grid,
  .values,
  .team-grid,
  .stats { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .brand-tag { display: none; }
  .hero-content { padding-top: 5.5rem; }
  .detail-row { grid-template-columns: 1fr; gap: 0.15rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
