/* ============================================================
   styles.css — George Norris Law Firm
   Mobile-first, professional, navy/gold palette.
   ============================================================ */

/* ── Google Fonts ──────────────────────────────────────────── */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins+3:wght@300;400;600;700&display=swap");

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
	--navy: #0d2244;
	--navy-dark: #081529;
	--navy-mid: #163466;
	--gold: #c9a84c;
	--gold-light: #e8c96d;
	--white: #ffffff;
	--black: #000000;
	--gray-light: #f4f6f9;
	--gray-mid: #d1d8e4;
	--gray-text: #5a6475;
	--danger: #c0392b;
	--success: #1a7a4a;

	--font-display: "Playfair Display", Georgia, serif;
	--font-body: "Poppins", "Segoe UI", Arial, sans-serif;

	--radius: 6px;
	--radius-lg: 12px;
	--shadow-sm: 0 2px 8px rgba(13, 34, 68, 0.1);
	--shadow-md: 0 6px 24px rgba(13, 34, 68, 0.15);
	--shadow-lg: 0 16px 48px rgba(13, 34, 68, 0.2);
	--transition: 0.25s ease;
	--max-width: 1200px;
	--header-h: 72px;
}

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

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--font-body);
	color: var(--black);
	background: var(--white);
	line-height: 1.7;
	overflow-x: hidden;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
	overflow: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}
a {
	color: var(--gold);
	text-decoration: none;
	transition: color var(--transition);
}
a:hover {
	color: var(--gold-light);
}
ul {
	list-style: none;
}

/* ── Typography ────────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
	font-family: var(--font-display);
	line-height: 1.25;
	color: var(--navy);
}
h1 {
	font-size: clamp(2rem, 5vw, 3.2rem);
}
h2 {
	font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}
h3 {
	font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}
p {
	margin-bottom: 1rem;
	color: var(--black);
}

/* ── Layout Helpers ────────────────────────────────────────── */
.container {
	width: 92%;
	max-width: var(--max-width);
	margin-inline: auto;
}

section {
	padding: 5rem 0;
}

.section-label {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 0.6rem;
}

.section-title {
	color: var(--navy);
	margin-bottom: 1.2rem;
}

.section-intro {
	max-width: 640px;
	margin-bottom: 3rem;
	font-size: 1.05rem;
}

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

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.85rem 2rem;
	border-radius: var(--radius);
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	cursor: pointer;
	border: 2px solid transparent;
	transition: all var(--transition);
	text-align: center;
}

.btn-primary {
	background: var(--gold);
	color: var(--navy-dark);
	border-color: var(--gold);
}
.btn-primary:hover {
	background: var(--gold-light);
	border-color: var(--gold-light);
	color: var(--navy-dark);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.btn-outline {
	background: transparent;
	color: var(--white);
	border-color: var(--white);
}
.btn-outline:hover {
	background: var(--white);
	color: var(--navy);
	transform: translateY(-2px);
}

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

/* ── Scroll Reveal Animations ───────────────────────────────── */
[data-reveal] {
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;
}
[data-reveal].visible {
	opacity: 1;
	transform: none;
}
[data-reveal="left"] {
	transform: translateX(-30px);
}
[data-reveal="right"] {
	transform: translateX(30px);
}
[data-reveal="left"].visible,
[data-reveal="right"].visible {
	transform: none;
}

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: var(--navy);
	height: var(--header-h);
	transition:
		box-shadow var(--transition),
		background var(--transition);
}
.site-header.scrolled {
	box-shadow: var(--shadow-lg);
	background: var(--navy-dark);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

/* Logo */
.site-logo {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	color: var(--white) !important;
	text-decoration: none;
}
.logo-icon {
	font-size: 3.2rem;
	color: var(--gold);
	line-height: 1;
}
.logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}
.logo-text strong {
	font-family: var(--font-display);
	font-size: 1.8rem;
	color: var(--white);
}
.logo-text small {
	font-size: 1.4rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold);
}

