/* =====================================================================
   Be Well Pediatrics - TX  ·  "Bright & Cheerful" theme
   Fredoka (display) + Nunito (body). Accessible-first: 18px base,
   big tap targets, high contrast, full borders (no accent bars).
   ===================================================================== */

:root {
	/* Disciplined 3-color system: navy (trust/headings) · teal (brand) · coral (CTA only). */
	--teal:       #1893a3;   /* primary brand */
	--teal-ink:   #11707d;   /* teal text on light (AA contrast) */
	--teal-soft:  #e7f3f5;   /* teal tint bg */
	--teal-line:  #cfe6ea;   /* teal hairline */

	--coral:      #fb6f5f;   /* coral — reserved for calls to action */
	--coral-deep: #d8493a;
	--coral-soft: #ffe9e4;

	--sun:        #ffc23c;   /* yellow — occasional accent only (e.g. star ratings) */
	--sun-soft:   #fff3d4;

	--ink:        #1f3a52;   /* navy — headings & body text */
	--navy:       #14303f;   /* deep navy — footer */
	--muted:      #5a6b7a;   /* muted text */
	--cream:      #fffaf3;   /* page background */
	--cream-2:    #f6f1e9;   /* calm alt band */
	--card:       #ffffff;
	--line:       #e7ded2;   /* neutral hairline */

	/* Aliases — legacy class names map onto the tightened palette. */
	--sky:        var(--teal);   --sky-ink:   var(--teal-ink);   --sky-soft:   var(--teal-soft);
	--mint:       var(--teal);   --mint-soft: var(--teal-soft);
	--grape:      var(--teal);   --grape-soft: var(--teal-soft);

	--radius:     20px;
	--radius-sm:  14px;
	--radius-lg:  28px;
	--shadow:     0 16px 38px rgba(20, 48, 63, .12);
	--shadow-sm:  0 4px 14px rgba(20, 48, 63, .09);
	--shadow-card: 0 10px 26px rgba(20, 48, 63, .10);

	--wrap:       1160px;
	--font-head:  "Fredoka", "Nunito", system-ui, sans-serif;
	--font-body:  "Nunito", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 18px;
	line-height: 1.7;
	color: var(--ink);
	background: var(--cream);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sky-ink); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--coral-deep); }

h1, h2, h3, h4 {
	font-family: var(--font-head);
	color: var(--ink);
	line-height: 1.12;
	font-weight: 600;
	letter-spacing: -.01em;
	margin: 0 0 .5em;
}
h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1rem; }
strong { font-weight: 800; }

/* ---- Layout ---- */
.wrap { width: min(100% - 2.4rem, var(--wrap)); margin-inline: auto; }
.site-content { display: block; }
section { padding: clamp(3rem, 7vw, 5.5rem) 0; position: relative; }
.section-alt { background: var(--cream-2); }

.section-head { max-width: 720px; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

.eyebrow {
	display: inline-block;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: .82rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--sky-ink);
	background: var(--sky-soft);
	padding: .35em .9em;
	border-radius: 999px;
	margin-bottom: 1rem;
}

