/* HYD × Innerly — Home mockup (Figma 22:29 sync) */

:root {
  --primary: #4A6B72;
  --secondary: #A8C1B3;
  --accent: #F28C6A;
  --success: #84C69B;
  --background: #F6F8F7;
  --background-alt: #EAEFF0;
  --surface: #FFFFFF;
  --surface-warm: #F7F3EF;
  --pull-quote-bg: #F8F3EF;
  --text-dark: #2E3E3E;
  --text-body: #454545;
  --text-muted: #6B7A7B;
  --tag-bg: #A8C1B3;
  --shadow: 0 10px 50px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 10px 25px rgba(0, 0, 0, 0.05);
  --radius-img: 20px;
  --radius-lg: 30px;
  --radius-pill: 9999px;
  --page-pad: 139px;
  --max: 1440px;
  --font-body: 'Poppins', system-ui, sans-serif;
  --font-display: 'Libre Baskerville', Georgia, serif;
  --font-wordmark: 'Barlow Semi Condensed', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--background);
}

img { display: block; max-width: 100%; height: auto; }
.logo img, .store-badge img { max-width: none; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  padding-inline: clamp(24px, 9.65vw, var(--page-pad));
}

.site-header > .container {
  width: min(100% - 48px, 1392px);
  padding-left: 64px;
  padding-right: 24px;
}
.hero > .container.hero-grid {
  width: min(100% - 48px, 1392px);
  padding-left: 48px;
  padding-right: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 40px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-outline-light {
  background: var(--surface);
  color: var(--text-dark);
  border: 1px solid var(--background-alt);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 239, 0.82);
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 114px;
  padding: 38px 0 22px;
}
.header-cta {
  background: var(--primary);
  color: #fff;
  padding: 14px 40px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}
.header-cta:hover { background: #3d5960; color: #fff; }
.logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo img { height: 54px; width: auto; display: block; }
.site-nav { display: flex; gap: 34px; font-size: 1rem; }
.site-nav a { color: var(--text-muted); font-weight: 400; }
.site-nav a.active, .site-nav a:hover { color: var(--text-dark); font-weight: 700; }

.nav-check { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--background-alt);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle-bars {
  position: relative;
  width: 18px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.2s ease;
}
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }
.nav-check:checked + .nav-toggle .nav-toggle-bars { background: transparent; }
.nav-check:checked + .nav-toggle .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
.nav-check:checked + .nav-toggle .nav-toggle-bars::after { top: 0; transform: rotate(-45deg); }


/* Hero — locked layout, Figma phone sizes */
.hero { background: var(--surface-warm); padding-bottom: 68px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-top: 58.81px;
}
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; max-width: 765px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 17px; margin: 0 0 48.25px 7px; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  height: 38.39px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  color: #fff;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 86.4px;
  font-weight: 700;
  margin: 0 0 31px;
  color: var(--text-dark);
}
.hero-h1-line { display: block; margin: 0; line-height: 1.15; white-space: nowrap; }
.hero-lead {
  font-size: 18px;
  line-height: 28.8px;
  color: var(--text-muted);
  max-width: 602px;
  margin: 0 0 77px 10px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-left: 7px; }
.store-badge { display: inline-block; line-height: 0; }
.store-badge img { display: block; max-width: none; height: 40px; width: auto; }
.hero-visual {
  position: relative;
  min-height: 496px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 1px;
}
.hero-phones {
  position: relative;
  width: 471px;
  max-width: 100%;
  height: 496px;
  flex-shrink: 0;
  animation: hero-float 6s ease-in-out infinite;
  will-change: transform;
}

@keyframes hero-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  25% { transform: translate3d(8px, -6px, 0); }
  50% { transform: translate3d(0, -12px, 0); }
  75% { transform: translate3d(-8px, -6px, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-phones { animation: none !important; }
}
.hero-phone { position: absolute; }
.hero-phone--back { left: 0; top: 1px; z-index: 1; }
.hero-phone--front { left: 225px; top: 0; z-index: 2; }
.hero-phone--back img { width: 245px; height: 496px; display: block; }
.hero-phone--front img { width: 246px; height: 496px; display: block; }

/* Built for Ireland */
.section-built { background: var(--surface); padding: 120px 0; }
.built-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.built-heading {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 57.6px;
  font-weight: 700;
  margin: 0 0 24px;
  color: var(--text-dark);
  max-width: 604px;
}
.built-intro {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-body);
  margin: 0 0 32px;
  max-width: 529px;
}
.built-list { display: flex; flex-direction: column; gap: 32px; }
.built-item h3 {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 38.4px;
  margin: 0 0 8px;
}
.built-item p { margin: 0; color: var(--text-muted); font-size: 15px; line-height: 24px; }
.built-image {
  border-radius: var(--radius-img);
  overflow: hidden;
  height: 590px;
  box-shadow: var(--shadow);
}
.built-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* Pull quote */
.section-pull-quote { background: var(--pull-quote-bg); padding: 130px 0; }
.pull-quote-box {
  background: var(--primary);
  border-radius: var(--radius-img);
  max-width: 1100px;
  min-height: 480px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 80px 126px;
  text-align: center;
}
.pull-quote-box blockquote,
.pull-quote-box p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 64px;
  font-weight: 400;
  color: #fff;
}

