/* ═══════════════════════════════════════════
   ONENESS EVANGELICAL MISSION — main.css
   WordPress Theme Stylesheet
═══════════════════════════════════════════ */

:root {
  --gold:       #B8882A;
  --gold-light: #D4A84B;
  --gold-pale:  #F5ECD7;
  --gold-dim:   rgba(184,136,42,0.12);
  --warm-white: #FDFAF5;
  --cream:      #F7F1E8;
  --cream2:     #EFE7D6;
  --dark:       #1C1610;
  --dark2:      #2E2416;
  --text:       #3A2E1E;
  --text-muted: #8C7A5E;
  --border:     rgba(184,136,42,0.18);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--gold); }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5%;
  background: rgba(253,250,245,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.site-nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 24px rgba(184,136,42,0.08);
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--dark); text-decoration: none; letter-spacing: 0.04em;
}
.logo em, .logo a em { font-style: italic; color: var(--gold); }
.logo img { max-height: 56px; width: auto; }

.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none; font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links .current-menu-item > a { color: var(--gold); }

.nav-cta {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--warm-white); background: var(--gold);
  padding: 0.65rem 1.6rem; border-radius: 2px;
  text-decoration: none; font-weight: 600;
  box-shadow: 0 2px 16px rgba(184,136,42,0.3);
  transition: background 0.3s, transform 0.2s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); color: var(--warm-white); }

.nav-menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); transition: transform 0.3s, opacity 0.3s;
}
.nav-menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-menu-toggle.open span:nth-child(2) { opacity: 0; }
.nav-menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; place-items: center;
  background: var(--cream);
  position: relative; overflow: hidden;
  padding-top: 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(184,136,42,0.08) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(184,136,42,0.05) 0%, transparent 40%);
}
.hero-arch {
  position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  width: 500px; height: 700px;
  border: 1px solid rgba(184,136,42,0.12);
  border-radius: 250px 250px 0 0; pointer-events: none;
}
.hero-arch::before {
  content: ''; position: absolute; inset: 20px;
  border: 1px solid rgba(184,136,42,0.07);
  border-radius: 230px 230px 0 0;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto; padding: 4rem 5%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--gold-dim); border: 1px solid var(--border);
  color: var(--gold); font-size: 0.7rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 0.45rem 1rem; border-radius: 20px; margin-bottom: 2rem;
  animation: fadeUp 0.7s ease both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.1; color: var(--dark);
  margin-bottom: 1.2rem;
  animation: fadeUp 0.7s 0.12s ease both;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1.5rem;
  animation: fadeUp 0.7s 0.22s ease both;
}
.hero-desc {
  font-size: 1rem; line-height: 1.85; color: var(--text-muted);
  font-weight: 300; margin-bottom: 2.5rem;
  animation: fadeUp 0.7s 0.32s ease both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.44s ease both;
}
.hero-image-wrap {
  position: relative;
  animation: fadeUp 0.9s 0.2s ease both;
}
.hero-image-wrap::before {
  content: ''; position: absolute;
  top: 20px; left: 20px; right: -20px; bottom: -20px;
  background: var(--gold-pale); border-radius: 4px; z-index: 0;
}
.hero-image {
  position: relative; z-index: 1;
  aspect-ratio: 4/5; border-radius: 4px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(184,136,42,0.15);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── PLACEHOLDER ── */
.placeholder-img {
  width: 100%; height: 100%;
  background: var(--cream2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.7rem; color: var(--text-muted);
  border: 2px dashed var(--border);
  min-height: 200px;
}
.placeholder-img svg { opacity: 0.35; }
.placeholder-img span { font-size: 0.72rem; letter-spacing: 0.1em; opacity: 0.6; text-align: center; padding: 0 1rem; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold); color: var(--warm-white) !important;
  padding: 0.9rem 2.2rem; border-radius: 2px;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(184,136,42,0.3);
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,136,42,0.4); }
.btn-secondary {
  border: 1.5px solid var(--gold); color: var(--gold) !important;
  padding: 0.9rem 2.2rem; border-radius: 2px;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; text-decoration: none !important; display: inline-block;
  transition: background 0.3s, transform 0.2s;
}
.btn-secondary:hover { background: var(--gold-dim); transform: translateY(-2px); }
.btn-white {
  background: var(--warm-white); color: var(--gold) !important;
  padding: 0.9rem 2.5rem; border-radius: 2px;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.3s; display: inline-block;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--dark); padding: 2.8rem 5%;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  text-align: center;
}
.stat-item { padding: 0.5rem 1rem; position: relative; }
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%;
  height: 60%; width: 1px; background: rgba(255,255,255,0.08);
}
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--gold-light); }
.stat-label { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 0.3rem; }

