:root {
  --ink: #2d2522;
  --ink-soft: #5e514b;
  --brown: #6d3f2e;
  --brown-dark: #4d2b20;
  --coral: #d96f57;
  --gold: #e6ad48;
  --green: #6f8f72;
  --blue: #5f8291;
  --purple: #806b92;
  --cream: #fffaf3;
  --paper: #ffffff;
  --sand: #f4eadc;
  --line: #e5d8c8;
  --shadow: 0 20px 60px rgba(68, 42, 31, 0.12);
  --shadow-soft: 0 12px 34px rgba(68, 42, 31, 0.08);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --shell: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.65; }
img, svg { max-width: 100%; }
a { color: var(--brown); text-underline-offset: 0.2em; }
a:hover { color: var(--brown-dark); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid #1f6f8b; outline-offset: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 9999; left: 1rem; top: 1rem; transform: translateY(-200%); background: #fff; color: #111; padding: 0.8rem 1rem; border-radius: 10px; box-shadow: var(--shadow); }
.skip-link:focus { transform: translateY(0); }
.shell { width: min(calc(100% - 2.25rem), var(--shell)); margin-inline: auto; }
.narrow-shell { max-width: 840px; }
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255, 250, 243, 0.96); border-bottom: 1px solid rgba(109, 63, 46, 0.12); backdrop-filter: blur(14px); }
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: 0.8rem; color: var(--ink); text-decoration: none; min-width: max-content; }
.brand-mark { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50% 46% 52% 42%; color: #fff; background: linear-gradient(145deg, var(--brown), var(--coral)); font-weight: 900; font-size: 0.82rem; letter-spacing: 0.08em; box-shadow: 0 8px 18px rgba(109, 63, 46, 0.22); }
.brand-copy { display: flex; flex-direction: column; line-height: 1.12; }
.brand-copy strong { font-size: 1.05rem; letter-spacing: -0.02em; }
.brand-copy small { margin-top: 0.25rem; color: var(--ink-soft); font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; justify-content: flex-end; gap: 0.15rem; }
.primary-nav a { color: var(--ink); text-decoration: none; padding: 0.7rem 0.72rem; border-radius: 999px; font-size: 0.88rem; font-weight: 700; }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--brown-dark); background: var(--sand); }
.primary-nav .nav-cta { margin-left: 0.45rem; padding-inline: 1rem; color: #fff; background: var(--brown); }
.primary-nav .nav-cta:hover { color: #fff; background: var(--brown-dark); }
.nav-toggle { display: none; width: 48px; height: 48px; border: 1px solid var(--line); background: #fff; border-radius: 14px; padding: 12px; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 4px; }
.hero { padding: clamp(4.25rem, 8vw, 7.5rem) 0 clamp(4rem, 7vw, 6.5rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr); gap: clamp(3rem, 6vw, 6rem); align-items: center; }
.eyebrow { margin: 0 0 0.85rem; color: var(--brown); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.13em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; line-height: 1.12; letter-spacing: -0.035em; }
h1 { max-width: 820px; margin-bottom: 1.35rem; font-size: clamp(2.75rem, 6.1vw, 5.35rem); }
h2 { margin-bottom: 1.1rem; font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { margin-bottom: 0.65rem; font-size: clamp(1.25rem, 2vw, 1.55rem); }
p { margin-top: 0; }
.hero-lede, .section-lede { color: var(--ink-soft); font-size: clamp(1.06rem, 1.8vw, 1.24rem); }
.hero-lede { max-width: 720px; margin-bottom: 2rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }
.button, button.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0.78rem 1.2rem; border: 2px solid transparent; border-radius: 999px; text-decoration: none; font-weight: 850; line-height: 1.2; transition: transform 160ms ease, background 160ms ease, border-color 160ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--brown); }
.button-primary:hover { color: #fff; background: var(--brown-dark); }
.button-secondary { color: var(--brown-dark); border-color: var(--brown); background: transparent; }
.button-secondary:hover { color: var(--brown-dark); background: #fff; }
.button-light { color: var(--brown-dark); background: #fff; }
.button-light:hover { color: var(--brown-dark); background: #fff7ec; }
.button-outline-light { color: #fff; border-color: rgba(255,255,255,0.78); }
.button-outline-light:hover { color: var(--brown-dark); background: #fff; }
.button-quiet { color: var(--ink); background: var(--sand); }
.trust-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; list-style: none; margin: 2.4rem 0 0; padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--line); }
.trust-list li { display: flex; flex-direction: column; gap: 0.2rem; padding: 1rem; background: rgba(255,255,255,0.72); }
.trust-list strong { font-size: 0.95rem; }
.trust-list span { color: var(--ink-soft); font-size: 0.82rem; }
.hero-visual { position: relative; min-height: 500px; display: grid; place-items: center; }
.visual-orbit { position: absolute; border-radius: 50%; filter: blur(1px); }
.orbit-one { width: 460px; height: 460px; background: radial-gradient(circle at 30% 30%, #f4c5a6, #e7ad78 46%, #d66a54 100%); opacity: 0.82; }
.orbit-two { width: 310px; height: 310px; right: -30px; bottom: 5px; background: radial-gradient(circle at 30% 30%, #9fb8a2, #688775 70%); opacity: 0.72; }
.feature-card { position: absolute; z-index: 2; border: 1px solid rgba(255,255,255,0.72); background: rgba(255,255,255,0.9); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.feature-card-main { width: min(390px, 80%); padding: 2.2rem; border-radius: 35px 35px 35px 12px; transform: rotate(-2deg); }
.feature-card-main h2 { font-size: 2rem; }
.card-kicker { display: block; margin-bottom: 0.65rem; color: var(--brown); font-size: 0.75rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.mini-card { display: flex; align-items: center; gap: 0.8rem; width: max-content; max-width: 280px; padding: 1rem 1.15rem; border-radius: 18px; }
.mini-card > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: var(--sand); font-size: 1.25rem; }
.mini-card div { display: flex; flex-direction: column; }
.mini-card strong { font-size: 0.9rem; }
.mini-card small { color: var(--ink-soft); }
.mini-card-hours { top: 7%; right: -1%; transform: rotate(3deg); }
.mini-card-location { left: -4%; bottom: 9%; transform: rotate(-4deg); }
.section { padding: clamp(4.5rem, 8vw, 7.2rem) 0; }
.section-heading { max-width: 760px; margin-bottom: 2.4rem; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading p:last-child { color: var(--ink-soft); font-size: 1.08rem; }
.program-section { background: #fff; }
.card-grid { display: grid; gap: 1.4rem; }
.two-column { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three-column { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.program-card { min-height: 390px; display: flex; flex-direction: column; align-items: flex-start; padding: clamp(1.7rem, 4vw, 3rem); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); overflow: hidden; position: relative; }
.program-card::after { content: ""; position: absolute; width: 230px; height: 230px; right: -70px; bottom: -95px; border-radius: 50%; background: rgba(255,255,255,0.3); }
.infant-card { background: linear-gradient(145deg, #f9ded8, #f4bcae); }
.preschool-card { background: linear-gradient(145deg, #f8e8b9, #ebc96f); }
.program-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 3rem; border-radius: 19px; background: rgba(255,255,255,0.7); color: var(--brown-dark); font-weight: 900; }
.program-card h3 { max-width: 480px; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.program-card p { color: #4f4039; }
.text-link { position: relative; z-index: 1; margin-top: auto; font-weight: 900; text-decoration: none; }
.value-section { background: var(--cream); }
.split-layout { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(2.5rem, 7vw, 6.5rem); align-items: start; }
.value-list { display: grid; gap: 1rem; }
.value-list article { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: 1.35rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,0.62); }
.number-badge { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--brown); font-weight: 900; }
.value-list p { margin-bottom: 0; color: var(--ink-soft); }
.review-panel { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: clamp(2rem, 5vw, 4rem); border-radius: var(--radius-lg); background: var(--brown); color: #fff; box-shadow: var(--shadow); }
.review-panel .eyebrow { color: #f5c9a3; }
.review-panel h2 { max-width: 680px; }
.review-panel p { max-width: 720px; color: rgba(255,255,255,0.8); }
.button-stack { min-width: 235px; display: grid; gap: 0.8rem; }
.review-panel .button-primary { color: var(--brown-dark); background: #fff; }
.contact-strip { padding: 4.3rem 0; background: linear-gradient(135deg, #9f4937, var(--brown-dark)); color: #fff; }
.contact-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.contact-strip .eyebrow { color: #ffe0c5; }
.contact-strip h2 { margin-bottom: 0.55rem; }
.contact-strip p { max-width: 700px; margin-bottom: 0; color: rgba(255,255,255,0.84); }
.page-hero { padding: clamp(4.5rem, 9vw, 8rem) 0; text-align: center; }
.page-hero .narrow-shell { display: flex; flex-direction: column; align-items: center; }
.page-hero .hero-lede { max-width: 780px; }
.page-hero h1 { font-size: clamp(2.7rem, 6vw, 4.8rem); }
.soft-rose { background: linear-gradient(180deg, #fae1dc, var(--cream)); }
.soft-gold { background: linear-gradient(180deg, #f9ebc6, var(--cream)); }
.soft-green { background: linear-gradient(180deg, #dfeadf, var(--cream)); }
.soft-blue { background: linear-gradient(180deg, #dfeaec, var(--cream)); }
.soft-purple { background: linear-gradient(180deg, #e9e2ef, var(--cream)); }
.soft-neutral { background: linear-gradient(180deg, #ede5dc, var(--cream)); }
.check-card { padding: clamp(1.7rem, 4vw, 2.7rem); border-radius: var(--radius-lg); background: #f6d7d0; box-shadow: var(--shadow-soft); }
.gold-card { background: #f4e3ad; }
.blue-card { background: #dbe8ec; }
.check-list { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: 0.85rem; }
.check-list li { position: relative; padding-left: 2rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0.02rem; width: 1.35rem; height: 1.35rem; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--brown); font-size: 0.78rem; font-weight: 900; }
.fine-print { color: var(--ink-soft); font-size: 0.88rem; }
.tinted-section { background: #f1e8dc; }
.info-card { padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-soft); }
.info-number { display: inline-grid; place-items: center; min-width: 44px; height: 44px; margin-bottom: 1.5rem; padding: 0 0.6rem; border-radius: 14px; color: #fff; background: var(--brown); font-weight: 900; }
.info-card p { color: var(--ink-soft); margin-bottom: 0; }
.about-grid { display: grid; grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr); gap: clamp(2.5rem, 7vw, 6rem); align-items: center; }
.portrait-placeholder { min-height: 500px; display: grid; place-content: center; text-align: center; padding: 2rem; border: 2px dashed rgba(109,63,46,0.35); border-radius: 48% 48% 42% 42% / 40% 40% 55% 55%; background: linear-gradient(145deg, #ead8ca, #f7ede4); }
.portrait-monogram { width: 130px; height: 130px; display: grid; place-items: center; margin: 0 auto 1.2rem; border-radius: 50%; color: #fff; background: var(--brown); font-size: 2.5rem; font-weight: 900; }
.portrait-placeholder p { max-width: 240px; color: var(--ink-soft); }
.fact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 2rem; }
.fact-grid div { padding: 1.25rem; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,0.7); }
.fact-grid span, .fact-grid strong { display: block; }
.fact-grid span { color: var(--ink-soft); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.fact-grid strong { margin-top: 0.3rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.gallery-placeholder { min-height: 470px; display: flex; flex-direction: column; justify-content: space-between; padding: 1.5rem; border-radius: var(--radius-lg); overflow: hidden; position: relative; color: #fff; box-shadow: var(--shadow-soft); }
.gallery-placeholder::before, .gallery-placeholder::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,0.2); }
.gallery-placeholder::before { width: 250px; height: 250px; top: 60px; right: -90px; }
.gallery-placeholder::after { width: 180px; height: 180px; left: -50px; bottom: 90px; }
.gallery-learning { background: linear-gradient(150deg, #4f7158, #304e43); }
.gallery-creative { background: linear-gradient(150deg, #9b4e3e, #6f302b); }
.gallery-play { background: linear-gradient(150deg, #486878, #33485d); }
.gallery-tag { align-self: flex-start; position: relative; z-index: 2; padding: 0.45rem 0.8rem; border-radius: 999px; background: rgba(255,255,255,0.18); font-size: 0.78rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; }
.gallery-placeholder div { position: relative; z-index: 2; }
.gallery-placeholder p { margin-bottom: 0; color: rgba(255,255,255,0.82); }
.light-panel { color: var(--ink); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.light-panel .eyebrow { color: var(--brown); }
.light-panel p { color: var(--ink-soft); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.contact-card-list { display: grid; gap: 0.9rem; margin: 2rem 0; }
.contact-card { display: grid; grid-template-columns: 48px 1fr; gap: 1rem; align-items: center; padding: 1.1rem; border: 1px solid var(--line); border-radius: 18px; color: var(--ink); text-decoration: none; background: #fff; }
.contact-card > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; color: #fff; background: var(--brown); font-weight: 900; }
.contact-card small, .contact-card strong { display: block; }
.contact-card small { color: var(--ink-soft); }
.contact-card strong { overflow-wrap: anywhere; }
.hours-panel { padding: 1.5rem; border-radius: 22px; background: var(--sand); }
.hours-panel dl { margin: 0; }
.hours-panel dl div { display: flex; justify-content: space-between; gap: 1rem; padding: 0.75rem 0; border-top: 1px solid rgba(109,63,46,0.14); }
.hours-panel dt { font-weight: 800; }
.hours-panel dd { margin: 0; text-align: right; }
.inquiry-panel { padding: clamp(1.6rem, 4vw, 3rem); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); }
.inquiry-panel > p:not(.eyebrow) { color: var(--ink-soft); }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; margin-bottom: 0.4rem; font-weight: 850; }
.field label span { color: var(--ink-soft); font-weight: 500; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #cdbdad; border-radius: 12px; background: #fffdf9; color: var(--ink); padding: 0.82rem 0.9rem; }
.field textarea { resize: vertical; min-height: 130px; }
.form-notice { min-height: 1.6rem; margin-bottom: 0.8rem; color: #8a2a1e; font-weight: 700; }
.steps-grid { counter-reset: steps; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; list-style: none; padding: 0; margin: 0; }
.steps-grid li { padding: 1.6rem; border-radius: 22px; background: #fff; box-shadow: var(--shadow-soft); }
.steps-grid li > span { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 1.4rem; border-radius: 50%; color: #fff; background: var(--brown); font-weight: 900; }
.steps-grid p { color: var(--ink-soft); margin-bottom: 0; }
.legal-copy { max-width: 840px; }
.legal-copy h2 { margin-top: 2.4rem; font-size: 1.75rem; }
.legal-copy p { color: var(--ink-soft); font-size: 1.06rem; }
.site-footer { padding: 4.5rem 0 1.5rem; color: #fff; background: #2f2926; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 0.9fr 0.75fr; gap: 2.5rem; }
.footer-grid p, .footer-grid address, .footer-grid a { color: rgba(255,255,255,0.74); }
.footer-grid address { font-style: normal; }
.footer-heading { margin-bottom: 1rem; font-size: 1rem; letter-spacing: 0.02em; }
.footer-brand { color: #fff; margin-bottom: 1.1rem; }
.footer-brand .brand-copy small { color: rgba(255,255,255,0.65); }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,0.12); }
.footer-bottom p { margin: 0; color: rgba(255,255,255,0.55); font-size: 0.8rem; }
@media (max-width: 1080px) {
  .header-inner { min-height: 76px; }
  .nav-toggle { display: block; }
  .primary-nav { position: absolute; top: calc(100% + 1px); left: 0; right: 0; display: none; align-items: stretch; flex-direction: column; gap: 0.15rem; padding: 1rem max(1.15rem, calc((100vw - var(--shell)) / 2)); border-bottom: 1px solid var(--line); background: var(--cream); box-shadow: var(--shadow-soft); }
  .primary-nav[data-open="true"] { display: flex; }
  .primary-nav a { padding: 0.85rem 1rem; }
  .primary-nav .nav-cta { margin-left: 0; text-align: center; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 850px; }
  .hero-visual { max-width: 620px; width: 100%; margin-inline: auto; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .shell { width: min(calc(100% - 1.35rem), var(--shell)); }
  .brand-mark { width: 44px; height: 44px; }
  .brand-copy strong { font-size: 0.95rem; }
  .brand-copy small { font-size: 0.66rem; }
  .hero { padding-top: 3.4rem; }
  h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .hero-visual { min-height: 420px; }
  .orbit-one { width: 360px; height: 360px; }
  .orbit-two { width: 230px; height: 230px; }
  .feature-card-main { width: 86%; padding: 1.6rem; }
  .feature-card-main h2 { font-size: 1.65rem; }
  .mini-card-hours { right: 0; top: 1%; }
  .mini-card-location { left: 0; bottom: 2%; }
  .trust-list { grid-template-columns: 1fr; }
  .two-column, .three-column, .split-layout, .about-grid, .gallery-grid, .contact-grid, .field-row { grid-template-columns: 1fr; }
  .program-card { min-height: 340px; }
  .program-icon { margin-bottom: 2rem; }
  .review-panel, .contact-strip-inner, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .button-stack { width: 100%; min-width: 0; }
  .button-stack .button { width: 100%; }
  .portrait-placeholder { min-height: 390px; max-width: 480px; width: 100%; margin-inline: auto; }
  .fact-grid { grid-template-columns: 1fr; }
  .gallery-placeholder { min-height: 390px; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
}
@media (max-width: 500px) {
  .brand-copy small { display: none; }
  .button-row { align-items: stretch; flex-direction: column; }
  .button-row .button { width: 100%; }
  .mini-card { max-width: 250px; }
  .steps-grid { grid-template-columns: 1fr; }
  .hours-panel dl div { flex-direction: column; gap: 0.15rem; }
  .hours-panel dd { text-align: left; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}


/* Build 0007 — responsive, accessibility, and resilience refinements */
html { overflow-x: clip; }
body { overflow-x: clip; }
@supports not (overflow: clip) {
  html, body { overflow-x: hidden; }
}
main:focus { outline: none; }
.header-inner, .brand, .brand-copy, .hero-grid > *, .split-layout > *, .about-grid > *, .contact-grid > * { min-width: 0; }
.nav-toggle { flex: 0 0 auto; }
.required-marker { color: var(--brown); font-weight: 700; }
.form-help { margin: 0 0 1.2rem; padding: 0.9rem 1rem; border-left: 4px solid var(--brown); border-radius: 0 12px 12px 0; color: var(--ink-soft); background: var(--sand); }
.field [aria-invalid="true"] { border-color: #9f2f24; box-shadow: 0 0 0 3px rgba(159, 47, 36, 0.14); }
.primary-nav a:focus-visible, .button:focus-visible, .contact-card:focus-visible { position: relative; z-index: 2; }
@media (max-width: 1080px) {
  .no-js .header-inner { flex-wrap: wrap; padding-block: 0.65rem; }
  .no-js .nav-toggle { display: none; }
  .no-js .primary-nav { position: static; display: flex; flex: 1 0 100%; flex-flow: row wrap; gap: 0.45rem; padding: 0 0 0.75rem; border: 0; background: transparent; box-shadow: none; }
  .no-js .primary-nav a { padding: 0.72rem 0.9rem; border: 1px solid var(--line); background: #fff; }
  .no-js .primary-nav .nav-cta { margin-left: 0; }
}
@media (max-width: 500px) {
  .header-inner { gap: 0.8rem; }
  .brand { max-width: calc(100% - 60px); }
  .brand-copy strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  h1 { font-size: clamp(2.35rem, 11.2vw, 3.15rem); }
  .page-hero h1 { font-size: clamp(2.25rem, 10.5vw, 3rem); }
  .hero-lede, .section-lede { font-size: 1rem; }
  .page-hero { padding-top: 3.6rem; }
}
