/* ============================================================
   GREYLINE INVESTIGATIONS — UNIFIED SITE STYLESHEET
   Editorial intelligence-agency aesthetic
   Navy / Ice / Red · Cormorant Garamond + Inter · Sharp edges
   ------------------------------------------------------------
   This file styles BOTH legacy class names used on
   about.html / case-studies.html / contact.html
   AND the new classes used on the reworked pages.
   ============================================================ */

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

:root {
	/* Palette */
	--navy: #0a1828;
	--navy-2: #142436;
	--ink: #0a1828;
	--text: #0a1828;
	--text-2: #4a5466;
	--ink-soft: #4a5466;
	--ink-muted: #6b7280;
	--ice: #f5f7fa;
	--ice-2: #eef1f6;
	--white: #ffffff;
	--accent: #c8392b;
	--accent-dk: #a02a1f;
	--border: #d8dde5;
	--border-2: #c0c6d1;
	--rule: #d8dde5;
	--rule-soft: #e7eaef;

	/* Type */
	--serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
	--sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
	font-family: var(--sans);
	font-size: 15px;
	line-height: 1.65;
	color: var(--ink);
	background: var(--white);
	font-weight: 400;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }

/* ---------- TYPOGRAPHY ---------- */

h1, h2, h3, h4 {
	font-family: var(--serif);
	font-weight: 500;
	color: var(--ink);
	letter-spacing: -0.005em;
}

h1 { font-size: clamp(2.4rem, 4.6vw, 3.8rem); line-height: 1.08; }
h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); line-height: 1.15; }
h3 { font-size: 1.4rem; line-height: 1.3; }

h1 em, h2 em, h3 em {
	font-style: italic;
	color: var(--accent);
	font-weight: 500;
}

p { margin-bottom: 1rem; color: var(--text-2); }

/* Eyebrows */
.eyebrow,
.section-eyebrow,
.hero-eyebrow {
	font-family: var(--sans);
	font-size: 0.7rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent);
	font-weight: 500;
	margin-bottom: 1.25rem;
	display: inline-block;
}

/* Rules */
.section-rule,
.gold-rule {
	width: 60px;
	height: 1px;
	background: var(--accent);
	margin: 1.5rem 0 1.75rem;
	border: none;
}

/* ---------- LAYOUT ---------- */

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1320px; margin: 0 auto; padding: 0 2rem; }

section { padding: 5rem 2rem; }

/* ============================================================
   NAVIGATION
   Matches existing class names: .nav-logo, .nav-links, .nav-cta
   Dropdown removed (per user direction).
   ============================================================ */

#nav {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--navy);
	border-bottom: 1px solid rgba(255,255,255,0.04);
	padding: 1.1rem 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#nav.dark { background: var(--navy); }

.nav-logo,
.nav-logo:link,
.nav-logo:visited {
	font-family: var(--serif);
	font-size: 1.35rem;
	font-weight: 500;
	color: var(--white);
	letter-spacing: -0.01em;
	text-decoration: none;
}
.nav-logo span { color: var(--accent); font-style: italic; }

.nav-links {
	display: flex;
	gap: 2.4rem;
	list-style: none;
	align-items: center;
	margin: 0;
	padding: 0;
}

.nav-links li { list-style: none; position: relative; }

.nav-links a {
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.78);
	font-weight: 400;
	text-decoration: none;
	padding: 0.4rem 0;
	display: inline-block;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--accent); }

/* Hide any leftover dropdown markup gracefully in case a legacy
   page still has it before the user removes the markup. */
.nav-links .has-dropdown .nav-dropdown { display: none !important; }

.nav-cta {
	display: inline-flex;
	align-items: center;
	padding: 0.8rem 1.4rem;
	background: var(--accent);
	color: var(--white);
	font-size: 0.74rem;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	font-weight: 500;
	transition: background 0.2s ease;
	text-decoration: none;
}
.nav-cta:hover, .nav-cta.hot:hover { background: var(--accent-dk); color: var(--white); }
.nav-cta.hot { background: var(--accent); }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
	display: inline-flex;
	align-items: center;
	padding: 0.95rem 1.75rem;
	background: var(--accent);
	color: var(--white);
	font-family: var(--sans);
	font-size: 0.78rem;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	font-weight: 500;
	border: none;
	cursor: pointer;
	transition: background 0.2s ease;
	text-decoration: none;
}
.btn-primary:hover { background: var(--accent-dk); color: var(--white); }

