/* ============================================
   NFPC — Not For Profit Consultancy
   Stylesheet
   ============================================ */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #111827;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === VARIABLES === */
:root {
  --navy:       #1B3052;
  --navy-dark:  #0D1F36;
  --amber:      #E8941A;
  --amber-lt:   #F5A830;
  --text:       #111827;
  --text-mid:   #4B5563;
  --bg:         #F8FAFC;
  --white:      #ffffff;
  --border:     #E5E7EB;
  --max-w:      1100px;
  --r:          8px;
  --shadow:     0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.14);
}

/* === UTILITY === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }

.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}

.lead { font-size: 1.15rem; color: var(--text-mid); line-height: 1.8; }
.lead-white { font-size: 1.1rem; color: rgba(255,255,255,0.78); line-height: 1.8; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-lt);
  border-color: var(--amber-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,148,26,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-group { display: flex; flex-wrap: wrap; gap: 16px; }

/* ============================================
   HEADER / NAV — dark header to match logo
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 16px;
}
.logo img { height: 64px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--amber); }
.nav-links .nav-cta {
  background: var(--amber);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 4px;
}
.nav-links .nav-cta:hover { background: var(--amber-lt); color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 300;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 78px;
  background: var(--navy-dark);
  padding: 40px 28px;
  z-index: 150;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--amber); }
.mobile-nav .mobile-cta {
  margin-top: 32px;
  background: var(--amber);
  text-align: center;
  padding: 18px;
  border-radius: 4px;
  border-bottom: none;
}
.mobile-nav .mobile-cta:hover { background: var(--amber-lt); }

/* ============================================
   HERO — HOME
   ============================================ */
.hero {
  background: var(--navy-dark);
  color: var(--white);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content h1 { margin-bottom: 24px; }
.hero-content .lead-white { margin-bottom: 40px; }
.hero-photo-wrap {
  position: relative;
}
.hero-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid rgba(232,148,26,0.4);
  border-radius: 14px;
  pointer-events: none;
  z-index: 1;
}

/* Slideshow */
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Slideshow dots */
.slide-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.slide-dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
  border: none;
  padding: 0;
}
.slide-dot.active { background: var(--amber); }

/* ============================================
   PHOTO BREAK — full-width image with overlay
   ============================================ */
.photo-break {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.photo-break-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.28);
  transform: scale(1.02);
}
.photo-break-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 80px 24px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
.photo-break-inner .quote {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.photo-break-inner .quote-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
}
.amber-bar {
  width: 60px;
  height: 4px;
  background: var(--amber);
  margin: 20px auto;
  border-radius: 2px;
}

/* Photo + text split (sub-pages) */
.photo-split-section { background: var(--white); }
.photo-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.photo-split-grid.reverse { direction: rtl; }
.photo-split-grid.reverse > * { direction: ltr; }
.split-photo {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-photo img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}
.split-text h2 { margin-bottom: 20px; }
.split-text p { color: var(--text-mid); margin-bottom: 16px; font-size: 0.97rem; }

/* ============================================
   PAGE HERO — SUB-PAGES
   ============================================ */
.page-hero {
  background: var(--navy-dark);
  color: var(--white);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,148,26,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 16px; }

/* Split page hero (business CSR page) */
.page-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.page-hero-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  border: 2px solid rgba(232,148,26,0.35);
}
.page-hero-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ============================================
   HOME — TWO PILLARS
   ============================================ */
.pillars { background: var(--white); }
.pillars-header { margin-bottom: 48px; }

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.pillar-card {
  background: var(--bg);
  border-radius: var(--r);
  padding: 48px 40px;
  border-top: 4px solid var(--amber);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.pillar-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.pillar-icon {
  width: 56px;
  height: 56px;
  background: rgba(232,148,26,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.pillar-icon svg { width: 28px; height: 28px; }

.pillar-card h3 { margin-bottom: 14px; color: var(--navy); }
.pillar-card p { color: var(--text-mid); margin-bottom: 32px; font-size: 0.95rem; }

/* ============================================
   HOME — WHAT NFPC DOES
   ============================================ */
.what-nfpc { background: var(--navy); color: var(--white); }
.what-nfpc .lead-white { margin-bottom: 48px; }

.org-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.org-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r);
  padding: 36px 32px;
  border-left: 4px solid var(--amber);
}
.org-card h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--amber); margin-bottom: 12px; }
.org-card p { color: rgba(255,255,255,0.72); font-size: 0.95rem; }

/* ============================================
   HOME — WHY WORK WITH US
   ============================================ */
.why-work { background: var(--bg); }

.why-headline {
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.why-headline span { color: var(--amber); }
.why-sub { text-align: center; max-width: 640px; margin: 0 auto 56px; }

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.diff-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border-bottom: 4px solid var(--amber);
}
.diff-card h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 10px;
}
.diff-card p { font-size: 0.9rem; color: var(--text-mid); }

/* ============================================
   SUPPORT AREAS (sub-pages)
   ============================================ */
.support-section { background: var(--white); }
.support-intro { max-width: 700px; margin-bottom: 56px; }

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.support-card {
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 40px 32px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.support-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.support-num {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(232,148,26,0.2);
  line-height: 1;
  margin-bottom: 16px;
}
.support-card h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 12px;
}
.support-card p { font-size: 0.92rem; color: var(--text-mid); }

