/* ==========================================================================
   Charleston Air Pros — theme styles
   Palette from the brand logo: deep navy, bright blue, flame orange.
   Type: Poppins (headings) + Open Sans (body).
   ========================================================================== */

:root {
	/* --- brand colour ------------------------------------------------- */
	--navy-900: #061529;
	--navy-800: #0a1e3f;
	--navy-700: #0f2a5a;
	--navy-600: #16386f;
	--blue-600: #1b6fe0;
	--blue-500: #2b85ff;
	--blue-400: #57a0ff;
	--blue-100: #e8f1ff;
	--orange-600: #d95f08;
	--orange-500: #f2760f;
	--orange-400: #ff8f3f;
	--orange-100: #fff1e6;

	/* --- neutrals ------------------------------------------------------ */
	--ink-900: #0e1c33;
	--ink-700: #2b3d59;
	--ink-500: #4d6182;
	--ink-400: #6b7d99;
	--ink-300: #8a9ab4;
	--line: #dde5f0;
	--line-soft: #eef3f9;
	--paper: #ffffff;
	--paper-alt: #f6f9fd;
	--paper-blue: #eff5fd;

	/* --- type scale (fluid) -------------------------------------------- */
	--font-head: "Poppins", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
	--font-sans: "Open Sans", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;

	--fs-xs:   0.8125rem;                              /* 13px */
	--fs-sm:   0.9375rem;                              /* 15px */
	--fs-base: 1.0625rem;                              /* 17px */
	--fs-md:   clamp(1.0625rem, 0.35vw + 1rem, 1.1875rem);
	--fs-lg:   clamp(1.125rem, 0.5vw + 1rem, 1.3125rem);
	--fs-h4:   clamp(1.125rem, 0.5vw + 1rem, 1.25rem);
	--fs-h3:   clamp(1.25rem, 0.7vw + 1.05rem, 1.5rem);
	--fs-h2:   clamp(1.75rem, 2.4vw + 1rem, 2.6rem);
	--fs-h1:   clamp(2.05rem, 3.6vw + 1rem, 3.4rem);

	/* --- spacing rhythm (4px base) ------------------------------------- */
	--sp-1: 4px;   --sp-2: 8px;   --sp-3: 12px;  --sp-4: 16px;
	--sp-5: 20px;  --sp-6: 24px;  --sp-8: 32px;  --sp-10: 40px;
	--sp-12: 48px; --sp-14: 56px; --sp-16: 64px; --sp-20: 80px;

	--section-y: clamp(56px, 7vw, 92px);
	--gap-card: clamp(16px, 1.8vw, 24px);

	/* --- shape & depth -------------------------------------------------- */
	--radius-sm: 10px;
	--radius: 16px;
	--radius-lg: 24px;
	--radius-pill: 999px;

	--shadow-xs: 0 1px 2px rgba(10, 30, 63, 0.06);
	--shadow-sm: 0 2px 10px rgba(10, 30, 63, 0.07);
	--shadow: 0 12px 30px rgba(10, 30, 63, 0.10);
	--shadow-lg: 0 26px 60px rgba(10, 30, 63, 0.17);

	--wrap: 1200px;
	--wrap-narrow: 860px;
	--header-h: 82px;
	--tap: 48px;                                       /* minimum touch target */
}

/* --------------------------------------------------------------- reset -- */

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 20px);
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: var(--fs-base);
	line-height: 1.7;
	color: var(--ink-700);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
	color: var(--blue-600);
	text-decoration: none;
	transition: color 0.18s ease;
}

a:hover { color: var(--orange-600); }

h1, h2, h3, h4, h5 {
	font-family: var(--font-head);
	color: var(--navy-800);
	line-height: 1.18;
	margin: 0 0 0.55em;
	font-weight: 700;
	letter-spacing: -0.018em;
	text-wrap: balance;
}

/* `pretty` fills lines naturally and only avoids orphans; `balance` evens the
   line lengths, which broke phrases like "Charleston SC" across lines. */
h1 { font-size: var(--fs-h1); line-height: 1.1; letter-spacing: -0.025em; text-wrap: pretty; }
h2 { font-size: var(--fs-h2); line-height: 1.14; letter-spacing: -0.022em; }
h3 { font-size: var(--fs-h3); line-height: 1.25; letter-spacing: -0.012em; }
h4 { font-size: var(--fs-h4); line-height: 1.3; letter-spacing: -0.01em; }

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: 0.4em; }

strong { color: var(--navy-800); font-weight: 600; }

:focus-visible {
	outline: 3px solid var(--orange-500);
	outline-offset: 3px;
	border-radius: 4px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0);
	white-space: nowrap; border: 0;
}

.skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 999;
	background: var(--orange-500); color: #fff;
	padding: 12px 22px; border-radius: 0 0 var(--radius-sm) 0; font-weight: 600;
}

.skip-link:focus { left: 0; color: #fff; }

/* -------------------------------------------------------------- layout -- */

.wrap {
	width: 100%;
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 0 clamp(18px, 4vw, 28px);
}

.wrap-narrow { max-width: var(--wrap-narrow); }

.section { padding: var(--section-y) 0; position: relative; }
.section--tight { padding: clamp(40px, 5vw, 62px) 0; }
.section--alt { background: var(--paper-alt); }
.section--blue { background: var(--paper-blue); }

.section--navy {
	background: linear-gradient(160deg, var(--navy-800) 0%, var(--navy-700) 55%, var(--navy-600) 100%);
	color: rgba(255, 255, 255, 0.85);
}

.section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }

.section-head {
	max-width: 760px;
	margin-bottom: clamp(32px, 4vw, 52px);
}

.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

.section-head p { font-size: var(--fs-md); color: var(--ink-500); }
.section--navy .section-head p { color: rgba(255, 255, 255, 0.78); }

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-2);
	font-family: var(--font-head);
	font-size: var(--fs-xs);
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--orange-600);
	margin-bottom: var(--sp-4);
}

