/* FixAIRx custom theme stylesheet. Hand-written design system. No framework, no external fonts. */

:root {
	--brand:      #0e3a4f;   /* deep teal-navy: trust, air/water */
	--brand-2:    #11586f;
	--brand-ink:  #0a2a39;
	--accent:     #c2461f;   /* fire / primary CTA. Darkened from #e2562a to meet WCAG AA 4.5:1 (5.01:1 on white). */
	--accent-dk:  #a83a16;
	--ink:        #16242b;
	--body:       #34454d;
	--muted:      #5d6e76;
	--line:       #e2e9eb;
	--bg:         #ffffff;
	--bg-soft:    #f4f7f8;
	--bg-deep:    #0e3a4f;
	--ok-bg:      #e7f5ec; --ok-ink: #1c6b3a; --ok-line:#bfe4cd;
	--err-bg:     #fdecea; --err-ink:#b23320; --err-line:#f4c7bf;
	--radius:     14px;
	--radius-sm:  9px;
	--shadow:     0 10px 30px rgba(14,58,79,.10);
	--shadow-sm:  0 4px 14px rgba(14,58,79,.08);
	--maxw:       1140px;
	--font:       -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0; font-family: var(--font); color: var(--body);
	font-size: 17px; line-height: 1.65; background: var(--bg);
	-webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-2); text-decoration: none; }