/* ── NAV OVERLAY (mobile backdrop) ─────────────────────────── */
.nav-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(8, 21, 41, 0.65);
	z-index: 1100;
	opacity: 0;
	transition: opacity var(--transition);
}
.nav-overlay.overlay-visible {
	display: block;
	opacity: 1;
}

/* ── NAV MENU ───────────────────────────────────────────────── */
.nav-menu {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

/* Hide the mobile-only close item on desktop */
.nav-close-item {
	display: none;
}

.nav-link {
	display: block;
	padding: 0.5rem 0.9rem;
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.125rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	border-radius: var(--radius);
	transition:
		color var(--transition),
		background var(--transition);
	position: relative;
}
.nav-link::after {
	content: "";
	position: absolute;
	bottom: 2px;
	left: 0.9rem;
	right: 0.9rem;
	height: 2px;
	background: var(--gold);
	transform: scaleX(0);
	transition: transform var(--transition);
}
.nav-link:hover,
.nav-link.active {
	color: var(--white);
}
.nav-link:hover::after,
.nav-link.active::after {
	transform: scaleX(1);
}

.nav-cta {
	background: var(--gold);
	color: var(--navy-dark) !important;
	padding: 0.5rem 0.8rem;
	border-radius: var(--radius);
	margin-left: 0.5rem;
}
.nav-cta::after {
	display: none;
}
.nav-cta:hover {
	background: var(--gold-light);
	color: var(--navy-dark) !important;
}

/* ── HAMBURGER BUTTON ───────────────────────────────────────── */
.hamburger-btn {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
	border-radius: var(--radius);
	transition: background var(--transition);
	z-index: 1050;
}
.hamburger-btn:hover {
	background: rgba(255, 255, 255, 0.1);
}
.hamburger-btn .bar {
	width: 24px;
	height: 2px;
	background: var(--white);
	border-radius: 2px;
	transition:
		transform var(--transition),
		opacity var(--transition);
}

/* ── NAV CLOSE BUTTON (✕ inside menu) ──────────────────────── */
.nav-close-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 2rem;
	line-height: 1;
	background: none;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	color: var(--white);
	cursor: pointer;
	transition: all var(--transition);
	padding: 0;
}
.nav-close-btn:hover {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--navy-dark);
}

/* ── MOBILE NAV ─────────────────────────────────────────────── */
@media (max-width: 1000px) {
	.hamburger-btn {
		display: flex;
	}

	.nav-menu {
		/* Panel slides in from the right */
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: min(320px, 85vw);
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
		background: var(--navy-dark);
		padding: 1.5rem 1.5rem 2rem;
		z-index: 1200; /* above overlay (1100) */
		transform: translateX(100%);
		transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		overflow-y: auto;
		box-shadow: -8px 0 32px rgba(0, 0, 0, 0.35);
	}

	/* Show close row on mobile */
	.nav-close-item {
		display: flex;
		justify-content: flex-end;
		margin-bottom: 1.5rem;
	}

	/* Open state */
	.nav-menu.nav-open {
		transform: translateX(0);
	}

	.nav-link {
		padding: 1rem 0;
		font-size: 1.05rem;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: 0;
	}
	.nav-link::after {
		display: none;
	}
	.nav-link:hover,
	.nav-link.active {
		color: var(--gold);
		padding-left: 0.5rem;
	}

	.nav-cta {
		margin: 1.5rem 0 0;
		text-align: center;
		border-radius: var(--radius);
		padding: 0.9rem;
		background: var(--gold);
		color: var(--navy-dark) !important;
	}
}

/* ── PAGE OFFSET (fixed header) ─────────────────────────────── */
main {
	padding-top: var(--header-h);
}

