/* ============================================================
   Ironclad Dynamics LLC — Main Stylesheet
   ============================================================ */

/* ── Custom Properties ──────────────────────────────────── */
:root {
	--gold:        #c9a643;
	--gold-dark:   #a8882e;
	--gold-light:  #e5c96a;
	--dark:        #0d1117;
	--dark-mid:    #141b25;
	--dark-card:   #1a2332;
	--cream:       #f5f0e8;
	--cream-dark:  #ede7d9;
	--white:       #ffffff;
	--text-light:  #a8b2c0;
	--text-muted:  #6b7a8d;
	--border:      rgba(201,166,67,.2);
	--radius:      8px;
	--radius-lg:   16px;
	--shadow:      0 4px 24px rgba(0,0,0,.35);
	--shadow-gold: 0 0 0 3px rgba(201,166,67,.3);
	--transition:  .25s ease;
	--font-head:   'Playfair Display', Georgia, serif;
	--font-body:   'Inter', system-ui, -apple-system, sans-serif;
	--container:   1240px;
	--header-h:    80px;
}

/* ── 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);
	font-weight: 400;
	color: var(--dark);
	background: var(--white);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-head);
	font-weight: 700;
	line-height: 1.2;
	color: inherit;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

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

.text-center { text-align: center; }
.text-left   { text-align: left; }

.section-label {
	display: inline-block;
	font-family: var(--font-body);
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: .75rem;
}

.section-title {
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
	margin-bottom: 1.25rem;
}

.section-lead {
	font-size: 1.1rem;
	line-height: 1.7;
	color: var(--text-muted);
	max-width: 680px;
}

.section-lead.center { margin-inline: auto; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .875rem 2rem;
	border-radius: var(--radius);
	font-family: var(--font-body);
	font-size: .9375rem;
	font-weight: 600;
	letter-spacing: .02em;
	cursor: pointer;
	border: 2px solid transparent;
	transition: background var(--transition), color var(--transition),
	            border-color var(--transition), box-shadow var(--transition),
	            transform var(--transition);
	text-decoration: none;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
	background: var(--gold);
	color: var(--dark);
	border-color: var(--gold);
}
.btn-gold:hover {
	background: var(--gold-dark);
	border-color: var(--gold-dark);
	box-shadow: 0 6px 20px rgba(201,166,67,.4);
}

.btn-outline {
	background: transparent;
	color: var(--white);
	border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
	border-color: var(--gold);
	color: var(--gold);
}

.btn-dark {
	background: var(--dark);
	color: var(--white);
	border-color: var(--dark);
}
.btn-dark:hover {
	background: var(--dark-mid);
}

.btn-sm { padding: .625rem 1.375rem; font-size: .875rem; }
.btn-lg { padding: 1.125rem 2.5rem; font-size: 1.0625rem; }

/* ── Header ──────────────────────────────────────────────── */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	height: var(--header-h);
	background: rgba(13,17,23,.97);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border);
	transition: box-shadow var(--transition);
}

.site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.5); }

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

.site-logo img {
	width: auto;
	max-width: 200px;
	height: auto;
	max-height: 60px;
	object-fit: contain;
	display: block;
}

/* nav toggle (mobile) */
.nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: .5rem;
	color: var(--white);
}

.hamburger {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
	transition: transform var(--transition), opacity var(--transition);
}

/* open state */
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
	opacity: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* primary nav */
.primary-nav { display: flex; align-items: center; gap: 2rem; }

.nav-list {
	display: flex;
	align-items: center;
	gap: .25rem;
}

.nav-list > li > a {
	display: flex;
	align-items: center;
	gap: .3rem;
	padding: .5rem .75rem;
	font-size: .9rem;
	font-weight: 500;
	color: rgba(255,255,255,.85);
	border-radius: var(--radius);
	transition: color var(--transition), background var(--transition);
	white-space: nowrap;
}

.nav-list > li > a:hover,
.nav-list > li > a:focus-visible {
	color: var(--gold);
	background: rgba(201,166,67,.08);
}

.caret { font-size: .65em; transition: transform var(--transition); }
.has-dropdown:hover .caret,
.has-dropdown:focus-within .caret { transform: rotate(180deg); }

/* dropdown */
.has-dropdown { position: relative; }

.dropdown {
	position: absolute;
	top: calc(100% + .5rem);
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	min-width: 260px;
	background: var(--dark-mid);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 1rem 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--transition), transform var(--transition);
	box-shadow: var(--shadow);
	z-index: 500;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}

.dropdown li a {
	display: block;
	padding: .5rem 1.5rem;
	font-size: .875rem;
	color: rgba(255,255,255,.8);
	transition: color var(--transition), padding-left var(--transition);
}