/* ---- Accessibility helpers ---- */
.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; overflow: hidden;
	clip: rect(1px,1px,1px,1px); white-space: nowrap;
}
.skip-link {
	position: absolute; left: -999px; top: 0; z-index: 1000;
	background: var(--ink); color: #fff; padding: .7rem 1.2rem; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; color: #fff; }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 2px; border-radius: 6px; }

/* ---- Buttons (toy-like pill with hard shadow) ---- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .5em;
	font-family: var(--font-head); font-weight: 600; font-size: 1.02rem;
	padding: .82em 1.5em; border-radius: 999px; border: 2px solid transparent;
	cursor: pointer; text-align: center; line-height: 1.1;
	transition: transform .12s ease, box-shadow .12s ease, background .15s ease, color .15s ease;
}
.btn .icon { width: 1.15em; height: 1.15em; }
.btn--primary {
	background: var(--coral); color: #fff;
	box-shadow: 0 5px 0 var(--coral-deep);
}
.btn--primary:hover, .btn--primary:focus {
	background: #ff6a59; color: #fff; transform: translateY(2px); box-shadow: 0 3px 0 var(--coral-deep);
}
.btn--outline {
	background: #fff; color: var(--sky-ink); border-color: var(--sky);
	box-shadow: 0 5px 0 rgba(24,147,163,.28);
}
.btn--outline:hover, .btn--outline:focus { background: var(--sky-soft); color: var(--sky-ink); transform: translateY(2px); box-shadow: 0 3px 0 rgba(24,147,163,.28); }
.btn--ghost {
	background: #fff; color: var(--ink); border-color: var(--line);
	box-shadow: var(--shadow-sm);
}
.btn--ghost:hover, .btn--ghost:focus { color: var(--sky-ink); border-color: var(--sky); }
.btn--block { display: flex; width: 100%; }

/* ---- Header / nav (single band) ---- */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(255,250,243,.94);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: .55rem 0; }

/* phone block in the header */
.header-phone { display: inline-flex; align-items: center; gap: .55em; color: var(--ink); }
.header-phone .icon { width: 1.5em; height: 1.5em; flex: none; padding: 7px; border-radius: 50%; background: var(--teal-soft); color: var(--teal-ink); }
.header-phone span { display: flex; flex-direction: column; line-height: 1.1; }
.header-phone__label { font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.header-phone__num { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--teal-ink); }
.header-phone:hover .header-phone__num { color: var(--ink); }

.site-header .btn--primary { padding: .8em 1.7em; font-size: 1.06rem; }
.site-title { display: inline-flex; flex-direction: column; line-height: 1; }
.site-title__name {
	font-family: var(--font-head); font-weight: 700; font-size: 1.55rem; color: var(--sky-ink);
	letter-spacing: -.01em;
}
.site-title__tag { font-family: var(--font-head); font-weight: 500; font-size: .82rem; color: var(--muted); letter-spacing: .04em; }
.custom-logo { max-height: 64px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 1.4rem; }
.main-nav .menu { list-style: none; display: flex; align-items: center; gap: 1.25rem; margin: 0; padding: 0; }
.main-nav .menu a {
	font-family: var(--font-head); font-weight: 500; color: var(--ink); font-size: 1.02rem;
	padding: .35em 0; position: relative;
}
.main-nav .menu a::after {
	content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 3px;
	background: var(--teal); border-radius: 3px; transition: right .2s ease;
}
.main-nav .menu a:hover, .main-nav .menu .current-menu-item > a { color: var(--sky-ink); }
.main-nav .menu a:hover::after, .main-nav .menu .current-menu-item > a::after { right: 0; }

.nav-toggle { display: none; background: none; border: 0; padding: .5rem; cursor: pointer; }
.nav-toggle__bars { display: block; width: 26px; }
.nav-toggle__bars span { display: block; height: 3px; background: var(--ink); border-radius: 3px; margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }

/* ---- Hero ---- */
.hero {
	position: relative;
	padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3.5rem, 6vw, 5.5rem);
	background:
		radial-gradient(46vmax 40vmax at 92% -10%, var(--teal-soft), transparent 62%),
		var(--cream);
}
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
.hero__copy h1 { margin-bottom: .55em; }
.hero__copy h1 em { font-style: normal; color: var(--teal-ink); position: relative; }
.hero__copy h1 em::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: .04em; height: .24em;
	background: var(--sun); border-radius: 999px; z-index: -1; opacity: .9;
}
.hero__lede { font-size: clamp(1.18rem, 1.6vw, 1.35rem); line-height: 1.65; color: var(--muted); max-width: 44ch; margin-bottom: 0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 2rem 0; }
.hero__trust { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 0; }
.hero__trust span {
	display: inline-flex; align-items: center; gap: .5em; font-weight: 700; font-size: .92rem; color: var(--ink);
	background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .45em .95em; box-shadow: var(--shadow-sm);
}
.hero__trust .icon { width: 1.1em; height: 1.1em; color: var(--teal-ink); }

