/* ==========================================================================
   SureSpot Parking — site.css
   Single design-system stylesheet. Replaces style.css, style-global.css
   and style-responsive.css.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
	/* Brand */
	--navy-950: #00132B;
	--navy-900: #001D3D;
	--navy-700: #003566;
	--gold-500: #FFC300;
	--gold-400: #FFD60A;

	/* Neutrals */
	--ink: #16263A;
	--muted: #54657A;
	--line: #E2E8F0;
	--paper: #F5F7FA;
	--white: #FFFFFF;

	/* Type scale (fluid, rem-based) */
	--fs-display: clamp(2.35rem, 1.55rem + 3.2vw, 3.9rem);
	--fs-h1: clamp(2.1rem, 1.5rem + 2.4vw, 3.25rem);
	--fs-h2: clamp(1.6rem, 1.3rem + 1.2vw, 2.25rem);
	--fs-h3: clamp(1.17rem, 1.08rem + 0.35vw, 1.4rem);
	--fs-lede: clamp(1.05rem, 1rem + 0.35vw, 1.3rem);
	--fs-body: 1.0625rem;
	--fs-small: 0.9375rem;
	--fs-xs: 0.8125rem;

	/* Layout */
	--container: 1180px;
	--container-narrow: 820px;
	--header-h: 76px;
	--radius: 14px;
	--radius-sm: 8px;
	--shadow-sm: 0 1px 3px rgba(0, 19, 43, 0.07), 0 1px 2px rgba(0, 19, 43, 0.05);
	--shadow-md: 0 10px 30px rgba(0, 19, 43, 0.10);
	--shadow-lg: 0 24px 50px rgba(0, 19, 43, 0.16);
	--ease: cubic-bezier(0.2, 0.6, 0.2, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: var(--fs-body);
	line-height: 1.65;
	color: var(--ink);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--navy-700);
	text-decoration: none;
}

ul, ol {
	list-style: none;
}

h1, h2, h3, h4 {
	line-height: 1.18;
	color: var(--navy-900);
	font-weight: 700;
	text-wrap: balance;
}

strong { font-weight: 700; }

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

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

/* ---------- Utilities ---------- */
.container {
	width: min(100% - 2.5rem, var(--container));
	margin-inline: auto;
}

.container--narrow {
	width: min(100% - 2.5rem, var(--container-narrow));
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 1000;
	background: var(--gold-500);
	color: var(--navy-900);
	padding: 0.75rem 1.25rem;
	font-weight: 700;
	border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
	left: 0;
}

.icon {
	width: 1.2em;
	height: 1.2em;
	flex: none;
	vertical-align: -0.22em;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55em;
	padding: 0.95rem 1.9rem;
	border: 2px solid transparent;
	border-radius: 10px;
	font: inherit;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.2s var(--ease), color 0.2s var(--ease),
		border-color 0.2s var(--ease), transform 0.2s var(--ease),
		box-shadow 0.2s var(--ease);
}

.btn--gold {
	background: var(--gold-500);
	color: var(--navy-900);
}

.btn--gold:hover {
	background: var(--gold-400);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(255, 195, 0, 0.35);
}

.btn--ghost {
	background: transparent;
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
	border-color: var(--white);
	background: rgba(255, 255, 255, 0.1);
}

.btn--navy {
	background: var(--navy-900);
	color: var(--white);
}