.dropdown li a:hover {
	color: var(--gold);
	padding-left: 1.875rem;
}

.dropdown-group-label {
	padding: .625rem 1.5rem .25rem;
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--gold);
	cursor: default;
}

.dropdown-group-label + li { border-top: none; }

.header-cta { padding: .625rem 1.375rem; font-size: .875rem; }

/* ── Hero Section ────────────────────────────────────────── */
.hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 60%, #0f1d2e 100%);
	overflow: hidden;
}

.hero-bg-pattern {
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 20% 80%, rgba(201,166,67,.08) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(201,166,67,.06) 0%, transparent 50%);
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 780px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	background: rgba(201,166,67,.12);
	border: 1px solid var(--border);
	border-radius: 50px;
	padding: .4rem 1rem;
	margin-bottom: 1.5rem;
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--gold);
}

.hero-title {
	font-size: clamp(2.25rem, 5vw, 4rem);
	color: var(--white);
	margin-bottom: 1.5rem;
}

.hero-title .accent { color: var(--gold); }

.hero-lead {
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	color: var(--text-light);
	line-height: 1.7;
	margin-bottom: 2.5rem;
	max-width: 620px;
}

.hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 3rem;
}

.hero-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	align-items: center;
}

.trust-item {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-size: .875rem;
	color: var(--text-light);
}

.trust-icon {
	width: 18px;
	height: 18px;
	color: var(--gold);
	flex-shrink: 0;
}

/* ── Trusted Partner Section ─────────────────────────────── */
.trusted-partner {
	padding: 6rem 0;
	background: var(--white);
}

.trusted-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.trusted-image {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.trusted-image img {
	width: 100%;
	height: 420px;
	object-fit: cover;
}

.trusted-content .section-title { color: var(--dark); }

.trusted-features {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 1.75rem;
}

.feature-item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.feature-icon {
	width: 42px;
	height: 42px;
	background: rgba(201,166,67,.12);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--gold);
}

.feature-text h4 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: .25rem;
}

.feature-text p {
	font-size: .9rem;
	color: var(--text-muted);
	margin: 0;
}

/* ── CTA Banner (dark) ───────────────────────────────────── */
.cta-banner {
	padding: 5rem 0;
	background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at center, rgba(201,166,67,.08) 0%, transparent 70%);
	pointer-events: none;
}

.cta-banner h2 { color: var(--white); position: relative; }
.cta-banner p  { color: var(--text-light); position: relative; margin-bottom: 2rem; }

.cta-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	position: relative;
}

/* ── Services Grid ───────────────────────────────────────── */
.services-section {
	padding: 6rem 0;
	background: var(--cream);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 3rem;
}

.service-card {
	background: var(--white);
	border: 1px solid rgba(0,0,0,.07);
	border-radius: var(--radius-lg);
	padding: 2rem;
	transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.service-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 48px rgba(0,0,0,.12);
	border-color: var(--gold);
}

.service-icon {
	width: 52px;
	height: 52px;
	background: linear-gradient(135deg, rgba(201,166,67,.15), rgba(201,166,67,.05));
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
	flex-shrink: 0;
}

.service-card h3 {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--dark);
}

.service-card p {
	font-size: .9rem;
	color: var(--text-muted);
	line-height: 1.65;
	flex-grow: 1;
	margin: 0;
}

.service-link {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	font-size: .875rem;
	font-weight: 600;
	color: var(--gold);
	transition: gap var(--transition);
}

.service-link:hover { gap: .7rem; }

/* ── Stats Section ───────────────────────────────────────── */
.stats-section {
	padding: 5rem 0;
	background: var(--dark);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--border);
}

.stat-item {
	background: var(--dark);
	text-align: center;
	padding: 3rem 2rem;
}

.stat-number {
	font-family: var(--font-head);
	font-size: clamp(2.5rem, 5vw, 3.75rem);
	font-weight: 800;
	color: var(--gold);
	line-height: 1;
	margin-bottom: .5rem;
}

.stat-label {
	font-size: 1rem;
	font-weight: 500;
	color: var(--text-light);
}

.stat-sub {
	font-size: .825rem;
	color: var(--text-muted);
	margin-top: .25rem;
}

/* ── Why Ironclad Dynamics ───────────────────────────────────────── */
.why-section {
	padding: 6rem 0;
	background: var(--white);
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-top: 3rem;
}

.why-card {
	background: var(--cream);
	border-radius: var(--radius-lg);
	padding: 2.5rem;
	border-left: 4px solid var(--gold);
	transition: transform var(--transition);
}

.why-card:hover { transform: translateY(-4px); }

