@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,400&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --green-deep: #0F2219;
  --green-mid: #1E4032;
  --green-light: #2A5E45;
  --amber: #C49A1A;
  --amber-light: #DDB84A;
  --cream: #F5F1E8;
  --cream-dark: #EAE4D4;
  --text-dark: #1A1A14;
  --text-mid: #3D3D2E;
  --text-muted: #7A7A60;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text-dark); min-height: 100vh; }

/* NAV */
nav {
  background: var(--green-deep);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
}
.logo a img { height: 44px; width: auto; display: block; }
.logo a span { display: none; }
.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links li { position: relative; }
.nav-links a {
  color: rgba(244,237,216,0.75);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 400;
  padding: 1.35rem 1rem;
  display: block;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a.active { color: var(--amber-light); }
.nav-cta {
  background: var(--amber);
  color: var(--green-deep) !important;
  font-weight: 500 !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: 6px;
  margin-left: 0.5rem;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--amber-light) !important; color: var(--green-deep) !important; }

/* dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: var(--green-deep);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  min-width: 180px;
  padding: 0.5rem 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { padding: 0.6rem 1.25rem; font-size: 0.85rem; }

/* HAMBURGER */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--cream); margin: 4px 0; border-radius: 2px; transition: 0.3s; }

/* HERO */
.hero {
  background: var(--green-deep);
  padding: 5rem 2rem 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 70px solid rgba(212,136,46,0.1);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; top: 40px; right: 40px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 50px solid rgba(212,136,46,0.07);
  pointer-events: none;
}
.hero-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.hero-copy { padding-bottom: 5rem; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(212,136,46,0.18);
  border: 1px solid rgba(212,136,46,0.35);
  color: var(--amber-light);
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 1.5rem;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--amber-light); }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--white); line-height: 1.2; margin-bottom: 1.25rem;
}
.hero h1 em { font-style: italic; color: var(--amber-light); }
.hero-copy > p { color: rgba(244,237,216,0.75); font-size: 1rem; line-height: 1.75; max-width: 440px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.btn-primary {
  background: var(--amber); color: var(--green-deep);
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 500;
  padding: 0.8rem 1.75rem; border: none; border-radius: 8px;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--amber-light); }
.btn-outline {
  background: transparent; color: var(--cream);
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 400;
  padding: 0.8rem 1.75rem; border: 1px solid rgba(244,237,216,0.3); border-radius: 8px;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--cream); color: var(--white); }

/* GRANT BOX */
.grant-box {
  background: rgba(212,136,46,0.1);
  border: 1px solid rgba(212,136,46,0.28);
  border-radius: 12px; padding: 1.25rem 1.5rem; margin-top: 2rem;
}
.grant-box h3 { color: var(--amber-light); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.4rem; }
.grant-box p { color: rgba(244,237,216,0.78); font-size: 0.88rem; line-height: 1.6; }

/* STAT STRIP */
.stats-strip {
  background: var(--green-mid);
  padding: 2rem;
}
.stats-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; gap: 1rem; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--amber-light); line-height: 1; margin-bottom: 0.3rem; }
.stat-label { font-size: 0.8rem; color: rgba(244,237,216,0.7); }

/* SECTION SHARED */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1000px; margin: 0 auto; }
.section-label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.75rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--green-deep); margin-bottom: 1rem; line-height: 1.25; }
.section-sub { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; max-width: 560px; }
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.service-card {
  background: var(--white); border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.07); padding: 2rem;
  transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.service-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--green-deep); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 1.25rem; }
.service-card h3 { font-size: 1.05rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.6rem; }
.service-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }
.service-card ul { list-style: none; margin-top: 1rem; }
.service-card ul li { font-size: 0.85rem; color: var(--text-muted); padding: 0.3rem 0; padding-left: 1.25rem; position: relative; }
.service-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--amber); font-size: 0.8rem; }

/* WHY SOLAR GRID */
.why-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.25rem; }
.why-card { background: var(--white); border-radius: 12px; padding: 1.5rem; border: 1px solid rgba(0,0,0,0.06); }
.why-card h3 { font-size: 0.95rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.4rem; }
.why-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.why-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--cream-dark); line-height: 1; margin-bottom: 0.75rem; }

