/* =========================================================
   Be Well Health TX — "Warm editorial care"
   Fraunces (display) + Inter (body). Cream paper, evergreen,
   warm clay. Accessible-first: large type, high contrast.
   ========================================================= */

:root {
	/* Greens (named --blue/--green for template compatibility) */
	--blue:        #1c4a40;   /* deep evergreen (primary dark) */
	--blue-dark:   #143a32;
	--green:       #2e7d68;   /* mid green (secondary) */
	--green-dark:  #1f5e4e;
	/* Warm accent + clay CTA */
	--accent:      #e0915f;   /* warm amber-clay (accents on dark) */
	--clay:        #bd6240;   /* clay (primary CTA) */
	--clay-dark:   #a04f30;
	/* Ink + neutrals on warm paper */
	--ink:         #2a2622;
	--muted:       #6b6258;
	--line:        #e7decd;
	--bg:          #faf6ef;   /* warm cream paper */
	--bg-alt:      #f3ead9;   /* sand */
	--bg-deep:     #16322b;   /* deep green (hero/footer) */
	/* Form + structure */
	--radius:      18px;
	--radius-sm:   12px;
	--btn-radius:  11px;
	--shadow:      0 18px 44px rgba(40, 32, 22, .12);
	--shadow-sm:   0 8px 22px rgba(40, 32, 22, .08);
	--wrap:        1140px;
	--font-body:   "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--font-head:   var(--font-body);
	/* Subtle grain for dark sections */
	--grain:       url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 18px;
	line-height: 1.65;
	color: var(--ink);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); text-decoration: none; }
a:hover, a:focus { text-decoration: underline; }
h1, h2, h3, h4 {
	font-family: var(--font-head);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.022em;
	color: var(--ink);
	margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 3.7rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.4rem; }
p { margin: 0 0 1rem; }

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