.why-number {
	font-family: var(--font-head);
	font-size: 2.5rem;
	font-weight: 800;
	color: rgba(201,166,67,.2);
	line-height: 1;
	margin-bottom: .5rem;
}

.why-card h3 {
	font-size: 1.25rem;
	color: var(--dark);
	margin-bottom: .75rem;
}

.why-card p {
	font-size: .95rem;
	color: var(--text-muted);
	margin: 0;
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-section {
	padding: 6rem 0;
	background: var(--dark);
}

.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-lead  { color: var(--text-light); }

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 3rem;
}

.testimonial-card {
	background: var(--dark-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.testimonial-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: .1em; }

.testimonial-text {
	font-size: .9375rem;
	color: var(--text-light);
	line-height: 1.7;
	font-style: italic;
	flex-grow: 1;
}

.testimonial-author { display: flex; flex-direction: column; gap: .2rem; }
.testimonial-name  { font-weight: 700; color: var(--white); font-size: .9375rem; }
.testimonial-role  { font-size: .8125rem; color: var(--gold); }

.practice-tags {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	margin-top: 3rem;
	justify-content: center;
}

.practice-tag {
	background: rgba(201,166,67,.1);
	border: 1px solid var(--border);
	border-radius: 50px;
	padding: .35rem .875rem;
	font-size: .8rem;
	font-weight: 500;
	color: var(--gold);
}

/* ── Contact / CTA Form Section ──────────────────────────── */
.form-section {
	padding: 6rem 0;
	background: var(--cream);
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.form-content .section-title { color: var(--dark); }

.contact-form {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 2.5rem;
	box-shadow: 0 8px 40px rgba(0,0,0,.08);
}

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

.form-group {
	display: flex;
	flex-direction: column;
	gap: .4rem;
	margin-bottom: 1.125rem;
}

.form-group label {
	font-size: .875rem;
	font-weight: 600;
	color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: .75rem 1rem;
	border: 1.5px solid #ddd;
	border-radius: var(--radius);
	font-family: var(--font-body);
	font-size: .9375rem;
	color: var(--dark);
	background: var(--white);
	transition: border-color var(--transition), box-shadow var(--transition);
	outline: none;
	-webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--gold);
	box-shadow: var(--shadow-gold);
}

.form-group select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7a8d' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	padding-right: 2.5rem;
	cursor: pointer;
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit { width: 100%; justify-content: center; }

/* ── Page Inner (non-home pages) ─────────────────────────── */
.page-hero {
	padding: 5rem 0 4rem;
	background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
	position: relative;
	overflow: hidden;
}

.page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 30% 50%, rgba(201,166,67,.07) 0%, transparent 60%);
	pointer-events: none;
}

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

.page-hero h1 {
	font-size: clamp(2rem, 4vw, 3.25rem);
	color: var(--white);
	margin-bottom: 1rem;
}

.page-hero .lead {
	font-size: 1.125rem;
	color: var(--text-light);
	max-width: 680px;
	line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	align-items: center;
	font-size: .8125rem;
	color: var(--text-muted);
	margin-bottom: 1.5rem;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--text-muted); }

/* ── Content Sections (service pages) ───────────────────── */
.content-section {
	padding: 5rem 0;
	background: var(--white);
}

.content-section.alt { background: var(--cream); }
.content-section.dark {
	background: var(--dark);
	color: var(--white);
}

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

.content-section.dark p,
.content-section.dark li { color: var(--text-light); }

.content-2col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.content-2col.reverse { direction: rtl; }
.content-2col.reverse > * { direction: ltr; }

.content-body h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 1rem; color: var(--dark); }
.content-body h3 { font-size: 1.25rem; margin-bottom: .75rem; color: var(--dark); margin-top: 1.5rem; }
.content-body p  { color: var(--text-muted); }
.content-body ul {
	list-style: disc;
	padding-left: 1.25rem;
	color: var(--text-muted);
	display: flex;
	flex-direction: column;
	gap: .5rem;
	margin-bottom: 1rem;
}

.content-image {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.content-image img {
	width: 100%;
	height: 380px;
	object-fit: cover;
}

/* Checklist */
.checklist {
	display: flex;
	flex-direction: column;
	gap: .75rem;
	margin: 1.5rem 0;
}

.checklist li {
	display: flex;
	gap: .75rem;
	align-items: flex-start;
	font-size: .9375rem;
	color: var(--text-muted);
}

.checklist li::before {
	content: '';
	width: 20px;
	height: 20px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a643' stroke-width='2.5'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
	flex-shrink: 0;
	margin-top: 2px;
}

/* ── Process / Steps ─────────────────────────────────────── */
.process-section {
	padding: 5rem 0;
	background: var(--dark);
}

.process-section h2 { color: var(--white); text-align: center; margin-bottom: 3rem; }

.steps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
}