.btn-outline {
	display: inline-flex;
	align-items: center;
	padding: 0.9rem 1.7rem;
	background: transparent;
	color: var(--ink);
	border: 1px solid var(--ink);
	font-family: var(--sans);
	font-size: 0.78rem;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	font-weight: 500;
	transition: all 0.2s ease;
	text-decoration: none;
}
.btn-outline:hover { background: var(--ink); color: var(--white); }

.btn-outline-w {
	display: inline-flex;
	align-items: center;
	padding: 0.9rem 1.7rem;
	background: transparent;
	color: var(--white);
	border: 1px solid rgba(255,255,255,0.45);
	font-family: var(--sans);
	font-size: 0.78rem;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	font-weight: 500;
	transition: all 0.2s ease;
	text-decoration: none;
}
.btn-outline-w:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.text-link {
	font-family: var(--sans);
	font-size: 0.78rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--accent);
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}
.text-link:hover { color: var(--accent-dk); }

/* ============================================================
   HERO + PAGE HERO
   ============================================================ */

.hero {
	background: var(--navy);
	color: var(--white);
	padding: 7rem 2rem 6rem;
	position: relative;
	overflow: hidden;
}
.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
	background-size: 40px 40px;
	pointer-events: none;
}
.hero-inner { position: relative; max-width: 980px; margin: 0 auto; }
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero h1 em { color: var(--accent); }
.hero-sub {
	font-family: var(--serif);
	font-style: italic;
	font-size: 1.4rem;
	color: rgba(255,255,255,0.75);
	margin-bottom: 2rem;
	max-width: 720px;
	line-height: 1.45;
}
.hero .hero-eyebrow {
	color: var(--accent);
	margin-bottom: 1.75rem;
	font-weight: 500;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.25rem; }

.page-hero {
	background: var(--navy);
	color: var(--white);
	padding: 5rem 2rem 4rem;
	position: relative;
}
.page-hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.page-hero .hero-eyebrow { color: var(--accent); }
.page-hero p { color: rgba(255,255,255,0.72); max-width: 720px; font-size: 1.05rem; margin: 0 auto; }
.page-hero > * { max-width: 1200px; margin-left: auto; margin-right: auto; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */

.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { font-size: 1.05rem; color: var(--text-2); }

/* ============================================================
   HOMEPAGE — ENGAGEMENT MODELS (readable light cards)
   ============================================================ */

.engagement {
	background: var(--ice);
	padding: 5rem 2rem;
}
.engagement-head { max-width: 760px; margin-bottom: 3rem; }
.engagement-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	max-width: 1100px;
	margin: 0 auto;
}
.engagement-card {
	background: var(--white);
	border-left: 3px solid var(--accent);
	padding: 2.25rem 2rem;
	box-shadow: 0 1px 0 rgba(13,27,42,0.04), 0 8px 24px rgba(13,27,42,0.04);
}
.engagement-card .step-no {
	font-family: var(--sans);
	font-size: 0.7rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent);
	font-weight: 500;
	margin-bottom: 1rem;
	display: block;
}
.engagement-card h3 {
	font-family: var(--serif);
	font-size: 1.6rem;
	font-weight: 500;
	color: var(--ink);
	margin-bottom: 0.75rem;
}
.engagement-card h3 em { color: var(--accent); font-style: italic; }
.engagement-card p {
	font-size: 0.95rem;
	color: var(--text-2);
	line-height: 1.7;
	margin-bottom: 0;
}

/* ============================================================
   HOMEPAGE — CAPABILITY STACK
   ============================================================ */

.cap-stack {
	background: var(--white);
	padding: 4rem 2rem;
	text-align: center;
	border-top: 1px solid var(--rule-soft);
	border-bottom: 1px solid var(--rule-soft);
}
.cap-stack-label {
	font-size: 0.7rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--accent);
	font-weight: 500;
	margin-bottom: 1.75rem;
}
.cap-stack-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0 2.5rem;
	font-family: var(--serif);
	font-style: italic;
	font-size: 1.05rem;
	color: var(--text-2);
}
.cap-stack-list span { white-space: nowrap; }

/* ============================================================
   SERVICES GRID
   ============================================================ */