/* ---------- Layout ---------- */
.wrap { width: min(var(--wrap), 92%); margin-inline: auto; }
section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 760px; margin: 0 auto 3rem; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.15rem; }
.eyebrow {
	display: inline-block; font-family: var(--font-body); font-weight: 600;
	font-size: .76rem; letter-spacing: .22em; text-transform: uppercase;
	color: var(--clay); margin-bottom: .9rem;
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
	font-family: var(--font-body); font-weight: 600; font-size: 1.02rem;
	padding: .9rem 1.7rem; border-radius: var(--btn-radius); border: 1.5px solid transparent;
	cursor: pointer; text-decoration: none;
	transition: transform .14s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
	min-height: 54px;
}
.btn:hover, .btn:focus { text-decoration: none; transform: translateY(-2px); }
.btn--primary { background: var(--clay); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--clay-dark); color: #fff; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn--outline { background: transparent; color: var(--green-dark); border-color: var(--green); }
.btn--outline:hover { background: var(--green); color: #fff; }
.btn--block { width: 100%; }
.btn[href^="tel:"] { white-space: nowrap; }
.hero__actions .btn, .cta-band__actions .btn { flex-shrink: 0; }

/* ---------- Top bar ---------- */
.topbar { background: var(--bg-deep); color: #e9e2d2; font-size: .9rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 44px; }
.topbar__msg { margin: 0; letter-spacing: .01em; }
.topbar__call { margin: 0; display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; }
.topbar__call a { color: #fff; }
.topbar .icon { width: 16px; height: 16px; color: var(--accent); }
@media (max-width: 640px) { .topbar__msg { display: none; } .topbar__inner { justify-content: center; } }

/* ---------- Header / nav ---------- */
.site-header {
	background: rgba(250, 246, 239, .88); backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50;
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 88px; }
.custom-logo { max-height: 60px; width: auto; }
.site-title { display: inline-flex; flex-direction: column; line-height: 1.04; }
.site-title:hover { text-decoration: none; }
.site-title__name {
	font-family: var(--font-head); font-weight: 600; font-size: 1.7rem;
	color: var(--blue-dark); letter-spacing: -0.02em;
}
.site-title__tag {
	font-family: var(--font-body); font-size: .68rem; letter-spacing: .24em;
	text-transform: uppercase; color: var(--clay); margin-top: .15rem;
}
@media (max-width: 480px) { .site-title__name { font-size: 1.4rem; } }

.main-nav { display: flex; align-items: center; gap: 1.6rem; }
.main-nav .menu { display: flex; align-items: center; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.main-nav .menu a { font-family: var(--font-body); font-weight: 500; font-size: 1rem; color: var(--ink); }
.main-nav .menu a:hover { color: var(--clay); text-decoration: none; }
.main-nav .menu .current-menu-item > a { color: var(--clay); }
.main-nav .btn { padding: .62rem 1.25rem; min-height: 46px; }

.nav-toggle { display: none; background: none; border: 0; padding: .6rem; cursor: pointer; }
.nav-toggle__bars { display: block; width: 26px; height: 18px; position: relative; }
.nav-toggle__bars span { position: absolute; left: 0; height: 3px; width: 100%; background: var(--ink); border-radius: 3px; transition: .2s; }
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 7px; }
.nav-toggle__bars span:nth-child(3) { top: 14px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

@media (max-width: 920px) {
	.nav-toggle { display: block; }
	.main-nav {
		position: absolute; top: 100%; left: 0; right: 0;
		flex-direction: column; align-items: stretch; gap: 0;
		background: var(--bg); border-bottom: 1px solid var(--line);
		padding: 1rem 6%; box-shadow: var(--shadow); display: none;
	}
	.main-nav.is-open { display: flex; }
	.main-nav .menu { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
	.main-nav .menu li { border-bottom: 1px solid var(--line); }
	.main-nav .menu a { display: block; padding: .95rem .2rem; }
	.main-nav .btn { margin-top: 1rem; }
}

/* ---------- Hero ---------- */
.hero {
	position: relative; color: #f6f1e7; overflow: hidden;
	background: linear-gradient(105deg, rgba(15,42,35,.95) 0%, rgba(15,42,35,.88) 50%, rgba(20,58,50,.80) 100%), url('../img/hero-home-care.jpg') center/cover no-repeat;
	padding: clamp(4rem, 9vw, 7rem) 0;
}
.hero::before {
	content: ""; position: absolute; inset: 0; background: var(--grain); opacity: .14; pointer-events: none;
}
.hero::after {
	content: ""; position: absolute; top: -30%; right: -10%; width: 60%; height: 130%;
	background: radial-gradient(closest-side, rgba(46,125,104,.45), transparent 70%);
	pointer-events: none;
}
.hero__grid { position: relative; display: grid; grid-template-columns: 1.12fr .88fr; gap: 3.5rem; align-items: center; }
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__lede { font-size: 1.25rem; color: #d8e4d8; max-width: 38ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.8rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.3rem; margin-top: 2.2rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.16); }
.hero__trust span { display: inline-flex; align-items: center; gap: .5rem; font-weight: 500; font-size: .98rem; }
.hero__trust .icon { width: 20px; height: 20px; color: var(--accent); }
.hero__card {
	position: relative; background: rgba(255,255,255,.07);
	border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius);
	padding: 2rem; backdrop-filter: blur(4px);
}
.hero__card h2 { color: #fff; font-size: 1.5rem; }
@media (max-width: 880px) { .hero__grid { grid-template-columns: 1fr; gap: 2.4rem; } }

/* Staggered reveal on load */
@keyframes bwhRise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.hero__copy > *, .hero__card { opacity: 0; animation: bwhRise .75s cubic-bezier(.2,.7,.2,1) forwards; }
.hero__copy > *:nth-child(1) { animation-delay: .05s; }
.hero__copy > *:nth-child(2) { animation-delay: .14s; }
.hero__copy > *:nth-child(3) { animation-delay: .23s; }
.hero__copy > *:nth-child(4) { animation-delay: .32s; }
.hero__copy > *:nth-child(5) { animation-delay: .41s; }
.hero__card { animation-delay: .4s; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--green-dark); color: #fff; }
.trust-strip__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.6rem; padding: 1.15rem 0; text-align: center; }
.trust-strip__inner span { display: inline-flex; align-items: center; gap: .5rem; font-weight: 500; }
.trust-strip .icon { width: 20px; height: 20px; color: var(--accent); }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 1.6rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid--4, .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; } }

.card {
	background: #fffdf9; border: 1px solid var(--line); border-radius: var(--radius);
	padding: 2rem 1.9rem; box-shadow: var(--shadow-sm);
	transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__icon {
	width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
	background: var(--bg-alt); color: var(--green-dark); margin-bottom: 1.1rem;
}
.card__icon .icon { width: 30px; height: 30px; }
.card h3 { margin-bottom: .45rem; }
.card p { color: var(--muted); margin: 0; font-size: 1rem; }

/* ---------- Feature list ---------- */
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.2rem; }
.feature-list li { display: flex; gap: .95rem; }
.feature-list .icon { flex: none; width: 26px; height: 26px; color: var(--green); margin-top: .15rem; }
.feature-list strong { display: block; font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; }
.feature-list span { color: var(--muted); }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 2.4rem; } }
.media-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* About founder block */
.founder-photo {
	border-radius: var(--radius); min-height: 360px; display: grid; place-items: center; text-align: center;
	background: var(--bg-alt); border: 1px solid var(--line); color: var(--muted); padding: 2rem; box-shadow: var(--shadow-sm);
}
.founder-photo p { margin: 0; }
.founder-initials {
	display: grid; place-items: center; width: 112px; height: 112px; border-radius: 50%;
	background: linear-gradient(135deg, var(--blue), var(--green)); color: #fff;
	font-size: 2.6rem; font-weight: 800; letter-spacing: .02em; margin: 0 auto .9rem;
}

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: var(--blue); color: #f6f1e7; text-align: center; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: var(--grain); opacity: .14; pointer-events: none; }
.cta-band > .wrap { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #d8e4d8; max-width: 52ch; margin-inline: auto; font-size: 1.18rem; }
.cta-band__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.7rem; }
/* Plain (non-button) links on dark sections must stay legible */
.cta-band a:not(.btn), .hero a:not(.btn) { color: var(--accent); font-weight: 600; }
.cta-band a:not(.btn):hover, .hero a:not(.btn):hover { color: #fff; }

/* ---------- Service areas ---------- */
.areas { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; }
.areas a {
	background: #fffdf9; border: 1px solid var(--line); border-radius: 999px;
	padding: .55rem 1.2rem; font-weight: 500; color: var(--ink); font-size: 1rem;
}
.areas a:hover { border-color: var(--clay); color: var(--clay); text-decoration: none; }

/* ---------- Pages / content ---------- */
.content-area { padding: clamp(2.5rem, 6vw, 4.5rem) 0; max-width: 800px; }
.content-area .lead, p.lead { font-size: 1.3rem; line-height: 1.5; color: var(--ink); font-family: var(--font-head); font-weight: 400; }
.page-head { margin-bottom: 1.5rem; }
.entry-content h2 { margin-top: 2.2rem; }
.entry-content ul, .entry-content ol { padding-left: 1.3rem; }
.entry-content li { margin-bottom: .45rem; }

/* ---------- Forms ---------- */
.lead-form { background: #fffdf9; color: var(--ink); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); }
.form-row { margin-bottom: 1.15rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.lead-form label { display: block; font-weight: 600; color: var(--ink); margin-bottom: .35rem; font-size: .98rem; }
.lead-form .req { color: var(--clay); }
.lead-form input, .lead-form select, .lead-form textarea {
	width: 100%; padding: .85rem .95rem; font-size: 1rem; font-family: var(--font-body);
	border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: #fff; color: var(--ink);
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
	border-color: var(--green); outline: none; box-shadow: 0 0 0 3px rgba(46,125,104,.14);
}
.lead-form .btn { margin-top: .4rem; }
.form-fineprint { font-size: .85rem; color: var(--muted); margin: .8rem 0 0; }
.bwh-hp { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-notice { border-radius: var(--radius-sm); padding: 1rem 1.2rem; margin-bottom: 1.4rem; }
.form-notice--ok { background: #e7f1ea; border: 1px solid var(--green); color: var(--green-dark); }
.form-notice--err { background: #f7e7df; border: 1px solid var(--clay); color: var(--clay-dark); }

/* ---------- Posts (blog index) ---------- */
.post-list { display: grid; gap: 1.7rem; }
.post-card {
	background: #fffdf9; border: 1px solid var(--line); border-radius: var(--radius);
	overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.post-card__thumb { display: block; }
.post-card__thumb img { width: 100%; height: auto; display: block; }
.post-card__body { padding: 1.7rem 1.9rem; }
.post-card__meta { color: var(--muted); font-size: .88rem; margin: 0 0 .5rem; }
.post-card__meta a { color: var(--muted); }
.post-card__title { font-size: 1.5rem; line-height: 1.2; margin: 0 0 .6rem; }
.post-card__title a { color: var(--ink); }
.post-card__title a:hover { color: var(--green-dark); text-decoration: none; }
.post-card__excerpt { color: var(--muted); }
.post-card__excerpt p { margin: 0 0 1rem; }
.post-card__more { font-weight: 600; color: var(--clay); }
.post-card__more:hover { color: var(--clay-dark); text-decoration: none; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 780px; }
.faq-item { background: #fffdf9; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: .9rem; overflow: hidden; }
.faq-item > summary {
	cursor: pointer; list-style: none; padding: 1.15rem 1.4rem;
	font-weight: 700; font-size: 1.15rem; color: var(--ink);
	display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after { content: "+"; color: var(--clay); font-size: 1.6rem; font-weight: 400; line-height: 1; flex: none; }
.faq-item[open] > summary::after { content: "\2212"; }
.faq-item__a { padding: 0 1.4rem 1.3rem; color: var(--muted); }
.faq-item__a p { margin: 0; }
.faq-item__a a { color: var(--green-dark); font-weight: 500; }

/* ---------- Footer ---------- */
.site-footer { position: relative; background: var(--bg-deep); color: #cdd8cd; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; inset: 0; background: var(--grain); opacity: .1; pointer-events: none; }
.site-footer .wrap { position: relative; }
.site-footer a { color: #fff; }
.site-footer__cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.8rem; padding: 4rem 0 2.6rem; }
@media (max-width: 820px) { .site-footer__cols { grid-template-columns: 1fr; gap: 2.2rem; } }
.footer-logo { font-family: var(--font-head); font-weight: 600; font-size: 1.6rem; color: #fff; display: inline-block; margin-bottom: .6rem; }
.footer-logo span { color: var(--accent); }
.footer-pay { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: #fff; }
.footer-pay .icon { width: 18px; height: 18px; color: var(--accent); }
.footer-widget__title { color: #fff; font-size: 1.15rem; }
.site-footer address { font-style: normal; }
.footer-menu { list-style: none; margin: 0 0 1rem; padding: 0; display: grid; gap: .5rem; }
.footer-sister a { color: var(--accent); font-weight: 600; }
.site-footer__bar { position: relative; background: rgba(0,0,0,.25); font-size: .88rem; }
.site-footer__bar-inner { padding: 1rem 0; }
.site-footer__bar p { margin: 0; color: #a9b6a9; }

/* ---------- Icons ---------- */
.icon { display: inline-block; vertical-align: middle; }

/* ---------- Testimonials ---------- */
.testimonial {
	background: #fffdf9; border: 1px solid var(--line);
	border-radius: var(--radius); padding: 1.9rem 1.8rem 1.7rem; margin: 0; box-shadow: var(--shadow-sm);
}
.testimonial::before { content: "\201C"; display: block; color: var(--clay); font-size: 3rem; line-height: .5; margin-bottom: .5rem; }
.testimonial p { font-size: 1.08rem; color: var(--ink); margin: 0 0 .9rem; }
.testimonial cite { font-style: normal; font-weight: 600; color: var(--muted); font-size: .92rem; }

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta { display: none; }
@media (max-width: 720px) {
	body { padding-bottom: 64px; }
	.mobile-cta {
		display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
		box-shadow: 0 -4px 18px rgba(40, 32, 22, .20);
	}
	.mobile-cta a {
		flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
		min-height: 58px; padding: 1rem; font-weight: 600; font-size: 1.05rem; text-decoration: none;
	}
	.mobile-cta__call { background: var(--green-dark); color: #fff; }
	.mobile-cta__btn { background: var(--clay); color: #fff; }
	.mobile-cta .icon { width: 20px; height: 20px; }
}

/* ---------- Ad landing page (distraction-free) ---------- */
.landing-page .main-nav .menu { display: none; }
.landing-page .nav-toggle { display: none !important; }
.landing-page .site-footer__nav { display: none; }
.landing-page .site-footer__cols { grid-template-columns: 1.4fr 1fr; }
@media (max-width: 820px) { .landing-page .site-footer__cols { grid-template-columns: 1fr; } }
/* Solid, legible form card over the dark hero */
.landing-page .hero__card { background: #fffdf9; border-color: var(--line); backdrop-filter: none; }
.landing-page .hero__card h2 { color: var(--ink); }
.landing-page .hero__card > p { color: var(--muted); }

/* ---------- 404 ---------- */
.error-404 { padding: clamp(3.5rem, 9vw, 7rem) 0; text-align: center; }
.error-404 .wrap { max-width: 680px; }
.error-404__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(5rem, 16vw, 9rem); line-height: 1; letter-spacing: -.04em; color: var(--green); opacity: .16; margin-bottom: .2rem; }
.error-404 h1 { margin-top: .3rem; }
.error-404 p { color: var(--muted); font-size: 1.1rem; }
.error-404__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin: 1.8rem 0 1.4rem; }
.error-404__links { font-size: 1rem; }
.error-404__links a { color: var(--green-dark); font-weight: 500; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
	* { scroll-behavior: auto !important; }
	.hero__copy > *, .hero__card { animation: none !important; opacity: 1 !important; transform: none !important; }
}