.step-card {
	background: var(--dark-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 2rem;
	text-align: center;
}

.step-num {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(201,166,67,.15);
	color: var(--gold);
	font-family: var(--font-head);
	font-size: 1.25rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.25rem;
}

.step-card h3 { font-size: 1.0625rem; color: var(--white); margin-bottom: .6rem; }
.step-card p  { font-size: .875rem; color: var(--text-light); margin: 0; }

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — hp-* components
═══════════════════════════════════════════════════════════ */

/* ── HP Hero — split layout ─────────────────────────────── */
.hp-hero {
	background: #0d1117;
	width: 100%;
}

.hp-hero__inner {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	min-height: 600px;
}

.hp-hero__left {
	padding: 7rem 2rem 7rem 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: #0d1117;
}

.hp-hero__right {
	position: relative;
	overflow: hidden;
	min-height: 500px;
	background: #141b25;
}

.hp-hero__right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.hp-hero__eyebrow {
	font-family: var(--font-body);
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1.25rem;
}

.hp-hero__h1 {
	font-family: var(--font-head);
	font-size: clamp(2.25rem, 4.5vw, 3.75rem);
	font-weight: 700;
	color: var(--white);
	line-height: 1.15;
	margin-bottom: 1.5rem;
}

.hp-hero__h1 em {
	font-style: italic;
	color: var(--gold);
}

.hp-hero__body {
	font-size: 1.0625rem;
	color: var(--text-light);
	line-height: 1.75;
	max-width: 520px;
	margin-bottom: 2.5rem;
}

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

/* ── HP Trust Bar ────────────────────────────────────────── */
.hp-trust-bar {
	background: var(--white);
	border-bottom: 1px solid #ececec;
	padding: 1.1rem 0;
}

.hp-trust-bar__inner {
	display: flex;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.hp-trust-bar__label {
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--text-muted);
	white-space: nowrap;
}

.hp-trust-bar__tags {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
	align-items: center;
}

.hp-trust-bar__tags span {
	font-size: .85rem;
	font-weight: 500;
	color: var(--dark);
	padding: .3rem .9rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	background: var(--cream);
}

/* ── HP Partner Section ──────────────────────────────────── */
.hp-partner {
	padding: 6rem 0;
	background: var(--cream);
}

.hp-partner__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.hp-partner__text h2 {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	color: var(--dark);
	margin-bottom: 1.25rem;
	margin-top: .5rem;
}

.hp-partner__text p {
	color: var(--text-muted);
	font-size: .9625rem;
	line-height: 1.75;
}

.hp-partner__why-head {
	font-family: var(--font-head);
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--gold) !important;
	margin-top: 1.5rem !important;
	margin-bottom: .75rem !important;
}

.hp-partner__list {
	display: flex;
	flex-direction: column;
	gap: .6rem;
	padding-left: .1rem;
}

.hp-partner__list li {
	font-size: .9375rem;
	color: var(--text-muted);
	padding-left: 1.25rem;
	position: relative;
}

.hp-partner__list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--gold);
	font-weight: 700;
}

.hp-partner__card {
	background: var(--dark-mid);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 2.5rem;
	color: var(--white);
}

.hp-partner__card h3 {
	font-size: 1.375rem;
	color: var(--white);
	margin-bottom: 1.5rem;
	border-bottom: 1px solid var(--border);
	padding-bottom: 1rem;
}

.hp-partner__card-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 2rem;
}

.hp-partner__card-list li {
	font-size: .9rem;
	color: var(--text-light);
	padding-left: 1.5rem;
	position: relative;
	line-height: 1.6;
}

.hp-partner__card-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--gold);
	font-weight: 700;
}

.hp-partner__card-footer {
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--gold);
	border-top: 1px solid var(--border);
	padding-top: 1rem;
	margin: 0 !important;
}

/* ── HP Gold Bar ─────────────────────────────────────────── */
.hp-gold-bar {
	background: var(--gold);
	padding: 1.25rem 0;
}

.hp-gold-bar .container {
	display: flex;
	justify-content: center;
}

.hp-gold-bar__link {
	font-family: var(--font-body);
	font-size: .875rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--dark);
	text-decoration: none;
	transition: opacity .2s;
}

.hp-gold-bar__link:hover { opacity: .75; }

/* ── HP Competitors Banner ───────────────────────────────── */
.hp-competitors {
	background: var(--dark);
	padding: 5rem 0;
}

.hp-competitors__h2 {
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
	color: var(--white);
	max-width: 800px;
	margin: 0 auto;
}