.svc-overview {
	background: var(--white);
	padding: 5rem 2rem;
}
.svc-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	max-width: 1200px;
	margin: 3rem auto 0;
}
.svc-card {
	background: var(--white);
	border: 1px solid var(--rule);
	padding: 2rem 1.75rem;
	transition: border-color 0.2s ease;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
}
.svc-card:hover { border-color: var(--accent); }
.svc-card .svc-num {
	font-size: 0.7rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ink-muted);
	font-weight: 500;
	margin-bottom: 1rem;
}
.svc-card h3 {
	font-family: var(--serif);
	font-size: 1.45rem;
	font-weight: 500;
	margin-bottom: 0.85rem;
	line-height: 1.25;
	color: var(--ink);
}
.svc-card p {
	font-size: 0.93rem;
	line-height: 1.65;
	color: var(--text-2);
	margin-bottom: 1.5rem;
	flex: 1;
}
.svc-card .svc-link {
	font-size: 0.74rem;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--accent);
	font-weight: 500;
}

/* ============================================================
   CTA PANEL
   ============================================================ */

.cta-panel {
	background: var(--navy);
	color: var(--white);
	padding: 5rem 2rem;
	text-align: center;
}
.cta-panel h2 { color: var(--white); margin-bottom: 1.25rem; }
.cta-panel h2 em { color: var(--accent); }
.cta-panel p {
	color: rgba(255,255,255,0.7);
	max-width: 620px;
	margin: 0 auto 2rem;
	font-size: 1.05rem;
}
.cta-panel .hero-eyebrow { color: var(--accent); }
.cta-panel-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   Matches existing legacy class names:
     <footer><div class="footer-inner"><div class="footer-brand"><div class="footer-brand-name">...</div>...</div>
     <div class="footer-col"><h4>...</h4><ul>...</ul></div></div>
     <div class="footer-bottom">...</div></footer>
   ============================================================ */

footer,
.site-footer {
	background: var(--navy);
	color: rgba(255,255,255,0.55);
	padding: 4.5rem 2rem 2rem;
	border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	gap: 2.5rem;
	/* 5-col layout used by inline style on legacy pages; respected by default */
	grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
}

.footer-brand .footer-brand-name {
	font-family: var(--serif);
	font-size: 1.2rem;
	font-weight: 500;
	color: var(--white);
	letter-spacing: -0.01em;
	margin-bottom: 1rem;
}
.footer-brand p {
	font-size: 0.82rem;
	color: rgba(255,255,255,0.5);
	max-width: 320px;
	line-height: 1.7;
	margin: 0;
}

.footer-col h4 {
	font-family: var(--sans);
	font-size: 0.68rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--accent);
	font-weight: 500;
	margin-bottom: 1.1rem;
}
.footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer-col ul li {
	margin: 0;
	padding: 0;
	list-style: none;
	margin-bottom: 0.55rem;
}
.footer-col ul li a {
	font-size: 0.82rem;
	color: rgba(255,255,255,0.55);
	text-decoration: none;
	font-family: var(--sans);
	line-height: 1.5;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
	max-width: 1200px;
	margin: 3rem auto 0;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255,255,255,0.06);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}
.footer-bottom p {
	font-size: 0.74rem;
	color: rgba(255,255,255,0.35);
	margin: 0;
}

.social-links {
	display: flex;
	gap: 1.25rem;
	align-items: center;
}
.social-links a {
	color: rgba(255,255,255,0.45);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: color 0.2s ease;
}
.social-links a:hover { color: var(--white); }
.social-links svg { display: block; }

/* ============================================================
   BREADCRUMB
   ============================================================ */

.breadcrumb {
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ink-muted);
	font-weight: 500;
	padding: 1.25rem 2rem;
	background: var(--ice);
	border-bottom: 1px solid var(--rule-soft);
}
.breadcrumb a { color: var(--ink-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--rule); margin: 0 0.6rem; }
.breadcrumb .current { color: var(--ink); }
.breadcrumb .container { max-width: 1200px; margin: 0 auto; padding: 0; }

/* ============================================================
   SERVICE-LINE PAGE
   ============================================================ */

.service-intro { padding: 5rem 2rem 3rem; background: var(--white); }
.service-intro h2 { margin-bottom: 1rem; }
.service-intro h2 em { color: var(--accent); font-style: italic; }
.service-intro p { font-size: 1.05rem; color: var(--text-2); }

.offering-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.75rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 2rem 5rem;
}
.offering-grid.two-up {
	grid-template-columns: repeat(2, 1fr);
	max-width: 900px;
}