.eyebrow::before {
	content: "";
	width: 24px; height: 2px;
	background: var(--orange-500);
	border-radius: 2px;
}

.section--navy .eyebrow { color: var(--orange-400); }
.section--navy .eyebrow::before { background: var(--orange-400); }

/* ------------------------------------------------------------- buttons -- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--sp-2);
	min-height: var(--tap);
	padding: 14px 28px;
	border: 2px solid transparent;
	border-radius: var(--radius-pill);
	font-family: var(--font-head);
	font-size: var(--fs-sm);
	font-weight: 600;
	letter-spacing: 0.005em;
	line-height: 1.25;
	cursor: pointer;
	text-align: center;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease,
	            color 0.18s ease, border-color 0.18s ease;
}

.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary {
	background: var(--orange-500);
	color: #fff;
	box-shadow: 0 8px 20px rgba(242, 118, 15, 0.3);
}

.btn--primary:hover {
	background: var(--orange-600); color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(242, 118, 15, 0.38);
}

.btn--secondary {
	background: transparent;
	color: var(--navy-800);
	border-color: var(--navy-800);
}

.btn--secondary:hover { background: var(--navy-800); color: #fff; transform: translateY(-2px); }

.btn--ghost {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.45);
}

.btn--ghost:hover { background: #fff; color: var(--navy-800); transform: translateY(-2px); }

.btn--white { background: #fff; color: var(--navy-800); }
.btn--white:hover { background: var(--blue-100); color: var(--navy-800); transform: translateY(-2px); }

.btn:active { transform: translateY(0) scale(0.985); }

.btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-3);
	margin-top: var(--sp-8);
}

.btn-row--center { justify-content: center; }

/* -------------------------------------------------------------- header -- */

.topbar {
	background: var(--navy-900);
	color: rgba(255, 255, 255, 0.74);
	font-size: var(--fs-xs);
	padding: 8px 0;
}

.topbar .wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--sp-3);
}

.topbar-tagline {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-2);
	font-family: var(--font-head);
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-size: 0.72rem;
	color: var(--blue-400);
	white-space: nowrap;
}

.topbar-tagline svg { width: 14px; height: 14px; flex: none; color: var(--orange-400); }

.topbar-links { display: flex; align-items: center; gap: var(--sp-6); }

.topbar-links a {
	color: rgba(255, 255, 255, 0.8);
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-weight: 400;
}

.topbar-links a:hover { color: var(--orange-400); }
.topbar-links svg { width: 14px; height: 14px; flex: none; opacity: 0.85; }

.site-header {
	position: sticky;
	top: 0;
	z-index: 120;
	/* No backdrop-filter: it would become the containing block for the
	   position:fixed mobile nav panel nested inside this header. */
	background: #fff;
	border-bottom: 1px solid var(--line);
	transition: box-shadow 0.2s ease;
}

.site-header.is-stuck { box-shadow: 0 6px 22px rgba(10, 30, 63, 0.1); }

.site-header .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sp-5);
	min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: var(--sp-3); flex: none; }

.brand img { width: 52px; height: 52px; border-radius: 12px; }

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }

.brand-name {
	font-family: var(--font-head);
	font-size: 1.22rem;
	font-weight: 700;
	color: var(--navy-800);
	letter-spacing: -0.02em;
}

.brand-tag {
	font-size: 0.64rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--orange-600);
	margin-top: 3px;
}

/* primary navigation */

.nav-primary ul {
	list-style: none; margin: 0; padding: 0;
	display: flex; align-items: center; gap: 2px;
}

.nav-primary li { margin: 0; position: relative; }

.nav-primary > ul > li > a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 11px 13px;
	font-family: var(--font-head);
	font-size: var(--fs-sm);
	font-weight: 500;
	color: var(--navy-800);
	border-radius: var(--radius-sm);
	white-space: nowrap;
}

.nav-primary > ul > li > a:hover,
.nav-primary > ul > li.current-menu-item > a,
.nav-primary > ul > li.current-menu-ancestor > a,
.nav-primary > ul > li.current-menu-parent > a {
	color: var(--blue-600);
	background: var(--blue-100);
}

.nav-primary li.menu-item-has-children > a::after {
	content: "";
	width: 6px; height: 6px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	opacity: 0.6;
}

.nav-primary ul ul {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 264px;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: var(--sp-2);
	opacity: 0; visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.nav-primary li:hover > ul,
.nav-primary li:focus-within > ul {
	opacity: 1; visibility: visible; transform: translateY(0);
}

.nav-primary ul ul a {
	display: block;
	padding: 11px 14px;
	font-size: var(--fs-sm);
	font-weight: 400;
	color: var(--ink-700);
	border-radius: var(--radius-sm);
}

.nav-primary ul ul a:hover,
.nav-primary ul ul .current-menu-item > a {
	background: var(--blue-100); color: var(--blue-600);
}

.header-actions { display: flex; align-items: center; gap: var(--sp-3); flex: none; }

.header-phone {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-2);
	font-weight: 600;
	color: var(--navy-800);
	font-size: var(--fs-sm);
	min-height: var(--tap);
}

.header-phone .icon-circle {
	width: 42px; height: 42px;
	border-radius: 50%;
	background: var(--blue-100);
	color: var(--blue-600);
	display: grid; place-items: center; flex: none;
	transition: background 0.18s ease, color 0.18s ease;
}

.header-phone:hover .icon-circle { background: var(--orange-100); color: var(--orange-600); }
.header-phone .icon-circle svg { width: 18px; height: 18px; }

.header-phone span small {
	display: block;
	font-size: 0.66rem;
	font-weight: 600;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--ink-300);
}

.nav-close { display: none; }

.nav-toggle {
	display: none;
	width: var(--tap); height: var(--tap);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: #fff;
	cursor: pointer; padding: 0;
	place-items: center;
}