.hp-competitors__h2 em {
	color: var(--gold);
	font-style: italic;
}

/* ── HP Services Overview ────────────────────────────────── */
.hp-services {
	background: var(--dark-mid);
	padding: 6rem 0;
}

.hp-services__intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-bottom: 3.5rem;
}

.hp-services__intro-text .section-label { color: var(--gold); }

.hp-services__intro-text h2 {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	color: var(--white);
	margin: .5rem 0 1.25rem;
}

.hp-services__intro-text h2 em {
	color: var(--gold);
	font-style: italic;
}

.hp-services__intro-text p {
	color: var(--text-light);
	font-size: .9625rem;
	line-height: 1.75;
}

.hp-services__intro-image {
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.hp-services__intro-image img {
	width: 100%;
	height: 340px;
	object-fit: cover;
	display: block;
}

.hp-services__cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.hp-svc-card {
	background: var(--dark-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	transition: transform .25s, box-shadow .25s, border-color .25s;
}

.hp-svc-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 48px rgba(0,0,0,.4);
	border-color: var(--gold);
}

.hp-svc-card__img {
	height: 170px;
	overflow: hidden;
}

.hp-svc-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .4s;
}

.hp-svc-card:hover .hp-svc-card__img img { transform: scale(1.05); }

.hp-svc-card__body {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: .75rem;
}

.hp-svc-card__body h3 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--white);
}

.hp-svc-card__body p {
	font-size: .85rem;
	color: var(--text-light);
	line-height: 1.65;
	margin: 0;
	flex: 1;
}

.hp-svc-card__link {
	font-size: .8125rem;
	font-weight: 600;
	color: var(--gold);
	display: inline-block;
	margin-top: .25rem;
}

/* ── HP Milestones ───────────────────────────────────────── */
.hp-milestones__top {
	background: var(--dark);
	padding: 5rem 0 4rem;
}

.hp-milestones__headline {
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
	color: var(--white);
	margin-top: .5rem;
}

.hp-milestones__headline em {
	color: var(--gold);
	font-style: italic;
}

.hp-milestones__bottom {
	background: var(--cream);
	padding: 5rem 0;
}

.hp-milestones__sub {
	font-family: var(--font-body);
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: .75rem;
}

.hp-milestones__sub-h2 {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	color: var(--dark);
	margin-bottom: 3rem;
}

.hp-milestones__sub-h2 em {
	color: var(--gold);
	font-style: italic;
}

.hp-stats-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border: 1px solid #e0d9ce;
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.hp-stat {
	padding: 3rem 2rem;
	text-align: center;
	background: var(--white);
}

.hp-stat--mid {
	border-left: 1px solid #e0d9ce;
	border-right: 1px solid #e0d9ce;
}

.hp-stat__number {
	display: block;
	font-family: var(--font-head);
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	font-weight: 800;
	color: var(--gold);
	line-height: 1;
	margin-bottom: .75rem;
}

.hp-stat__label {
	font-size: .9rem;
	color: var(--text-muted);
	line-height: 1.5;
}

/* ── HP Why Trust ────────────────────────────────────────── */
.hp-why {
	background: var(--cream);
	padding: 6rem 0;
	border-top: 1px solid #e0d9ce;
}

.hp-why__headline {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	color: var(--dark);
	text-align: center;
	margin-bottom: 3.5rem;
}

.hp-why__headline em {
	color: var(--gold);
	font-style: italic;
}

.hp-why__grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 5rem;
	align-items: start;
}

.hp-why__left p {
	color: var(--text-muted);
	font-size: .9625rem;
	line-height: 1.75;
}

.hp-why__cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem;
}

.hp-why__col h3 {
	font-family: var(--font-body);
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--dark);
	margin-bottom: .75rem;
}

.hp-why__col p {
	font-size: .9rem;
	color: var(--text-muted);
	line-height: 1.7;
}

/* ── HP Testimonials ─────────────────────────────────────── */
.hp-testimonials {
	background: var(--dark);
	padding: 6rem 0;
}

.hp-testimonials .section-label { color: var(--gold); display: block; margin-bottom: .5rem; }

.hp-testimonials__h2 {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	color: var(--white);
	margin-bottom: 3rem;
}

.hp-testimonials__h2 em { color: var(--gold); font-style: italic; }

