/*
 * FixAIRx home (front page) — Figma-faithful design system.
 * Loaded ONLY on the front page (see functions.php fixairx_assets()), scoped to .fx-home so the
 * inner-page design in main.css is never touched. Mirrors the Figma landing page:
 * airy blue/teal air bands, warm paper sections, floating white cards, a deep-blue contractors
 * band, Playfair serif headings with a Dancing Script accent word, and Inter body copy.
 * Tokens are the package-02 design-system values (close visual reads of the Figma).
 */

/* ---- Self-hosted fonts (SIL OFL 1.1, copied from @fontsource; no external request) ---- */
@font-face { font-family:"Playfair Display"; font-style:normal; font-weight:400; font-display:swap; src:url("../fonts/playfair-display-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family:"Playfair Display"; font-style:normal; font-weight:700; font-display:swap; src:url("../fonts/playfair-display-latin-700-normal.woff2") format("woff2"); }
@font-face { font-family:"Dancing Script"; font-style:normal; font-weight:700; font-display:swap; src:url("../fonts/dancing-script-latin-700-normal.woff2") format("woff2"); }
@font-face { font-family:"Inter"; font-style:normal; font-weight:400; font-display:swap; src:url("../fonts/inter-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family:"Inter"; font-style:normal; font-weight:500; font-display:swap; src:url("../fonts/inter-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family:"Inter"; font-style:normal; font-weight:600; font-display:swap; src:url("../fonts/inter-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family:"Inter"; font-style:normal; font-weight:700; font-display:swap; src:url("../fonts/inter-latin-700-normal.woff2") format("woff2"); }

.fx-home {
	--fx-blue:        #5B7FA6;
	--fx-blue-deep:   #3E5A78;
	--fx-teal:        #7FB5B5;
	--fx-sage:        #94a87e;   /* sage CTA, darkened from #A9B49A for AA white text */
	--fx-paper:       #EDE9DD;
	--fx-ink:         #2B2B2B;
	--fx-body:        #4A4A4A;
	--fx-ondark:      #F4F6F8;
	--fx-script:      #4F7A2E;   /* AA-safe leaf green for the script accent on light */
	--fx-script-dark: #BFD8A3;   /* lighter script accent for use on dark backgrounds */
	--fx-link:        #3E6E9E;
	--fx-air-1:       #DCE8F0;
	--fx-air-2:       #EAF2F4;
	--fx-serif: "Playfair Display", Georgia, "Times New Roman", serif;
	--fx-script-font: "Dancing Script", "Brush Script MT", cursive;
	--fx-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	--fx-shadow-float: 0 22px 48px rgba(40,60,80,.14);
	--fx-shadow-soft:  0 10px 30px rgba(40,60,80,.10);
	--fx-radius-card: 18px;
	--fx-radius-float: 24px;

	font-family: var(--fx-sans);
	color: var(--fx-body);
	background: #fff;
}
.fx-home .site-main { overflow-x: clip; }

/* Use a slightly wider content column than inner pages, like the Figma. */
.fx-home .fx-wrap { width:100%; max-width:1200px; margin-inline:auto; padding-inline:24px; }

/* ---- Typography helpers ---- */
.fx-home h1,.fx-home h2,.fx-home h3 { font-family: var(--fx-serif); color: var(--fx-ink); line-height:1.12; font-weight:700; letter-spacing:0; margin:0; }
.fx-h { font-family: var(--fx-serif); font-weight:700; }
.fx-script { font-family: var(--fx-script-font); font-weight:700; color: var(--fx-script); font-style:normal; }
.fx-eyebrow { font-family: var(--fx-sans); text-transform:uppercase; letter-spacing:.16em; font-size:.74rem; font-weight:600; }
.fx-d1 { font-size: clamp(2.3rem, 4.6vw, 3.5rem); }
.fx-d2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.fx-lead { font-size:1.05rem; color:var(--fx-body); line-height:1.7; }
.fx-center { text-align:center; }

/* ---- Buttons (pills) ---- */
.fx-btn { display:inline-flex; align-items:center; justify-content:center; gap:.5em; font-family:var(--fx-sans); font-weight:600; font-size:.92rem; line-height:1; letter-spacing:.02em; padding:15px 28px; border-radius:999px; border:1.5px solid transparent; cursor:pointer; text-decoration:none; transition:transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease; }
.fx-btn:hover { transform:translateY(-2px); text-decoration:none; }
.fx-btn--lg { padding:17px 34px; font-size:.98rem; }
.fx-btn--primary { background:var(--fx-blue); color:#fff; box-shadow:0 8px 20px rgba(91,127,166,.28); }
.fx-btn--primary:hover { background:var(--fx-blue-deep); color:#fff; }
.fx-btn--secondary { background:#fff; color:var(--fx-blue-deep); border-color:#cdd9e4; }
.fx-btn--secondary:hover { background:#f3f7fb; color:var(--fx-blue-deep); }
.fx-btn--sage { background:var(--fx-sage); color:#fff; box-shadow:0 8px 20px rgba(148,168,126,.3); }
.fx-btn--sage:hover { background:#7f9268; color:#fff; }
.fx-btn--ondark { background:#fff; color:var(--fx-blue-deep); }
.fx-btn--ondark:hover { background:#eef3f8; color:var(--fx-blue-deep); }
.fx-btn--ghost { background:transparent; color:#fff; border-color:rgba(255,255,255,.7); }
.fx-btn--ghost:hover { background:rgba(255,255,255,.14); color:#fff; }
.fx-sublink { font-family:var(--fx-sans); text-transform:uppercase; letter-spacing:.12em; font-size:.72rem; font-weight:600; color:var(--fx-link); text-decoration:none; }
.fx-sublink:hover { text-decoration:underline; }

/* ---- Reveal on scroll ---- */
.fx-reveal { opacity:0; transform:translateY(16px); transition:opacity .6s ease, transform .6s ease; }
.fx-reveal.is-in { opacity:1; transform:none; }

/* ---- Home header: transparent over the hero, solid white once scrolled ---- */
.fx-home .site-header { position:fixed; top:0; left:0; right:0; background:transparent; border-bottom:1px solid transparent; backdrop-filter:none; transition:background .25s ease, box-shadow .25s ease, border-color .25s ease; }
.fx-home .site-header::before { content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(12,16,22,.55), rgba(12,16,22,0)); pointer-events:none; transition:opacity .25s ease; }
.fx-home .site-header.is-scrolled { background:rgba(255,255,255,.97); box-shadow:0 6px 22px rgba(20,30,45,.10); border-bottom-color:#e6edf2; backdrop-filter:saturate(1.4) blur(6px); }
.fx-home .site-header.is-scrolled::before { opacity:0; }
.fx-home .site-header__brand img { filter:brightness(0) invert(1); transition:filter .25s ease; }
.fx-home .site-header.is-scrolled .site-header__brand img { filter:none; }
.fx-home .site-nav .nav-list a { color:#fff; font-family:var(--fx-sans); font-weight:500; }
.fx-home .site-nav .nav-list a:hover { background:rgba(255,255,255,.16); color:#fff; }
.fx-home .site-header.is-scrolled .site-nav .nav-list a { color:var(--fx-ink); }
.fx-home .site-header.is-scrolled .site-nav .nav-list a:hover { background:#eef3f8; color:var(--fx-blue-deep); }
.fx-home .site-header__cta .btn { background:#fff; color:var(--fx-blue-deep); border-radius:999px; border:0; }
.fx-home .site-header.is-scrolled .site-header__cta .btn { background:var(--fx-blue); color:#fff; }
.fx-home .nav-toggle span { background:#fff; }
.fx-home .site-header.is-scrolled .nav-toggle span { background:var(--fx-ink); }

/* ============ HERO ============ */
.fx-hero { position:relative; isolation:isolate; min-height:92vh; display:flex; align-items:flex-end; overflow:hidden; background:#15110e; }
.fx-hero__bg { position:absolute; inset:0; z-index:-2; width:100%; height:100%; object-fit:cover; }
.fx-hero__scrim { position:absolute; inset:0; z-index:-1; background:
	linear-gradient(180deg, rgba(10,12,16,.55) 0%, rgba(10,12,16,.12) 32%, rgba(10,12,16,.5) 72%, rgba(10,12,16,.86) 100%),
	linear-gradient(110deg, rgba(10,12,16,.7) 0%, rgba(10,12,16,.18) 58%, rgba(10,12,16,0) 100%); }
.fx-hero__title .l1 { text-shadow:0 2px 18px rgba(8,10,14,.55); }
.fx-hero__title .l2 { text-shadow:0 2px 20px rgba(8,10,14,.45); }
.fx-hero__inner { padding:160px 0 70px; }
.fx-home .fx-hero__title { color:#fff; max-width:18ch; }
.fx-hero__title .l1 { display:block; font-family:var(--fx-serif); font-weight:700; font-size:clamp(2.2rem,4.8vw,3.7rem); line-height:1.06; }
.fx-hero__title .l2 { display:block; margin-top:.12em; font-family:var(--fx-script-font); font-weight:700; color:var(--fx-script-dark); font-size:clamp(2.5rem,5.6vw,4.4rem); line-height:1; }
.fx-hero__sub { margin-top:22px; color:rgba(255,255,255,.85); text-transform:uppercase; letter-spacing:.18em; font-size:.82rem; font-weight:600; max-width:46ch; }
.fx-hero__cta { margin-top:32px; display:flex; flex-wrap:wrap; gap:14px; }
.fx-scroll-cue { margin-top:44px; display:inline-flex; align-items:center; gap:10px; color:rgba(255,255,255,.6); font-size:.7rem; letter-spacing:.24em; text-transform:uppercase; }
.fx-scroll-cue svg { animation:fx-bounce 1.8s infinite; }
@keyframes fx-bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(5px)} }

/* ============ AIR BAND (Your Indoor Air Quality Matters) ============ */
.fx-airband { background:linear-gradient(120deg,var(--fx-air-1),var(--fx-air-2)); }
.fx-airband__inner { display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:18px; padding:30px 0; }
.fx-airband h2 { font-size:clamp(1.5rem,2.6vw,2rem); color:var(--fx-blue-deep); }
.fx-airband p { margin:6px 0 0; text-transform:uppercase; letter-spacing:.12em; font-size:.74rem; font-weight:600; color:rgba(62,90,120,.75); }

/* ============ EXCELS IN (5 service cards) ============ */
.fx-excels { background:#fff; padding:84px 0; }
.fx-excels__grid { margin-top:54px; display:grid; grid-template-columns:repeat(5,1fr); gap:30px; }
.fx-svccard { display:block; text-align:center; text-decoration:none; color:inherit; }
.fx-svccard__icon { margin:0 auto; width:60px; height:60px; display:grid; place-items:center; border-radius:50%; background:linear-gradient(120deg,var(--fx-air-1),var(--fx-air-2)); color:var(--fx-blue); transition:transform .15s ease; }
.fx-svccard:hover .fx-svccard__icon { transform:translateY(-3px) scale(1.05); }
.fx-svccard h3 { margin-top:16px; font-size:.95rem; font-weight:700; text-transform:uppercase; letter-spacing:.04em; color:var(--fx-ink); line-height:1.3; }
.fx-svccard p { margin-top:8px; font-size:.86rem; color:var(--fx-body); line-height:1.55; }
.fx-excels__cta { margin-top:48px; display:flex; flex-wrap:wrap; justify-content:center; gap:14px; }

/* ============ FLOATING CARD layout (Mission) ============ */
.fx-mission { background:var(--fx-paper); padding:84px 0; }
.fx-floating { display:grid; grid-template-columns:0.95fr 1.25fr; align-items:center; }
.fx-floating__media { border-radius:var(--fx-radius-float); overflow:hidden; box-shadow:var(--fx-shadow-soft); aspect-ratio:4/5; }
.fx-floating__media img { width:100%; height:100%; object-fit:cover; object-position:center top; }
.fx-floating__card { background:#fff; border-radius:var(--fx-radius-float); box-shadow:var(--fx-shadow-float); padding:48px; margin-left:-70px; position:relative; z-index:2; }
.fx-floating__card .fx-d2 { color:var(--fx-ink); }
.fx-floating__card p { margin-top:18px; }
.fx-mission__foot { margin-top:26px; display:flex; align-items:center; gap:18px; }
.fx-quotemark { color:rgba(127,181,181,.5); flex:none; }

/* ============ WHY CHOOSE (card over lifestyle photo) ============ */
.fx-why { background:#fff; padding:84px 0; }
.fx-why__frame { position:relative; border-radius:var(--fx-radius-float); overflow:hidden; }
.fx-why__bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.fx-why__card { position:relative; margin:26px; background:rgba(255,255,255,.96); backdrop-filter:blur(4px); border-radius:var(--fx-radius-float); box-shadow:var(--fx-shadow-float); padding:52px; }
.fx-why__card .fx-sub { margin-top:8px; color:var(--fx-body); }
.fx-values { margin-top:38px; display:grid; grid-template-columns:1fr 1fr; gap:28px 48px; }
.fx-value { display:flex; gap:14px; }
.fx-value svg { flex:none; color:var(--fx-script); margin-top:3px; }
.fx-value h3 { font-size:1.08rem; color:var(--fx-ink); }
.fx-value p { margin-top:5px; font-size:.9rem; color:var(--fx-body); line-height:1.55; }

/* ============ INDUSTRY STANDARDS + FIRE TEASER ============ */
.fx-standards { background:linear-gradient(120deg,var(--fx-air-1),var(--fx-air-2)); padding:84px 0; text-align:center; }
.fx-standards p { margin:18px auto 0; max-width:62ch; color:var(--fx-body); line-height:1.7; }
.fx-fire { position:relative; overflow:hidden; background:linear-gradient(120deg,#1b1512,#2a1d16 55%,#3a2418); }
.fx-fire__bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.34; z-index:0; }
.fx-fire__inner { position:relative; z-index:1; display:grid; grid-template-columns:0.85fr 1.15fr; gap:44px; align-items:center; padding:84px 0; }
.fx-fire__lead .fx-d2 { color:#fff; }
.fx-fire__lead p { color:rgba(244,246,248,.82); margin-top:16px; line-height:1.7; }
.fx-fire__file { margin-top:14px; text-transform:uppercase; letter-spacing:.2em; font-size:.68rem; color:rgba(244,246,248,.4); }
.fx-fire__card { background:#fff; border-radius:var(--fx-radius-float); box-shadow:var(--fx-shadow-float); padding:44px; }
.fx-fire__card .fx-eyebrow { color:var(--fx-script); }
.fx-fire__card h3 { margin-top:6px; font-size:1.5rem; color:var(--fx-ink); }
.fx-fire__card > p { margin-top:14px; color:var(--fx-body); line-height:1.65; }
.fx-fire__list { margin:22px 0 0; padding:0; list-style:none; display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.fx-fire__list li { display:flex; gap:9px; font-size:.88rem; color:var(--fx-body); line-height:1.4; }
.fx-fire__list svg { flex:none; color:var(--fx-script); margin-top:2px; }
.fx-fire__card .fx-btn { margin-top:26px; }

/* ============ MISSION ROOTED (Wendy founder story) ============ */
.fx-rooted { background:var(--fx-paper); padding:84px 0; }
.fx-rooted__grid { display:grid; grid-template-columns:0.8fr 1.2fr; gap:48px; align-items:center; }
.fx-rooted__media { border-radius:var(--fx-radius-float); overflow:hidden; box-shadow:var(--fx-shadow-soft); aspect-ratio:3/4; }
.fx-rooted__media img { width:100%; height:100%; object-fit:cover; object-position:center 20%; }
.fx-rooted__body p { margin-top:18px; color:var(--fx-body); line-height:1.75; }
.fx-rooted__sig { margin-top:20px; font-family:var(--fx-serif); font-style:italic; font-size:1.15rem; color:var(--fx-ink); }
.fx-rooted__quote { margin:32px 0 0; background:#fff; border-radius:var(--fx-radius-card); box-shadow:var(--fx-shadow-soft); padding:28px 30px; }
.fx-rooted__quote blockquote { margin:10px 0 0; color:var(--fx-ink); font-size:1.02rem; line-height:1.6; }

/* ============ CONTRACTORS (deep-blue accordion band) ============ */
.fx-contract { background:var(--fx-blue-deep); color:#fff; padding:84px 0; }
.fx-contract__grid { display:grid; grid-template-columns:1.25fr 0.9fr; gap:52px; align-items:start; }
.fx-contract__lead .fx-d2 { color:#fff; }
.fx-contract__lead .fx-script { color:var(--fx-teal); }
.fx-contract__lead > p { margin-top:16px; max-width:52ch; color:rgba(255,255,255,.82); line-height:1.7; }
.fx-accordion { margin-top:30px; border-top:1px solid rgba(255,255,255,.16); }
.fx-acc { border-bottom:1px solid rgba(255,255,255,.16); }
.fx-acc summary { list-style:none; cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:17px 0; font-family:var(--fx-serif); font-size:1.1rem; color:#fff; }
.fx-acc summary::-webkit-details-marker { display:none; }
.fx-acc__plus { flex:none; width:26px; height:26px; border-radius:50%; border:1px solid rgba(255,255,255,.4); display:grid; place-items:center; color:var(--fx-teal); transition:transform .2s ease; }
.fx-acc[open] .fx-acc__plus { transform:rotate(45deg); }
.fx-acc__body { padding:0 40px 18px 0; font-size:.9rem; color:rgba(255,255,255,.78); line-height:1.6; }
.fx-case { background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16); border-radius:var(--fx-radius-float); padding:36px; backdrop-filter:blur(4px); }
.fx-case .fx-eyebrow { color:var(--fx-teal); }
.fx-case h3 { margin-top:10px; font-size:1.3rem; color:#fff; line-height:1.3; }
.fx-case p { margin-top:14px; font-size:.92rem; color:rgba(255,255,255,.78); line-height:1.65; }
.fx-case .fx-btn { margin-top:24px; }

/* ============ PATH TO RESTORATION ============ */
.fx-path { background:var(--fx-paper); padding:84px 0; }
.fx-path__grid { display:grid; grid-template-columns:0.7fr 1.6fr 0.7fr; gap:24px; align-items:center; }
.fx-path__media img { width:100%; border-radius:var(--fx-radius-card); box-shadow:var(--fx-shadow-soft); object-fit:cover; aspect-ratio:3/4; }
.fx-path__card { background:#fff; border-radius:var(--fx-radius-float); box-shadow:var(--fx-shadow-float); padding:48px; }
.fx-path__card > p { margin:14px auto 0; max-width:52ch; text-align:center; color:var(--fx-body); line-height:1.65; }
.fx-steps { margin:34px 0 0; padding:0; list-style:none; display:grid; gap:24px; }
.fx-step { display:flex; gap:18px; align-items:flex-start; }
.fx-step__icon { flex:none; width:46px; height:46px; border-radius:50%; background:linear-gradient(120deg,var(--fx-air-1),var(--fx-air-2)); color:var(--fx-blue); display:grid; place-items:center; }
.fx-step h3 { font-size:.95rem; font-weight:700; text-transform:uppercase; letter-spacing:.04em; color:var(--fx-ink); line-height:1.35; }
.fx-step a { margin-top:6px; display:inline-block; }
.fx-path__foot { margin-top:34px; text-align:center; }

/* ============ FAQ ============ */
.fx-faq { background:#fff; padding:84px 0; }
.fx-faq__grid { display:grid; grid-template-columns:0.8fr 1.2fr; gap:48px; align-items:start; }
.fx-faq__lead p { margin-top:16px; color:var(--fx-body); line-height:1.7; }
.fx-faq__lead .fx-btn { margin-top:24px; }
.fx-faq__list { border-top:1px solid #e6e1d4; }
.fx-faqitem { border-bottom:1px solid #e6e1d4; }
.fx-faqitem summary { list-style:none; cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:18px 0; font-family:var(--fx-serif); font-size:1.05rem; color:var(--fx-ink); }
.fx-faqitem summary::-webkit-details-marker { display:none; }
.fx-faqitem__plus { flex:none; color:var(--fx-blue); font-size:1.5rem; line-height:1; transition:transform .2s ease; }
.fx-faqitem[open] .fx-faqitem__plus { transform:rotate(45deg); }
.fx-faqitem__body { padding:0 30px 18px 0; color:var(--fx-body); font-size:.94rem; line-height:1.7; }

/* ============ ENVIRONMENTAL HEALTH RESOURCES ============ */
.fx-res { background:var(--fx-paper); padding:84px 0; }
.fx-res__tabs { margin:18px 0 0; display:flex; justify-content:center; gap:26px; }
.fx-res__list { margin:42px auto 0; max-width:820px; display:grid; gap:0; }
.fx-rescard { display:grid; grid-template-columns:1fr 230px; gap:30px; align-items:center; padding:30px 0; border-bottom:1px solid #ddd7c8; }
.fx-rescard:first-child { border-top:1px solid #ddd7c8; }
.fx-rescard h3 { font-size:1.4rem; color:var(--fx-ink); line-height:1.25; }
.fx-rescard p { margin:12px 0 16px; color:var(--fx-body); font-size:.92rem; line-height:1.6; }
.fx-rescard__thumb { width:100%; height:140px; object-fit:cover; border-radius:var(--fx-radius-card); box-shadow:var(--fx-shadow-soft); }
.fx-res__foot { margin-top:36px; text-align:center; }

/* ============ TESTIMONIALS + NAP STRIP ============ */
.fx-tlist { background:#fff; padding:84px 0; }
.fx-tlist__grid { display:grid; grid-template-columns:1fr 1fr; gap:52px; align-items:center; }
.fx-quote { background:var(--fx-paper); border-radius:var(--fx-radius-float); box-shadow:var(--fx-shadow-soft); padding:44px; }
.fx-quote blockquote { margin:14px 0 0; font-size:1.12rem; color:var(--fx-ink); line-height:1.6; }
.fx-quote figcaption { margin-top:18px; text-transform:uppercase; letter-spacing:.08em; font-size:.78rem; font-weight:700; color:var(--fx-body); }
.fx-tlist__body p { margin-top:18px; color:var(--fx-body); line-height:1.7; }
.fx-stars { margin-top:20px; display:flex; align-items:center; gap:14px; }
.fx-stars__row { display:inline-flex; gap:3px; color:#E0A93B; }
.fx-tlist__brand { font-family:var(--fx-serif); font-weight:700; font-size:1.4rem; color:var(--fx-ink); }
.fx-tlist__brand b { color:var(--fx-blue); }
.fx-nap { margin-top:60px; }
.fx-nap__inner { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:18px 48px; background:var(--fx-blue); color:#fff; border-radius:var(--fx-radius-float); padding:26px 40px; }
.fx-nap a, .fx-nap span { color:#fff; text-decoration:none; display:inline-flex; align-items:center; gap:10px; font-weight:500; }
.fx-nap a:hover { color:#fff; text-decoration:underline; }
.fx-nap svg { color:var(--fx-teal); flex:none; }

/* ============ RESPONSIVE ============ */
@media (max-width:1024px){
	.fx-excels__grid { grid-template-columns:repeat(2,1fr); gap:34px; }
	.fx-path__grid { grid-template-columns:1fr; }
	.fx-path__media { display:none; }
}
@media (max-width:880px){
	.fx-floating, .fx-rooted__grid, .fx-fire__inner, .fx-contract__grid, .fx-faq__grid, .fx-tlist__grid { grid-template-columns:1fr; gap:30px; }
	.fx-floating__card { margin-left:0; margin-top:-40px; padding:36px; }
	.fx-floating__media { aspect-ratio:16/10; }
	.fx-rooted__media { aspect-ratio:16/11; max-width:460px; }
	.fx-values { grid-template-columns:1fr; gap:22px; }
	.fx-why__card, .fx-path__card, .fx-fire__card, .fx-quote { padding:32px; }
	.fx-rescard { grid-template-columns:1fr; }
	.fx-rescard__thumb { order:-1; height:200px; }
	.fx-hero__inner { padding:140px 0 56px; }
}
@media (max-width:560px){
	.fx-excels__grid { grid-template-columns:1fr; }
	.fx-fire__list { grid-template-columns:1fr; }
	.fx-why__card { margin:10px; padding:26px; }
	.fx-nap__inner { padding:22px; gap:14px; }
	.fx-home .fx-wrap { padding-inline:18px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion:reduce){
	.fx-reveal { opacity:1 !important; transform:none !important; transition:none; }
	.fx-scroll-cue svg { animation:none; }
}