/* ============================================
   INCLUDES (sub-pages)
   ============================================ */
.includes-section { background: var(--bg); }

.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 40px;
}
.include-item {
  background: var(--white);
  border-radius: var(--r);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-size: 0.9rem;
  font-weight: 500;
}
.include-dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   WHY THIS MATTERS (sub-pages)
   ============================================ */
.why-matters { background: var(--navy-dark); color: var(--white); }
.why-matters h2 { margin-bottom: 28px; }
.why-matters .why-body {
  max-width: 680px;
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  line-height: 1.9;
}
.why-points { display: flex; flex-direction: column; gap: 8px; margin-top: 24px; }
.why-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.why-point:last-child { border-bottom: none; }
.why-point::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 10px;
}

/* ============================================
   EXPERIENCE PAGE
   ============================================ */
.founder-section { background: var(--white); }
.founder-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}
.founder-photo {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.founder-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
}
.founder-name { margin-bottom: 4px; }
.founder-role { color: var(--amber); font-weight: 600; font-size: 0.95rem; margin-bottom: 28px; display: block; }
.founder-content p { color: var(--text-mid); margin-bottom: 16px; font-size: 0.97rem; }

.stats-section { background: var(--bg); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--amber);
}
.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.85rem; color: var(--text-mid); font-weight: 500; }

.partners-section { background: var(--white); }
.partners-intro { max-width: 640px; margin-bottom: 36px; color: var(--text-mid); }
.partners-list { display: flex; flex-wrap: wrap; gap: 12px; }
.partner-tag {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--bg); }
.testimonials-header { text-align: center; margin-bottom: 52px; }
.testimonials-header h2 { margin-top: 8px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 36px 32px 32px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--amber);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial-quote {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.8;
  position: relative;
  padding-top: 8px;
}
.testimonial-quote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--amber);
  line-height: 0;
  vertical-align: -0.45em;
  margin-right: 4px;
  font-family: Georgia, serif;
}
.testimonial-author { margin-top: auto; }
.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}
.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-top: 2px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--amber);
  padding: 88px 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 40px;
}
.cta-section .btn-outline:hover { color: var(--amber); }

/* ============================================
   CONTACT
   ============================================ */
.contact-section { background: var(--navy-dark); color: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info > p { color: rgba(255,255,255,0.72); margin-bottom: 36px; font-size: 0.97rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
}
.contact-detail svg { width: 18px; height: 18px; flex-shrink: 0; opacity: 0.7; }
.contact-detail a,
.contact-detail span {
  font-weight: 600;
  transition: color 0.2s;
}
.contact-detail a:hover { color: var(--amber); }

.contact-form { }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 16px; /* 16px prevents iOS auto-zoom on focus */
  transition: border-color 0.2s, background 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: rgba(255,255,255,0.09);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: var(--navy-dark); color: var(--white); }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 0.85rem; }

/* Success message */
.form-success {
  display: none;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.4);
  border-radius: var(--r);
  padding: 24px;
  text-align: center;
  color: #6EE7B7;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #070E1A;
  color: rgba(255,255,255,0.55);
  padding: 56px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img {
  max-width: 180px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 18px;
}
.footer-brand p { font-size: 0.85rem; max-width: 300px; line-height: 1.7; }

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--amber); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  gap: 16px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--white); }

/* ============================================
   RESPONSIVE
   ============================================ */
/* Accessibility icons section */
.access-icons-section { background: var(--navy); }
.access-icons-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.access-icons-img {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.access-icons-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Nav CTA minimum touch target */
.nav-links .nav-cta { min-height: 40px; display: inline-flex; align-items: center; }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .page-hero-split { grid-template-columns: 1fr; }
  .page-hero-img img { height: 240px; }

  .hero-split      { grid-template-columns: 1fr; }
  .hero-slideshow  { height: 280px; }
  .pillars-grid    { grid-template-columns: 1fr; }
  .org-grid        { grid-template-columns: 1fr; }
  .diff-grid        { grid-template-columns: 1fr; }
  .testimonial-grid  { grid-template-columns: 1fr; }
  .access-icons-split { grid-template-columns: 1fr; }
  .support-grid    { grid-template-columns: 1fr; }
  .stats-grid      { grid-template-columns: repeat(2, 1fr); }
  .founder-grid    { grid-template-columns: 1fr; }
  .founder-photo img { height: 320px; }
  .contact-grid    { grid-template-columns: 1fr; }
  .footer-inner    { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom   { flex-direction: column; text-align: center; }
  .photo-split-grid { grid-template-columns: 1fr; }
  .photo-split-grid.reverse { direction: ltr; }
  .photo-break-bg  { background-attachment: scroll; }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .hero    { padding: 60px 0; }
  .hero-slideshow  { height: 220px; }
  .page-hero { padding: 56px 0; }
  .stats-grid { grid-template-columns: 1fr; }
  .btn-group  { flex-direction: column; }
  .btn        { justify-content: center; text-align: center; }
  .form-row   { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .partners-section { padding: 56px 0; }
}