/* Hero card — light white panel with the 3 steps (headline stays dominant) */
.hero__card {
	position: relative;
	background: #fff;
	color: var(--ink);
	border: 1px solid var(--teal-line);
	border-radius: var(--radius);
	padding: clamp(1.4rem, 2.4vw, 1.8rem);
	box-shadow: var(--shadow-card);
	max-width: 380px;
	margin-left: auto;
}
.hero__card h2 { color: var(--ink); font-size: 1.28rem; margin-bottom: .25rem; }
.hero__card .feature-list { margin-top: 1.1rem; gap: .85rem; }
.hero__card .feature-list li { color: var(--muted); font-size: .96rem; }
.hero__card .feature-list strong { color: var(--ink); display: block; }
.hero__card .feature-list .icon { color: var(--teal-ink); background: var(--teal-soft); }
.hero__card .btn { margin-top: 1.3rem; }

/* ---- Trust strip (calm, supporting) ---- */
.trust-strip { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.1rem 0; }
.trust-strip__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .8rem 2.6rem; text-align: center; }
.trust-strip__inner span { display: inline-flex; align-items: center; gap: .6em; font-weight: 700; font-size: .98rem; color: var(--ink); position: relative; }
.trust-strip__inner span:not(:last-child)::after {
	content: ""; position: absolute; right: -1.3rem; top: 50%; transform: translateY(-50%);
	width: 1px; height: 1.3em; background: var(--line);
}
.trust-strip__inner .icon { width: 1.25em; height: 1.25em; color: var(--teal-ink); }

/* ---- Grid + cards ---- */
.grid { display: grid; gap: clamp(1.1rem, 2.2vw, 1.6rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.7rem 1.6rem;
	box-shadow: var(--shadow-card);
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--teal-line); }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--muted); margin: 0; font-size: 1rem; }
.card__icon {
	width: 58px; height: 58px; border-radius: 16px;
	display: grid; place-items: center; margin-bottom: 1.1rem;
	background: var(--teal-soft); color: var(--teal-ink);
}
.card__icon .icon { width: 28px; height: 28px; }

/* One standardized icon system for all service cards (teal). */
.card--sky .card__icon, .card--mint .card__icon, .card--grape .card__icon,
.card--coral .card__icon, .card--sun .card__icon, .card--teal .card__icon {
	background: var(--teal-soft); color: var(--teal-ink);
}

/* numbered step "icon" (single brand color) */
.card__step {
	width: 58px; height: 58px; border-radius: 50%;
	display: grid; place-items: center; margin-bottom: 1.1rem;
	font-family: var(--font-head); font-weight: 700; font-size: 1.55rem; color: #fff;
	background: var(--teal);
}

/* ---- Split / media ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.media-frame { position: relative; }
.media-frame img {
	width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
	border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow);
}

/* Hero photo */
.hero__media img {
	width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
	border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow);
}

/* ---- Feature list (checks) ---- */
.feature-list { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: 1rem; }
.feature-list li { display: flex; gap: .8rem; align-items: flex-start; }
.feature-list .icon {
	flex: none; width: 26px; height: 26px; padding: 4px; border-radius: 50%;
	background: var(--teal-soft); color: var(--teal-ink); margin-top: 2px;
}
.feature-list strong { color: var(--ink); }
.feature-list span { color: var(--muted); }

/* ---- Testimonials (substantial, trust-building) ---- */
.testimonials { background: var(--teal-soft); }
.testimonial {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	padding: 2.1rem 1.9rem; margin: 0; display: flex; flex-direction: column; box-shadow: var(--shadow-card);
}
.testimonial__stars { color: var(--sun); font-size: 1.25rem; letter-spacing: 2px; line-height: 1; margin-bottom: 1rem; }
.testimonial p { font-size: 1.14rem; line-height: 1.6; color: var(--ink); margin: 0; }
.testimonial cite { margin-top: auto; padding-top: 1.2rem; font-style: normal; font-weight: 800; color: var(--teal-ink); font-family: var(--font-head); }