.nav-toggle span {
	display: block; width: 20px; height: 2px;
	background: var(--navy-800); border-radius: 2px;
	position: relative; transition: background 0.2s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
	content: ""; position: absolute; left: 0;
	width: 20px; height: 2px;
	background: var(--navy-800); border-radius: 2px;
	transition: transform 0.22s ease;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------------------------------------------------------------- hero -- */

.hero {
	position: relative;
	background: linear-gradient(155deg, var(--navy-900) 0%, var(--navy-800) 42%, var(--navy-600) 100%);
	color: rgba(255, 255, 255, 0.86);
	overflow: hidden;
	padding: clamp(52px, 7vw, 96px) 0 clamp(64px, 8vw, 104px);
}

.hero::before {
	content: "";
	position: absolute; top: -30%; right: -12%;
	width: 760px; height: 760px;
	background: radial-gradient(circle, rgba(43, 133, 255, 0.28) 0%, rgba(43, 133, 255, 0) 66%);
	pointer-events: none;
}

.hero::after {
	content: "";
	position: absolute; bottom: -42%; left: -14%;
	width: 680px; height: 680px;
	background: radial-gradient(circle, rgba(242, 118, 15, 0.2) 0%, rgba(242, 118, 15, 0) 68%);
	pointer-events: none;
}

.hero .wrap { position: relative; z-index: 2; }

.hero-grid {
	display: grid;
	grid-template-columns: 1.12fr 0.88fr;
	gap: clamp(32px, 5vw, 60px);
	align-items: center;
}

.hero h1 { color: #fff; margin-bottom: var(--sp-5); }

.hero-lead {
	font-family: var(--font-head);
	font-size: var(--fs-lg);
	font-weight: 500;
	color: var(--blue-400);
	margin-bottom: var(--sp-4);
	line-height: 1.45;
	letter-spacing: -0.005em;
}

.hero-body p { color: rgba(255, 255, 255, 0.82); font-size: var(--fs-md); }

.hero-tagline {
	display: inline-block;
	margin-top: var(--sp-6);
	font-family: var(--font-head);
	font-size: var(--fs-lg);
	font-weight: 600;
	color: var(--orange-400);
	letter-spacing: -0.01em;
}

.hero-badges {
	display: flex; flex-wrap: wrap; gap: var(--sp-3);
	margin-top: var(--sp-8);
	padding-top: var(--sp-6);
	border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-badge {
	display: inline-flex; align-items: center; gap: var(--sp-2);
	padding: 9px 16px;
	border-radius: var(--radius-pill);
	background: rgba(255, 255, 255, 0.09);
	border: 1px solid rgba(255, 255, 255, 0.18);
	font-size: var(--fs-sm);
	font-weight: 500;
	color: rgba(255, 255, 255, 0.93);
}

.hero-badge svg { width: 16px; height: 16px; color: var(--blue-400); flex: none; }

.hero-card {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.17);
	border-radius: var(--radius-lg);
	padding: clamp(26px, 3vw, 38px) clamp(22px, 2.6vw, 34px);
	backdrop-filter: blur(14px);
	box-shadow: var(--shadow-lg);
}

.hero-card img {
	width: 132px; height: 132px;
	margin: 0 auto var(--sp-5);
	border-radius: 22px;
}

.hero-card h2 { font-size: 1.42rem; text-align: center; color: #fff; margin-bottom: 6px; }

.hero-card .hero-card-sub {
	text-align: center;
	font-size: 0.76rem;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--orange-400);
	font-weight: 600;
	margin-bottom: var(--sp-6);
}

.hero-card ul { list-style: none; margin: 0; padding: 0; }

.hero-card li {
	display: flex; align-items: flex-start; gap: var(--sp-3);
	padding: 11px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	font-size: var(--fs-sm);
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
	line-height: 1.55;
}

.hero-card li:last-child { border-bottom: 0; }
.hero-card li svg { width: 18px; height: 18px; flex: none; color: var(--orange-400); margin-top: 3px; }

/* page hero (interior pages) */

.page-hero {
	background: linear-gradient(155deg, var(--navy-900) 0%, var(--navy-700) 100%);
	color: rgba(255, 255, 255, 0.86);
	padding: clamp(48px, 6vw, 76px) 0;
	position: relative;
	overflow: hidden;
}

.page-hero::before {
	content: "";
	position: absolute; top: -40%; right: -8%;
	width: 620px; height: 620px;
	background: radial-gradient(circle, rgba(43, 133, 255, 0.24) 0%, rgba(43, 133, 255, 0) 68%);
}

.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; }

.breadcrumbs {
	font-size: var(--fs-sm);
	color: rgba(255, 255, 255, 0.62);
	margin-bottom: var(--sp-4);
}

.breadcrumbs a { color: rgba(255, 255, 255, 0.84); }
.breadcrumbs a:hover { color: var(--orange-400); }
.breadcrumbs span { margin: 0 7px; opacity: 0.5; }

/* ---------------------------------------------------- quick actions row -- */
/* Mirrors the reference site's "How Can We Help" card row below the hero. */

.quick-actions {
	padding: var(--section-y) 0;
	position: relative;
	z-index: 5;
}

/* Used when the row sits directly under the hero and should overlap it. */
.quick-actions--overlap {
	margin-top: clamp(-40px, -3vw, -28px);
	padding-top: 0;
}

.quick-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--gap-card);
}

.quick-card {
	display: flex;
	align-items: flex-start;
	gap: var(--sp-4);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: clamp(20px, 2.2vw, 26px);
	box-shadow: var(--shadow-sm);
	min-height: var(--tap);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.quick-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
	border-color: var(--blue-400);
}

.quick-card .ico {
	width: 46px; height: 46px;
	border-radius: 13px;
	background: linear-gradient(140deg, var(--blue-600), var(--blue-500));
	color: #fff;
	display: grid; place-items: center; flex: none;
}

.quick-card:nth-child(3n+2) .ico {
	background: linear-gradient(140deg, var(--orange-500), var(--orange-400));
}

.quick-card .ico svg { width: 23px; height: 23px; }