/* Daily wellness */
.section-services { background: var(--surface-warm); padding: 100px 0; }
.section-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48.8px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 28.8px;
}
.section-pill--center { margin: 0 auto 24px; }
.section-head { text-align: center; max-width: 860px; margin: 0 auto 60px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: 50px;
  line-height: 70px;
  margin: 16px 0 10px;
}
.section-head p {
  font-size: 14px;
  line-height: 22.4px;
  color: var(--text-muted);
  max-width: 648px;
  margin: 0 auto;
}
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feature-card {
  background: var(--surface);
  border-radius: var(--radius-img);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 199px;
}
.feature-card__banner { width: 100%; height: 55px; object-fit: cover; border-radius: var(--radius-img) var(--radius-img) 0 0; }
.feature-card__body { padding: 16px 32px 24px; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 32px;
  margin: 0 0 8px;
}
.feature-card p { font-size: 14px; line-height: 22.4px; color: var(--text-muted); margin: 0; }

/* Support */
.section-support { background: var(--surface); padding: 120px 0; }
.support-grid {
  display: grid;
  grid-template-columns: 551px 1fr;
  gap: 60px;
  align-items: center;
}
.support-visual img {
  width: 551px;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-card);
}
.support-heading {
  font-family: var(--font-display);
  font-size: 60px;
  line-height: 73.6px;
  font-weight: 700;
  margin: 0 0 20px;
}
.support-intro {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-body);
  margin: 0 0 32px;
  max-width: 742px;
}
.support-list { display: flex; flex-direction: column; gap: 32px; }
.support-item h3 {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 38.4px;
  margin: 0 0 8px;
}
.support-item p { margin: 0; color: var(--text-muted); font-size: 15px; line-height: 24px; }

/* Good news posts */
.section-news { background: var(--surface-warm); padding: 100px 0 120px; position: relative; }
.news-head { max-width: 1086px; margin-bottom: 48px; }
.news-head .section-pill { margin-bottom: 24px; }
.news-head h2 {
  font-family: var(--font-display);
  font-size: 57.6px;
  line-height: 69.12px;
  max-width: 1086px;
  margin: 0 0 20px;
}
.news-intro {
  font-size: 14px;
  line-height: 22.4px;
  font-weight: 500;
  color: var(--text-body);
  max-width: 767px;
  margin: 0;
}
.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
.post-card {
  background: var(--surface);
  border-radius: 11.55px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.post-card__media { position: relative; }
.post-card__image { width: 100%; height: 188px; object-fit: cover; display: block; }
.post-card__body { padding: 20px 16px 24px; position: relative; min-height: 153px; }
.post-card h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17.6px;
  line-height: 24.2px;
  font-weight: 700;
  color: #424242;
  margin: 0 0 16px;
}
.post-card__meta {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
}
.post-card__meta img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.post-card__meta-text strong {
  display: block;
  font-size: 15.4px;
  line-height: 1;
  color: #424242;
}
.post-card__meta-text span { font-size: 12.1px; color: #737373; }
.post-card__link {
  display: inline-block;
  font-size: 13.2px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 8px;
}

/* Crisis */
.section-crisis { padding: 100px 0; background: var(--background); }
.crisis-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 1162px; margin: 0 auto; }
.crisis-card {
  background: var(--surface);
  border-radius: var(--radius-img);
  padding: 28px;
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-card);
  min-height: 174px;
}
.crisis-card h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; line-height: 28.8px; }
.crisis-card p { margin: 0 0 12px; font-size: 15px; line-height: 24px; color: var(--text-muted); }
.crisis-contact {
  display: inline-block;
  padding: 10px 20px;
  background: var(--background-alt);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 16px;
  line-height: 25.6px;
  color: var(--primary);
}

