/*
 * aircraftparts24 — main stylesheet
 *
 * Visual style aligned to:
 *   1. The official logo (navy #1E3A60 + red #B91C2C on white).
 *   2. PopularFX WP theme conventions: system font stack, restrained palette,
 *      classes #page.site / .site-header / .site-branding / .main-navigation /
 *      .site-main / .site-footer / .site-info  so /contact/ (WP) and
 *      /parts/<pn>/ (override) feel like one site.
 *
 * No Google Fonts: PopularFX uses the system stack; we match it.
 */

:root {
	/* Palette pixel-extracted from the official logo PNG (1536x1024) —
	   #203050 is 47% of saturated pixels, #B01020 is 16%. Keep in sync with
	   static/customizer-additional.css so the WP-served pages (PopularFX)
	   and the override-served pages render with identical colors. */
	--ap-navy:        #203050;
	--ap-navy-dark:   #15203A;
	--ap-navy-soft:   #304B7C;
	--ap-red:         #B01020;
	--ap-red-dark:    #80101A;

	--ap-ink:         #212121;
	--ap-ink-soft:    #404040;
	--ap-muted:       #6b7280;
	--ap-border:      #eaeaea;
	--ap-bg:          #ffffff;
	--ap-bg-soft:     #f5f5f5;
	--ap-bg-tag:      #f7f8fa;

	/* Expanded palette (2026-05-17) — neutrals that broaden beyond navy+red.
	   Each one earns its place; see docs/HERO-DESIGN.md "Palette rationale". */
	--ap-slate:       #5A6B7E;  /* navy desaturated — secondary text/chrome with brand tint */
	--ap-sky:         #DCE6F1;  /* very light navy — alternating section bg, warmer than bg-soft */
	--ap-cream:       #F5F1E8;  /* warm beige — callouts, certifications, cabin-panel feel */
	--ap-warm-gray:   #6F6A66;  /* warm gray — replaces cold --ap-muted in B2B/industrial contexts */

	--ap-success:     #166534;
	--ap-success-bg:  #dcfce7;
	--ap-whatsapp:    #25d366;
	--ap-whatsapp-d:  #1da851;

	--ap-radius:      4px;
	--ap-radius-lg:   8px;
	--ap-shadow:      0 1px 2px rgba(0,0,0,.05), 0 2px 6px rgba(0,0,0,.04);
	--ap-max:         1180px;

	/* System font stack matching PopularFX default exactly */
	--ap-font: "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", -apple-system, BlinkMacSystemFont, sans-serif;
	--ap-mono: ui-monospace, "Courier 10 Pitch", Consolas, Menlo, monospace;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--ap-font);
	color: var(--ap-ink-soft);
	background: var(--ap-bg);
	line-height: 1.6;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--ap-navy); text-decoration: none; }
a:hover, a:focus { color: var(--ap-navy-soft); text-decoration: underline; }
h1, h2, h3 { color: var(--ap-ink); font-weight: 700; line-height: 1.25; margin: 0 0 .6em; letter-spacing: -.005em; }
h1 { font-size: clamp(1.7rem, 2.3vw + .8rem, 2.4rem); }
h2 { font-size: 1.3rem; }
h3 { font-size: 1.05rem; }
p  { margin: 0 0 1em; }