/* ── HERO SECTION ───────────────────────────────────────────── */
.hero-container {
	width: 92%;
	max-width: var(--max-width);
	margin-inline: auto;
	display: flex;
	justify-content: flex-end;
}
.hero {
	position: relative;
	/* min-height: 92vh; */
	display: flex;
	align-items: center;
	background: var(--navy-dark);
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background-image: url("../images/george-norris-law-office.webp");
	background-size: cover;
	background-position: center;
	opacity: 0.75;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient 135deg,
		rgba(8, 21, 41, 0.92) 0%,
		rgba(13, 34, 68, 0.7) 100%;
}
.hero-content {
	position: relative;
	z-index: 2;
	padding: 4rem;
	max-width: 760px;
	background-color: rgba(13, 34, 68, 0.6);
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.4rem 1rem;
	border: 1px solid var(--gold);
	border-radius: 50px;
	color: var(--gold);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
}

.hero h1 {
	color: var(--white);
	margin-bottom: 1.2rem;
	font-size: clamp(2.2rem, 5.5vw, 3.6rem);
}

.hero h1 span {
	color: var(--gold);
}

.hero-subtitle {
	font-size: 1.15rem;
	color: rgba(255, 255, 255, 0.78);
	max-width: 580px;
	margin-bottom: 2.4rem;
}

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

.hero-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 2.5rem;
	margin-top: 3.5rem;
	padding-top: 2.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
}
.stat-number {
	font-family: var(--font-display);
	font-size: 2.2rem;
	color: var(--gold);
	font-weight: 700;
	line-height: 1;
}
.stat-label {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.6);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
	background: linear-gradient(
		135deg,
		var(--navy-dark) 0%,
		var(--navy-mid) 100%
	);
	/* background-image: url("../images/george-norris_banner.webp"); */
	background-size: cover;
	background-position: center;
	padding: 5rem 0 4rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("../images/george-norris_banner.webp") center/cover no-repeat;
	opacity: 0.6;
}
.page-hero .container {
	position: relative;
	z-index: 2;
}
.page-hero h1 {
	color: var(--white);
	margin-bottom: 1rem;
}
.page-hero p {
	color: rgba(255, 255, 255, 0.75);
	max-width: 560px;
	margin: 0 auto;
}

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 1rem;
	justify-content: center;
}
.breadcrumb a {
	color: var(--gold);
}
.breadcrumb span {
	color: rgba(255, 255, 255, 0.35);
}

/* ── SERVICES GRID ──────────────────────────────────────────── */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5rem;
}

.service-card {
	background: var(--white);
	border: 1px solid var(--gray-mid);
	border-radius: var(--radius-lg);
	padding: 2rem 1.5rem;
	text-align: center;
	transition: all var(--transition);
	box-shadow: var(--shadow-sm);
}
.service-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
	border-color: var(--gold);
}
.service-icon {
	font-size: 2.2rem;
	color: var(--gold);
	margin-bottom: 1rem;
}
.service-card h3 {
	font-size: 1.05rem;
	margin-bottom: 0.5rem;
	color: var(--navy);
}
.service-card p {
	font-size: 0.9rem;
	margin: 0;
}

/* ── WHY CHOOSE US ──────────────────────────────────────────── */
.why-section {
	background: var(--gray-light);
}

.why-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}
@media (min-width: 640px) {
	.why-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (min-width: 960px) {
	.why-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.why-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 2rem;
	box-shadow: var(--shadow-sm);
	border-top: 4px solid var(--gold);
	transition:
		transform var(--transition),
		box-shadow var(--transition);
}
.why-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}
.why-card i {
	font-size: 2rem;
	color: var(--gold);
	margin-bottom: 1rem;
	display: block;
}
.why-card h3 {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}
.why-card p {
	font-size: 0.9rem;
	margin: 0;
}