.btn--navy:hover {
	background: var(--navy-700);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.btn--sm {
	padding: 0.6rem 1.15rem;
	font-size: var(--fs-small);
	border-radius: 8px;
}

/* Inline text link */
.text-link {
	color: var(--navy-700);
	font-weight: 600;
	border-bottom: 1.5px solid rgba(0, 53, 102, 0.3);
	transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.text-link:hover {
	color: var(--navy-900);
	border-color: var(--gold-500);
}

.arrow-link {
	display: inline-flex;
	align-items: center;
	gap: 0.45em;
	font-weight: 700;
	color: var(--navy-900);
	transition: color 0.2s var(--ease), gap 0.2s var(--ease);
}

.arrow-link:hover {
	color: var(--navy-700);
	gap: 0.7em;
}

/* ---------- Header ---------- */
.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 100;
	height: var(--header-h);
	background: var(--navy-900);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: box-shadow 0.25s var(--ease);
}

.site-header.is-scrolled {
	box-shadow: 0 6px 24px rgba(0, 19, 43, 0.35);
}

.site-header .container {
	height: 100%;
	display: flex;
	align-items: center;
	gap: 2rem;
}

.brand {
	display: inline-flex;
	align-items: center;
	flex: none;
}

.brand img {
	width: auto;
	height: 38px;
}

.site-nav {
	margin-left: auto;
}

.site-nav ul {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.site-nav a {
	display: inline-block;
	padding: 0.55rem 0.9rem;
	border-radius: 8px;
	color: rgba(255, 255, 255, 0.85);
	font-size: var(--fs-small);
	font-weight: 600;
	transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.site-nav a:hover {
	color: var(--white);
	background: rgba(255, 255, 255, 0.09);
}

.site-nav li.active a,
.site-nav a[aria-current="page"] {
	color: var(--gold-500);
}

.header-cta {
	flex: none;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	margin-left: auto;
	padding: 0 10px;
	background: transparent;
	border: 0;
	border-radius: 8px;
	cursor: pointer;
}

.nav-toggle .bar {
	display: block;
	height: 2px;
	width: 100%;
	background: var(--white);
	border-radius: 2px;
	transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}

/* Mobile nav */
@media (max-width: 919px) {
	.nav-toggle { display: flex; }

	.header-cta { display: none; }

	.site-nav {
		position: fixed;
		top: var(--header-h);
		left: 0;
		right: 0;
		margin: 0;
		background: var(--navy-900);
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		padding: 1rem 1.25rem 1.75rem;
		box-shadow: 0 30px 40px rgba(0, 19, 43, 0.4);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		transition: opacity 0.25s var(--ease), transform 0.25s var(--ease),
			visibility 0s linear 0.25s;
	}

	body.nav-open .site-nav {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
	}

	.site-nav ul {
		flex-direction: column;
		align-items: stretch;
		gap: 0.25rem;
	}

	.site-nav a {
		display: block;
		padding: 0.85rem 1rem;
		font-size: 1.05rem;
	}

	.site-nav .nav-cta-item {
		margin-top: 0.75rem;
	}

	.site-nav .nav-cta-item a {
		background: var(--gold-500);
		color: var(--navy-900);
		text-align: center;
		font-weight: 700;
		border-radius: 10px;
	}

	body.nav-open .nav-toggle .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	body.nav-open .nav-toggle .bar:nth-child(2) { opacity: 0; }
	body.nav-open .nav-toggle .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (min-width: 920px) {
	.site-nav .nav-cta-item { display: none; }
}

/* ---------- Heroes ---------- */
.hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: min(92vh, 760px);
	padding: calc(var(--header-h) + 4rem) 0 5rem;
	background: var(--navy-900);
	color: var(--white);
	overflow: hidden;
}

.hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(0, 19, 43, 0.92) 0%, rgba(0, 29, 61, 0.78) 50%, rgba(0, 29, 61, 0.45) 100%);
}

.hero .container {
	position: relative;
	z-index: 1;
}

.hero__content {
	max-width: 720px;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	margin-bottom: 1.25rem;
	font-size: var(--fs-xs);
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold-500);
}

.eyebrow::before {
	content: '';
	width: 2rem;
	height: 2px;
	background: var(--gold-500);
}

.hero h1 {
	font-size: var(--fs-display);
	font-weight: 800;
	color: var(--white);
	margin-bottom: 1.5rem;
}

.hero__lede {
	font-size: var(--fs-lede);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.88);
	max-width: 56ch;
	margin-bottom: 2.25rem;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.hero__ticker {
	position: relative;
	z-index: 1;
	margin-top: 4rem;
	padding-top: 1.75rem;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 3rem;
}

.hero__ticker li {
	display: flex;
	align-items: center;
	gap: 0.6em;
	font-size: var(--fs-small);
	font-weight: 600;
	color: rgba(255, 255, 255, 0.85);
}

.hero__ticker .icon {
	color: var(--gold-500);
}

/* Interior page hero */
.page-hero {
	position: relative;
	padding: calc(var(--header-h) + 4.5rem) 0 4rem;
	background:
		radial-gradient(1100px 420px at 85% -10%, rgba(0, 53, 102, 0.85) 0%, rgba(0, 53, 102, 0) 60%),
		linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-700) 100%);
	color: var(--white);
	overflow: hidden;
}

.page-hero--img .page-hero__bg {
	position: absolute;
	inset: 0;
}