.hp-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.hp-testi {
	background: var(--dark-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 2rem;
}

.hp-testi p {
	font-size: .9375rem;
	color: var(--text-light);
	font-style: italic;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.hp-testi cite {
	font-size: .85rem;
	font-weight: 600;
	color: var(--white);
	font-style: normal;
}

.hp-testi cite span {
	display: block;
	font-size: .8rem;
	color: var(--gold);
	font-weight: 400;
	margin-top: .25rem;
}

/* ── HP CTA Form ─────────────────────────────────────────── */
.hp-cta-form {
	background: var(--cream);
	padding: 6rem 0;
}

.hp-cta-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: start;
}

.hp-cta-form__left h2 {
	font-size: clamp(1.625rem, 2.75vw, 2.25rem);
	color: var(--dark);
	margin: .5rem 0 1.25rem;
}

.hp-cta-form__left h2 em { color: var(--gold); font-style: italic; }
.hp-cta-form__left p { color: var(--text-muted); line-height: 1.75; font-size: .9625rem; }

.hp-audit-list {
	display: flex;
	flex-direction: column;
	gap: .6rem;
	margin: 1.5rem 0;
}

.hp-audit-list li {
	font-size: .9375rem;
	color: var(--text-muted);
	padding-left: 1.5rem;
	position: relative;
}

.hp-audit-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--gold);
	font-weight: 700;
}

.hp-cta-phone {
	font-size: 1rem;
	font-weight: 600;
	color: var(--dark);
	margin-top: 1.5rem !important;
}

.hp-cta-phone a {
	color: var(--gold);
	text-decoration: none;
	font-size: 1.25rem;
	font-weight: 700;
}

.hp-cta-phone a:hover { text-decoration: underline; }

.hp-form-box {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 2.5rem;
	box-shadow: 0 8px 40px rgba(0,0,0,.08);
}

.hp-form-box h3 {
	font-size: 1.375rem;
	color: var(--dark);
	margin-bottom: .5rem;
}

.hp-form-sub {
	font-size: .85rem;
	color: var(--text-muted);
	margin-bottom: 1.5rem !important;
	line-height: 1.6;
}

.hp-form__group {
	display: flex;
	flex-direction: column;
	gap: .35rem;
	margin-bottom: 1rem;
}

.hp-form__group label {
	font-size: .85rem;
	font-weight: 600;
	color: var(--dark);
}

.hp-form__group input,
.hp-form__group select {
	width: 100%;
	padding: .75rem 1rem;
	border: 1.5px solid #ddd;
	border-radius: var(--radius);
	font-family: var(--font-body);
	font-size: .9375rem;
	color: var(--dark);
	background: var(--white);
	outline: none;
	transition: border-color .2s, box-shadow .2s;
	-webkit-appearance: none;
}

.hp-form__group input:focus,
.hp-form__group select:focus {
	border-color: var(--gold);
	box-shadow: var(--shadow-gold);
}

.hp-form__group select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7a8d' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	padding-right: 2.5rem;
	cursor: pointer;
}

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

.req { color: var(--gold); }

/* ── Responsive — Homepage ───────────────────────────────── */
@media (max-width: 1024px) {
	.hp-hero__inner { grid-template-columns: 1fr; min-height: auto; }
	.hp-hero__left { padding: 5rem 2rem 3rem; }
	.hp-hero__right { height: 340px; }
	.hp-partner__grid { grid-template-columns: 1fr; gap: 2.5rem; }
	.hp-services__intro { grid-template-columns: 1fr; gap: 2.5rem; }
	.hp-services__cards { grid-template-columns: repeat(2, 1fr); }
	.hp-why__grid { grid-template-columns: 1fr; gap: 3rem; }
	.hp-cta-form__grid { grid-template-columns: 1fr; gap: 3rem; }
	.hp-testimonials__grid { grid-template-columns: 1fr; gap: 1.5rem; }
	.hp-stats-row { grid-template-columns: 1fr; }
	.hp-stat--mid { border: none; border-top: 1px solid #e0d9ce; border-bottom: 1px solid #e0d9ce; }
}

@media (max-width: 768px) {
	.hp-hero__left { padding: 4rem 1.5rem 2.5rem; }
	.hp-services__cards { grid-template-columns: 1fr; }
	.hp-why__cols { grid-template-columns: 1fr; gap: 1.5rem; }
	.hp-trust-bar__inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
	.hp-hero__btns { flex-direction: column; }
	.hp-hero__btns .btn { text-align: center; justify-content: center; }
}

/* ── FAQ Section ─────────────────────────────────────────── */
.faq-section {
	padding: 5rem 0;
	background: var(--cream);
}

.faq-section h2 { text-align: center; margin-bottom: 3rem; }

.faq-list {
	max-width: 780px;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	gap: .75rem;
}

.faq-item {
	background: var(--white);
	border: 1px solid rgba(0,0,0,.08);
	border-radius: var(--radius);
	overflow: hidden;
}

.faq-question {
	width: 100%;
	background: none;
	border: none;
	padding: 1.25rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 600;
	color: var(--dark);
	cursor: pointer;
	text-align: left;
	transition: color var(--transition);
}

.faq-question:hover { color: var(--gold); }
.faq-question[aria-expanded="true"] { color: var(--gold); }

.faq-icon {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	color: var(--gold);
	transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height .35s ease;
}

.faq-answer-inner {
	padding: 0 1.5rem 1.5rem;
	font-size: .9375rem;
	color: var(--text-muted);
	line-height: 1.7;
}

/* ── Cards Grid (generic) ────────────────────────────────── */
.cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
	margin-top: 2.5rem;
}