/* ── PRACTICE AREA CARDS ─────────────────────────────────────── */
.pa-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}
@media (min-width: 640px) {
	.pa-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (min-width: 960px) {
	.pa-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.pa-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--gray-mid);
	transition: all var(--transition);
	display: flex;
	flex-direction: column;
}
.pa-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
	border-color: var(--gold);
}
.pa-card-header {
	background: var(--navy);
	padding: 2rem;
	text-align: center;
}
.pa-card-header i {
	font-size: 2.5rem;
	color: var(--gold);
	margin-bottom: 0.75rem;
	display: block;
}
.pa-card-header h3 {
	color: var(--white);
	font-size: 1.2rem;
}
.pa-card-body {
	padding: 1.75rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.pa-card-body p {
	flex: 1;
}
.pa-card-body .btn {
	margin-top: 1rem;
	align-self: center;
}

/* ── FULL PRACTICE AREA SECTIONS ─────────────────────────────── */
.practice-section {
	padding: 4.5rem 0;
	border-bottom: 1px solid var(--gray-mid);
}
.practice-section:last-child {
	border-bottom: none;
}
.practice-section:nth-child(even) {
	background: var(--gray-light);
}

.practice-inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}
@media (min-width: 768px) {
	.practice-inner {
		grid-template-columns: 1fr 1fr;
	}
	.practice-inner.reverse .practice-icon-col {
		order: 2;
	}
}

.practice-icon-col {
	display: flex;
	justify-content: center;
	align-items: center;
}

.practice-icon-wrap {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--navy), var(--navy-mid));
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-lg);
}
.practice-icon-wrap i {
	font-size: 4rem;
	color: var(--gold);
}

.practice-text h2 {
	color: var(--navy);
	margin-bottom: 1rem;
}
.practice-text ul {
	margin: 1rem 0 1.5rem 1.2rem;
	list-style: disc;
	color: var(--black);
}
.practice-text ul li {
	margin-bottom: 0.4rem;
}

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials-section {
	background: var(--navy);
}
.testimonials-section .section-title {
	color: var(--white);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
@media (min-width: 640px) {
	.testimonials-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (min-width: 960px) {
	.testimonials-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.testimonial-card {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-lg);
	padding: 2rem;
	position: relative;
}
.testimonial-card::before {
	content: "\201C";
	font-family: var(--font-display);
	font-size: 5rem;
	color: var(--gold);
	opacity: 0.3;
	position: absolute;
	top: -1rem;
	left: 1.2rem;
	line-height: 1;
}
.testimonial-text {
	color: rgba(255, 255, 255, 0.85);
	font-style: italic;
	margin-bottom: 1.5rem;
	line-height: 1.7;
}
.testimonial-author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}
.author-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--navy-dark);
	flex-shrink: 0;
}
.author-info strong {
	display: block;
	color: var(--white);
	font-size: 0.95rem;
}
.author-info span {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.82rem;
}
.star-rating {
	color: var(--gold);
	font-size: 0.85rem;
	margin-bottom: 0.75rem;
}

/* ── MAP SECTION ─────────────────────────────────────────────── */
.map-section {
	padding: 0;
}
.map-section iframe {
	width: 100%;
	height: 600px;
	border: none;
	display: block;
}

/* ── CTA BANNER ──────────────────────────────────────────────── */
.cta-banner {
	background: linear-gradient(
		135deg,
		var(--navy-dark) 0%,
		var(--navy-mid) 100%
	);
	padding: 5rem 0;
	text-align: center;
}
.cta-banner h2 {
	color: var(--white);
	margin-bottom: 1rem;
}
.cta-banner p {
	color: rgba(255, 255, 255, 0.75);
	max-width: 520px;
	margin: 0 auto 2rem;
}
.cta-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

/* ── ABOUT PAGE ──────────────────────────────────────────────── */
.about-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: start;
}
@media (min-width: 768px) {
	.about-grid {
		grid-template-columns: 380px 1fr;
	}
}

.about-photo-wrap {
	position: relative;
}
.about-photo {
	width: 100%;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	/* aspect-ratio: 3/4; */
	-o-object-fit: cover;
	object-fit: cover;
	background: var(--gray-mid);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 380px;
}
.photo-placeholder {
	width: 100%;
	aspect-ratio: 3/4;
	background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
	border-radius: var(--radius-lg);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.5);
	box-shadow: var(--shadow-lg);
	min-height: 380px;
}
.photo-placeholder i {
	font-size: 5rem;
	margin-bottom: 1rem;
}
.photo-placeholder p {
	margin: 0;
	font-size: 0.9rem;
}