.page-hero--img .page-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-hero--img .page-hero__bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(0, 19, 43, 0.93) 0%, rgba(0, 29, 61, 0.8) 55%, rgba(0, 29, 61, 0.55) 100%);
}

.page-hero .container {
	position: relative;
	z-index: 1;
}

.page-hero h1 {
	font-size: var(--fs-h1);
	font-weight: 800;
	color: var(--white);
	max-width: 22ch;
}

.page-hero__lede {
	margin-top: 1.25rem;
	font-size: var(--fs-lede);
	color: rgba(255, 255, 255, 0.85);
	max-width: 58ch;
	line-height: 1.6;
}

.page-hero__actions {
	margin-top: 2rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

/* ---------- Sections ---------- */
.section {
	padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section--alt {
	background: var(--paper);
}

.section--navy {
	background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 60%, var(--navy-700) 100%);
	color: var(--white);
}

.section--navy h2,
.section--navy h3 {
	color: var(--white);
}

.section-head {
	max-width: 720px;
	margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

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

.section-head--center .eyebrow {
	justify-content: center;
}

.section-head h2 {
	font-size: var(--fs-h2);
	margin-bottom: 1rem;
}

.section-head .lede {
	font-size: var(--fs-lede);
	color: var(--muted);
	line-height: 1.6;
}

.section--navy .section-head .lede {
	color: rgba(255, 255, 255, 0.82);
}

/* ---------- Grids ---------- */
.grid {
	display: grid;
	gap: 1.5rem;
}

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

@media (max-width: 1023px) {
	.grid--4 { grid-template-columns: repeat(2, 1fr); }
	.grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 659px) {
	.grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* ---------- Cards ---------- */
.icon-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.9rem 1.75rem;
	box-shadow: var(--shadow-sm);
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

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

.icon-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin-bottom: 1.15rem;
	border-radius: 12px;
	background: var(--navy-900);
	color: var(--gold-500);
}

.icon-badge .icon {
	width: 24px;
	height: 24px;
}

.icon-card h3 {
	font-size: var(--fs-h3);
	margin-bottom: 0.6rem;
}

.icon-card p {
	color: var(--muted);
	font-size: var(--fs-small);
	line-height: 1.65;
}

/* Photo cards (Where we focus / locations) */
.photo-card {
	display: flex;
	flex-direction: column;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	color: inherit;
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

a.photo-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.photo-card__media {
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.photo-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s var(--ease);
}

a.photo-card:hover .photo-card__media img {
	transform: scale(1.05);
}

.photo-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 1.5rem 1.5rem 1.6rem;
}

.photo-card h3 {
	font-size: var(--fs-h3);
	margin-bottom: 0.5rem;
}

.photo-card p {
	color: var(--muted);
	font-size: var(--fs-small);
	line-height: 1.65;
	margin-bottom: 1.1rem;
}

.photo-card .arrow-link {
	margin-top: auto;
	font-size: var(--fs-small);
}

a.photo-card:hover .arrow-link {
	color: var(--navy-700);
	gap: 0.7em;
}

.badge {
	display: inline-block;
	align-self: flex-start;
	margin-bottom: 0.75rem;
	padding: 0.25rem 0.7rem;
	border-radius: 999px;
	font-size: var(--fs-xs);
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.badge--green {
	background: #DCF5E4;
	color: #14703A;
}

.badge--gold {
	background: rgba(255, 195, 0, 0.18);
	color: #8A6A00;
}

/* Dashed "coming soon" card */
.photo-card--ghost {
	align-items: center;
	justify-content: center;
	text-align: center;
	border-style: dashed;
	border-width: 2px;
	background: var(--paper);
	box-shadow: none;
	padding: 2.5rem 1.5rem;
}

.photo-card--ghost .icon-badge {
	margin-inline: auto;
}

/* ---------- Steps ---------- */
.steps {
	counter-reset: step;
}

.step-card {
	position: relative;
	background: var(--white);
	border: 1px solid var(--line);
	border-top: 3px solid var(--gold-500);
	border-radius: var(--radius-sm);
	padding: 1.75rem 1.5rem 1.6rem;
	box-shadow: var(--shadow-sm);
}

.step-card__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-bottom: 1rem;
	border-radius: 50%;
	background: var(--navy-900);
	color: var(--gold-500);
	font-weight: 800;
	font-size: 1.05rem;
}

.step-card h3 {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}

.step-card p {
	color: var(--muted);
	font-size: var(--fs-small);
	line-height: 1.6;
}

/* ---------- Long-form prose ---------- */
.prose {
	max-width: var(--container-narrow);
	margin-inline: auto;
}

.prose > * + * {
	margin-top: 1.15rem;
}

.prose h2 {
	font-size: var(--fs-h2);
	margin-top: 3rem;
}

.prose h3 {
	font-size: var(--fs-h3);
	margin-top: 2.25rem;
}

.prose h2:first-child,
.prose h3:first-child {
	margin-top: 0;
}

.prose p {
	line-height: 1.75;
}

.prose .lede {
	font-size: var(--fs-lede);
	line-height: 1.65;
}

.prose ul {
	list-style: disc;
	padding-left: 1.5rem;
}

.prose ul li {
	margin-top: 0.55rem;
	line-height: 1.7;
}

.prose .key-line {
	font-weight: 600;
	color: var(--navy-900);
}

.prose .aside-line {
	color: var(--muted);
	font-style: italic;
}

.prose .meta-line {
	color: var(--muted);
	font-size: var(--fs-small);
}

/* Callout / highlight */
.callout {
	background: #F0F6FF;
	border-left: 4px solid var(--gold-500);
	border-radius: var(--radius-sm);
	padding: 1.5rem 1.75rem;
	margin-top: 2rem;
}

.callout p {
	font-size: var(--fs-lede);
	font-weight: 600;
	color: var(--navy-900);
	line-height: 1.55;
}

.notice {
	background: #FFF6DE;
	border-left: 4px solid var(--gold-500);
	border-radius: var(--radius-sm);
	padding: 1.25rem 1.5rem;
	color: #6B5200;
}

/* ---------- FAQ ---------- */
.faq-item {
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--white);
	box-shadow: var(--shadow-sm);
}

.faq-item + .faq-item {
	margin-top: 0.85rem;
}

.faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.15rem 1.4rem;
	cursor: pointer;
	font-weight: 700;
	color: var(--navy-900);
	list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
	content: '+';
	flex: none;
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--gold-500);
	transition: transform 0.2s var(--ease);
	line-height: 1;
}