/* ---- Service areas ---- */
.areas-section { padding-top: clamp(2rem, 4vw, 3rem); }
.section-head--tight { margin-bottom: clamp(1.2rem, 2.5vw, 1.8rem); }
.areas { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; }
.areas a {
	background: #fff; border: 1px solid var(--line); border-radius: 999px;
	padding: .55em 1.2em; font-weight: 700; font-family: var(--font-head); color: var(--ink);
	box-shadow: var(--shadow-sm); transition: transform .12s ease, border-color .15s ease, color .15s ease;
}
.areas a:hover { transform: translateY(-3px); border-color: var(--teal); color: var(--teal-ink); }

/* ---- CTA band (single solid teal, no dividers) ---- */
.cta-band {
	margin-top: 0;
	background: var(--teal);
	color: #fff; text-align: center;
	padding: clamp(3.2rem, 7vw, 5rem) 0;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); max-width: 52ch; margin-inline: auto; font-size: 1.12rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1.8rem; }
.cta-band .btn--primary { box-shadow: 0 5px 0 var(--coral-deep); }
.cta-band .btn--outline { background: transparent; border-color: rgba(255,255,255,.85); color: #fff; box-shadow: none; }
.cta-band .btn--outline:hover, .cta-band .btn--outline:focus { background: rgba(255,255,255,.14); color: #fff; transform: translateY(2px); }

/* ---- Page header ---- */
.page-head { text-align: center; }
.page-head__title { margin: .2rem 0 .6rem; }
.page-head p { color: var(--muted); max-width: 60ch; margin-inline: auto; font-size: 1.1rem; }

/* ---- Generic page content ---- */
.content-area { padding: clamp(2.5rem, 6vw, 4rem) 0; }
.content-area > .wrap, .page-content { max-width: 820px; }
.page-content { margin-inline: auto; }
.page-content h2 { margin-top: 2rem; }
.page-content ul, .page-content ol { padding-left: 1.3rem; }
.page-content li { margin-bottom: .4rem; }
.lead { font-size: 1.2rem; color: var(--ink); font-weight: 600; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
	background: #fff; border: 2px solid var(--line); border-radius: var(--radius-sm);
	padding: .3rem 1.3rem; margin-bottom: .9rem; box-shadow: var(--shadow-sm);
}
.faq-item summary {
	cursor: pointer; font-family: var(--font-head); font-weight: 600; font-size: 1.12rem;
	color: var(--ink); padding: .9rem 0; list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.6rem; color: var(--sky); line-height: 1; }
.faq-item[open] summary::after { content: "\2013"; }
.faq-item__a { padding-bottom: .8rem; color: var(--muted); }

/* ---- Founder ---- */
.founder-photo { text-align: center; }
.founder-initials {
	display: grid; place-items: center; width: 180px; height: 180px; margin: 0 auto 1rem;
	border-radius: 50%; background: var(--teal); color: #fff;
	font-family: var(--font-head); font-weight: 700; font-size: 3.5rem;
	box-shadow: 0 16px 32px rgba(14,126,152,.30); border: 5px solid #fff;
}
.founder-photo p { font-weight: 700; color: var(--ink); }

/* ---- Forms (lead form + careers) ---- */
.bwh-hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.lead-form { display: grid; gap: 1.05rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.05rem; }
.form-row { display: flex; flex-direction: column; gap: .35rem; }
.form-row label { font-weight: 700; font-size: .96rem; color: var(--ink); }
.req { color: var(--coral-deep); }
.lead-form input, .lead-form select, .lead-form textarea,
.content-area input[type=text], .content-area input[type=email], .content-area input[type=tel],
.content-area select, .content-area textarea {
	width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
	background: #fff; border: 2px solid var(--line); border-radius: 12px;
	padding: .7rem .85rem; transition: border-color .15s ease, box-shadow .15s ease;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
	border-color: var(--sky); box-shadow: 0 0 0 3px rgba(24,147,163,.18); outline: none;
}
.lead-form textarea { resize: vertical; min-height: 110px; }
.form-fineprint { font-size: .85rem; color: var(--muted); margin: .2rem 0 0; }
.form-notice { border: 2px solid var(--line); border-radius: var(--radius-sm); padding: 1rem 1.1rem; margin-bottom: 1.1rem; background: #fff; }
.form-notice--ok { border-color: var(--teal); background: var(--teal-soft); color: var(--teal-ink); }
.form-notice--err { border-color: var(--coral); background: var(--coral-soft); color: #8a2a1d; }
#care-form .lead-form { margin-top: 1rem; }

/* ---- Footer ---- */
.site-footer { background: var(--navy); color: #cfe6ef; padding: clamp(3rem,6vw,4.5rem) 0 0; }
.site-footer__cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.6rem; }
.site-footer h3, .footer-widget__title { color: #fff; font-family: var(--font-head); font-size: 1.18rem; margin: 0 0 1rem; }
.site-footer p { color: #b6cedb; font-size: 1.02rem; }
.site-footer a { color: #eafaff; font-size: 1.02rem; }
.site-footer a:hover { color: var(--teal-soft); }
.footer-logo { font-family: var(--font-head); font-weight: 700; font-size: 1.9rem; color: #fff; display: inline-block; margin-bottom: .8rem; }
.footer-logo span { color: var(--teal-soft); }
.footer-pay { display: inline-flex; align-items: center; gap: .5em; font-weight: 700; color: #eafaff; }
.footer-pay .icon { width: 1.15em; height: 1.15em; color: #fff; }
.site-footer address { font-style: normal; display: grid; gap: .45rem; }
.footer-menu { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.footer-sister { margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.12); font-weight: 700; }
.site-footer__bar { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.6rem; }
.site-footer__bar-inner { padding: 1.2rem 0; }
.site-footer__bar p { margin: 0; font-size: .9rem; color: #9fc0ce; }

/* ---- Mobile sticky CTA ---- */
.mobile-cta { display: none; }
.mobile-cta a { display: flex; align-items: center; justify-content: center; gap: .4em; font-family: var(--font-head); font-weight: 700; padding: .9rem; }
.mobile-cta__call { background: var(--navy); color: #fff; }
.mobile-cta__call .icon { width: 1.1em; height: 1.1em; color: var(--sun); }
.mobile-cta__btn { background: var(--coral); color: #fff; }

/* ---- 404 ---- */
.error-404 { text-align: center; padding: clamp(3rem,8vw,6rem) 0; }
.error-404__num { font-family: var(--font-head); font-weight: 700; font-size: clamp(5rem,18vw,11rem); line-height: 1; color: var(--sky); opacity: .25; }
.error-404__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin: 1.5rem 0; }
.error-404__links { color: var(--muted); }

/* ---- Landing page (strip chrome) ---- */
.landing-page .main-nav, .landing-page .nav-toggle, .landing-page .topbar,
.landing-page .site-footer__cols, .landing-page .mobile-cta { display: none; }
.landing-page .site-header { position: static; }

/* ---- Animations ---- */
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

.hero__copy > * { animation: fadeUp .7s ease both; }
.hero__copy .eyebrow { animation-delay: .05s; }
.hero__copy h1 { animation-delay: .15s; }
.hero__copy .hero__lede { animation-delay: .28s; }
.hero__copy .hero__actions { animation-delay: .4s; }
.hero__copy .hero__trust { animation-delay: .5s; }
.hero__card { animation: fadeUp .8s ease .35s both; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
	.hero__grid, .split { grid-template-columns: 1fr; }
	.grid--4 { grid-template-columns: repeat(2, 1fr); }
	.hero__lede { max-width: none; }
	.split .media-frame { order: -1; }

	.nav-toggle { display: block; position: relative; z-index: 2; }
	/* Mobile nav = full-width dropdown panel below the (sticky) header */
	.main-nav {
		position: absolute; top: 100%; left: 0; right: 0;
		flex-direction: column; align-items: stretch; gap: .2rem;
		background: var(--cream); border-bottom: 1px solid var(--line);
		padding: .8rem 1.2rem 1.3rem; box-shadow: 0 18px 32px rgba(20,48,63,.16);
		display: none;
	}
	.main-nav.is-open { display: flex; }
	.main-nav .menu { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
	.main-nav .menu a { display: block; padding: .8rem .2rem; font-size: 1.08rem; border-bottom: 1px solid var(--line); }
	.main-nav .menu a::after { display: none; }
	.header-phone { padding: .9rem .2rem .2rem; }
	.main-nav .btn { width: 100%; margin-top: .8rem; }

	/* Trust strip: stack cleanly, drop the vertical dividers when wrapped */
	.trust-strip__inner { flex-direction: column; gap: .55rem; }
	.trust-strip__inner span:not(:last-child)::after { display: none; }

	/* Footer: single column so nothing is cramped */
	.site-footer__cols { grid-template-columns: 1fr; gap: 2rem; }
	.site-footer a { overflow-wrap: anywhere; }

	.mobile-cta {
		display: grid; grid-template-columns: 1fr 1.4fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
		box-shadow: 0 -6px 24px rgba(0,0,0,.18);
	}
	body { padding-bottom: 60px; }
}
@media (max-width: 560px) {
	.grid--3, .grid--4, .grid--2, .form-grid { grid-template-columns: 1fr; }
	.hero__actions .btn { width: 100%; }
}

/* ---- Blog ---- */
.entry-content { max-width: 760px; margin-inline: auto; }
.entry-content h2 { margin-top: 2rem; }
.entry-content img { border-radius: var(--radius-sm); }
.post-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.post-card { background: #fff; border: 2px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease; }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post-card__thumb img { width: 100%; height: 200px; object-fit: cover; }
.post-card__body { padding: 1.4rem 1.5rem 1.6rem; }
.post-card__meta { color: var(--muted); font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin: 0 0 .4rem; }
.post-card__title { font-size: 1.3rem; margin: 0 0 .5rem; }
.post-card__title a { color: var(--ink); }
.post-card__title a:hover { color: var(--sky-ink); }
.post-card__excerpt { color: var(--muted); }
.post-card__more { font-family: var(--font-head); font-weight: 600; }
.page-links, .pagination, .nav-links { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.page-numbers {
	display: inline-grid; place-items: center; min-width: 44px; height: 44px; padding: 0 .8rem;
	background: #fff; border: 2px solid var(--line); border-radius: 999px; font-family: var(--font-head); font-weight: 600; color: var(--ink);
}
.page-numbers.current { background: var(--sky); border-color: var(--sky); color: #fff; }
.page-numbers:hover { border-color: var(--sky); color: var(--sky-ink); }
@media (max-width: 700px) { .post-list { grid-template-columns: 1fr; } }

/* ---- Preloader (first session load) ---- */
#bwh-preloader { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; background: var(--cream); transition: opacity .55s ease, visibility .55s ease; }
#bwh-preloader.is-hidden { opacity: 0; visibility: hidden; }
.bwh-preloaded #bwh-preloader { display: none; }
.bwh-preloader__box { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.bwh-preloader__badge { width: 78px; height: 78px; filter: drop-shadow(0 14px 26px rgba(20,48,63,.16)); animation: bwhPulse 1.6s ease-in-out infinite; }
.bwh-preloader__name { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--teal-ink); letter-spacing: -.01em; }
.bwh-preloader__dots { display: flex; gap: .45rem; }
.bwh-preloader__dots i { width: 10px; height: 10px; border-radius: 50%; display: block; animation: bwhBounce 1s ease-in-out infinite; }
.bwh-preloader__dots i:nth-child(1) { background: var(--teal); }
.bwh-preloader__dots i:nth-child(2) { background: var(--coral); animation-delay: .15s; }
.bwh-preloader__dots i:nth-child(3) { background: var(--sun); animation-delay: .3s; }
@keyframes bwhPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }
@keyframes bwhBounce { 0%,100% { transform: translateY(0); opacity: .6; } 50% { transform: translateY(-9px); opacity: 1; } }

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