.info-card {
	background: var(--white);
	border: 1px solid rgba(0,0,0,.07);
	border-radius: var(--radius-lg);
	padding: 2rem;
	transition: transform var(--transition), box-shadow var(--transition);
}

.info-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 36px rgba(0,0,0,.1);
}

.info-card .card-icon {
	width: 48px;
	height: 48px;
	background: rgba(201,166,67,.1);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
	margin-bottom: 1rem;
}

.info-card h3 { font-size: 1.0625rem; color: var(--dark); margin-bottom: .6rem; }
.info-card p  { font-size: .875rem; color: var(--text-muted); margin: 0; }

/* ── Related Services / Internal Links ───────────────────── */
.related-section {
	padding: 4rem 0;
	background: var(--dark-mid);
}

.related-section h2 { color: var(--white); text-align: center; margin-bottom: 2.5rem; }

.related-links {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
	justify-content: center;
}

.related-link {
	background: var(--dark-card);
	border: 1px solid var(--border);
	border-radius: 50px;
	padding: .5rem 1.25rem;
	font-size: .875rem;
	font-weight: 500;
	color: var(--text-light);
	transition: color var(--transition), border-color var(--transition);
}

.related-link:hover {
	color: var(--gold);
	border-color: var(--gold);
}

/* ── Bottom Form CTA (service pages) ─────────────────────── */
.bottom-cta {
	padding: 5rem 0;
	background: var(--dark);
	text-align: center;
}

.bottom-cta h2 { color: var(--white); margin-bottom: 1rem; }
.bottom-cta p  { color: var(--text-light); margin-bottom: 2.5rem; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
	background: var(--dark-mid);
	border-top: 1px solid var(--border);
}

.footer-top { padding: 4rem 0 3rem; }

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 3rem;
}

.footer-logo img { width: 150px; height: auto; margin-bottom: 1.25rem; }

.footer-brand p {
	font-size: .9rem;
	color: var(--text-light);
	line-height: 1.65;
	margin-bottom: .75rem;
}

.footer-address {
	font-size: .875rem;
	color: var(--text-muted);
}

.footer-phone {
	display: inline-block;
	font-size: 1rem;
	font-weight: 600;
	color: var(--gold);
	margin-top: .5rem;
	transition: color var(--transition);
}

.footer-phone:hover { color: var(--gold-light); }

.footer-social {
	display: flex;
	gap: .75rem;
	margin-top: 1.25rem;
}

.footer-social a {
	width: 38px;
	height: 38px;
	border-radius: var(--radius);
	background: rgba(255,255,255,.06);
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-light);
	transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.footer-social a:hover {
	color: var(--gold);
	background: rgba(201,166,67,.1);
	border-color: var(--gold);
}

.footer-col h4 {
	font-family: var(--font-body);
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1rem;
}

.footer-col ul {
	display: flex;
	flex-direction: column;
	gap: .5rem;
}

.footer-col ul li a {
	font-size: .875rem;
	color: var(--text-light);
	transition: color var(--transition), padding-left var(--transition);
	display: inline-block;
}

.footer-col ul li a:hover {
	color: var(--gold);
	padding-left: 4px;
}

.footer-col ul li { font-size: .875rem; color: var(--text-muted); line-height: 1.5; }

.footer-bottom {
	border-top: 1px solid var(--border);
	padding: 1.5rem 0;
}

.footer-bottom p {
	font-size: .8125rem;
	color: var(--text-muted);
	margin: 0;
}

.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { text-decoration: underline; }

/* ── 404 Page ────────────────────────────────────────────── */
.error-404 { background: var(--dark); min-height: 60vh; display: flex; align-items: center; }
.error-404 h2 { color: var(--white); font-size: 2rem; }
.error-404 p  { color: var(--text-light); }

/* ── Utility Classes ─────────────────────────────────────── */
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.gap-2 { gap: 1rem; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
	.services-grid       { grid-template-columns: repeat(2, 1fr); }
	.trusted-grid        { grid-template-columns: 1fr; }
	.trusted-image       { order: -1; }
	.trusted-image img   { height: 300px; }
	.footer-grid         { grid-template-columns: 1fr 1fr; row-gap: 2rem; }
}