/* ── SECTIONS ── */
section { padding: 7rem 5%; }

.section-label {
  font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.section-label::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.section-label.center { justify-content: center; }
.section-label.center::before { display: none; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700; line-height: 1.15; color: var(--dark); margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--gold); }

/* ── SLIDER ── */
.slider-section { background: var(--dark2); padding: 6rem 0; overflow: hidden; }
.slider-header { text-align: center; padding: 0 5%; margin-bottom: 3.5rem; }
.slider-header .section-title { color: var(--warm-white); }
.slider-track-wrap { overflow: hidden; }
.slider-track { display: flex; transition: transform 0.7s cubic-bezier(0.77,0,0.175,1); }
.slide { min-width: 100%; }
.slide-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 1200px; margin: 0 auto; padding: 0 5%;
  gap: 4rem; align-items: center;
}
.slide-image { aspect-ratio: 16/10; border-radius: 4px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,0.35); }
.slide-image img { width: 100%; height: 100%; object-fit: cover; }
.slide-image .placeholder-img { background: rgba(255,255,255,0.04); border-color: rgba(184,136,42,0.2); color: rgba(255,255,255,0.4); min-height: 260px; }
.slide-num { font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 700; color: rgba(184,136,42,0.15); line-height: 1; margin-bottom: -1rem; }
.slide-content h3 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 600; color: var(--warm-white); margin-bottom: 1rem; line-height: 1.2; }
.slide-content p { font-size: 0.97rem; line-height: 1.85; color: rgba(253,250,245,0.6); font-weight: 300; margin-bottom: 1.5rem; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 3.5rem; padding: 0 5%; }
.slider-btn { width: 48px; height: 48px; border-radius: 50%; background: transparent; border: 1px solid rgba(184,136,42,0.35); color: var(--gold-light); font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.3s, border-color 0.3s; }
.slider-btn:hover { background: rgba(184,136,42,0.15); border-color: var(--gold-light); }
.slider-dots { display: flex; gap: 0.6rem; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(184,136,42,0.3); cursor: pointer; transition: background 0.3s, transform 0.3s; }
.dot.active { background: var(--gold-light); transform: scale(1.3); }
.slider-progress { font-size: 0.75rem; letter-spacing: 0.12em; color: rgba(255,255,255,0.3); }

/* ── MANDATE ── */
.mandate { background: var(--warm-white); }
.mandate-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.mandate-image { position: relative; }
.mandate-image::after { content: ''; position: absolute; top: -16px; left: -16px; width: 80px; height: 80px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.mandate-image::before { content: ''; position: absolute; bottom: -16px; right: -16px; width: 80px; height: 80px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); z-index: 0; }
.mandate-photo { aspect-ratio: 3/4; border-radius: 4px; overflow: hidden; position: relative; z-index: 1; box-shadow: 0 16px 48px rgba(184,136,42,0.12); }
.mandate-photo img { width: 100%; height: 100%; object-fit: cover; }
.mandate-text p { font-size: 1rem; line-height: 1.9; color: var(--text-muted); font-weight: 300; margin-bottom: 1.2rem; }
.mandate-text p:first-of-type { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-style: italic; color: var(--text); }