.offering {
	background: var(--white);
	border: 1px solid var(--rule);
	padding: 2rem 1.85rem 2.25rem;
	display: flex;
	flex-direction: column;
}
.offering .tag {
	font-size: 0.66rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ink-muted);
	font-weight: 500;
	margin-bottom: 1rem;
}
.offering h3 {
	font-family: var(--serif);
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 0.8rem;
	line-height: 1.25;
	color: var(--ink);
}
.offering .lead {
	font-size: 0.95rem;
	color: var(--text-2);
	line-height: 1.65;
	margin-bottom: 1.25rem;
}
.offering .price {
	font-family: var(--serif);
	font-size: 1.05rem;
	color: var(--accent);
	font-style: italic;
	margin-bottom: 1.25rem;
}
.offering .price-note {
	font-size: 0.85rem;
	color: var(--ink-muted);
	font-style: italic;
	margin-bottom: 1.25rem;
}
.offering ul.features {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem;
	border-top: 1px solid var(--rule-soft);
}
.offering ul.features li {
	font-size: 0.88rem;
	color: var(--text-2);
	padding: 0.65rem 0;
	border-bottom: 1px solid var(--rule-soft);
	line-height: 1.5;
}
.offering .suited {
	background: var(--ice);
	border-left: 3px solid var(--accent);
	padding: 1rem 1.1rem;
	font-size: 0.85rem;
	color: var(--text-2);
	font-style: italic;
	margin: 0 0 1.5rem;
	line-height: 1.6;
}
.offering .suited strong { font-style: normal; color: var(--ink); font-weight: 500; }
.offering .cta-row { margin-top: auto; }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */

.product-hero {
	background: var(--white);
	padding: 4.5rem 2rem 3.5rem;
	border-bottom: 1px solid var(--rule-soft);
}
.product-hero-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 4rem;
	align-items: start;
}
.product-hero h1 { margin-bottom: 1.25rem; line-height: 1.05; }
.product-hero h1 em { color: var(--accent); font-style: italic; }
.product-hero .lead {
	font-size: 1.1rem;
	color: var(--text-2);
	line-height: 1.55;
	margin-bottom: 0;
}

.price-card {
	background: var(--ice);
	border-left: 3px solid var(--accent);
	padding: 1.75rem;
}
.price-card .price-label {
	font-size: 0.7rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--accent);
	font-weight: 500;
	margin-bottom: 0.8rem;
}
.price-card .price-amount {
	font-family: var(--serif);
	font-size: 2rem;
	color: var(--ink);
	margin-bottom: 0.4rem;
	line-height: 1;
}
.price-card .price-meta {
	font-size: 0.85rem;
	color: var(--text-2);
	line-height: 1.55;
	margin-bottom: 1.25rem;
}
.price-card .price-meta div { margin-bottom: 0.25rem; }

.product-section { padding: 4rem 2rem; }
.product-section.alt { background: var(--ice); }
.product-section h2 { margin-bottom: 1rem; }
.product-section h2 em { color: var(--accent); font-style: italic; }
.product-section .container-narrow > p { font-size: 1.02rem; color: var(--text-2); }

.what-included {
	margin: 2rem 0 0;
	padding: 0;
	list-style: none;
}
.what-included li {
	padding: 1.1rem 0 1.1rem 1.5rem;
	border-bottom: 1px solid var(--rule);
	font-size: 0.95rem;
	color: var(--text-2);
	line-height: 1.65;
	list-style: none;
	position: relative;
}
.what-included li::before {
	content: '·';
	color: var(--accent);
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1;
	position: absolute;
	left: 0;
	top: 1rem;
}
.what-included li strong {
	color: var(--ink);
	font-weight: 500;
	display: inline;
	margin-right: 0.35em;
}

/* ============================================================
   SAMPLE REPORT VIEWER
   Inline embedded PDF preview so prospects can see what
   they are actually buying.
   ============================================================ */

.sample-report {
	background: var(--navy);
	color: var(--white);
	padding: 5rem 2rem;
	position: relative;
}
.sample-report::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
	background-size: 40px 40px;
	pointer-events: none;
}
.sample-report-inner {
	max-width: 1100px;
	margin: 0 auto;
	position: relative;
}
.sample-report .section-eyebrow {
	color: var(--accent);
}
.sample-report h2 {
	color: var(--white);
	margin-bottom: 1rem;
}
.sample-report h2 em {
	color: var(--accent);
	font-style: italic;
}
.sample-report .gold-rule {
	background: var(--accent);
}
.sample-report .lead {
	color: rgba(255,255,255,0.78);
	font-size: 1.02rem;
	max-width: 760px;
	line-height: 1.65;
	margin-bottom: 2.25rem;
}
.sample-report .lead strong {
	color: var(--white);
	font-weight: 500;
}