.quick-card strong {
	display: block;
	font-family: var(--font-head);
	font-size: var(--fs-md);
	font-weight: 600;
	color: var(--navy-800);
	line-height: 1.3;
	margin-bottom: 4px;
}

.quick-card span { font-size: var(--fs-sm); color: var(--ink-500); line-height: 1.55; }

/* ------------------------------------------------------------ highlights */

.highlights { margin-top: clamp(-40px, -3vw, -28px); position: relative; z-index: 5; }

.highlights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap-card); }

.highlight-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: clamp(20px, 2.2vw, 26px);
	box-shadow: var(--shadow);
	display: flex; align-items: center; gap: var(--sp-4);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.highlight-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
	border-color: var(--blue-400);
}

.highlight-card .ico {
	width: 46px; height: 46px;
	border-radius: 13px;
	background: linear-gradient(140deg, var(--blue-600), var(--blue-500));
	color: #fff;
	display: grid; place-items: center; flex: none;
}

.highlight-card:nth-child(even) .ico {
	background: linear-gradient(140deg, var(--orange-500), var(--orange-400));
}

.highlight-card .ico svg { width: 23px; height: 23px; }

.highlight-card span {
	font-family: var(--font-head);
	font-size: var(--fs-sm);
	font-weight: 600;
	color: var(--navy-800);
	line-height: 1.35;
	letter-spacing: -0.01em;
	text-wrap: balance;
}

/* --------------------------------------------------------------- cards -- */

.card-grid { display: grid; gap: var(--gap-card); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: clamp(24px, 2.6vw, 32px);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
	height: 100%;
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue-400); }

.card h3 { margin-bottom: var(--sp-3); }
.card p { font-size: var(--fs-sm); color: var(--ink-500); line-height: 1.68; }

.card .ico {
	width: 52px; height: 52px;
	border-radius: 14px;
	background: var(--blue-100);
	color: var(--blue-600);
	display: grid; place-items: center;
	margin-bottom: var(--sp-5);
}

.card .ico svg { width: 25px; height: 25px; }

.card--num .num {
	width: 48px; height: 48px;
	border-radius: 14px;
	background: linear-gradient(140deg, var(--navy-700), var(--navy-600));
	color: #fff;
	display: grid; place-items: center;
	font-family: var(--font-head);
	font-size: 1.3rem; font-weight: 700;
	margin-bottom: var(--sp-5);
}

.card-outcome {
	margin-top: var(--sp-4);
	padding-top: var(--sp-3);
	border-top: 1px dashed var(--line);
	font-size: var(--fs-sm);
	color: var(--blue-600);
	font-weight: 600;
}

.card-outcome strong { color: var(--navy-800); font-weight: 700; }

.section--navy .card {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.14);
}

.section--navy .card:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.3); }
.section--navy .card p { color: rgba(255, 255, 255, 0.78); }
.section--navy .card .ico { background: rgba(255, 255, 255, 0.12); color: var(--orange-400); }
.section--navy .card-outcome { border-top-color: rgba(255, 255, 255, 0.18); color: var(--orange-400); }
.section--navy .card-outcome strong { color: #fff; }

/* -------------------------------------------------------- service list -- */

.service-block {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--gap-card);
	margin-bottom: clamp(28px, 3.5vw, 42px);
}

.service-item {
	background: #fff;
	border: 1px solid var(--line);
	border-left: 4px solid var(--blue-500);
	border-radius: var(--radius);
	padding: clamp(22px, 2.6vw, 30px);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-left-color 0.2s ease;
}

.service-item:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
	border-left-color: var(--orange-500);
}

.service-item h3 {
	display: flex; align-items: flex-start; gap: var(--sp-3);
	margin-bottom: var(--sp-3);
}

.service-item h3 svg { width: 23px; height: 23px; color: var(--blue-600); flex: none; margin-top: 3px; }
.service-item p { font-size: var(--fs-sm); color: var(--ink-500); line-height: 1.68; }

.pill-list {
	list-style: none; margin: 0; padding: 0;
	display: flex; flex-wrap: wrap; gap: var(--sp-2);
}

.pill-list li {
	margin: 0;
	display: inline-flex; align-items: center; gap: var(--sp-2);
	padding: 10px 18px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-pill);
	font-size: var(--fs-sm);
	color: var(--ink-700);
	transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.pill-list li::before {
	content: "";
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--orange-500);
	flex: none;
}

.pill-list li:hover { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.pill-list li:hover::before { background: var(--orange-400); }

.check-list { list-style: none; margin: 0; padding: 0; }

.check-list li {
	display: flex; align-items: flex-start; gap: var(--sp-3);
	padding: 7px 0;
	font-size: var(--fs-sm);
	color: var(--ink-700);
	margin: 0;
	line-height: 1.6;
}

.check-list li svg { width: 18px; height: 18px; flex: none; color: var(--blue-600); margin-top: 4px; }

.section--navy .check-list li { color: rgba(255, 255, 255, 0.86); }
.section--navy .check-list li svg { color: var(--orange-400); }

/* --------------------------------------------------------- capabilities -- */

.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-card); }

.capability-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: clamp(22px, 2.6vw, 30px);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.capability-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.capability-card h3 {
	font-size: var(--fs-h4);
	padding-bottom: var(--sp-3);
	margin-bottom: var(--sp-4);
	border-bottom: 2px solid var(--blue-100);
	display: flex; align-items: center; gap: var(--sp-3);
}

.capability-card h3 svg { width: 21px; height: 21px; color: var(--orange-500); flex: none; }

/* ------------------------------------------------------- who we serve --- */

.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }

.audience-item {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: var(--sp-6) var(--sp-5);
	text-align: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.audience-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--orange-400); }

.audience-item .ico {
	width: 46px; height: 46px;
	margin: 0 auto var(--sp-3);
	border-radius: 50%;
	background: var(--blue-100);
	color: var(--blue-600);
	display: grid; place-items: center;
	transition: background 0.2s ease, color 0.2s ease;
}

