:root {
  --navy: #0a2540;
  --navy-deep: #061a30;
  --ice: #2a9fc9;
  --ice-light: #6bc7e0;
  --ice-soft: #e6f4f9;
  --white: #fff;
  --off-white: #f7fafc;
  --grey: #617385;
  --line: #dce5ec;
  --amber: #f2a93b;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(10, 37, 64, .11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; top: -80px; left: 16px; z-index: 999; background: var(--white); padding: 10px 14px; border-radius: 6px; }
.skip-link:focus { top: 16px; }

.site-nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.95); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.nav-inner { min-height: 82px; padding-block: 14px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { width: auto; height: 155px; max-width: 760px; object-fit: contain; object-position: left center; }
.nav-links { display: flex; align-items: center; gap: 24px; font-size: .9rem; font-weight: 650; }
.nav-links a { text-decoration: none; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--ice); }
.nav-cta { padding: 10px 16px; border-radius: 8px; color: var(--white) !important; background: var(--navy); }

.hero { position: relative; overflow: hidden; padding: 92px 0 86px; background: linear-gradient(135deg, #f8fcfe 0%, #fff 58%, #e8f6fb 100%); }
.hero::after { content: ""; position: absolute; width: 520px; height: 520px; right: -220px; top: -160px; border: 86px solid rgba(42,159,201,.08); border-radius: 50%; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr .75fr; gap: 64px; align-items: center; }
.eyebrow { margin: 0 0 16px; color: #187fa5; font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; font-family: Fraunces, Georgia, serif; line-height: 1.08; }
h1 { max-width: 850px; font-size: clamp(2.7rem, 6vw, 5rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -.025em; }
h3 { font-size: 1.35rem; }
.hero-copy { max-width: 720px; margin: 24px 0 0; color: #3d5265; font-size: clamp(1.05rem, 2vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 13px 20px; border-radius: 9px; background: var(--navy); color: var(--white); font-weight: 750; text-decoration: none; border: 0; cursor: pointer; }
.button:hover, .button:focus-visible { background: var(--ice); }
.button-secondary { color: var(--navy); background: var(--white); border: 1px solid var(--line); }
.hero-card { padding: 28px; color: var(--white); background: var(--navy); border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-card strong { display: block; margin-bottom: 8px; color: var(--ice-light); font-size: 2rem; font-family: Fraunces, Georgia, serif; }
.hero-card p { margin: 0; }
.hero-card .date-band { display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: center; margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.18); font-size: .84rem; text-align: center; }
.date-band b { display: block; color: var(--white); font-size: 1.08rem; }

section { padding: 84px 0; }
.section-soft { background: var(--off-white); }
.section-dark { color: var(--white); background: var(--navy-deep); }
.section-heading { max-width: 760px; margin-bottom: 38px; }
.section-heading p { max-width: 680px; margin: 16px 0 0; color: var(--grey); font-size: 1.05rem; }
.section-dark .section-heading p { color: #c8d7e2; }
.lead { font-size: 1.18rem; }
.callout { padding: 26px 28px; border-left: 4px solid var(--amber); background: #fff9ed; border-radius: 0 12px 12px 0; }
.callout p { margin: 0; }

.grid-2, .grid-3, .grid-4, .service-grid, .audience-grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.service-grid { grid-template-columns: repeat(3, 1fr); }
.audience-grid { grid-template-columns: repeat(5, 1fr); }
.card { padding: 26px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.card h3 { margin-bottom: 8px; }
.card p { margin: 0; color: var(--grey); }
.card-number { display: grid; width: 34px; height: 34px; place-items: center; margin-bottom: 18px; color: var(--white); background: var(--ice); border-radius: 50%; font-weight: 800; }
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; padding: 0; margin: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--ice); font-weight: 900; }

.split { display: grid; grid-template-columns: .88fr 1.12fr; gap: 64px; align-items: start; }
.feature-stack { display: grid; gap: 16px; }
.feature { padding: 22px 24px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.feature strong { display: block; margin-bottom: 4px; }
.feature p { margin: 0; color: var(--grey); }
.spanish { margin-top: 26px; padding: 28px; color: var(--white); background: var(--navy); border-radius: 14px; }
.spanish p { margin-bottom: 0; color: #dce9f2; }

.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.timeline::before { content: ""; position: absolute; left: 10%; right: 10%; top: 23px; height: 2px; background: var(--ice-light); }
.timeline-step { position: relative; z-index: 1; }
.timeline-step .card-number { margin-inline: auto; border: 5px solid var(--white); box-sizing: content-box; }
.timeline-step h3, .timeline-step p { text-align: center; }
.timeline-step p { color: var(--grey); }

.facility-note { color: #c8d7e2; }

.faq { max-width: 850px; }
details { border-bottom: 1px solid var(--line); }
summary { padding: 22px 0; cursor: pointer; font-size: 1.08rem; font-weight: 750; }
details p { margin: -6px 0 22px; color: var(--grey); }

.cta-section { padding: 88px 0; background: linear-gradient(135deg, var(--navy-deep), var(--navy)); color: var(--white); }
.cta-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: start; }
.cta-copy p { color: #c8d7e2; }
.contact-list { padding: 0; list-style: none; color: #dce9f2; }
.contact-list a { color: var(--white); }
.lead-form { padding: 30px; color: var(--navy); background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: grid; gap: 6px; }
.field-full { grid-column: 1 / -1; }
label { font-size: .84rem; font-weight: 750; }
input, select, textarea { width: 100%; padding: 12px 13px; border: 1px solid #b9c7d3; border-radius: 7px; background: var(--white); color: var(--navy); font: inherit; }
textarea { min-height: 110px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(42,159,201,.2); border-color: var(--ice); }
.form-note { margin: 14px 0 0; color: var(--grey); font-size: .8rem; }
.hidden { display: none; }

footer { padding: 30px 0; color: #c9d6e0; background: #041424; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: .86rem; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { text-decoration: none; }

@media (max-width: 900px) {
  .hero-grid, .split, .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 560px; }
  .service-grid, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
  .grid-4, .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
}

@media (max-width: 650px) {
  .container { width: min(100% - 28px, 1120px); }
  .nav-inner { min-height: 70px; }
  .brand img { width: auto; height: 100px; max-width: 390px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 9px 12px; font-size: .82rem; }
  .hero { padding: 64px 0 60px; }
  h1 { font-size: clamp(2.4rem, 13vw, 3.5rem); }
  section { padding: 64px 0; }
  .grid-2, .grid-3, .grid-4, .service-grid, .audience-grid, .timeline, .form-grid { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .hero-actions .button { width: 100%; }
  .lead-form { padding: 22px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
