/* ═══════════════════════════════════════════
   Quality Life Mental Health
   Design language adapted from Social Advance Corp
   (Conviva + Thriving Mind patterns, QLMH palette)
   ═══════════════════════════════════════════ */

:root {
  --teal-dark: #0F4F5E;
  --teal: #1A6B7D;
  --teal-soft: #4FB3A3;
  --pink: #D4698A;
  --pink-light: #FDF2F5;
  --charcoal: #1E2D2D;
  --bg: #FAFAF8;
  --white: #FFFFFF;
  --line: #E5E1E4;
  --muted: #5A6B68;
  --radius: 18px;
  --radius-lg: 24px;
  --shadow: 0 18px 40px -18px rgba(15,79,94,0.35);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--charcoal);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4 {
  font-family: 'Poppins', system-ui, sans-serif;
  line-height: 1.15;
  font-weight: 700;
  color: var(--teal-dark);
  margin: 0;
}
a { color: var(--teal); text-decoration: none; }
img { max-width: 100%; display: block; }
address { font-style: normal; }
.wrap { width: min(1140px, 92vw); margin-inline: auto; }
.text-pink { color: var(--pink); }

/* --- Accent bar (top) --- */
.accent-bar { height: 4px; background: var(--pink); }

/* --- Crisis banner --- */
.crisis-banner {
  background: #FEF3CD;
  color: #664D03;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.crisis-banner a { color: #664D03; font-weight: 700; text-decoration: underline; }

/* --- Eyebrow --- */
.eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: var(--pink);
  margin-bottom: 0.8rem;
}
.eyebrow--center { text-align: center; margin-bottom: 1.8rem; }
.eyebrow--pink { color: var(--pink); }

/* --- Nav (dark, Social Advance–style) --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--teal-dark);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s ease;
}
.nav--hidden { transform: translateY(-100%); }
.nav--scrolled { box-shadow: 0 4px 20px -4px rgba(0,0,0,0.25); }
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 1.5rem);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav-mark-wrap {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--pink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.nav-mark { width: 22px; height: 22px; border-radius: 4px; }
.nav-wordmark {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--white);
  letter-spacing: 0.01em;
}
.nav-links {
  display: flex;
  gap: 1.8rem;
}
.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--white); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.nav-phone {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
}
.nav-phone:hover { color: var(--white); }
.nav-cta {
  padding: 0.5rem 1.2rem;
  background: var(--pink);
  color: var(--teal-dark);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s;
}
.nav-cta:hover { background: #e07da0; transform: translateY(-1px); box-shadow: 0 4px 12px -3px rgba(212,105,138,0.4); }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  transition: 0.2s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  background: var(--teal-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.2rem clamp(1rem, 4vw, 1.5rem);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.nav-mobile-cta {
  margin-top: 0.3rem;
  padding: 0.65rem 1.2rem;
  background: var(--pink);
  color: var(--teal-dark) !important;
  border-radius: 999px;
  text-align: center;
  font-weight: 700 !important;
}

/* --- Hero (Conviva-style) --- */
.hero {
  background: var(--white);
}
.hero .wrap {
  padding: 2rem 0;
}
.hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px -4px rgba(0,0,0,0.08);
}
.hero-photo img {
  width: 100%;
  height: clamp(220px, 42vh, 480px);
  object-fit: cover;
}
.hero-grid {
  padding: 3rem 0 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--teal-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.hero-sub {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 46ch;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  max-width: 380px;
}
.hero-quote {
  background: var(--pink-light);
  border-radius: 16px;
  padding: 1.8rem;
  margin-top: 3rem;
}
.hero-quote-text {
  color: var(--teal-dark);
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 500;
  font-style: italic;
  margin: 0;
}
.hero-quote-bar {
  width: 40px;
  height: 2px;
  background: var(--pink);
  margin: 1rem 0;
}
.hero-quote-attr {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--pink);
  margin: 0;
}

/* --- Stats --- */
.stats-section { padding-bottom: 1rem; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #e0dedd;
  border-radius: 16px;
  border: 1px solid #e0dedd;
  overflow: hidden;
  box-shadow: 0 2px 8px -2px rgba(0,0,0,0.06);
}
.stat {
  background: var(--white);
  padding: 1.2rem 1rem;
  text-align: center;
}
.stat-value {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--teal-dark);
  margin: 0;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0.15rem 0 0;
}