.audience-item:hover .ico { background: var(--orange-100); color: var(--orange-600); }
.audience-item .ico svg { width: 22px; height: 22px; }

.audience-item span {
	font-family: var(--font-head);
	font-weight: 500;
	font-size: var(--fs-sm);
	color: var(--navy-800);
	line-height: 1.4;
	display: block;
}

/* ------------------------------------------------------- service areas --- */

.area-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: var(--sp-3);
}

.area-item {
	display: flex; align-items: center; gap: var(--sp-3);
	padding: 14px 18px;
	min-height: var(--tap);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	font-family: var(--font-head);
	font-size: var(--fs-sm);
	font-weight: 500;
	color: var(--navy-800);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.area-item svg { width: 17px; height: 17px; color: var(--orange-500); flex: none; }

.area-item:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-sm);
	border-color: var(--blue-400);
	color: var(--blue-600);
}

/* ------------------------------------------------------------- process -- */

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 28px); }

.process-step {
	position: relative;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: clamp(28px, 3vw, 34px) clamp(22px, 2.4vw, 28px) clamp(24px, 2.6vw, 30px);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.process-step .step-num {
	position: absolute;
	top: -19px; left: 26px;
	width: 44px; height: 44px;
	border-radius: 13px;
	background: linear-gradient(140deg, var(--orange-500), var(--orange-400));
	color: #fff;
	display: grid; place-items: center;
	font-family: var(--font-head);
	font-size: 1.15rem; font-weight: 700;
	box-shadow: 0 8px 16px rgba(242, 118, 15, 0.32);
}

.process-step h3 { margin-top: var(--sp-4); margin-bottom: var(--sp-3); font-size: var(--fs-h4); }
.process-step p { font-size: var(--fs-sm); color: var(--ink-500); line-height: 1.68; }

.section--navy .process-step {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.14);
}

.section--navy .process-step p { color: rgba(255, 255, 255, 0.78); }

/* -------------------------------------------------------------- trust --- */

.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); }

.trust-item {
	display: flex; align-items: center; gap: var(--sp-4);
	padding: var(--sp-6);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.trust-item .ico {
	width: 46px; height: 46px;
	border-radius: 13px;
	background: var(--orange-100);
	color: var(--orange-600);
	display: grid; place-items: center; flex: none;
}

.trust-item .ico svg { width: 23px; height: 23px; }

.trust-item strong {
	display: block;
	font-family: var(--font-head);
	font-size: var(--fs-sm);
	font-weight: 600;
	color: var(--navy-800);
	line-height: 1.35;
}

.trust-item small { display: block; font-size: var(--fs-xs); color: var(--ink-500); margin-top: 3px; line-height: 1.5; }

/* -------------------------------------------------------- testimonials -- */

.review-note {
	background: var(--orange-100);
	border: 1px solid #ffd9bd;
	border-left: 4px solid var(--orange-500);
	border-radius: var(--radius-sm);
	padding: var(--sp-4) var(--sp-5);
	font-size: var(--fs-sm);
	color: #8a4a12;
	margin-bottom: clamp(24px, 3vw, 36px);
	line-height: 1.65;
}

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-card); }

.review-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: clamp(24px, 2.6vw, 30px);
	display: flex; flex-direction: column;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.review-label {
	font-family: var(--font-head);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: var(--blue-600);
	margin-bottom: var(--sp-3);
}

.review-stars {
	display: flex; align-items: center; gap: 3px;
	margin-bottom: var(--sp-3);
	color: var(--orange-500);
}

.review-stars svg { width: 16px; height: 16px; }
.review-stars b { margin-left: 6px; font-size: var(--fs-xs); color: var(--navy-800); }

.review-card blockquote {
	margin: 0 0 var(--sp-5);
	font-size: var(--fs-sm);
	color: var(--ink-700);
	line-height: 1.72;
	flex: 1;
}

.review-meta {
	padding-top: var(--sp-4);
	border-top: 1px solid var(--line);
	font-size: var(--fs-xs);
	color: var(--ink-500);
	line-height: 1.55;
}

.review-meta strong {
	display: block;
	font-family: var(--font-head);
	color: var(--navy-800);
	font-size: var(--fs-sm);
	margin-bottom: 3px;
}

/* ---------------------------------------------------------------- FAQ --- */

.faq-list { display: grid; gap: var(--sp-3); }

.faq-item {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] { border-color: var(--blue-400); box-shadow: var(--shadow-sm); }

.faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: var(--sp-5) 60px var(--sp-5) var(--sp-6);
	position: relative;
	min-height: var(--tap);
	font-family: var(--font-head);
	font-size: var(--fs-md);
	font-weight: 600;
	color: var(--navy-800);
	line-height: 1.45;
	transition: color 0.18s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--blue-600); }

.faq-item summary::after {
	content: "";
	position: absolute; right: 24px; top: 50%;
	width: 11px; height: 11px;
	border-right: 2.5px solid var(--orange-500);
	border-bottom: 2.5px solid var(--orange-500);
	transform: translateY(-70%) rotate(45deg);
	transition: transform 0.22s ease;
}

.faq-item[open] summary::after { transform: translateY(-25%) rotate(-135deg); }

.faq-answer {
	padding: 0 var(--sp-6) var(--sp-6);
	font-size: var(--fs-sm);
	color: var(--ink-500);
	line-height: 1.72;
}

.faq-answer p { margin-bottom: 0.75em; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------ cta band -- */

.cta-band {
	background: linear-gradient(140deg, var(--navy-800) 0%, var(--navy-600) 60%, var(--blue-600) 140%);
	color: rgba(255, 255, 255, 0.88);
	border-radius: var(--radius-lg);
	padding: clamp(34px, 5vw, 60px) clamp(24px, 4.5vw, 56px);
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.cta-band::before {
	content: "";
	position: absolute; top: -60%; right: -6%;
	width: 460px; height: 460px;
	background: radial-gradient(circle, rgba(242, 118, 15, 0.28) 0%, rgba(242, 118, 15, 0) 68%);
}

.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.82); max-width: 690px; font-size: var(--fs-md); }