/* STEPS */
.steps-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.step { text-align: center; padding: 1.5rem 1rem; position: relative; }
.step:not(:last-child)::after { content: '→'; position: absolute; right: -0.5rem; top: 40%; color: var(--amber); font-size: 1.1rem; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--cream); border: 2px solid var(--amber); color: var(--amber);
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.75rem;
}
.step h4 { font-size: 0.9rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.35rem; }
.step p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* CTA BAND */
.cta-band { background: var(--green-deep); padding: 4rem 2rem; text-align: center; }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2rem); color: var(--white); margin-bottom: 0.75rem; }
.cta-band h2 em { color: var(--amber-light); font-style: italic; }
.cta-band p { color: rgba(244,237,216,0.7); font-size: 0.95rem; margin-bottom: 2rem; }
.cta-band .btn-primary { font-size: 1rem; padding: 0.9rem 2.25rem; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid rgba(0,0,0,0.08); border-radius: 14px; overflow: hidden; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); background: var(--white); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.25rem 1.5rem; font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 500; color: var(--text-dark);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq-q:hover { background: #FAFAF8; }
.faq-icon { font-size: 1.2rem; color: var(--amber); flex-shrink: 0; transition: transform 0.2s; }
.faq-a { display: none; padding: 0 1.5rem 1.25rem; font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* PAGE HERO (inner pages) */
.page-hero { background: var(--green-deep); padding: 4rem 2rem; }
.page-hero-inner { max-width: 1000px; margin: 0 auto; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--white); margin-bottom: 0.75rem; }
.page-hero h1 em { font-style: italic; color: var(--amber-light); }
.page-hero p { color: rgba(244,237,216,0.72); font-size: 1rem; line-height: 1.75; max-width: 520px; }

/* CONTACT FORM */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--green-deep); margin-bottom: 1rem; }
.contact-info p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; }
.contact-detail-icon { width: 38px; height: 38px; border-radius: 8px; background: var(--green-deep); color: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.contact-detail-text strong { display: block; font-size: 0.8rem; font-weight: 500; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.contact-detail-text a, .contact-detail-text span { font-size: 0.9rem; color: var(--text-dark); text-decoration: none; }
.contact-detail-text a:hover { color: var(--green-light); }

.form-card { background: var(--white); border-radius: 16px; padding: 2.25rem; border: 1px solid rgba(0,0,0,0.07); }
.form-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--green-deep); margin-bottom: 0.3rem; }
.form-card > p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: 0.78rem; font-weight: 500; color: var(--text-mid); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid #DDD8C8; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--text-dark);
  background: #FAFAF6; transition: border-color 0.2s, box-shadow 0.2s; outline: none;
  appearance: none; -webkit-appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7A60' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 2.5rem;
}
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green-light); box-shadow: 0 0 0 3px rgba(62,125,90,0.1); background: var(--white); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.submit-btn {
  width: 100%; background: var(--green-deep); color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 500;
  padding: 0.9rem 1.5rem; border: none; border-radius: 8px;
  cursor: pointer; transition: background 0.2s; margin-top: 0.75rem;
}
.submit-btn:hover { background: var(--green-mid); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.privacy-note { text-align: center; font-size: 0.75rem; color: var(--text-muted); margin-top: 0.6rem; }
.success-msg { display: none; text-align: center; padding: 2rem 1rem; }
.success-icon { width: 56px; height: 56px; border-radius: 50%; background: #EAF3E7; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.success-icon svg { width: 28px; height: 28px; }
.success-msg h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--green-deep); margin-bottom: 0.5rem; }
.success-msg p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* SERVICE AREA */
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; }
.area-card { background: var(--white); border-radius: 12px; padding: 1.5rem 1rem; text-align: center; border: 1px solid rgba(0,0,0,0.07); }
.area-card h3 { font-size: 0.95rem; font-weight: 500; color: var(--green-deep); margin-bottom: 0.25rem; }
.area-card p { font-size: 0.8rem; color: var(--text-muted); }

/* REFERRAL */
.referral-card { background: var(--white); border-radius: 16px; border: 1px solid rgba(0,0,0,0.07); padding: 2.5rem; }
.referral-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.referral-steps { display: flex; flex-direction: column; gap: 1.25rem; }
.referral-step { display: flex; gap: 1rem; align-items: flex-start; }
.referral-step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--cream); border: 2px solid var(--amber); color: var(--amber); font-family: 'Playfair Display', serif; font-size: 1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.referral-step-text h4 { font-size: 0.9rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.2rem; }
.referral-step-text p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }
.reward-badge { background: var(--green-deep); border-radius: 12px; padding: 1.5rem; text-align: center; margin-bottom: 1.5rem; }
.reward-badge .amount { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--amber-light); line-height: 1; }
.reward-badge p { color: rgba(244,237,216,0.7); font-size: 0.85rem; margin-top: 0.4rem; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-copy p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.25rem; }
.partners-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.partner-card { background: var(--white); border-radius: 10px; border: 1px solid rgba(0,0,0,0.07); padding: 1.25rem; display: flex; align-items: center; justify-content: center; min-height: 80px; }
.partner-card span { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; text-align: center; }
.value-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.value-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.value-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); margin-top: 7px; flex-shrink: 0; }
.value-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.value-item strong { color: var(--text-dark); }