/* --- Feature rows (Conviva alternating) --- */
.section-pad { padding: 5rem 0; }
.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 56ch;
  margin: -0.8rem auto 2.5rem;
  font-size: 0.98rem;
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}
.feature-row--reverse .feature-photo { order: 2; }
.feature-row--reverse .feature-text { order: 1; }
.feature-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
}
.feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-text h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}
.feature-text p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 0.8rem;
}
.feature-link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal-soft);
  text-decoration: none;
  transition: color 0.15s;
}
.feature-link:hover { color: var(--teal-dark); }

/* --- Services block (dark, Thriving Mind–style) --- */
.services-block {
  background: var(--teal-dark);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}
.dot-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1.5' fill='%234FB3A3' fill-opacity='0.15'/%3E%3C/svg%3E");
}
.glow-orb {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--teal-soft);
  opacity: 0.08;
  filter: blur(60px);
}
.services-inner { position: relative; }
.services-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.services-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}
.services-sub {
  color: rgba(255,255,255,0.55);
  max-width: 36ch;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.svc-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px -8px rgba(0,0,0,0.2);
  transition: transform 0.25s;
  display: flex;
  flex-direction: column;
}
.svc-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 16px 40px -10px rgba(0,0,0,0.3); }
.svc-banner { width: 100%; height: 120px; display: block; }
.svc-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--white);
  color: var(--teal-dark);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px -4px rgba(0,0,0,0.15);
  margin-top: -2.8rem;
  margin-bottom: 0.8rem;
  position: relative;
}
.svc-icon--pink { color: var(--pink); }
.svc-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--charcoal);
}
.svc-body p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

/* --- Quote band --- */
.quote-band {
  background: var(--pink-light);
  border-bottom: 1px solid rgba(212,105,138,0.15);
  padding: 3.5rem 1rem;
  text-align: center;
}
.quote-text {
  color: var(--teal-dark);
  font-size: 1.15rem;
  font-weight: 500;
  font-style: italic;
  max-width: 40ch;
  margin: 0 auto 0.8rem;
  line-height: 1.6;
}
.quote-attr {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.1em;
  margin: 0;
}

/* --- CTA block (rounded dark card) --- */
.cta-wrap { padding: 0 0 4rem; }
.cta-block {
  background: var(--teal-dark);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--pink);
}
.cta-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: var(--teal-soft);
  opacity: 0.08;
  filter: blur(50px);
}
.cta-inner { position: relative; }
.cta-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 0.6rem;
}
.cta-inner p {
  color: rgba(255,255,255,0.55);
  max-width: 34ch;
  margin: 0 auto 1.6rem;
}
.cta-actions {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Two column layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* --- Provider info --- */
.providers-info h3, .form h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.info-list { margin: 0; padding: 0; display: grid; gap: 1rem; }
.info-item { display: flex; gap: 0.8rem; }
.info-item dt {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--teal);
  min-width: 70px;
  flex-shrink: 0;
}
.info-item dd {
  margin: 0;
  color: var(--charcoal);
  font-size: 0.95rem;
  line-height: 1.5;
}
.info-item dd a { color: var(--teal); }
.info-item dd a:hover { text-decoration: underline; }

/* --- Forms --- */
.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
}
.form-intro {
  color: var(--muted);
  margin: 0 0 1.2rem;
  font-size: 0.95rem;
}
.form-field { margin-bottom: 1rem; }
.form-field label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 0.3rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--charcoal);
  transition: border-color 0.15s, outline 0.15s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
  border-color: var(--teal);
}
.form-field textarea { min-height: 80px; resize: vertical; }
.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0.8rem 0 0;
  line-height: 1.5;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  border: 2px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}