/* CTA */
.section-cta { padding: 70px 0; background: var(--surface-warm); min-height: 500px; }
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 360px;
  max-width: 1161px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 48px;
}
.cta-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(74, 107, 114, 0.72);
}
.cta-content { position: relative; z-index: 1; color: #fff; max-width: 670px; }
.cta-icon { width: 88px; height: 89px; margin: 0 auto 20px; display: block; }
.cta-content h2 {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 64px;
  color: #fff;
  margin: 0 0 12px;
}
.cta-content p { color: rgba(255,255,255,0.9); margin: 0 0 32px; font-size: 16px; line-height: 25.6px; }
.cta-badges { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-note { font-size: 13px; line-height: 20.8px; color: rgba(255,255,255,0.9); margin-top: 16px; }

/* Footer */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.site-footer .logo { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; height: 48px; }
.site-footer .logo img { height: 48px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.9375rem; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

/* Inner pages */
.section-pill--sage {
  background: var(--secondary);
  color: var(--text-dark);
}
.section-pill--primary {
  background: var(--primary);
  color: #fff;
}

.inner-hero {
  padding: 80px 0 72px;
}
.inner-hero--warm { background: var(--surface-warm); }
.inner-hero__content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.inner-hero__content .section-pill { margin-bottom: 24px; }
.inner-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--text-dark);
}
.inner-hero__intro {
  font-size: 18px;
  line-height: 28.8px;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
}

.section-services--alt { background: var(--background-alt); }

.service-grid { display: grid; gap: 24px; }
.service-grid--3col { grid-template-columns: repeat(3, 1fr); }
.service-card {
  background: var(--surface);
  border-radius: var(--radius-img);
  padding: 32px;
  box-shadow: var(--shadow-card);
  min-height: 220px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 38.4px;
  margin: 0 0 12px;
}
.service-card p {
  margin: 0;
  font-size: 15px;
  line-height: 24px;
  color: var(--text-muted);
}

.section-privacy-band {
  background: var(--primary);
  padding: 80px 0;
  color: #fff;
}
.privacy-band {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.privacy-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.3;
  margin: 0 0 16px;
}
.privacy-band p {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.92);
}

.section-emergency-banner {
  background: var(--accent);
  padding: 48px 0;
  color: #fff;
}
.emergency-banner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.emergency-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin: 0 0 12px;
}
.emergency-banner p {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
}

.section-crisis--full { padding: 100px 0; }
.crisis-availability {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 12px !important;
}
a.crisis-contact {
  text-decoration: none;
  color: var(--primary);
}
a.crisis-contact:hover {
  background: var(--primary);
  color: #fff;
}

.section-about-mission {
  background: var(--surface-warm);
  padding: 120px 0;
}
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-copy .section-pill { margin-bottom: 20px; }
.about-copy h2 {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 57.6px;
  font-weight: 700;
  margin: 0 0 24px;
  max-width: 604px;
}
.about-copy p {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-body);
  margin: 0 0 20px;
  max-width: 560px;
}
.about-copy .btn { margin-top: 12px; }
.about-image {
  border-radius: var(--radius-img);
  overflow: hidden;
  height: 590px;
  box-shadow: var(--shadow);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-values {
  background: var(--background-alt);
  padding: 100px 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--surface);
  border-radius: var(--radius-img);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 38.4px;
  margin: 0 0 12px;
}
.value-card p {
  margin: 0;
  font-size: 15px;
  line-height: 24px;
  color: var(--text-muted);
}

.section-contact {
  background: var(--background);
  padding: 100px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}
.contact-form-col h2,
.contact-info-col h2 {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1.25;
  margin: 0 0 12px;
}
.contact-form-intro {
  font-size: 15px;
  line-height: 24px;
  color: var(--text-muted);
  margin: 0 0 32px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--background-alt);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--surface);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
}
.contact-info-list { display: flex; flex-direction: column; gap: 32px; margin-top: 8px; }
.contact-info-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0 0 8px;
}
.contact-info-item p { margin: 0 0 4px; font-size: 15px; line-height: 24px; }
.contact-info-item a { color: var(--primary); text-decoration: none; }
.contact-info-item a:hover { text-decoration: underline; }
.contact-info-meta { color: var(--text-muted) !important; font-size: 14px !important; }

.section-callout {
  background: var(--background-alt);
  padding: 72px 0;
}
.callout-band {
  border-left: 4px solid var(--primary);
  padding: 32px 40px;
  background: var(--surface);
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-card);
  max-width: 900px;
}
.callout-band h2 {
  font-family: var(--font-display);
  font-size: 28px;
  margin: 0 0 12px;
}
.callout-band p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 24px;
  color: var(--text-body);
}