/* ── PILLARS ── */
.pillars { background: var(--cream); }
.pillars-inner { max-width: 1200px; margin: 0 auto; }
.pillars-header { text-align: center; margin-bottom: 3.5rem; }
.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.pillar-card { background: var(--warm-white); border: 1px solid var(--border); border-radius: 4px; padding: 2.2rem; transition: box-shadow 0.4s, transform 0.3s, border-color 0.4s; position: relative; overflow: hidden; }
.pillar-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.pillar-card:hover { box-shadow: 0 12px 40px rgba(184,136,42,0.12); transform: translateY(-4px); border-color: var(--gold); }
.pillar-card:hover::after { transform: scaleX(1); }
.pillar-icon { width: 50px; height: 50px; background: var(--gold-dim); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1.3rem; }
.pillar-card h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 600; color: var(--dark); margin-bottom: 0.7rem; }
.pillar-card p { font-size: 0.9rem; line-height: 1.75; color: var(--text-muted); font-weight: 300; }

/* ── STORY / TIMELINE ── */
.story { background: var(--warm-white); }
.story-inner { max-width: 1100px; margin: 0 auto; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 0; width: 1px; background: linear-gradient(to bottom, var(--gold), transparent); }
.timeline-item { position: relative; margin-bottom: 2.8rem; }
.timeline-item::before { content: ''; position: absolute; left: -2.5rem; top: 6px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--gold-dim); transform: translateX(-4px); }
.timeline-year { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.timeline-item h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 600; color: var(--dark); margin-bottom: 0.5rem; }
.timeline-item p { font-size: 0.9rem; line-height: 1.8; color: var(--text-muted); font-weight: 300; }

/* ── VISION MISSION ── */
.vision-mission { background: var(--dark); padding: 7rem 5%; }
.vm-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden; }
.vm-card { padding: 4rem 3.5rem; background: var(--dark2); position: relative; }
.vm-card .section-label { color: var(--gold-light); }
.vm-card .section-label::before { background: var(--gold-light); }
.vm-card .section-title { color: var(--warm-white); font-size: 2rem; }
.vm-card .section-title em { color: var(--gold-light); }
.vm-num { font-family: 'Playfair Display', serif; font-size: 6rem; font-weight: 700; color: rgba(184,136,42,0.07); line-height: 1; margin-bottom: -2rem; }
.vm-card p { font-size: 1rem; line-height: 1.85; color: rgba(253,250,245,0.6); font-weight: 300; margin-top: 1rem; }

/* ── FOUNDER ── */
.founder { background: var(--cream); }
.founder-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 280px 1fr; gap: 5rem; align-items: center; }
.founder-photo { position: relative; }
.founder-photo::after { content: ''; position: absolute; top: 12px; left: 12px; right: -12px; bottom: -12px; background: var(--gold-pale); border-radius: 4px; z-index: 0; }
.founder-photo-inner { position: relative; z-index: 1; aspect-ratio: 3/4; border-radius: 4px; overflow: hidden; box-shadow: 0 12px 40px rgba(184,136,42,0.15); }
.founder-photo-inner img { width: 100%; height: 100%; object-fit: cover; }
.founder-name { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--dark); }
.founder-role { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin: 0.3rem 0 1.5rem; }
.founder-text p { font-size: 1rem; line-height: 1.9; color: var(--text-muted); font-weight: 300; margin-bottom: 1.1rem; }
.founder-note { font-size: 0.8rem; color: var(--text-muted); opacity: 0.6; }