.cta-inline {
	background: var(--paper-blue);
	border: 1px solid var(--line);
	border-left: 4px solid var(--orange-500);
	border-radius: var(--radius);
	padding: var(--sp-6) clamp(20px, 2.6vw, 30px);
	display: flex; flex-wrap: wrap;
	align-items: center; justify-content: space-between;
	gap: var(--sp-5);
	margin-top: clamp(24px, 3vw, 38px);
}

.cta-inline strong {
	font-family: var(--font-head);
	font-size: var(--fs-lg);
	font-weight: 600;
	color: var(--navy-800);
	line-height: 1.4;
}

/* ------------------------------------------------------------- summary -- */

.summary-box {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: clamp(28px, 3.6vw, 44px);
	box-shadow: var(--shadow-xs);
	position: relative;
	overflow: hidden;
}

.summary-box::before {
	content: "";
	position: absolute; left: 0; top: 24px; bottom: 24px;
	width: 4px; border-radius: 0 4px 4px 0;
	background: linear-gradient(180deg, var(--blue-500), var(--orange-500));
}

.summary-box p { font-size: var(--fs-md); color: var(--ink-500); line-height: 1.75; }

/* --------------------------------------------------------- contact ------ */

.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: clamp(24px, 3.4vw, 44px);
	align-items: start;
}

.contact-aside { position: sticky; top: calc(var(--header-h) + 24px); display: grid; gap: var(--sp-5); }

.contact-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: clamp(22px, 2.6vw, 30px);
	box-shadow: var(--shadow-xs);
}

.contact-card h3 { font-size: var(--fs-h4); margin-bottom: var(--sp-4); }

.contact-line {
	display: flex; align-items: flex-start; gap: var(--sp-3);
	padding: var(--sp-3) 0;
	border-bottom: 1px solid var(--line-soft);
	min-height: var(--tap);
}

.contact-line:last-child { border-bottom: 0; }

.contact-line .ico {
	width: 40px; height: 40px;
	border-radius: 11px;
	background: var(--blue-100);
	color: var(--blue-600);
	display: grid; place-items: center; flex: none;
}

.contact-line .ico svg { width: 18px; height: 18px; }

.contact-line small {
	display: block;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ink-300);
	margin-bottom: 2px;
}

.contact-line strong, .contact-line a {
	font-size: var(--fs-sm);
	color: var(--navy-800);
	font-weight: 600;
	line-height: 1.5;
}

.contact-line a { display: inline-flex; align-items: center; min-height: 40px; }

.contact-line a:hover { color: var(--orange-600); }

/* form */

.cap-form {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: clamp(22px, 3.2vw, 42px);
	box-shadow: var(--shadow);
}

.form-section { margin-bottom: clamp(26px, 3vw, 34px); }
.form-section:last-of-type { margin-bottom: var(--sp-6); }

.form-section > h3 {
	font-size: var(--fs-h4);
	padding-bottom: var(--sp-3);
	margin-bottom: var(--sp-5);
	border-bottom: 2px solid var(--blue-100);
}

.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); }

.field { margin-bottom: var(--sp-5); }
.field:last-child { margin-bottom: 0; }

.field label, .field > .field-legend {
	display: block;
	font-family: var(--font-head);
	font-size: var(--fs-sm);
	font-weight: 600;
	color: var(--navy-800);
	margin-bottom: var(--sp-2);
}

.field .req { color: var(--orange-600); margin-left: 2px; }

.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field input[type="file"],
.field select,
.field textarea {
	width: 100%;
	min-height: var(--tap);
	padding: 13px 16px;
	border: 1.5px solid var(--line);
	border-radius: var(--radius-sm);
	font-family: inherit;
	/* 16px minimum stops iOS Safari zooming in on focus. */
	font-size: 16px;
	color: var(--ink-900);
	background: #fff;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field textarea { min-height: 150px; resize: vertical; line-height: 1.65; }

.field input:focus, .field select:focus, .field textarea:focus {
	outline: none;
	border-color: var(--blue-500);
	box-shadow: 0 0 0 4px rgba(43, 133, 255, 0.14);
}

.field input::placeholder, .field textarea::placeholder { color: var(--ink-300); }

.radio-grid { display: flex; flex-wrap: wrap; gap: var(--sp-2); }

.radio-chip { position: relative; }

.radio-chip input { position: absolute; opacity: 0; width: 0; height: 0; }

.radio-chip span {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 10px 18px;
	border: 1.5px solid var(--line);
	border-radius: var(--radius-pill);
	font-size: var(--fs-sm);
	color: var(--ink-700);
	cursor: pointer;
	transition: all 0.18s ease;
}

.radio-chip:hover span { border-color: var(--blue-400); }

.radio-chip input:checked + span {
	background: var(--navy-800);
	border-color: var(--navy-800);
	color: #fff;
	font-weight: 600;
}

.radio-chip input:focus-visible + span { outline: 3px solid var(--orange-500); outline-offset: 2px; }

.consent {
	display: flex; align-items: flex-start; gap: var(--sp-3);
	padding: var(--sp-5);
	background: var(--paper-alt);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	font-size: var(--fs-sm);
	color: var(--ink-500);
	line-height: 1.6;
	cursor: pointer;
}

.consent input { width: 22px; height: 22px; flex: none; margin-top: 1px; accent-color: var(--orange-500); }

.form-notice {
	padding: var(--sp-5) var(--sp-6);
	border-radius: var(--radius-sm);
	margin-bottom: var(--sp-6);
	font-size: var(--fs-sm);
	border-left: 4px solid;
	line-height: 1.65;
}

.form-notice--ok { background: #eafaf1; border-color: #17a35a; color: #14603a; }

.form-notice--ok strong {
	display: block;
	font-family: var(--font-head);
	font-size: var(--fs-lg);
	color: #0f7a44;
	margin-bottom: 6px;
}

.form-notice--err { background: #fdecec; border-color: #d93636; color: #8c2020; }
.form-notice--err strong { font-family: var(--font-head); }
.form-notice ul { margin: var(--sp-2) 0 0; padding-left: 1.2em; }

.form-footnote { margin-top: var(--sp-4); font-size: var(--fs-sm); color: var(--ink-500); text-align: center; }

/* --------------------------------------------------------- rich text ---- */

.rich-text h2 { margin-top: 1.5em; }
.rich-text h2:first-child { margin-top: 0; }
.rich-text h3 { margin-top: 1.4em; }
.rich-text p { font-size: var(--fs-md); line-height: 1.78; }

.rich-text ul {
	list-style: none; padding: 0;
	display: grid; grid-template-columns: repeat(2, 1fr);
	gap: 2px var(--sp-6);
	margin-bottom: 1.5em;
}

.rich-text ul li {
	display: flex; align-items: flex-start; gap: var(--sp-3);
	padding: 7px 0;
	font-size: var(--fs-base);
	line-height: 1.6;
}

.rich-text ul li::before {
	content: "";
	width: 7px; height: 7px; margin-top: 10px;
	border-radius: 50%;
	background: var(--orange-500);
	flex: none;
}

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-card); margin: var(--sp-8) 0; }

.value-card {
	background: #fff;
	border: 1px solid var(--line);
	border-top: 4px solid var(--blue-500);
	border-radius: var(--radius);
	padding: clamp(22px, 2.4vw, 28px);
}

.value-card:nth-child(3n+2) { border-top-color: var(--orange-500); }
.value-card h3 { font-size: var(--fs-h4); margin-bottom: var(--sp-3); }
.value-card p { font-size: var(--fs-sm); color: var(--ink-500); margin: 0; line-height: 1.68; }

.mv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap-card); margin: var(--sp-8) 0; }