@media (max-width: 1200px) {
  .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .support-grid { grid-template-columns: 1fr; }
  .support-visual { justify-self: center; }
}
@media (max-width: 1024px) {
  .site-header > .container,
  .hero > .container.hero-grid {
    width: min(100% - 32px, 1392px);
    padding-left: 24px;
    padding-right: 24px;
  }
  .header-inner {
    flex-wrap: wrap;
    min-height: 72px;
    padding: 16px 0;
    position: relative;
  }
  .nav-toggle { display: inline-flex; order: 2; margin-left: auto; }
  .header-cta { order: 3; padding: 12px 24px; font-size: 0.8125rem; }
  .logo { order: 1; }
  .logo img { height: 44px; }
  .site-nav {
    display: none;
    order: 4;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 12px 0 4px;
    border-top: 1px solid var(--background-alt);
    margin-top: 8px;
  }
  .nav-check:checked ~ .site-nav { display: flex; }
  .site-nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }
  .hero-grid, .built-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 32px; padding-top: 32px; }
  .hero-copy { align-items: center; text-align: center; max-width: none; }
  .hero-tags, .hero-actions { justify-content: center; margin-left: 0; }
  .hero-lead { margin-left: 0; margin-bottom: 40px; max-width: none; }
  .hero h1 { font-size: clamp(2.75rem, 9vw, 4.5rem); margin-bottom: 20px; }
  .hero-h1-line { white-space: normal; }
  .hero-visual { min-height: 360px; justify-content: center; }
  .hero { padding-bottom: 48px; }
  .feature-grid, .crisis-grid { grid-template-columns: 1fr; }
  .service-grid--3col, .values-grid, .about-split, .contact-grid { grid-template-columns: 1fr; }
  .about-image { height: clamp(280px, 60vw, 420px); }
  .inner-hero { padding: 64px 0 56px; }
  .section-about-mission, .section-values, .section-contact, .section-crisis--full { padding: 72px 0; }
  .built-heading { font-size: clamp(2rem, 5vw, 3rem); line-height: 1.2; max-width: none; }
  .built-intro, .built-image { max-width: none; }
  .built-image { height: clamp(280px, 60vw, 420px); }
  .section-built, .section-support, .section-pull-quote, .section-services, .section-news, .section-crisis { padding: 72px 0; }
  .section-head h2 { font-size: clamp(2rem, 5vw, 3.125rem); line-height: 1.25; }
  .support-heading { font-size: clamp(2rem, 5vw, 3.75rem); line-height: 1.2; }
  .news-head h2 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.2; }
  .pull-quote-box { padding: 56px 32px; min-height: auto; }
  .pull-quote-box blockquote,
  .pull-quote-box p { font-size: clamp(1.5rem, 4vw, 2.5rem); line-height: 1.4; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 32px, var(--max)); padding-inline: 16px; }
  .site-header > .container,
  .hero > .container.hero-grid { width: min(100% - 32px, 1392px); padding-inline: 16px; }
  .header-cta { padding: 10px 18px; font-size: 0.75rem; }
  .post-grid { grid-template-columns: 1fr; }
  .hero-phones { width: min(100%, 340px); height: 362px; margin: 0 auto; }
  .hero-phone--back img { width: 178px; height: 360px; }
  .hero-phone--front img { width: 179px; height: 360px; }
  .hero-phone--front { left: 163px; }
  .hero-tag { font-size: 12px; height: 34px; padding: 0 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section-cta { padding: 48px 0; min-height: auto; }
  .cta-band {
    height: auto;
    min-height: 320px;
    padding: 40px 20px;
  }
  .cta-content h2 { font-size: clamp(1.75rem, 7vw, 2.5rem); line-height: 1.25; }
  .cta-icon { width: 64px; height: 65px; margin-bottom: 16px; }
  .cta-content p { font-size: 0.9375rem; margin-bottom: 24px; }
  .feature-card__body { padding: 16px 20px 20px; }
  .section-pill { font-size: 16px; height: 44px; padding: 0 18px; }
  .news-intro { max-width: none; }
  .crisis-card { padding: 20px; min-height: auto; }
  .form-row--2col { grid-template-columns: 1fr; }
  .callout-band { padding: 24px; }
  .footer-bottom { font-size: 0.75rem; line-height: 1.5; }
}