@media (max-width: 900px) {
	.why-grid            { grid-template-columns: 1fr; }
	.testimonials-grid   { grid-template-columns: 1fr 1fr; }
	.form-grid           { grid-template-columns: 1fr; }
	.content-2col        { grid-template-columns: 1fr; }
	.content-2col.reverse { direction: ltr; }
}

@media (max-width: 768px) {
	:root { --header-h: 66px; }

	/* Mobile nav */
	.nav-toggle { display: flex; }

	.primary-nav {
		position: fixed;
		inset: var(--header-h) 0 0 0;
		background: var(--dark);
		flex-direction: column;
		align-items: stretch;
		padding: 1.5rem 1rem 2rem;
		overflow-y: auto;
		gap: 0;
		transform: translateX(100%);
		transition: transform .3s ease;
		z-index: 999;
	}

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

	.nav-list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.nav-list > li > a {
		padding: .875rem 1rem;
		font-size: 1rem;
		border-bottom: 1px solid var(--border);
		border-radius: 0;
	}

	/* inline dropdown on mobile */
	.dropdown {
		position: static;
		transform: none;
		opacity: 1;
		pointer-events: auto;
		background: var(--dark-card);
		border: none;
		border-radius: 0;
		padding: 0;
		box-shadow: none;
		display: none;
	}

	.has-dropdown.open .dropdown { display: block; }

	.dropdown li a {
		padding: .625rem 1.5rem;
		border-bottom: 1px solid rgba(255,255,255,.04);
	}

	.dropdown-group-label { padding-top: 1rem; }

	.header-cta {
		margin-top: 1.5rem;
		text-align: center;
		justify-content: center;
	}

	/* layout */
	.services-grid       { grid-template-columns: 1fr; }
	.stats-grid          { grid-template-columns: 1fr; }
	.why-grid            { grid-template-columns: 1fr; }
	.testimonials-grid   { grid-template-columns: 1fr; }
	.form-row            { grid-template-columns: 1fr; }
	.footer-grid         { grid-template-columns: 1fr; }
	.steps-grid          { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
	.hero-ctas   { flex-direction: column; }
	.cta-buttons { flex-direction: column; align-items: center; }
	.steps-grid  { grid-template-columns: 1fr; }
	.trusted-image img { height: 220px; }
}

/* ── Print ───────────────────────────────────────────────── */
@media print {
	.site-header,
	.site-footer,
	.nav-toggle,
	.cta-banner { display: none; }
	body { color: #000; background: #fff; }
}

/* ── Blog Archive & Single Post ─────────────────────────── */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 2rem;
}

.post-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform var(--transition), box-shadow var(--transition);
	display: flex;
	flex-direction: column;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.post-card-thumb { display: block; aspect-ratio: 16 / 9; overflow: hidden; }
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; }

.post-card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }

.post-card-cat {
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--gold-dark);
}

.post-card-title { font-size: 1.2rem; line-height: 1.3; }
.post-card-title a:hover { color: var(--gold-dark); }

.post-card-excerpt { font-size: .9rem; color: var(--text-muted); margin: 0; flex: 1; }
.post-card-meta { font-size: .8rem; color: var(--text-muted); margin: 0; }

.pagination { margin-top: 3rem; text-align: center; }
.pagination .nav-links { display: inline-flex; gap: .5rem; flex-wrap: wrap; justify-content: center; }
.pagination .page-numbers {
	display: inline-block;
	padding: .5rem 1rem;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	font-size: .9rem;
	font-weight: 500;
	transition: var(--transition);
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

.post-container { max-width: 820px; }

.post-meta { color: var(--text-light); font-size: .9rem; }

.post-featured-image { margin-bottom: 2rem; }
.post-featured-image img { border-radius: var(--radius-lg); width: 100%; }

.post-content h2 { font-size: 1.75rem; margin: 2.25rem 0 1rem; }
.post-content h3 { font-size: 1.35rem; margin: 1.75rem 0 .75rem; }
.post-content ul, .post-content ol { list-style: revert; padding-left: 1.5rem; margin-bottom: 1rem; }
.post-content a { color: var(--gold-dark); text-decoration: underline; }
.post-content img { border-radius: var(--radius); margin: 1.5rem 0; }
.post-content blockquote {
	border-left: 3px solid var(--gold);
	padding-left: 1.25rem;
	margin: 1.5rem 0;
	color: var(--text-muted);
	font-style: italic;
}

.post-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; font-size: .9rem; }
.post-nav a { color: var(--gold-dark); font-weight: 600; }
.post-nav-next { margin-left: auto; text-align: right; }