.sample-report-frame {
	background: var(--white);
	border-top: 3px solid var(--accent);
	box-shadow: 0 1px 0 rgba(0,0,0,0.4), 0 24px 60px rgba(0,0,0,0.45);
	padding: 0;
	margin-top: 1rem;
	position: relative;
	overflow: hidden;
}
.sample-report-frame iframe {
	width: 100%;
	height: 720px;
	border: none;
	display: block;
	background: var(--ice);
}
.sample-report-frame-bar {
	background: var(--ice);
	border-bottom: 1px solid var(--rule);
	padding: 0.85rem 1.25rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: var(--sans);
	font-size: 0.78rem;
}
.sample-report-frame-bar .filename {
	color: var(--ink);
	font-weight: 500;
	letter-spacing: 0.02em;
}
.sample-report-frame-bar .filename .ref {
	color: var(--ink-muted);
	margin-left: 0.6rem;
	font-weight: 400;
}
.sample-report-frame-bar .frame-actions {
	display: flex;
	gap: 1.5rem;
}
.sample-report-frame-bar .frame-actions a {
	color: var(--accent);
	font-size: 0.72rem;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	font-weight: 500;
}
.sample-report-frame-bar .frame-actions a:hover { color: var(--ink); }

.sample-report-meta {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin: 2.5rem 0 0.5rem;
	padding: 1.5rem 0 0;
	border-top: 1px solid rgba(255,255,255,0.08);
}
.sample-report-meta-item {
	font-family: var(--sans);
}
.sample-report-meta-item .label {
	font-size: 0.68rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--accent);
	font-weight: 500;
	margin-bottom: 0.45rem;
}
.sample-report-meta-item .value {
	font-family: var(--serif);
	font-size: 1.15rem;
	color: var(--white);
	line-height: 1.3;
}
.sample-report-meta-item .value em { color: var(--accent); font-style: italic; }
.sample-report-meta-item .note {
	font-size: 0.78rem;
	color: rgba(255,255,255,0.55);
	margin-top: 0.35rem;
	line-height: 1.5;
}

.sample-report-redaction-note {
	font-family: var(--sans);
	font-size: 0.82rem;
	color: rgba(255,255,255,0.6);
	font-style: italic;
	margin-top: 1.5rem;
	line-height: 1.6;
	padding-left: 1rem;
	border-left: 2px solid var(--accent);
}

@media (max-width: 820px) {
	.sample-report-frame iframe { height: 520px; }
	.sample-report-frame-bar { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
	.sample-report-meta { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
	.sample-report-meta { grid-template-columns: 1fr; }
	.sample-report-frame iframe { height: 420px; }
}

.tier-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 2rem;
	font-size: 0.92rem;
}
.tier-table th, .tier-table td {
	padding: 0.95rem 1rem;
	text-align: left;
	border-bottom: 1px solid var(--rule);
	vertical-align: top;
}
.tier-table thead th {
	font-family: var(--sans);
	font-size: 0.72rem;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--accent);
	font-weight: 500;
	background: var(--ice);
	border-bottom: 2px solid var(--accent);
}
.tier-table thead th .tier-price {
	display: block;
	font-family: var(--serif);
	font-size: 1.1rem;
	font-style: italic;
	text-transform: none;
	letter-spacing: 0;
	color: var(--ink);
	margin-top: 0.3rem;
}
.tier-table td.check { text-align: center; color: var(--accent); font-weight: 700; }
.tier-table td.dash { text-align: center; color: var(--ink-muted); }

.process-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin-top: 2.5rem;
}
.process-step {
	background: var(--white);
	border-top: 3px solid var(--accent);
	padding: 1.5rem 1.25rem;
}
.process-step .step-no {
	font-family: var(--serif);
	font-size: 1.4rem;
	font-style: italic;
	color: var(--accent);
	margin-bottom: 0.5rem;
}
.process-step h4 {
	font-family: var(--serif);
	font-size: 1.15rem;
	font-weight: 500;
	color: var(--ink);
	margin-bottom: 0.5rem;
}
.process-step p {
	font-size: 0.86rem;
	line-height: 1.6;
	margin: 0;
	color: var(--text-2);
}

/* ============================================================
   INQUIRY / FORMS
   ============================================================ */

.form-section {
	padding: 4rem 2rem;
	background: var(--ice);
}