.credentials-badge {
	position: absolute;
	bottom: -1rem;
	right: -1rem;
	background: var(--gold);
	color: var(--navy-dark);
	border-radius: var(--radius-lg);
	padding: 1rem 1.5rem;
	text-align: center;
	font-weight: 700;
	box-shadow: var(--shadow-md);
	font-family: var(--font-display);
}
.credentials-badge .years {
	font-size: 2.2rem;
	line-height: 1;
}
.credentials-badge .label {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-family: var(--font-body);
}

.about-content h2 {
	color: var(--navy);
	margin-bottom: 1rem;
}
.credentials-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 1.5rem 0 2rem;
}
.credential-tag {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	background: var(--gray-light);
	border: 1px solid var(--gray-mid);
	border-radius: 50px;
	padding: 0.4rem 1rem;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--navy);
}
.credential-tag i {
	color: var(--gold);
	font-size: 0.8rem;
}

/* Timeline */
.timeline {
	padding: 5rem 0;
	background: var(--gray-light);
}
.timeline-list {
	position: relative;
	max-width: 720px;
	margin: 0 auto;
}
.timeline-list::before {
	content: "";
	position: absolute;
	left: 20px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--gold);
	opacity: 0.4;
}
@media (min-width: 640px) {
	.timeline-list::before {
		left: 50%;
		transform: translateX(-1px);
	}
}

.timeline-item {
	position: relative;
	padding-left: 56px;
	margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
	.timeline-item {
		width: 45%;
		padding-left: 0;
	}
	.timeline-item:nth-child(odd) {
		margin-left: 5%;
	}
	.timeline-item:nth-child(even) {
		margin-left: 50%;
	}
}
.timeline-dot {
	position: absolute;
	left: 10px;
	top: 4px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--gold);
	border: 3px solid var(--white);
	box-shadow: 0 0 0 2px var(--gold);
}
@media (min-width: 640px) {
	.timeline-item:nth-child(odd) .timeline-dot {
		right: -34px;
		left: auto;
	}
	.timeline-item:nth-child(even) .timeline-dot {
		left: -34px;
	}
}
.timeline-year {
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
.timeline-item h3 {
	color: var(--navy);
	margin: 0.3rem 0 0.4rem;
	font-size: 1rem;
}
.timeline-item p {
	font-size: 0.9rem;
	margin: 0;
}

.mission-section {
	background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
	padding: 5rem 0;
	text-align: center;
}
.mission-section h2 {
	color: var(--white);
	margin-bottom: 1rem;
}
.mission-section p {
	color: rgba(255, 255, 255, 0.78);
	max-width: 680px;
	margin: 0 auto 1rem;
	font-size: 1.08rem;
}
.mission-quote {
	font-family: var(--font-display);
	font-size: clamp(1.3rem, 2.5vw, 1.8rem);
	color: var(--gold);
	max-width: 720px;
	margin: 2rem auto 0;
	font-style: italic;
	line-height: 1.5;
}

/* ── CONTACT PAGE ────────────────────────────────────────────── */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}
@media (min-width: 768px) {
	.contact-grid {
		grid-template-columns: 1fr 1.4fr;
	}
}

.contact-info h2 {
	color: var(--navy);
	margin-bottom: 1rem;
}

.info-item {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.75rem;
	align-items: flex-start;
}
.info-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--navy);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.info-icon i {
	color: var(--gold);
	font-size: 1.1rem;
}
.info-text strong {
	display: block;
	color: var(--navy);
	font-size: 0.9rem;
	margin-bottom: 0.25rem;
}
.info-text a,
.info-text p {
	color: var(--black);
	margin: 0;
	font-size: 0.95rem;
}

/* Contact Form */
.contact-form-wrap {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 2.5rem;
	box-shadow: var(--shadow-md);
	border: 1px solid var(--gray-mid);
}
.contact-form-wrap h3 {
	color: var(--navy);
	margin-bottom: 1.75rem;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}
@media (min-width: 500px) {
	.form-row {
		grid-template-columns: 1fr 1fr;
	}
}