a:hover { text-decoration: underline; }
h1,h2,h3,h4 { color: var(--ink); line-height: 1.18; font-weight: 800; letter-spacing: -.01em; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 4.4vw, 3.15rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.2rem); }
h3 { font-size: 1.22rem; }
p { margin: 0 0 1.1em; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.measure { max-width: 760px; margin-inline: auto; }
.measure-wide { max-width: 940px; margin-inline: auto; }
.muted { color: var(--muted); }
.kicker { text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; font-weight: 700; color: var(--brand-2); margin: 0 0 .6em; }
.kicker--accent { color: var(--accent); }
.screen-reader-text { position: absolute; left: -9999px; }
.skip-link:focus { position: fixed; left: 12px; top: 12px; background:#fff; padding:10px 16px; z-index: 1000; border-radius: 8px; }

/* Buttons */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .4em;
	font-weight: 700; font-size: 1rem; line-height: 1; cursor: pointer;
	padding: 15px 24px; border-radius: 10px; border: 2px solid transparent;
	transition: transform .08s ease, background .15s ease, color .15s ease, border-color .15s ease;
	text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-dk); color:#fff; }
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-ink); color:#fff; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost:hover { background: rgba(255,255,255,.12); color:#fff; }
.btn--sm { padding: 11px 16px; font-size: .95rem; }
.btn--block { display: flex; width: 100%; margin-bottom: 10px; }
section .btn--ghost { color: var(--brand); border-color: var(--brand); }
section .btn--ghost:hover { background: var(--brand); color:#fff; }
.hero .btn--ghost, .cta-band .btn--ghost { color:#fff; border-color: rgba(255,255,255,.6); }
.hero .btn--ghost:hover, .cta-band .btn--ghost:hover { background: rgba(255,255,255,.14); color:#fff; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); backdrop-filter: saturate(1.4) blur(6px); border-bottom: 1px solid var(--line); }
.site-header__inner { display: flex; align-items: center; gap: 22px; min-height: 72px; }
.site-header__brand img { width: 150px; height: auto; }
.site-nav { margin-left: auto; }
.nav-list { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.nav-list a { color: var(--ink); font-weight: 600; font-size: .95rem; padding: 9px 11px; border-radius: 8px; display: inline-block; }
.nav-list a:hover { background: var(--bg-soft); color: var(--brand); text-decoration: none; }
.site-header__cta { margin-left: 6px; }
.nav-toggle { display: none; }
.nav-list li { position: relative; }
.menu-item-has-children > a::after { content: " \25be"; color: var(--muted); font-size: .8em; }
.sub-menu { position: absolute; top: calc(100% + 2px); left: 0; min-width: 252px; background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow); list-style: none; margin: 0; padding: 8px; display: none; z-index: 60; }
.nav-list li:hover > .sub-menu, .nav-list li:focus-within > .sub-menu { display: block; }
.sub-menu a { display: block; padding: 10px 12px; white-space: nowrap; font-size: .94rem; }

/* Hero */
.hero { color: #fff; background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%); padding: 78px 0; }
.hero__inner { max-width: 880px; }
.hero__eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .82rem; font-weight: 700; color: #bfe0ea; margin: 0 0 .8em; }
.hero__title { color: #fff; margin-bottom: .35em; }
.hero__lead { font-size: 1.18rem; color: #e7f1f4; max-width: 760px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.hero--home { position: relative; background: linear-gradient(135deg, rgba(10,42,57,.92), rgba(17,88,111,.86)), var(--hero-img) center/cover no-repeat; }
.hero--service { padding: 60px 0 54px; }
.hero--slim { padding: 56px 0 44px; }
.crumbs { font-size: .85rem; color: #bfe0ea; margin-bottom: 14px; }
.crumbs a { color: #d8ecf1; } .crumbs span { opacity: .7; }

/* Section heads */
.section-head { max-width: 720px; margin: 0 auto 34px; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* Feature fire */
.feature-fire { background: var(--bg-soft); padding: 72px 0; border-block: 1px solid var(--line); }
.feature-fire__inner { display: grid; grid-template-columns: 1.6fr 1fr; gap: 44px; align-items: center; }
.stat-card { background: var(--brand); color: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.stat-card__big { font-size: 2.5rem; font-weight: 800; color: #fff; margin: 0 0 .2em; letter-spacing: -.02em; }
.stat-card p { color: #dcebef; margin: 0; }

/* ticks */
.ticks { list-style: none; padding: 0; margin: 1.2em 0; }
.ticks li { position: relative; padding-left: 30px; margin-bottom: 12px; }
.ticks li::before { content: ""; position: absolute; left: 0; top: 6px; width: 18px; height: 18px; border-radius: 50%; background: var(--accent); box-shadow: inset 0 0 0 2px #fff, 0 0 0 1px var(--accent); }
.ticks li::after { content: ""; position: absolute; left: 6px; top: 10px; width: 6px; height: 3px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg); }
.ticks--cols { columns: 2; column-gap: 34px; }
.ticks--cols li { break-inside: avoid; }

/* Services grid */
.services { padding: 76px 0; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-sm); transition: transform .12s ease, box-shadow .12s ease, border-color .12s; display: block; color: inherit; }
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #cdd9dc; text-decoration: none; }
.service-card h3 { color: var(--brand); }
.service-card p { color: var(--body); font-size: .98rem; margin-bottom: 1em; }
.service-card__more { color: var(--accent); font-weight: 700; font-size: .95rem; }
.service-card--featured { border-color: var(--accent); box-shadow: 0 12px 30px rgba(226,86,42,.16); }
.service-card__flag { display: inline-block; background: var(--accent); color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; margin-bottom: 12px; }

/* How */
.how { padding: 76px 0; background: var(--bg-soft); border-block: 1px solid var(--line); }
.how__steps { list-style: none; counter-reset: step; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.how__steps li { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; }
.how__num { display:inline-flex; align-items:center; justify-content:center; width: 42px; height: 42px; border-radius: 50%; background: var(--brand); color:#fff; font-weight: 800; margin-bottom: 14px; }
.how__steps h3 { margin-bottom: .3em; }
.how__steps p { color: var(--muted); font-size: .96rem; margin: 0; }

/* FAQs */
.faqs { padding: 74px 0; }
.faqs__list { max-width: 820px; margin-inline: auto; }
.faq { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; background: #fff; overflow: hidden; }
.faq summary { cursor: pointer; padding: 18px 22px; font-weight: 700; color: var(--ink); list-style: none; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 22px; top: 16px; font-size: 1.5rem; color: var(--accent); font-weight: 400; }
.faq[open] summary::after { content: "\2013"; }
.faq__a { padding: 0 22px 18px; color: var(--body); }
.faq__a p { margin: 0; }

/* Service body */
.service-body { padding: 64px 0; }
.service-body__grid { display: grid; grid-template-columns: 1fr 330px; gap: 44px; align-items: start; }
.service-body__main .lead { font-size: 1.18rem; color: var(--ink); }
.audience-split { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin: 30px 0; }
.audience-split__col { background: var(--bg-soft); border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: var(--radius-sm); padding: 22px 24px; }
.audience-split__col h2 { font-size: 1.2rem; }
.audience-split__col p { margin: 0; color: var(--body); font-size: .98rem; }
.aside-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); margin-bottom: 18px; }
.aside-card--soft { background: var(--bg-soft); box-shadow: none; }
.aside-card h3 { color: var(--brand); }
.aside-card__meta { color: var(--muted); font-size: .9rem; margin: 8px 0 0; }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--brand-ink), var(--brand-2)); color:#fff; padding: 60px 0; }
.cta-band__inner { text-align: center; max-width: 760px; margin-inline: auto; }
.cta-band h2 { color:#fff; }
.cta-band p { color: #dcebef; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }

/* Contact + booking */
.contact, .booking { padding: 60px 0; }
.contact__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 44px; }
.booking__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 44px; }
.cform { background:#fff; }
.field { margin-bottom: 16px; }
.field label { display:block; font-weight: 600; color: var(--ink); margin-bottom: 6px; font-size: .95rem; }
.field .req { color: var(--accent); }
.field input, .field select, .field textarea {
	width: 100%; padding: 12px 14px; border: 1px solid #cdd9dc; border-radius: 9px;
	font: inherit; color: var(--ink); background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--brand-2); outline-offset: 1px; border-color: var(--brand-2); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cform__note { color: var(--muted); font-size: .88rem; margin-top: 12px; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.form-status { padding: 14px 18px; border-radius: 9px; margin-bottom: 18px; font-weight: 600; }
.form-status--ok { background: var(--ok-bg); color: var(--ok-ink); border: 1px solid var(--ok-line); }
.form-status--err { background: var(--err-bg); color: var(--err-ink); border: 1px solid var(--err-line); }
.nap--block p { margin: 0 0 14px; }
.contact__map { margin-top: 18px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.contact__map iframe { display:block; }

/* Page body / entry content */
.page-body { padding: 54px 0; }
.entry-content h2 { margin-top: 1.4em; }
.entry-content ul, .entry-content ol { padding-left: 1.3em; margin-bottom: 1.2em; }
.entry-content li { margin-bottom: .5em; }
.entry-content blockquote { border-left: 4px solid var(--accent); margin: 1.4em 0; padding: .4em 0 .4em 22px; color: var(--muted); font-style: italic; }
.entry-content a { color: var(--accent-dk); text-decoration: underline; }

/* Blog */
.bloglist { padding: 56px 0; }
.bloglist__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.postcard { background:#fff; border:1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.postcard__body { padding: 24px; }
.postcard__date { color: var(--muted); font-size: .85rem; margin: 0 0 .5em; }
.postcard__title { font-size: 1.18rem; } .postcard__title a { color: var(--brand); }
.postcard__excerpt { color: var(--body); font-size: .96rem; }
.postcard__more, .post__meta { font-weight: 700; color: var(--accent); }
.post__meta { color: #d8ecf1; font-weight: 600; }

/* Videos + resources */
.videos { padding: 56px 0; }
.video-feature { margin-bottom: 44px; }
.video-embed, .audio-embed { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.video-embed { aspect-ratio: 16 / 9; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.resources { padding: 56px 0; }
.res-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin: 18px 0 28px; }
.res-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius-sm); padding: 22px; }
.res-card h3 { color: var(--brand); font-size: 1.08rem; }
.res-card__emph { font-size: .94rem; } .res-card__meta { color: var(--muted); font-size: .9rem; margin: 2px 0; }
.link-list { padding-left: 1.2em; } .link-list li { margin-bottom: .5em; }
.pdf-list { list-style: none; padding: 0; display: grid; gap: 10px; }
.pdf-list a { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 9px; background:#fff; color: var(--ink); }
.pdf-list a:hover { border-color: var(--accent); text-decoration: none; }
.pdf-list__icon { background: var(--accent); color:#fff; font-size: .7rem; font-weight: 800; padding: 6px 8px; border-radius: 6px; flex: none; }

/* Footer */
.site-footer { background: var(--bg-deep); color: #cfe1e7; margin-top: 0; }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1.1fr 1fr 1fr; gap: 36px; padding: 60px 0 44px; }
.site-footer__brand img { filter: brightness(0) invert(1); opacity: .95; margin-bottom: 16px; }
.site-footer p { color: #b9d2da; font-size: .95rem; }
.site-footer h3 { color:#fff; font-size: 1rem; margin-bottom: 1em; }
.site-footer__links { list-style: none; padding: 0; margin: 0; }
.site-footer__links li { margin-bottom: 9px; }
.site-footer__links a, .site-footer a { color: #cfe1e7; }
.site-footer__links a:hover, .site-footer a:hover { color:#fff; }
.nap__phone { font-size: 1.15rem; font-weight: 800; color:#fff !important; }
.nap__addr { display: inline-block; margin-top: 8px; color:#b9d2da; }
.site-footer__hours { margin-top: 12px; }
.site-footer__social { display: flex; gap: 14px; margin-top: 16px; }
.site-footer__social a { font-weight: 700; }
.site-footer__bar { border-top: 1px solid rgba(255,255,255,.12); }
.site-footer__bar-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 18px 0; }
.site-footer__bar p { margin: 0; font-size: .85rem; color:#94b3bd; }

/* Responsive */
@media (max-width: 980px) {
	.feature-fire__inner, .contact__grid, .booking__grid, .service-body__grid { grid-template-columns: 1fr; }
	.services__grid, .how__steps, .bloglist__grid { grid-template-columns: repeat(2,1fr); }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
	.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; margin-left: auto; background: none; border: 0; padding: 10px; cursor: pointer; }
	.nav-toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 2px; transition: .2s; }
	.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
	.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
	.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
	.site-nav { position: fixed; inset: 72px 0 auto 0; background: #fff; border-bottom: 1px solid var(--line); transform: translateY(-130%); transition: transform .25s ease; box-shadow: var(--shadow); margin: 0; }
	.site-nav.open { transform: translateY(0); }
	.nav-list { flex-direction: column; padding: 12px 22px; gap: 0; }
	.nav-list li { border-bottom: 1px solid var(--bg-soft); }
	.nav-list a { display: block; padding: 14px 6px; }
	.sub-menu { position: static; display: block; box-shadow: none; border: 0; padding: 0 0 8px 14px; min-width: 0; }
	.sub-menu a { padding: 10px 6px; }
	.menu-item-has-children > a::after { content: ""; }
	.site-header__cta { display: none; }
}
@media (max-width: 600px) {
	.services__grid, .how__steps, .bloglist__grid, .res-grid, .audience-split, .field-row, .ticks--cols { grid-template-columns: 1fr; columns: 1; }
	.site-footer__grid { grid-template-columns: 1fr; }
	.hero { padding: 56px 0; }
	body { font-size: 16px; }
}