.faq-item[open] summary::after {
	transform: rotate(45deg);
}

.faq-item .faq-body {
	padding: 0 1.4rem 1.3rem;
	color: var(--muted);
	line-height: 1.7;
}

/* ---------- Comparison table ---------- */
.table-wrap {
	overflow-x: auto;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	margin-top: 2rem;
}

.compare-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 540px;
	background: var(--white);
}

.compare-table th,
.compare-table td {
	padding: 1rem 1.4rem;
	text-align: left;
	font-size: var(--fs-small);
	border-bottom: 1px solid var(--line);
}

.compare-table thead th {
	background: var(--navy-900);
	color: var(--white);
	font-size: var(--fs-small);
	letter-spacing: 0.02em;
}

.compare-table thead th:last-child {
	background: var(--navy-700);
	color: var(--gold-500);
}

.compare-table tbody tr:last-child td {
	border-bottom: none;
}

.compare-table td:last-child {
	font-weight: 700;
	color: var(--navy-900);
}

/* ---------- Feature band / CTA ---------- */
.cta-band {
	position: relative;
	background:
		radial-gradient(900px 360px at 15% 120%, rgba(255, 195, 0, 0.14) 0%, rgba(255, 195, 0, 0) 60%),
		linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-700) 100%);
	color: var(--white);
	text-align: center;
	padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.cta-band h2 {
	color: var(--white);
	font-size: var(--fs-h2);
	margin-bottom: 1rem;
}

.cta-band p {
	max-width: 56ch;
	margin: 0 auto 2.25rem;
	color: rgba(255, 255, 255, 0.85);
	font-size: var(--fs-lede);
	line-height: 1.6;
}

/* ---------- Fact / rate cards (location pages) ---------- */
.fact-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-left: 4px solid var(--gold-500);
	border-radius: var(--radius);
	padding: 1.9rem;
	box-shadow: var(--shadow-sm);
}

.fact-card h3 {
	font-size: var(--fs-h3);
	margin-bottom: 1.25rem;
}

.fact-card dl {
	display: grid;
	gap: 1rem;
}