.mv-card {
	background: linear-gradient(150deg, var(--navy-800), var(--navy-600));
	color: rgba(255, 255, 255, 0.86);
	border-radius: var(--radius-lg);
	padding: clamp(26px, 3vw, 36px);
}

.mv-card h3 { color: #fff; }
.mv-card p { color: rgba(255, 255, 255, 0.82); font-size: var(--fs-sm); line-height: 1.7; }

.mv-card .ico {
	width: 48px; height: 48px;
	border-radius: 13px;
	background: rgba(255, 255, 255, 0.13);
	color: var(--orange-400);
	display: grid; place-items: center;
	margin-bottom: var(--sp-5);
}

.mv-card .ico svg { width: 24px; height: 24px; }

/* ----------------------------------------------------------- blog cards - */

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-card); }

.post-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex; flex-direction: column;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card .post-body { padding: clamp(22px, 2.4vw, 28px); flex: 1; display: flex; flex-direction: column; }
.post-card h3 { font-size: var(--fs-h4); margin-bottom: var(--sp-3); }
.post-card p { font-size: var(--fs-sm); color: var(--ink-500); flex: 1; line-height: 1.68; }

.post-date {
	font-family: var(--font-head);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--blue-600);
	margin-bottom: var(--sp-3);
}

.read-more {
	margin-top: var(--sp-4);
	font-family: var(--font-head);
	font-weight: 600;
	font-size: var(--fs-sm);
	display: inline-flex; align-items: center; gap: 7px;
	min-height: 44px;
	color: var(--orange-600);
}

.read-more svg { width: 16px; height: 16px; transition: transform 0.18s ease; }
.post-card:hover .read-more svg { transform: translateX(4px); }

.empty-note {
	background: var(--paper-alt);
	border: 1px dashed var(--line);
	border-radius: var(--radius);
	padding: clamp(28px, 4vw, 44px);
	text-align: center;
	color: var(--ink-500);
}

/* --------------------------------------------------------------- footer - */

.site-footer {
	background: var(--navy-900);
	color: rgba(255, 255, 255, 0.7);
	padding: clamp(48px, 6vw, 72px) 0 0;
	font-size: var(--fs-sm);
	line-height: 1.7;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: clamp(28px, 3.6vw, 44px);
	padding-bottom: clamp(32px, 4vw, 52px);
}

.footer-brand img { width: 70px; height: 70px; border-radius: 16px; margin-bottom: var(--sp-4); }

.footer-brand .brand-name { color: #fff; font-size: 1.35rem; display: block; margin-bottom: 4px; }
.footer-brand .brand-tag { display: block; color: var(--orange-400); margin-bottom: var(--sp-4); }
.footer-brand p { font-size: var(--fs-sm); color: rgba(255, 255, 255, 0.64); max-width: 330px; }

.site-footer h4 {
	color: #fff;
	font-size: var(--fs-md);
	margin-bottom: var(--sp-5);
	letter-spacing: -0.01em;
}

.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: var(--sp-2); }

.site-footer a {
	color: rgba(255, 255, 255, 0.7);
	display: inline-flex;
	align-items: center;
	min-height: 44px;
}

.site-footer a:hover { color: var(--orange-400); }

.footer-contact li { display: flex; align-items: flex-start; gap: var(--sp-3); }
.footer-contact svg { width: 16px; height: 16px; color: var(--blue-400); flex: none; margin-top: 9px; }

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.11);
	padding: var(--sp-6) 0;
	display: flex; flex-wrap: wrap;
	align-items: center; justify-content: space-between;
	gap: var(--sp-4);
	font-size: var(--fs-xs);
	color: rgba(255, 255, 255, 0.52);
}

.footer-bottom nav { display: flex; flex-wrap: wrap; gap: var(--sp-5); }

/* sticky call/request bar (mobile) */

.mobile-cta {
	display: none;
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 130;
	background: #fff;
	border-top: 1px solid var(--line);
	box-shadow: 0 -6px 20px rgba(10, 30, 63, 0.13);
	padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
	gap: var(--sp-3);
}

.mobile-cta .btn { flex: 1; padding: 12px 14px; font-size: var(--fs-sm); }

/* ---------------------------------------------------------- responsive -- */