.screen-reader-text, .visually-hidden-prefix {
	position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0;
	overflow: hidden; clip: rect(0 0 0 0); border: 0;
}
.skip-link:focus { position: fixed; top: 8px; left: 8px; background: var(--ap-navy); color: #fff; padding: 8px 12px; z-index: 1000; clip: auto; width: auto; height: auto; }

.site-container {
	max-width: var(--ap-max);
	margin: 0 auto;
	padding: 0 1rem;
}

/* ------------------------------- Header ----------------------------------- */
#page.site { display: flex; flex-direction: column; min-height: 100vh; }

.site-header {
	background: var(--ap-bg);
	border-bottom: 1px solid var(--ap-border);
}
.site-header .site-container {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 1rem;
	align-items: center;
	padding-top: .85rem;
	padding-bottom: .85rem;
}
.site-branding { display: flex; align-items: center; }
.site-logo { height: 44px; width: auto; }

.site-search {
	display: flex;
	background: var(--ap-bg-soft);
	border: 1px solid var(--ap-border);
	border-radius: var(--ap-radius);
	overflow: hidden;
	min-width: 0;
}
.site-search input[type="search"] {
	flex: 1; min-width: 0;
	padding: .55rem .8rem;
	border: 0; background: transparent;
	font: inherit; color: inherit;
}
.site-search input[type="search"]:focus { outline: 2px solid var(--ap-navy); outline-offset: -2px; }
.site-search button {
	border: 0; background: var(--ap-navy); color: #fff;
	padding: 0 1rem; cursor: pointer; font: inherit;
}
.site-search button:hover { background: var(--ap-navy-dark); }

.main-navigation { display: flex; align-items: center; gap: 1rem; }
.primary-menu { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.1rem; }
.primary-menu a { color: var(--ap-ink-soft); font-weight: 500; }
.primary-menu a:hover { color: var(--ap-navy); text-decoration: none; }

/* ------------------------------- Buttons ---------------------------------- */
.btn {
	display: inline-block; font: inherit; font-weight: 600;
	padding: .65rem 1.1rem; border-radius: var(--ap-radius);
	border: 1px solid transparent; cursor: pointer;
	text-decoration: none !important; line-height: 1.2;
	transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary  { background: var(--ap-red); color: #fff; }
.btn-primary:hover  { background: var(--ap-red-dark); color: #fff; }
.btn-ghost    { background: transparent; color: var(--ap-navy); border-color: var(--ap-navy); }
.btn-ghost:hover    { background: var(--ap-navy); color: #fff; }
.btn-whatsapp { background: var(--ap-whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--ap-whatsapp-d); color: #fff; }
.btn-link     { background: transparent; color: var(--ap-muted); padding: .65rem 0; }
.btn-link:hover { color: var(--ap-navy); text-decoration: underline; }

/* ------------------------------- Main ------------------------------------- */
.site-main { flex: 1; }

/* Breadcrumb */
.breadcrumb { color: var(--ap-muted); font-size: .88rem; margin: 1.2rem 0 .8rem; }
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .25rem .5rem; }
.breadcrumb li + li::before { content: "›"; color: var(--ap-muted); margin-right: .5rem; }
.breadcrumb a { color: var(--ap-muted); }
.breadcrumb a:hover { color: var(--ap-navy); }
.breadcrumb li[aria-current] { color: var(--ap-ink); font-weight: 500; }

.flash { padding: .75rem 1rem; border-radius: var(--ap-radius); margin: 1rem 0; font-weight: 500; }
.flash-success { background: var(--ap-success-bg); color: var(--ap-success); }

/* ------------------------------- Part head -------------------------------- */
.part { padding: .5rem 0 3rem; }
.part-head { margin: .5rem 0 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--ap-border); }
.part-eyebrow { color: var(--ap-muted); font-size: .9rem; margin: 0 0 .4em; }
.part-eyebrow a { color: var(--ap-muted); }
.part-eyebrow a:hover { color: var(--ap-navy); }
.part-h1 {
	font-family: var(--ap-mono);
	font-size: clamp(1.9rem, 3.5vw + .8rem, 3rem);
	color: var(--ap-navy);
	margin: 0;
	word-break: break-word;
	line-height: 1.1;
}
.part-caption { color: var(--ap-muted); font-size: .95rem; margin: .6em 0 0; max-width: 80ch; }

/* ------------------------------- Two-column grid -------------------------- */
.part-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-bottom: 2rem;
}
@media (min-width: 900px) {
	.part-grid { grid-template-columns: minmax(0, 1.5fr) minmax(320px, 1fr); }
}

.part-main > section { margin-bottom: 1.75rem; }
.part-about p { font-size: 1.02rem; max-width: 75ch; }

/* Specs dl — semantic, reads well for LLMs */
.part-specs dl {
	display: grid;
	grid-template-columns: max-content 1fr;
	gap: .35rem 1.2rem;
	background: var(--ap-bg-soft);
	border: 1px solid var(--ap-border);
	border-radius: var(--ap-radius);
	padding: 1rem 1.2rem;
	margin: 0;
}
.part-specs dt { color: var(--ap-muted); font-size: .9rem; }
.part-specs dd { margin: 0; color: var(--ap-ink); }
.part-specs dd a { color: var(--ap-navy); font-weight: 500; }

.part-cta-row { display: flex; gap: .6rem; flex-wrap: wrap; align-items: center; }

/* Aside / quote card */
.part-aside { align-self: start; }
.quote-card {
	background: var(--ap-bg);
	border: 1px solid var(--ap-border);
	border-top: 4px solid var(--ap-cream);
	border-radius: var(--ap-radius-lg);
	box-shadow: var(--ap-shadow);
	padding: 1.25rem;
	position: sticky; top: 1rem;
}
.quote-card h2 { margin-top: 0; }

/* ------------------------------- Lead form -------------------------------- */
.ap24-lead-form label { display: block; font-weight: 500; color: var(--ap-ink-soft); font-size: .88rem; margin-bottom: .7rem; }
.ap24-lead-form input, .ap24-lead-form textarea {
	display: block; width: 100%; margin-top: .25rem;
	padding: .55rem .7rem;
	border: 1px solid var(--ap-border); border-radius: var(--ap-radius);
	font: inherit; font-size: .95rem;
	background: #fff; color: var(--ap-ink);
}
.ap24-lead-form input:focus, .ap24-lead-form textarea:focus { outline: 2px solid var(--ap-navy); outline-offset: -1px; border-color: var(--ap-navy); }
.ap24-form-row { display: grid; gap: .6rem; }
@media (min-width: 540px) { .ap24-form-row { grid-template-columns: 1fr 1fr; } }
.ap24-form-note { font-size: .78rem; color: var(--ap-muted); margin: .8rem 0 0; }
.ap24-form-note small { font-size: .72rem; color: var(--ap-muted); }
.ap24-form-note small a { color: var(--ap-muted); text-decoration: underline; }
.ap24-req { color: var(--ap-red); font-weight: 600; margin-left: .15em; }
/* Urgency: fieldset-style bordered group with everything on a single compact row. */
.ap24-urgency {
	border: 1px solid var(--ap-border); border-radius: var(--ap-radius);
	padding: .3rem .7rem; margin: 0 0 .7rem;
	display: flex; flex-wrap: wrap; align-items: center;
	gap: .2rem .9rem;
}
.ap24-urgency-label {
	font-weight: 500; color: var(--ap-ink-soft);
	font-size: .82rem; margin-right: .15rem;
}
.ap24-urgency-opt {
	display: inline-flex; align-items: center; gap: .3rem;
	margin: 0; padding: 0; border: 0; background: transparent;
	font-size: .82rem; font-weight: 400; color: var(--ap-ink);
	cursor: pointer;
}
.ap24-urgency-opt:hover { color: var(--ap-navy); }
.ap24-urgency-opt input[type=radio] { width: auto; margin: 0; accent-color: var(--ap-navy); }

/* intl-tel-input: keep the country selector inside our input frame */
.ap24-lead-form .iti { display: block; width: 100%; margin-top: .25rem; }
.ap24-lead-form .iti input[type=tel] { margin-top: 0; padding-left: 52px; }
/* Country-search box inside the dropdown: limit to ~5 chars wide so the
 * dropdown stops stretching to the full input width and the user can see
 * the phone field underneath. maxLength=4 is enforced in JS. */
.ap24-lead-form .iti .iti__search-input {
	width: 5em; max-width: 5em; min-width: 0;
	box-sizing: content-box;
	padding: .3rem .45rem;
	font-size: .9rem;
}
.ap24-lead-form .iti .iti__dropdown-content { width: max-content; min-width: 0; }

/* ------------------------------- FAQ -------------------------------------- */
.part-faq { background: var(--ap-bg-soft); border: 1px solid var(--ap-border); border-radius: var(--ap-radius); padding: 1.2rem 1.4rem; }
.part-faq h2 { margin-top: 0; }
.part-faq-item { border-bottom: 1px solid var(--ap-border); padding: .6rem 0; }
.part-faq-item:last-child { border-bottom: 0; }
.part-faq-item summary { cursor: pointer; font-weight: 600; color: var(--ap-ink); }
.part-faq-item summary:hover { color: var(--ap-navy); }
.part-faq-item p { margin: .6rem 0 .2rem; color: var(--ap-ink-soft); }

/* ------------------------------- Related (3 flavours) --------------------- */
.part-related { margin: 2rem 0; padding-top: 1.5rem; border-top: 1px solid var(--ap-border); }
.part-related h2 { font-size: 1.15rem; }
.part-related h2 a { color: inherit; }

.related-dl {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: .25rem 1.5rem;
	margin: 0;
}
.related-dl dt { font-family: var(--ap-mono); font-size: .9rem; }
.related-dl dt small { font-family: var(--ap-font); color: var(--ap-muted); font-weight: 500; font-size: .8em; margin-left: .35em; }
.related-dl dd { color: var(--ap-ink-soft); font-size: .85rem; margin: 0 0 .6rem; }

.related-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .4rem; }
.related-grid a { display: block; padding: .55rem .75rem; background: var(--ap-bg-soft); border: 1px solid var(--ap-border); border-radius: var(--ap-radius); color: var(--ap-ink); }
.related-grid a:hover { background: #fff; border-color: var(--ap-navy); color: var(--ap-navy); text-decoration: none; }
.related-grid strong { font-family: var(--ap-mono); display: block; }
.related-grid span { display: block; color: var(--ap-muted); font-size: .8rem; margin-top: .15rem; }

.related-cloud { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .3rem; }
.related-cloud a { display: inline-block; padding: .25rem .55rem; background: var(--ap-bg-tag); border: 1px solid var(--ap-border); border-radius: 999px; font-family: var(--ap-mono); font-size: .8rem; color: var(--ap-ink-soft); }
.related-cloud a:hover { background: var(--ap-navy); color: #fff; border-color: var(--ap-navy); text-decoration: none; }
.part-related-quiet { opacity: .92; }

/* ------------------------------- Tag cloud (footer / hubs) ---------------- */
.tag-cloud { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .3rem .4rem; }
/* Default look: white-on-translucent chips. Used in the FOOTER (dark navy bg). */
.tag-cloud a { display: inline-block; padding: .25rem .6rem; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; font-size: .82rem; color: #22395f; }
.tag-cloud a:hover { background: var(--ap-navy-soft); border-color: var(--ap-navy-soft); color: #fff; text-decoration: none; }
.tag-cloud span { color: #94a3b8; }

/* Hub index pages (/brand/, /fitment/, /category/) — light background.
   Override to navy chips so labels are readable. Logo navy is #22395f. */
.ap24-archive .tag-cloud a {
	background: rgba(34, 57, 95, .06);
	border-color: rgba(34, 57, 95, .18);
	color: #22395f;
	font-weight: 500;
}
.ap24-archive .tag-cloud a:hover {
	background: #22395f;
	border-color: #22395f;
	color: #fff;
}
.ap24-archive .tag-cloud span { color: #64748b; }

/* ------------------------------- Archive / search ------------------------- */
.ap24-archive { padding: 1.5rem 0 3rem; }
.ap24-archive-head { margin-bottom: 1.5rem; }
.ap24-archive-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: .5rem; }
.ap24-archive-grid a { display: block; padding: .8rem .9rem; background: var(--ap-bg-soft); border: 1px solid var(--ap-border); border-radius: var(--ap-radius); color: var(--ap-ink); }
.ap24-archive-grid a:hover { background: #fff; border-color: var(--ap-navy); text-decoration: none; }
.ap24-archive-grid strong { font-family: var(--ap-mono); display: block; color: var(--ap-navy); }
.ap24-archive-grid em { font-style: normal; color: var(--ap-muted); font-size: .85rem; display: block; margin-top: .2rem; }
.ap24-archive-grid span { font-size: .85rem; color: var(--ap-ink-soft); display: block; margin-top: .2rem; }
.ap24-pagination { margin-top: 2rem; display: flex; gap: 1rem; justify-content: center; align-items: center; }
.ap24-pagination a { padding: .4rem .9rem; border: 1px solid var(--ap-border); border-radius: var(--ap-radius); }

/* ------------------------------- Hero ------------------------------------- */
/* Two variants — the original (light, framed) and the new full-bleed (dark,
   immersive). Toggle by adding `ap24-hero-bleed` to the section. */
.ap24-hero { padding: 3rem 0 2.5rem; background: linear-gradient(180deg, var(--ap-bg-soft) 0%, var(--ap-bg) 100%); border-bottom: 1px solid var(--ap-border); }
.ap24-hero-eyebrow { color: var(--ap-red); font-weight: 700; letter-spacing: .12em; font-size: .8rem; text-transform: uppercase; margin: 0 0 .6em; }
.ap24-hero h1 { color: var(--ap-navy); max-width: 20ch; }
.ap24-hero-sub { color: var(--ap-ink-soft); font-size: 1.05rem; max-width: 62ch; }
.ap24-search-hero { display: flex; gap: .5rem; max-width: 640px; margin: 1.5rem 0; background: var(--ap-bg); border: 1px solid var(--ap-border); border-radius: var(--ap-radius-lg); box-shadow: var(--ap-shadow); padding: .25rem; }
.ap24-search-hero input[type="search"] { flex: 1; border: 0; padding: .9rem 1rem; font: inherit; font-size: 1rem; background: transparent; }
.ap24-search-hero button { border: 0; background: var(--ap-red); color: #fff; font: inherit; font-weight: 600; padding: 0 1.2rem; border-radius: var(--ap-radius); cursor: pointer; }
.ap24-hero-cta { display: flex; gap: .6rem; flex-wrap: wrap; }

/* Full-bleed hero — used by the new home design. */
.ap24-hero-bleed {
	position: relative;
	padding: 0;
	background: transparent;
	border-bottom: 0;
	color: #fff;
	isolation: isolate;
	overflow: hidden;
}
.ap24-hero-bleed::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		linear-gradient(135deg, rgba(21,32,58,.82) 0%, rgba(32,48,80,.55) 100%),
		var(--ap-hero-image, none),
		radial-gradient(circle at 78% 28%, rgba(48,75,124,.5) 0%, rgba(32,48,80,0) 55%),
		repeating-linear-gradient(180deg, rgba(255,255,255,0) 0, rgba(255,255,255,0) 119px, rgba(255,255,255,.025) 119px, rgba(255,255,255,.025) 120px),
		linear-gradient(165deg, #203050 0%, #15203A 55%, #0B1426 100%);
	background-size: cover;
	background-position: center;
}
.ap24-hero-bleed .ap24-hero-body {
	position: relative;
	z-index: 1;
	max-width: 980px;
	margin: 0 auto;
	padding: 4rem 1.5rem 5rem;
	text-align: center;
}
.ap24-hero-bleed .ap24-hero-eyebrow {
	color: #fff;
	background: var(--ap-red);
	padding: .35rem .9rem;
	border-radius: 2px;
	display: inline-block;
	font-size: .78rem;
	letter-spacing: .25em;
}
.ap24-hero-bleed h1 {
	color: #fff;
	font-size: clamp(1.9rem, 4vw + .6rem, 3.2rem);
	line-height: 1.1;
	margin: 0 auto .6em;
	max-width: 22ch;
}
.ap24-hero-lead {
	color: rgba(255,255,255,.85);
	font-size: 1.05rem;
	max-width: 56ch;
	margin: 0 auto 1.6rem;
}
.ap24-hero-search {
	background: rgba(255,255,255,.95);
	border-radius: 6px;
	padding: .3rem;
	box-shadow: 0 6px 24px rgba(0,0,0,.18);
	max-width: 560px;
	margin: 0 auto;
	display: flex;
	gap: .3rem;
}
.ap24-hero-search input[type="search"] {
	flex: 1;
	border: 0;
	padding: .85rem 1rem;
	font: inherit;
	font-size: 1rem;
	background: transparent;
	color: var(--ap-ink);
}
.ap24-hero-search input[type="search"]:focus { outline: none; }
.ap24-hero-search button {
	border: 0;
	background: var(--ap-red);
	color: #fff;
	font: inherit;
	font-weight: 600;
	padding: 0 1.4rem;
	border-radius: var(--ap-radius);
	cursor: pointer;
}
.ap24-hero-search button:hover { background: var(--ap-red-dark); }
.ap24-hero-counts {
	margin-top: 1.4rem;
	color: rgba(255,255,255,.75);
	font-size: .9rem;
}
.ap24-hero-counts strong { color: #fff; font-weight: 700; }
.ap24-hero-bleed .ap24-hero-cta { justify-content: center; margin-top: 1rem; }

/* Header variant — transparent over the bleed hero. Activate by adding the
   class `is-over-hero` to the body (or via JS scroll-watcher). */
body.is-over-hero .site-header {
	position: absolute;
	top: 0; left: 0; right: 0;
	background: transparent;
	border-bottom: 0;
	z-index: 5;
}
body.is-over-hero .site-header .site-branding img,
body.is-over-hero .site-logo { filter: drop-shadow(0 1px 4px rgba(0,0,0,.45)); }
body.is-over-hero .primary-menu a { color: #fff; }
body.is-over-hero .primary-menu a:hover { color: #fff; opacity: .85; }
body.is-over-hero .site-search {
	background: rgba(255,255,255,.12);
	border-color: rgba(255,255,255,.25);
}
body.is-over-hero .site-search input[type="search"] { color: #fff; }
body.is-over-hero .site-search input[type="search"]::placeholder { color: rgba(255,255,255,.7); }
body.is-over-hero .site-search button { background: var(--ap-red); }
body.is-over-hero .site-main { padding-top: 0; }

/* Outline-on-dark variant used inside the bleed hero. */
.btn-ghost-on-dark {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255,255,255,.55);
	padding: .65rem 1.1rem;
	border-radius: var(--ap-radius);
	font-weight: 600;
	text-decoration: none !important;
}
.btn-ghost-on-dark:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
.ap24-value { padding: 2.5rem 0; }
.ap24-value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.ap24-value h2 { font-size: 1.05rem; color: var(--ap-ink); margin-bottom: .3em; }
.ap24-value p { color: var(--ap-ink-soft); margin: 0; }
.ap24-home-brands { padding: 2.5rem 0; background: var(--ap-bg-soft); }
.ap24-home-brands h2 { color: var(--ap-ink); }

/* ------------------------------- Footer ----------------------------------- */
.site-footer { background: var(--ap-navy-dark); color: #fff; margin-top: 2rem; }
.site-footer h3 { color: #fff; font-size: 1rem; margin-bottom: .6rem; font-weight: 700; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; opacity: .85; }
.site-footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; padding-top: 2.5rem; padding-bottom: 2rem; }
@media (min-width: 800px) { .site-footer-grid { grid-template-columns: 1fr 1.5fr 1fr; } }
.site-footer-col-wide { min-width: 0; }
.site-footer-links { list-style: none; padding: 0; margin: 0; }
.site-footer-links li { margin: .25rem 0; }
.site-footer .btn-whatsapp { color: #fff; }
.site-info { border-top: 1px solid rgba(255,255,255,.15); padding: 1rem 0; color: #fff; font-size: .8rem; opacity: .8; }

/* ------------------------------- Mobile tweaks ---------------------------- */
@media (max-width: 720px) {
	.site-header .site-container { grid-template-columns: 1fr; }
	.site-search { order: 3; }
	.main-navigation { order: 2; justify-content: space-between; }
	.primary-menu { gap: .8rem; }
	.quote-card { position: static; }
}