.fact-card dt {
	font-size: var(--fs-xs);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 0.15rem;
}

.fact-card dd {
	font-weight: 600;
	color: var(--navy-900);
	line-height: 1.5;
}

.rate-card {
	display: flex;
	flex-direction: column;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.9rem 1.75rem;
	box-shadow: var(--shadow-sm);
}

.rate-card h3 {
	display: flex;
	align-items: center;
	gap: 0.6em;
	font-size: var(--fs-h3);
	margin-bottom: 1.15rem;
}

.rate-card h3 .icon {
	color: var(--gold-500);
}

.rate-card ul {
	display: grid;
	gap: 0.05rem;
}

.rate-card ul li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.6rem 0;
	border-bottom: 1px dashed var(--line);
	font-size: var(--fs-small);
}

.rate-card ul li:last-child {
	border-bottom: none;
}

.rate-card ul li strong {
	color: var(--navy-900);
	white-space: nowrap;
}

.rate-card .rate-big {
	font-size: clamp(2.6rem, 5vw, 3.4rem);
	font-weight: 800;
	color: var(--navy-900);
	line-height: 1;
}

.rate-card .rate-note {
	color: var(--muted);
	font-size: var(--fs-small);
	line-height: 1.6;
}

.rate-card .checklist li {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0.6em;
	border-bottom: none;
	padding: 0.35rem 0;
	font-weight: 600;
	color: var(--navy-900);
	font-size: var(--fs-body);
}

.rate-card .checklist .icon {
	color: #18935A;
}

/* ---------- Contact form ---------- */
.contact-layout {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 2.5rem;
	align-items: start;
}

@media (max-width: 859px) {
	.contact-layout { grid-template-columns: 1fr; }
}

.form-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 2.25rem;
	box-shadow: var(--shadow-md);
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}

.form-field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.form-field--full {
	grid-column: 1 / -1;
}

@media (max-width: 559px) {
	.form-grid { grid-template-columns: 1fr; }
}

.form-field label {
	font-size: var(--fs-small);
	font-weight: 700;
	color: var(--navy-900);
}

.form-field input,
.form-field textarea {
	font: inherit;
	font-size: 1rem;
	color: var(--ink);
	background: var(--paper);
	border: 1.5px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 0.85rem 1rem;
	transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
	width: 100%;
}

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

.form-field input:focus,
.form-field textarea:focus {
	outline: none;
	border-color: var(--navy-700);
	background: var(--white);
	box-shadow: 0 0 0 3px rgba(0, 53, 102, 0.12);
}

.contact-aside {
	display: grid;
	gap: 1.25rem;
}

.aside-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.6rem 1.6rem 1.7rem;
	box-shadow: var(--shadow-sm);
}

.aside-card h3 {
	display: flex;
	align-items: center;
	gap: 0.55em;
	font-size: 1.1rem;
	margin-bottom: 0.6rem;
}

.aside-card h3 .icon {
	color: var(--gold-500);
}

.aside-card p {
	color: var(--muted);
	font-size: var(--fs-small);
	line-height: 1.65;
}

.aside-card p + p {
	margin-top: 0.5rem;
}

/* ---------- Footer ---------- */
.site-footer {
	background: var(--navy-950);
	color: rgba(255, 255, 255, 0.75);
	padding: 4rem 0 0;
	font-size: var(--fs-small);
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 2.5rem;
	padding-bottom: 3rem;
}

@media (max-width: 859px) {
	.footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 559px) {
	.footer-grid { grid-template-columns: 1fr; }
}

.footer-brand img {
	height: 34px;
	width: auto;
	margin-bottom: 1.1rem;
}

.footer-brand p {
	max-width: 36ch;
	line-height: 1.7;
}

.site-footer h4 {
	color: var(--white);
	font-size: var(--fs-small);
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 1.1rem;
}

.site-footer ul li {
	margin-bottom: 0.65rem;
}

.site-footer ul a {
	color: rgba(255, 255, 255, 0.72);
	transition: color 0.2s var(--ease);
}

.site-footer ul a:hover {
	color: var(--gold-500);
}

.site-footer .footer-muted {
	color: rgba(255, 255, 255, 0.45);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 1.4rem 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.75rem;
	font-size: var(--fs-xs);
	color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a {
	color: rgba(255, 255, 255, 0.75);
}

.footer-bottom a:hover {
	color: var(--gold-500);
}