.form-card {
	background: var(--white);
	max-width: 760px;
	margin: 0 auto;
	padding: 3rem 3rem 3.5rem;
	border-top: 3px solid var(--accent);
	box-shadow: 0 1px 0 rgba(13,27,42,0.04), 0 8px 32px rgba(13,27,42,0.06);
}
.form-card h2 { margin-bottom: 0.75rem; color: var(--ink); }
.form-card h2 em { color: var(--accent); font-style: italic; }
.form-card .form-lead {
	font-size: 1rem;
	color: var(--text-2);
	margin-bottom: 1.5rem;
	line-height: 1.65;
}

.form-card .gold-rule { margin: 0 0 2rem; }

.form-notice {
	background: var(--ice);
	border-left: 3px solid var(--accent);
	padding: 1.1rem 1.25rem;
	font-size: 0.88rem;
	color: var(--text-2);
	line-height: 1.65;
	margin-bottom: 2.5rem;
}
.form-notice strong { color: var(--ink); font-weight: 500; }

.form-fieldset {
	margin-bottom: 2.5rem;
	padding: 0;
	border: none;
}
.form-fieldset legend {
	font-family: var(--sans);
	font-size: 0.7rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent);
	font-weight: 500;
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none;
	width: 100%;
	display: block;
	float: none;
}
.form-fieldset .legend-rule {
	border: none;
	border-top: 1px solid var(--rule);
	margin: 0.6rem 0 1.5rem;
	width: 100%;
}

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

.form-field {
	display: flex;
	flex-direction: column;
}
.form-field label,
.form-label {
	font-size: 0.82rem;
	color: var(--ink);
	font-weight: 500;
	margin-bottom: 0.4rem;
	font-family: var(--sans);
}
.form-field .helper {
	font-size: 0.78rem;
	color: var(--ink-muted);
	margin-top: 0.4rem;
	line-height: 1.5;
}
.form-field input,
.form-field select,
.form-field textarea,
.form-input,
.form-select,
.form-textarea {
	font-family: var(--sans);
	font-size: 0.95rem;
	color: var(--ink);
	background: var(--white);
	border: 1px solid var(--rule);
	padding: 0.8rem 0.95rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	width: 100%;
	border-radius: 0;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: inset 0 -2px 0 var(--accent);
}
.form-field textarea,
.form-textarea {
	resize: vertical;
	min-height: 140px;
	line-height: 1.6;
}

/* Style native select arrow region a touch */
.form-field select,
.form-select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8392b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	padding-right: 2.5rem;
}

.radio-row, .checkbox-row {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	margin-top: 0.4rem;
}
.radio-row label, .checkbox-row label {
	font-size: 0.92rem;
	color: var(--text-2);
	font-weight: 400;
	display: inline-flex;
	align-items: flex-start;
	gap: 0.5rem;
	cursor: pointer;
	margin-bottom: 0;
	line-height: 1.5;
}
.radio-row input, .checkbox-row input {
	accent-color: var(--accent);
	margin-top: 0.2rem;
}

.form-submit-row { margin-top: 1.75rem; }
.form-submit-row .btn-primary { width: 100%; justify-content: center; padding: 1.1rem 1.5rem; font-size: 0.78rem; }
.form-submit-row p {
	font-size: 0.82rem;
	color: var(--ink-muted);
	margin-top: 1rem;
	line-height: 1.6;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeUp {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease forwards; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
	.footer-inner { grid-template-columns: 1fr 1fr 1fr !important; gap: 2rem; }
	.footer-brand { grid-column: 1 / -1; }
	.product-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
	.process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
	#nav { padding: 1rem 1.25rem; }
	.nav-links { gap: 1.4rem; }
	.nav-cta { display: none; }
	section { padding: 3.5rem 1.25rem; }
	.svc-grid, .offering-grid, .offering-grid.two-up, .engagement-grid { grid-template-columns: 1fr; }
	.form-card { padding: 2rem 1.5rem 2.5rem; }
	.form-row { grid-template-columns: 1fr; }
	.process-steps { grid-template-columns: 1fr; }
	.footer-inner { grid-template-columns: 1fr 1fr !important; }
	.hero { padding: 4.5rem 1.25rem 4rem; }
	.cap-stack-list { font-size: 0.95rem; gap: 0 1.5rem; }
}

@media (max-width: 540px) {
	.nav-links { gap: 1rem; }
	.nav-links a { font-size: 0.7rem; }
	.footer-inner { grid-template-columns: 1fr !important; }
	.tier-table th, .tier-table td { padding: 0.7rem 0.5rem; font-size: 0.85rem; }
	.footer-bottom { justify-content: center; text-align: center; }
}