.btn--full { width: 100%; }
.btn--primary {
  background: var(--teal-dark);
  color: var(--white);
  border-color: transparent;
}
.btn--primary:hover { background: #0a3e4c; transform: translateY(-2px); box-shadow: 0 8px 24px -6px rgba(15,79,94,0.4); }
.btn--outline {
  background: transparent;
  border-color: rgba(15,79,94,0.15);
  color: var(--teal-dark);
}
.btn--outline:hover { border-color: rgba(15,79,94,0.4); transform: translateY(-1px); }
.btn--accent {
  background: var(--pink);
  color: var(--teal-dark);
  border-color: transparent;
  border-radius: 999px;
  padding: 0.75rem 1.8rem;
}
.btn--accent:hover { background: #e07da0; transform: translateY(-2px); box-shadow: 0 8px 24px -6px rgba(212,105,138,0.4); }
.btn--ghost-light {
  background: transparent;
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
  border-radius: 999px;
  padding: 0.75rem 1.8rem;
}
.btn--ghost-light:hover { border-color: rgba(255,255,255,0.5); transform: translateY(-1px); }
.btn--success { background: #3A9E7E; color: var(--white); border-color: transparent; }

/* --- Contact info --- */
.contact-info { display: grid; gap: 1.8rem; align-content: start; }
.contact-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--pink);
  margin: 0 0 0.4rem;
}
.contact-phone {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
}
.contact-phone:hover { color: var(--teal-dark); }
.contact-address { font-size: 0.95rem; color: var(--charcoal); line-height: 1.6; margin: 0 0 0.3rem; }
.contact-hours { font-size: 0.95rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* --- Footer (dark 4-column, Social Advance–style) --- */
.footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,0.55);
  margin-top: auto;
}
.footer-accent { height: 4px; background: var(--pink); }
.footer-grid {
  padding: 3.5rem 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  font-size: 0.92rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.8rem;
}
.footer-mark-wrap {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--pink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.footer-mark-wrap img { width: 18px; height: 18px; }
.footer-brand span {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 0.88rem;
}
.footer-tagline {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}
.footer-lang {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pink);
  margin: 0.8rem 0 0;
}
.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--white);
  margin: 0 0 0.8rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--pink); }
.footer-contact {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}
.footer-contact a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  display: block;
  margin-top: 0.3rem;
  transition: color 0.15s;
}
.footer-contact a:hover { color: var(--pink); }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.2rem 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  max-width: 1140px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}

/* --- Noise overlay (kills digital sterility) --- */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* --- Focus visible (accessibility) --- */
:focus-visible {
  outline: 2px solid var(--teal-soft);
  outline-offset: 3px;
}
.nav-links a:focus-visible,
.nav-cta:focus-visible,
.nav-phone:focus-visible {
  outline-color: rgba(255,255,255,0.8);
}

/* --- Hero entrance animation --- */
@media (prefers-reduced-motion: no-preference) {
  .hero-photo { animation: hero-photo-in 0.8s var(--ease-out-expo) both; }
  .hero-content .eyebrow { animation: hero-fade-up 0.6s var(--ease-out-expo) 0.2s both; }
  .hero-content h1 { animation: hero-fade-up 0.6s var(--ease-out-expo) 0.35s both; }
  .hero-sub { animation: hero-fade-up 0.6s var(--ease-out-expo) 0.5s both; }
  .hero-actions { animation: hero-fade-up 0.6s var(--ease-out-expo) 0.6s both; }
  .hero-quote { animation: hero-fade-up 0.6s var(--ease-out-expo) 0.7s both; }
  .stats-grid { animation: hero-fade-up 0.5s var(--ease-out-expo) 0.85s both; }
}
@keyframes hero-photo-in {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Hover gating (touch devices get no hover jank) --- */
@media (hover: hover) and (pointer: fine) {
  .svc-card { transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease; }
  .btn { transition: all 0.2s var(--ease-out-expo); }
  .feature-link { transition: color 0.15s; }
  .nav-cta { transition: background 0.15s, transform 0.2s, box-shadow 0.2s; }
}
@media not all and (hover: hover) {
  .svc-card:hover { transform: none; box-shadow: 0 8px 30px -8px rgba(0,0,0,0.2); }
  .btn--primary:hover,
  .btn--accent:hover,
  .btn--outline:hover,
  .btn--ghost-light:hover { transform: none; box-shadow: none; }
}

/* --- Scroll reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}
.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .nav-links, .nav-phone, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-quote { margin-top: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row--reverse .feature-photo { order: 0; }
  .feature-row--reverse .feature-text { order: 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2rem; }
  .hero-actions { max-width: 100%; }
}