/* ── PARTNER ── */
.partner { background: var(--warm-white); }
.partner-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.partner-intro { font-size: 1.05rem; line-height: 1.9; color: var(--text-muted); font-weight: 300; margin-bottom: 1.5rem; }
.partner-quote { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-style: italic; color: var(--dark); border-left: 3px solid var(--gold); padding: 1rem 1.5rem; text-align: left; margin: 2.5rem auto; max-width: 650px; background: var(--gold-pale); border-radius: 0 4px 4px 0; }
.partner-quote small { display: block; margin-top: 0.5rem; font-size: 0.75rem; font-style: normal; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; }
.ways-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin: 2.5rem 0; }
.way-pill { background: var(--cream); border: 1.5px solid var(--border); border-radius: 4px; padding: 1.4rem 1rem; font-size: 0.82rem; letter-spacing: 0.08em; color: var(--text); transition: border-color 0.3s, background 0.3s, transform 0.2s; cursor: default; }
.way-pill:hover { border-color: var(--gold); background: var(--gold-pale); transform: translateY(-2px); }
.way-pill .way-icon { font-size: 1.6rem; margin-bottom: 0.5rem; }

/* ── CONTACT FORM ── */
.contact-form-wrap { margin-top: 3.5rem; text-align: left; background: var(--cream); padding: 2.5rem; border-radius: 4px; border: 1px solid var(--border); }
.contact-form-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--dark); margin-bottom: 1.5rem; text-align: center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); font-weight: 500; }
.form-group input,
.form-group textarea {
  padding: 0.85rem 1rem; border: 1.5px solid var(--border);
  border-radius: 2px; background: var(--warm-white);
  font-family: 'DM Sans', sans-serif; font-size: 0.97rem; color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-dim); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-response { margin-bottom: 1rem; font-size: 0.9rem; padding: 0.8rem 1rem; border-radius: 2px; display: none; }
.form-response.success { background: #edfaf0; color: #1a6b2e; border: 1px solid #a8e6b8; display: block; }
.form-response.error   { background: #fef0f0; color: #8b1a1a; border: 1px solid #f8c0c0; display: block; }
.contact-form .btn-primary { width: 100%; text-align: center; cursor: pointer; border: none; font-size: 0.9rem; }
.contact-form .btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--gold); padding: 5rem 5%; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent); }
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 3rem); color: var(--warm-white); margin-bottom: 0.6rem; position: relative; }
.cta-banner p  { color: rgba(253,250,245,0.8); margin-bottom: 2.2rem; font-size: 1rem; position: relative; }

/* ── FOOTER ── */
.site-footer { background: var(--dark); padding: 4.5rem 5% 2rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--warm-white); margin-bottom: 1rem; display: block; text-decoration: none; }
.footer-logo em { font-style: italic; color: var(--gold-light); }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.35); max-width: 280px; }
.footer-col h4 { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul a { color: rgba(255,255,255,0.35); font-size: 0.88rem; text-decoration: none; transition: color 0.3s; }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.2); }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

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

/* ── ELEMENTOR OVERRIDES ── */
.elementor-page .site-nav { position: fixed !important; }
.elementor-section-boxed > .elementor-container { max-width: 1200px; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; padding-top: 3rem; }
  .hero-arch { display: none; }
  .mandate-inner, .founder-inner, .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .mandate-photo, .founder-photo-inner { aspect-ratio: 16/9; }
  .vm-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .slide-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .slide-image { aspect-ratio: 16/9; }
  .nav-links { display: none; }
  .nav-menu-toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  /* Mobile nav dropdown */
  .site-nav { flex-wrap: wrap; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    width: 100%; order: 3; padding: 1rem 0;
    border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 0.7rem 0; display: block; font-size: 0.9rem; }
}

@media (max-width: 600px) {
  section { padding: 5rem 5%; }
  .vm-card { padding: 2.5rem 1.8rem; }
  .contact-form-wrap { padding: 1.5rem; }
  .stat-item:not(:last-child)::after { display: none; }
}

/* ── WORDPRESS CORE STYLES ── */
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; width: 1px; word-wrap: normal; }
.alignleft  { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { display: block; margin: 0 auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--text-muted); text-align: center; margin-top: 0.5rem; }