/* FOOTER */
footer { background: var(--green-deep); padding: 3rem 2rem 2rem; }
.footer-inner { max-width: 1000px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer-brand .logo-text { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--cream); margin-bottom: 0.75rem; }
.footer-brand .logo-text span { color: var(--amber-light); }
.footer-brand p { font-size: 0.82rem; color: rgba(244,237,216,0.5); line-height: 1.65; }
.footer-col h4 { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber-light); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(244,237,216,0.55); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-col p { font-size: 0.85rem; color: rgba(244,237,216,0.55); line-height: 1.7; }
.footer-col a { color: rgba(244,237,216,0.55); text-decoration: none; }
.footer-col a:hover { color: var(--cream); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 1.25rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.78rem; color: rgba(244,237,216,0.35); }

/* RESPONSIVE */
.services-4-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── TABLET ── */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-row { grid-template-columns: repeat(3, 1fr); }
  .step:nth-child(3)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

/* ── MOBILE / IPHONE ── */
@media (max-width: 768px) {

  /* NAV */
  nav { padding: 0 1.25rem; flex-wrap: wrap; }
  .nav-links { display: none; flex-direction: column; width: 100%; padding-bottom: 1rem; }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links a { padding: 0.75rem 0; font-size: 1rem; }
  .nav-cta { margin-left: 0; width: 100%; text-align: center; border-radius: 8px; padding: 0.75rem !important; }
  .nav-toggle { display: block; }
  .dropdown-menu { position: static; box-shadow: none; border: none; background: none; padding: 0 0 0 1rem; }
  .dropdown:hover .dropdown-menu { display: none; }
  .dropdown.open .dropdown-menu { display: block; }

  /* HERO */
  .hero { padding: 2.5rem 1.25rem 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-copy { padding-bottom: 1.5rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; }

  /* SECTIONS */
  section { padding: 3rem 1.25rem; }
  .section-inner { padding: 0; }

  /* GRIDS */
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-4-grid { grid-template-columns: 1fr !important; }
  .steps-row { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }

  /* SPLIT SECTIONS */
  .split { grid-template-columns: 1fr !important; }
  .split-img { height: 280px; position: relative; }
  .split-copy { padding: 2.5rem 1.5rem; order: 2 !important; }
  .split-img { order: 1 !important; }

  /* OUTBUILDING STRIP */
  .outbuilding-strip { grid-template-columns: 1fr !important; }
  .outbuilding-img { height: 260px; position: relative; }
  .outbuilding-copy { padding: 2.5rem 1.5rem; }

  /* PHOTO GRIDS */
  .photo-grid-3 { grid-template-columns: 1fr; }
  .photo-cell-tall { height: 260px; }
  .photo-cell-med { height: 200px; }

  /* ABOUT PAGE */
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .family-hero { grid-template-columns: 1fr !important; }
  .family-photo { height: 320px; position: relative; }
  .family-copy { padding: 2.5rem 1.5rem !important; }
  .photo-strip { grid-template-columns: 1fr 1fr !important; height: 180px; }
  .photo-strip div:last-child { display: none; }
  .partners-grid { grid-template-columns: 1fr 1fr; }

  /* CONTACT */
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* REFERRAL */
  .referral-grid { grid-template-columns: 1fr; gap: 2rem; }
  .reward-badge { margin-bottom: 1.5rem; }

  /* FORMS */
  .field-row { grid-template-columns: 1fr; }
  .form-card { padding: 1.5rem; }

  /* GRANTS PAGE */
  .grant-hero-inner { grid-template-columns: 1fr !important; gap: 2rem; }
  .grant-stat-row { grid-template-columns: 1fr 1fr !important; }
  .what-covers { grid-template-columns: 1fr !important; }
  .eligibility-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr !important; }

  /* SERVICE AREA */
  .area-grid { grid-template-columns: 1fr 1fr; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* CTA BAND */
  .cta-band { padding: 3rem 1.25rem; }
  .cta-band .btn-primary { width: 100%; }

  /* TYPOGRAPHY */
  .hero h1 { font-size: 2rem; }
  .section-title { font-size: 1.5rem; }
  .page-hero h1 { font-size: 1.7rem; }
  .page-hero { padding: 3rem 1.25rem; }

  /* BADGE */
  .photo-hero-content .badge { display: none; }
  .photo-hero-content { padding-top: 0; }

  /* HERO IMAGE MOBILE CROP */
  .photo-hero img { object-position: center 60%; }

  /* PREVENT HORIZONTAL OVERFLOW */
  body { overflow-x: hidden; }
  img { max-width: 100%; }
  * { box-sizing: border-box; }

  /* INLINE GRID OVERRIDES */
  [style*="grid-template-columns: 1fr 1.4fr"],
  [style*="grid-template-columns: 1.4fr 1fr"],
  [style*="grid-template-columns: 1fr 1.2fr"],
  [style*="grid-template-columns: 1.5fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
  }
}