.form-group {
	margin-bottom: 1.25rem;
}
.form-group label {
	display: block;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 0.4rem;
}
.form-group label .required {
	color: var(--danger);
	margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 0.8rem 1rem;
	border: 1.5px solid var(--gray-mid);
	border-radius: var(--radius);
	font-family: var(--font-body);
	font-size: 0.95rem;
	color: var(--navy-dark);
	background: var(--white);
	transition:
		border-color var(--transition),
		box-shadow var(--transition);
	outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.18);
}
.form-group textarea {
	min-height: 130px;
	resize: vertical;
}

/* Honeypot — hidden from real users */
.hp-field {
	position: absolute;
	left: -9999px;
	visibility: hidden;
}

.form-submit {
	margin-top: 0.5rem;
}
.form-submit .btn {
	width: 100%;
	justify-content: center;
}

.form-message {
	margin-top: 1rem;
	padding: 1rem 1.25rem;
	border-radius: var(--radius);
	font-weight: 600;
	font-size: 0.95rem;
}
.form-message--success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}
.form-message--error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

/* Contact form success state — hidden until JS reveals it after a
   successful submission (see initContactForm() in script.js) */
.form-success {
	display: none;
	text-align: center;
	padding: 3rem 1.5rem;
	border-radius: var(--radius-lg);
	background: var(--gray-light);
	border: 1px solid var(--gray-mid);
	-webkit-animation: form-success-in 0.4s ease;
	animation: form-success-in 0.4s ease;
}
.form-success i {
	font-size: 3rem;
	color: var(--success);
	margin-bottom: 1rem;
	display: block;
}
.form-success h4 {
	color: var(--navy);
	margin-bottom: 0.6rem;
}
.form-success p {
	color: var(--gray-text);
	max-width: 420px;
	margin: 0 auto;
}
@-webkit-keyframes form-success-in {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
@keyframes form-success-in {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
	background: var(--navy-dark);
	color: rgba(255, 255, 255, 0.75);
	padding-top: 4rem;
}
.footer-inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
}
@media (min-width: 640px) {
	.footer-inner {
		grid-template-columns: 1fr 1fr;
	}
}
@media (min-width: 960px) {
	.footer-inner {
		grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
	}
}

.site-logo--white .logo-text strong {
	color: var(--white);
}

.footer-tagline {
	font-size: 0.9rem;
	margin-top: 1rem;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.6;
}

.footer-heading {
	color: var(--white);
	font-family: var(--font-display);
	font-size: 1rem;
	margin-bottom: 1rem;
	padding-bottom: 0.6rem;
	border-bottom: 2px solid var(--gold);
	display: inline-block;
}

.footer-links ul li {
	margin-bottom: 0.5rem;
}
.footer-links a {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.9rem;
	transition: color var(--transition);
}
.footer-links a:hover {
	color: var(--gold);
	padding-left: 4px;
}

.footer-contact address {
	font-style: normal;
}
.footer-contact address p {
	margin-bottom: 0.6rem;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.65);
}
.footer-contact address i {
	color: var(--gold);
	margin-right: 0.5rem;
	width: 16px;
}
.footer-contact a {
	color: rgba(255, 255, 255, 0.65);
}
.footer-contact a:hover {
	color: var(--gold);
}

.social-links {
	display: flex;
	gap: 0.75rem;
	margin-top: 1.25rem;
}
.social-link {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
	transition: all var(--transition);
}
.social-link:hover {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--navy-dark);
	transform: translateY(-2px);
}

.footer-bottom {
	margin-top: 3rem;
	padding: 1.25rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
}
.footer-bottom p {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.45);
	margin: 0 0 0.3rem;
}
.footer-disclaimer {
	font-size: 0.75rem !important;
	color: rgba(255, 255, 255, 0.3) !important;
}

/* ── UTILITY ─────────────────────────────────────────────────── */
.bg-light {
	background: var(--gray-light);
}
.bg-navy {
	background: var(--navy);
}
.divider {
	height: 4px;
	background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