@media (max-width: 1100px) {
	.hero-grid { grid-template-columns: 1fr; }
	.hero-card { max-width: 520px; }
	.quick-grid { grid-template-columns: repeat(2, 1fr); }
	.highlights-grid { grid-template-columns: repeat(2, 1fr); }
	.card-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.capability-grid { grid-template-columns: repeat(2, 1fr); }
	.review-grid { grid-template-columns: repeat(2, 1fr); }
	.audience-grid { grid-template-columns: repeat(3, 1fr); }
	.trust-strip { grid-template-columns: repeat(2, 1fr); }
	.post-grid { grid-template-columns: repeat(2, 1fr); }
	.contact-grid { grid-template-columns: 1fr; }
	.contact-aside { position: static; grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: repeat(2, 1fr); }
	.value-grid { grid-template-columns: repeat(2, 1fr); }
	.process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
	.nav-toggle { display: grid; }

	.nav-primary {
		position: fixed;
		top: 0; right: 0; bottom: 0;
		width: min(360px, 88vw);
		background: #fff;
		box-shadow: -12px 0 44px rgba(10, 30, 63, 0.2);
		padding: 88px 20px calc(32px + env(safe-area-inset-bottom, 0px));
		overflow-y: auto;
		transform: translateX(105%);
		/* Hidden while closed so the off-screen panel cannot capture taps or focus. */
		visibility: hidden;
		transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.28s;
		z-index: 140;
	}

	.nav-primary.is-open { transform: translateX(0); visibility: visible; }

	.nav-primary ul { flex-direction: column; align-items: stretch; gap: 2px; }

	.nav-primary > ul > li > a {
		padding: 14px 16px;
		min-height: var(--tap);
		font-size: var(--fs-md);
		justify-content: space-between;
	}

	.nav-primary ul ul {
		position: static;
		opacity: 1; visibility: visible; transform: none;
		box-shadow: none; border: 0;
		border-left: 2px solid var(--blue-100);
		border-radius: 0;
		margin: 2px 0 8px 16px;
		padding: 0 0 0 8px;
		display: none;
	}

	.nav-primary li.is-expanded > ul { display: block; }
	.nav-primary ul ul a { min-height: 44px; display: flex; align-items: center; }
	.nav-primary li.menu-item-has-children > a::after { transition: transform 0.2s ease; }
	.nav-primary li.is-expanded > a::after { transform: rotate(-135deg) translateY(-2px); }

	/* The nav panel lives inside .site-header, so it is trapped in that
	   element's stacking context. The backdrop must therefore sit below the
	   header (z-index 120) rather than between the header and the panel. */
	.nav-backdrop {
		position: fixed; inset: 0;
		background: rgba(6, 21, 41, 0.55);
		opacity: 0; visibility: hidden;
		transition: opacity 0.25s ease, visibility 0.25s;
		z-index: 110;
	}

	.nav-backdrop.is-visible { opacity: 1; visibility: visible; }

	.nav-close {
		position: absolute;
		top: 20px; right: 20px;
		width: var(--tap); height: var(--tap);
		border: 1px solid var(--line);
		border-radius: 50%;
		background: #fff;
		cursor: pointer;
		display: grid; place-items: center;
		font-size: 1.4rem; color: var(--navy-800); line-height: 1;
	}

	/* The sticky bottom bar carries the primary CTA on small screens, so the
	   header keeps only the logo, a call button, and the menu toggle. */
	.header-phone span { display: none; }
	.header-phone { min-width: var(--tap); justify-content: center; }
	.header-actions > .btn { display: none; }
	.site-header .wrap { gap: var(--sp-3); min-height: 70px; }
	.brand img { width: 44px; height: 44px; }
	.brand-name { font-size: 1.08rem; }
	.brand-tag { font-size: 0.58rem; letter-spacing: 0.07em; }

	.service-block { grid-template-columns: 1fr; }
	.mv-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
	body { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }

	.quick-grid,
	.highlights-grid,
	.card-grid--2, .card-grid--3, .card-grid--4,
	.capability-grid,
	.process-grid,
	.review-grid,
	.post-grid,
	.trust-strip,
	.value-grid,
	.rich-text ul,
	.field-row,
	.contact-aside {
		grid-template-columns: 1fr;
	}

	.audience-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
	.area-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }

	.hero { padding-top: clamp(40px, 8vw, 56px); }
	.hero-card { max-width: none; }
	.hero-card img { width: 104px; height: 104px; }
	.quick-actions--overlap, .highlights { margin-top: -24px; }

	/* Keep the top bar to a single legible line on phones. */
	.topbar { font-size: var(--fs-xs); padding: 0; }
	.topbar .wrap { justify-content: center; }
	.topbar-links { gap: var(--sp-4); }
	.topbar-links a { white-space: nowrap; min-height: 44px; }
	.topbar-tagline,
	.topbar-links a:nth-child(2),
	.topbar-links a:nth-child(3) { display: none; }

	.mobile-cta { display: flex; }

	.btn-row { gap: var(--sp-2); }
	.btn-row .btn { width: 100%; }

	.cta-inline { flex-direction: column; align-items: stretch; text-align: center; }
	.cta-inline .btn { width: 100%; }

	.footer-bottom { flex-direction: column; align-items: flex-start; }
	.faq-item summary { font-size: var(--fs-base); padding: var(--sp-4) 52px var(--sp-4) var(--sp-4); }
	.faq-answer { padding: 0 var(--sp-4) var(--sp-5); }
	.trust-item { padding: var(--sp-4); }
	.review-note { padding: var(--sp-4); }
}

@media (max-width: 420px) {
	.audience-grid { grid-template-columns: 1fr; }
	.area-grid { grid-template-columns: 1fr; }
	.brand-tag { display: none; }
	.brand-name { font-size: 1.02rem; }
}

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

	.reveal { opacity: 1 !important; transform: none !important; }
}

/* --------------------------------------------------------- reveal anim -- */

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible { opacity: 1; transform: none; }
