/* ==========================================================================
   Machi Wright Rev1 — theme.css
   Ink navy · parchment · brass · Fraunces display serif / Archivo grotesque
   ========================================================================== */

:root {
	--ink: #0d1626;
	--ink-2: #14213a;
	--ink-3: #1d2e4e;
	--paper: #f6f1e7;
	--paper-2: #efe7d8;
	--brass: #b9924c;
	--brass-bright: #d4ad63;
	--crimson: #a02437;
	--white: #fdfcf9;
	--line-dark: rgba(185, 146, 76, 0.28);
	--line-light: rgba(13, 22, 38, 0.14);
	--font-display: "Fraunces", "Georgia", serif;
	--font-body: "Archivo", "Helvetica Neue", sans-serif;
	--maxw: 1200px;
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.65;
	color: var(--ink);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--crimson); text-decoration: none; }
a:hover { color: var(--brass); }
::selection { background: var(--brass); color: var(--ink); }
:focus-visible { outline: 2px solid var(--brass-bright); outline-offset: 3px; }

.skip-link {
	position: absolute; left: -9999px; top: 0;
	background: var(--ink); color: var(--white); padding: 10px 18px; z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

.eyebrow {
	font-family: var(--font-body);
	font-size: 12px; font-weight: 700;
	letter-spacing: 0.24em; text-transform: uppercase;
	color: var(--crimson); margin: 0 0 14px;
}
.eyebrow-light { color: var(--brass-bright); }

.section-h2 {
	font-family: var(--font-display);
	font-weight: 380;
	font-size: clamp(40px, 5.4vw, 72px);
	line-height: 1.02;
	letter-spacing: -0.018em;
	margin: 0 0 26px;
	color: var(--ink);
	text-wrap: balance;
}
.section-h2 em {
	font-style: italic; font-weight: 420;
	color: var(--brass);
}
/* Editorial folio numbering — every band carries its own printed act number */
main { counter-reset: mwr-act; }
main section[data-reveal] { counter-increment: mwr-act; }
main section[data-reveal] .eyebrow::before {
	content: "Act " counter(mwr-act, decimal-leading-zero);
	display: inline-block; margin-right: 14px; padding-right: 14px;
	border-right: 1px solid currentColor;
	font-style: italic; font-family: var(--font-display);
	font-weight: 400; letter-spacing: 0.1em; text-transform: none;
	opacity: 0.75;
}
.section-h2-light { color: var(--white); }
.section-h2-light em { color: var(--brass-bright); }

/* --------------------------------------------------------------------------
   Alert rail
   -------------------------------------------------------------------------- */
.alert-rail {
	background: linear-gradient(100deg, #4f0d1a, #7c1728 38%, #8f1c2e 60%, #5c1020);
	color: #f9e9db;
	font-size: 13.5px;
	border-bottom: 1px solid rgba(201, 162, 94, 0.45);
	position: relative;
}
.alert-rail::after {
	content: ""; position: absolute; inset: 0; pointer-events: none;
	background: radial-gradient(120% 180% at 50% -60%, rgba(255, 217, 168, 0.14), transparent 55%);
}
.alert-rail-inner {
	max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
	display: flex; gap: 18px; align-items: center;
	position: relative; z-index: 1;
}
.alert-track {
	position: relative; flex: 1 1 auto; min-height: 38px;
	display: grid; align-items: center;
}
.alert-slide {
	grid-area: 1 / 1;
	display: flex; gap: 14px; align-items: baseline; flex-wrap: wrap;
	padding: 8px 0;
	opacity: 0; transform: translateY(6px);
	transition: opacity 0.55s ease, transform 0.55s ease;
	pointer-events: none;
}
.alert-slide.is-active {
	opacity: 1; transform: translateY(0);
	pointer-events: auto;
}
.alert-kicker {
	font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; font-size: 11.5px;
	color: #ffd9a8;
}
.alert-link { color: #fff; font-weight: 600; white-space: nowrap; text-decoration-color: rgba(255, 217, 168, 0.5); text-underline-offset: 3px; }
.alert-link:hover { color: #ffd9a8; }
.alert-dots { display: flex; gap: 6px; flex: 0 0 auto; }
.alert-dot {
	width: 6px; height: 6px; border-radius: 50%;
	background: rgba(249, 233, 219, 0.32);
	transition: background 0.3s ease, transform 0.3s ease;
}
.alert-dot.is-active { background: #ffd9a8; transform: scale(1.25); }
@media (prefers-reduced-motion: reduce) {
	.alert-slide { transition: none; }
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: linear-gradient(180deg, rgba(16, 26, 44, 0.98), rgba(13, 22, 38, 0.97));
	border-bottom: 1px solid rgba(212, 173, 99, 0.28);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(8px);
	transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 34px rgba(6, 10, 20, 0.5); }
.header-inner {
	max-width: 1360px; margin: 0 auto; padding: 12px 24px;
	display: flex; align-items: center; gap: 28px;
}
.logo-img img { width: 158px; height: auto; transition: width 0.3s var(--ease-out); }
.site-header.is-scrolled .logo-img img { width: 132px; }

.nav-links-main { margin-left: auto; }
.header-nav-links {
	list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; align-items: center;
}
.header-nav-links > li { position: relative; }
.header-nav-links > li > a {
	display: block; padding: 12px 13px;
	color: #e8e2d4; font-size: 14.5px; font-weight: 600; letter-spacing: 0.02em;
	border-bottom: 2px solid transparent;
	transition: color 0.2s;
}
.header-nav-links > li > a:hover,
.header-nav-links > li.sub-menu-open > a { color: var(--brass-bright); }

/* Rich dropdowns */
.header-nav-links .sub-menu {
	list-style: none; margin: 0; padding: 10px 0;
	position: absolute; top: 100%; left: 0; min-width: 330px;
	background: #101b31;
	border: 1px solid var(--line-dark);
	border-top: 2px solid var(--brass);
	box-shadow: 0 24px 50px rgba(5, 9, 18, 0.6);
	opacity: 0; visibility: hidden; transform: translateY(10px);
	transition: opacity 0.22s var(--ease-out), transform 0.22s var(--ease-out), visibility 0.22s;
}
.header-nav-links > li.sub-menu-open > .sub-menu {
	opacity: 1; visibility: visible; transform: translateY(0);
}
.header-nav-links .sub-menu li a {
	display: block; padding: 11px 20px;
	border-left: 3px solid transparent;
	transition: background 0.18s, border-color 0.18s;
}
.header-nav-links .sub-menu li a:hover,
.header-nav-links .sub-menu li.is-rolled a {
	background: rgba(185, 146, 76, 0.09);
	border-left-color: var(--brass);
}
.nav-service-name {
	display: block; color: #f2ecdd; font-weight: 600; font-size: 14.5px;
}
.nav-service-desc {
	display: block; color: #9aa3b5; font-size: 12.5px; line-height: 1.45; margin-top: 2px;
	font-weight: 400;
}

.header-cta { text-align: right; line-height: 1.3; }
.cta-label {
	display: block; font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
	color: var(--brass-bright); font-weight: 700;
}
.cta-phone {
	display: block; font-family: var(--font-display); font-size: 24px; font-weight: 500;
	color: var(--white); letter-spacing: 0.01em;
}
.cta-phone:hover { color: var(--brass-bright); }
.cta-sub { display: block; font-size: 11px; color: #8d96a8; }

.mobile-menu-toggle { display: none; }

/* --------------------------------------------------------------------------
   Hero — full-bleed courthouse, cinematic
   -------------------------------------------------------------------------- */
.hero {
	position: relative;
	min-height: max(92vh, 660px);
	display: flex; align-items: center; justify-content: center;
	overflow: hidden;
	background: var(--ink);
}
.hero-media {
	position: absolute; inset: 0;
	will-change: transform;
	transform: translateY(calc(var(--parallax, 0) * 1px));
}
.hero-bg {
	position: absolute; inset: -6%;
	width: 112%;
	height: 112%;
	object-fit: cover;
	object-position: center 28%;
	animation: mwr-kenburns 30s var(--ease-out) both;
	will-change: transform;
}
@keyframes mwr-kenburns {
	from { transform: scale(1.16) translateY(1.5%); }
	to   { transform: scale(1.04) translateY(0); }
}
.hero-shade {
	position: absolute; inset: 0;
	background:
		linear-gradient(100deg, rgba(9, 15, 27, 0.96) 0%, rgba(9, 15, 27, 0.8) 34%, rgba(13, 22, 38, 0.4) 62%, rgba(13, 22, 38, 0.24) 100%),
		linear-gradient(180deg, rgba(13, 22, 38, 0.74) 0%, transparent 26%, transparent 60%, rgba(13, 22, 38, 0.98) 100%),
		radial-gradient(120% 90% at 78% 30%, transparent 40%, rgba(6, 10, 20, 0.5) 100%);
}
/* Slow courthouse light-sweep — a bar of warm light drifting across the facade */
.hero-shade::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(105deg, transparent 30%, rgba(240, 217, 164, 0.1) 46%, rgba(240, 217, 164, 0.16) 50%, rgba(240, 217, 164, 0.1) 54%, transparent 70%);
	mix-blend-mode: overlay;
	animation: mwr-lightsweep 14s ease-in-out infinite alternate;
}
@keyframes mwr-lightsweep {
	from { transform: translateX(-22%); }
	to   { transform: translateX(22%); }
}
/* Warm brass color grade — makes the photo feel printed, not stock */
.hero-grade {
	position: absolute; inset: 0;
	background:
		radial-gradient(70% 55% at 50% 42%, rgba(212, 173, 99, 0.14), transparent 70%),
		linear-gradient(115deg, rgba(160, 36, 55, 0.12) 0%, transparent 40%, rgba(185, 146, 76, 0.1) 100%);
	mix-blend-mode: soft-light;
}
/* Hairline architectural frame drawn just inside the viewport */
.hero-frame { position: absolute; inset: clamp(14px, 2.2vw, 30px); z-index: 3; pointer-events: none; }
.hero-frame i { position: absolute; background: rgba(212, 173, 99, 0.38); }
.hero-frame i:nth-child(1) { top: 0; left: 0; height: 1px; width: 0; animation: mwr-frame-w 1.4s 0.5s var(--ease-out) forwards; }
.hero-frame i:nth-child(2) { bottom: 0; right: 0; height: 1px; width: 0; animation: mwr-frame-w 1.4s 0.5s var(--ease-out) forwards; }
.hero-frame i:nth-child(3) { top: 0; left: 0; width: 1px; height: 0; animation: mwr-frame-h 1.4s 0.7s var(--ease-out) forwards; }
.hero-frame i:nth-child(4) { bottom: 0; right: 0; width: 1px; height: 0; animation: mwr-frame-h 1.4s 0.7s var(--ease-out) forwards; }
@keyframes mwr-frame-w { to { width: 100%; } }
@keyframes mwr-frame-h { to { height: 100%; } }
/* Vertical rails — editorial margin notes */
.hero-rail {
	position: absolute; top: 50%; z-index: 3; pointer-events: none;
	opacity: 0; animation: mwr-fade 1.2s 1.5s ease forwards;
}
.hero-rail span {
	display: block;
	font-size: 10.5px; font-weight: 700; letter-spacing: 0.34em; text-transform: uppercase;
	color: rgba(217, 210, 192, 0.62); white-space: nowrap;
}
.hero-rail-l { left: clamp(30px, 3.6vw, 52px); transform: translateY(-50%); }
.hero-rail-l span { writing-mode: vertical-rl; transform: rotate(180deg); }
.hero-rail-r { right: clamp(30px, 3.6vw, 52px); transform: translateY(-50%); }
.hero-rail-r span { writing-mode: vertical-rl; }
@keyframes mwr-fade { to { opacity: 1; } }
.hero-grain {
	position: absolute; inset: 0; opacity: 0.5; mix-blend-mode: overlay;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.24'/%3E%3C/svg%3E");
}
.hero-inner {
	position: relative; z-index: 2;
	width: 100%;
	max-width: 1360px;
	padding: 130px clamp(28px, 5vw, 76px) 150px;
	will-change: transform, opacity;
	transform: translateY(calc(var(--parallax, 0) * -0.35px));
	opacity: calc(1 - var(--fade, 0));
}
/* Editorial asymmetry — copy anchored left, ledger card floating right */
.hero-inner--editorial {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
	gap: clamp(40px, 6vw, 90px);
	align-items: end;
	text-align: left;
}
.hero-kicker {
	display: flex; align-items: center; justify-content: flex-start; gap: 18px;
	font-size: 13px; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase;
	color: var(--brass-bright); margin: 0 0 30px;
}
.kicker-rule { display: inline-block; width: 54px; height: 1px; background: linear-gradient(90deg, transparent, var(--brass) 40%, var(--brass) 60%, transparent); }
.hero-h1 { margin: 0 0 28px; }
.hero-firm {
	display: block;
	font-family: var(--font-display);
	font-weight: 380;
	font-size: clamp(15px, 1.7vw, 21px);
	letter-spacing: 0.42em; text-indent: 0.42em; text-transform: uppercase;
	color: #d9d2c0;
	margin-bottom: 26px;
}
.hero-firm .amp { color: var(--brass); letter-spacing: 0; }
.hero-punch {
	display: block;
	font-family: var(--font-display);
	font-weight: 340;
	font-size: clamp(58px, 11vw, 156px);
	line-height: 0.92;
	letter-spacing: -0.028em;
	color: var(--white);
	text-shadow: 0 2px 30px rgba(6, 10, 20, 0.5);
}
.hero-punch em {
	font-style: italic; font-weight: 380;
	background: linear-gradient(100deg, #e8c886 10%, var(--brass-bright) 45%, #f0d9a4 70%, var(--brass) 100%);
	-webkit-background-clip: text; background-clip: text;
	-webkit-text-fill-color: transparent; color: var(--brass-bright);
	text-shadow: none;
	filter: drop-shadow(0 3px 18px rgba(6, 10, 20, 0.55));
}
.hp-line { display: block; }
/* Word-by-word masked rise */
.hero-punch .w { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero-punch .w i {
	display: inline-block; font-style: inherit;
	transform: translateY(112%);
	animation: mwr-word 1s var(--wd, 0.3s) var(--ease-out) forwards;
}
@keyframes mwr-word { to { transform: translateY(0); } }
.hero-lede {
	max-width: 560px; margin: 0 0 40px;
	font-size: clamp(16px, 1.6vw, 19px); line-height: 1.7;
	color: #d5dae0;
	text-wrap: balance;
	text-shadow: 0 1px 14px rgba(6, 10, 20, 0.5);
	border-left: 2px solid var(--brass);
	padding-left: 22px;
}
.hero-actions {
	display: flex; gap: 18px; justify-content: flex-start; align-items: center; flex-wrap: wrap;
}

/* Hero ledger — firm stationery card, right column — POP for Daniel prefs 2026-07-18 */
.hero-ledger {
	position: relative;
	z-index: 4;
	transform: scale(1.06);
	transform-origin: top right;
	background: linear-gradient(168deg, rgba(12, 20, 36, 0.92), rgba(9, 15, 27, 0.88));
	border: 1px solid rgba(240, 217, 164, 0.55);
	border-top: 3px solid var(--brass-bright);
	backdrop-filter: blur(14px);
	padding: 32px 34px 28px;
	box-shadow:
		0 0 0 1px rgba(212, 173, 99, 0.18),
		0 36px 80px rgba(4, 8, 16, 0.72),
		0 0 48px rgba(185, 146, 76, 0.18);
}
.hero-ledger::before {
	content: "";
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	pointer-events: none;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.ledger-title {
	display: flex; align-items: center; gap: 14px;
	margin: 0 0 22px;
	font-size: 12px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
	color: var(--brass-bright);
}
.ledger-seal {
	flex: none; width: 46px; height: 46px;
	display: grid; place-items: center;
	border: 1px solid var(--brass-bright); border-radius: 50%;
	font-family: var(--font-display); font-weight: 500; font-size: 14px; letter-spacing: 0.08em;
	color: var(--brass-bright);
	background: rgba(185, 146, 76, 0.12);
	box-shadow: inset 0 0 0 3px rgba(9, 15, 27, 0.8), inset 0 0 0 4px rgba(212, 173, 99, 0.55), 0 0 20px rgba(185, 146, 76, 0.25);
}
.ledger-rows { margin: 0; }
.ledger-row {
	display: grid; grid-template-columns: 104px minmax(0, 1fr); gap: 16px; align-items: baseline;
	padding: 15px 0;
	border-top: 1px solid rgba(212, 173, 99, 0.28);
}
.ledger-row dt {
	font-family: var(--font-display); font-weight: 420;
	font-size: 38px; line-height: 1; letter-spacing: -0.02em;
	color: var(--white);
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}
.ledger-row dt span { color: var(--brass-bright); font-style: italic; font-size: 0.72em; }
.ledger-row dd {
	margin: 0; font-size: 13.5px; line-height: 1.5; color: #d5d0c0;
}
.ledger-note {
	margin: 18px 0 0; padding-top: 16px;
	border-top: 1px solid rgba(212, 173, 99, 0.28);
	font-family: var(--font-display); font-style: italic;
	font-size: 14.5px; line-height: 1.55; color: #f0e6cc;
}

/* Hero baseline — practice strip pinned to the hero's bottom rule */
.hero-baseline {
	position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
	display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: wrap;
	padding: 18px clamp(28px, 5vw, 76px);
	border-top: 1px solid rgba(212, 173, 99, 0.24);
	background: linear-gradient(180deg, rgba(9, 15, 27, 0.35), rgba(9, 15, 27, 0.72));
	backdrop-filter: blur(6px);
}
.hero-baseline span {
	font-size: 11.5px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
	color: rgba(222, 214, 195, 0.82); white-space: nowrap;
}
.hero-baseline i { color: var(--brass); font-style: normal; font-size: 10px; }

/* Ink text on brass — must beat Elementor kit `.elementor-kit-* a` (class+element). */
a.btn-brass,
button.btn-brass,
.btn-brass {
	display: inline-block; padding: 17px 36px;
	background: linear-gradient(135deg, var(--brass-bright), var(--brass) 60%);
	color: var(--ink) !important;
	-webkit-text-fill-color: var(--ink);
	font-weight: 700; font-size: 15.5px; letter-spacing: 0.04em;
	border: none; cursor: pointer;
	position: relative; overflow: hidden;
	box-shadow: 0 12px 30px rgba(185, 146, 76, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.4);
	transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out);
}
/* Sheen sweep — hover-only, no keyframes, reduced-motion safe */
a.btn-brass::after,
button.btn-brass::after,
.btn-brass::after {
	content: ""; position: absolute; top: 0; bottom: 0; left: -70%; width: 45%;
	background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.34), transparent);
	transform: skewX(-18deg);
	transition: left 0.55s var(--ease-out);
	pointer-events: none;
}
a.btn-brass:hover::after,
button.btn-brass:hover::after,
.btn-brass:hover::after { left: 125%; }
a.btn-brass:hover,
button.btn-brass:hover,
.btn-brass:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 40px rgba(185, 146, 76, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.45);
	color: var(--ink) !important;
	-webkit-text-fill-color: var(--ink);
}
.btn-brass .btn-arr {
	display: inline-block; margin-left: 10px;
	transition: transform 0.25s var(--ease-out);
}
.btn-brass:hover .btn-arr { transform: translateX(5px); }
.btn-callchip {
	display: inline-flex; flex-direction: column; align-items: flex-start;
	padding: 11px 26px 12px;
	border: 1px solid rgba(212, 173, 99, 0.55);
	background: rgba(13, 22, 38, 0.4);
	backdrop-filter: blur(4px);
	transition: border-color 0.2s, background 0.2s;
}
.btn-callchip span {
	font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: #b9b39f; font-weight: 700;
}
.btn-callchip strong {
	font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--white);
}
.btn-callchip:hover { border-color: var(--brass-bright); background: rgba(13, 22, 38, 0.65); }

/* Reveal lines (hero load motion) */
.reveal-line {
	opacity: 0; transform: translateY(26px);
	animation: mwr-rise 0.9s var(--ease-out) forwards;
	animation-delay: var(--d, 0s);
}
@keyframes mwr-rise {
	to { opacity: 1; transform: translateY(0); }
}

.hero-scrollcue {
	position: absolute; bottom: 78px; left: 50%; transform: translateX(-50%); z-index: 2;
	width: 26px; height: 44px; border: 1.5px solid rgba(212, 173, 99, 0.6); border-radius: 14px;
}
.hero-scrollcue span {
	position: absolute; top: 8px; left: 50%; width: 4px; height: 9px; margin-left: -2px;
	background: var(--brass-bright); border-radius: 2px;
	animation: mwr-cue 2.1s ease-in-out infinite;
}
@keyframes mwr-cue {
	0%, 100% { transform: translateY(0); opacity: 1; }
	55% { transform: translateY(14px); opacity: 0.15; }
}

/* --------------------------------------------------------------------------
   Scroll reveal (sections)
   -------------------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out); }
[data-reveal].is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
	.hero-bg { animation: none; transform: none; }
	.hero-shade::after { animation: none; }
	.hero-media { transform: none; }
	.hero-inner { transform: none; opacity: 1; }
	.reveal-line { animation: none; opacity: 1; transform: none; }
	.hero-punch .w i { animation: none; transform: none; }
	.hero-frame i { animation: none; width: 100%; height: 1px; }
	.hero-frame i:nth-child(3), .hero-frame i:nth-child(4) { width: 1px; height: 100%; }
	.hero-rail { animation: none; opacity: 1; }
	.ticker-track { animation: none; }
	[data-reveal] { opacity: 1; transform: none; transition: none; }
	.reviews .review-card { opacity: 1; transform: none; transition: none; }
	.hero-scrollcue span { animation: none; }
	html { scroll-behavior: auto; }
}

/* Mobile CWV: skip Ken Burns so LCP image paints immediately */
@media (max-width: 900px) {
	.hero-bg { animation: none; transform: none; inset: 0; width: 100%; height: 100%; }
}

/* --------------------------------------------------------------------------
   Ticker — brass city marquee between hero and intro
   -------------------------------------------------------------------------- */
.ticker {
	background: var(--ink); border-bottom: 1px solid var(--line-dark);
	overflow: hidden; padding: 15px 0;
	position: relative;
}
.ticker::before, .ticker::after {
	content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.ticker::after { right: 0; background: linear-gradient(270deg, var(--ink), transparent); }
.ticker-track {
	display: flex; align-items: center; gap: 34px;
	width: max-content;
	animation: mwr-ticker 44s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes mwr-ticker { to { transform: translateX(-50%); } }
.ticker-track span {
	font-family: var(--font-display); font-style: italic; font-size: 16px; font-weight: 400;
	color: #d9d2c0; white-space: nowrap; letter-spacing: 0.04em;
}
.ticker-track i { color: var(--brass); font-style: normal; font-size: 11px; }

/* --------------------------------------------------------------------------
   Intro
   -------------------------------------------------------------------------- */
.intro { padding: 110px 24px 100px; background: var(--paper); position: relative; overflow: hidden; }
/* Giant outlined years — magazine folio (Daniel: 20+) */
.intro-watermark {
	position: absolute; top: 24px; right: -20px; z-index: 0;
	font-family: var(--font-display); font-weight: 300; font-style: italic;
	font-size: clamp(220px, 30vw, 430px); line-height: 0.8;
	color: transparent;
	-webkit-text-stroke: 1px rgba(185, 146, 76, 0.26);
	pointer-events: none; user-select: none;
}
.intro .lede::first-letter {
	font-family: var(--font-display); font-weight: 420;
	font-size: 3.4em; line-height: 0.8;
	float: left; padding: 6px 12px 0 0;
	color: var(--crimson);
}
.intro-inner {
	position: relative; z-index: 1;
	max-width: var(--maxw); margin: 0 auto;
	display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: 64px; align-items: start;
}
.intro .lede { font-size: 19px; line-height: 1.7; color: #2b3040; }
.attorney-quote {
	margin: 34px 0 0; padding: 26px 30px;
	border-left: 3px solid var(--brass);
	background: var(--paper-2);
}
.attorney-quote p {
	margin: 0 0 10px;
	font-family: var(--font-display); font-style: italic; font-size: 19px; line-height: 1.55;
	color: var(--ink-2);
}
.attorney-quote cite {
	font-style: normal; font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
	color: var(--crimson);
}
.intro-figure { margin: 0; position: sticky; top: 120px; }
.intro-figure img {
	width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
	box-shadow: 18px 18px 0 var(--paper-2), 0 24px 48px rgba(13, 22, 38, 0.18);
	filter: saturate(0.92) contrast(1.03);
	transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}
.intro-figure:hover img {
	transform: translate(-6px, -6px);
	box-shadow: 26px 26px 0 var(--paper-2), 0 34px 60px rgba(13, 22, 38, 0.24);
}
.intro-figure figcaption {
	margin-top: 26px; font-size: 13px; color: #6b6a5f; letter-spacing: 0.04em;
	padding-left: 18px; border-left: 2px solid var(--brass);
}

/* --------------------------------------------------------------------------
   Practice — dark editorial list
   -------------------------------------------------------------------------- */
.practice {
	background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
	padding: 100px 24px;
	position: relative; overflow: hidden;
}
.practice-head { max-width: var(--maxw); margin: 0 auto 54px; }
.practice-list {
	list-style: none; margin: 0 auto; padding: 0; max-width: var(--maxw);
	counter-reset: practice;
}
.practice-row {
	position: relative;
	display: grid; grid-template-columns: 150px minmax(0, 1fr) auto;
	gap: 30px; align-items: center;
	padding: 42px 18px;
	border-top: 1px solid var(--line-dark);
	overflow: hidden;
	transition: padding-left 0.35s var(--ease-out);
}
/* Brass wash sweeps in from the left on hover — feels engineered, not decorated */
.practice-row::before {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(185, 146, 76, 0.12), rgba(185, 146, 76, 0.03) 55%, transparent);
	transform: scaleX(0); transform-origin: left center;
	transition: transform 0.45s var(--ease-out);
	pointer-events: none;
}
.practice-row:hover::before { transform: scaleX(1); }
.practice-row:last-of-type { border-bottom: 1px solid var(--line-dark); }
.practice-row:hover { padding-left: 34px; }
.practice-num {
	font-family: var(--font-display); font-weight: 280; font-style: italic;
	font-size: clamp(56px, 6vw, 92px); line-height: 0.9;
	color: transparent;
	-webkit-text-stroke: 1px rgba(212, 173, 99, 0.55);
	transition: color 0.35s var(--ease-out), -webkit-text-stroke-color 0.35s;
}
.practice-row:hover .practice-num { color: var(--brass); -webkit-text-stroke-color: var(--brass); }
.practice-copy h3 { margin: 0 0 8px; font-family: var(--font-display); font-weight: 420; font-size: clamp(26px, 3vw, 38px); line-height: 1.1; }
.practice-copy h3 a { color: var(--white); transition: color 0.2s; }
.practice-copy h3 a::after {
	content: "\2192"; display: inline-block; margin-left: 14px;
	font-family: var(--font-body); font-size: 0.6em; vertical-align: 0.2em;
	color: var(--brass-bright);
	opacity: 0; transform: translateX(-10px);
	transition: opacity 0.3s, transform 0.3s var(--ease-out);
}
.practice-row:hover .practice-copy h3 a::after { opacity: 1; transform: translateX(0); }
.practice-copy h3 a:hover { color: var(--brass-bright); }
.practice-copy p { margin: 0; color: #aeb5c2; max-width: 640px; font-size: 15.5px; }
.practice-tag {
	font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
	color: var(--brass-bright);
	border: 1px solid rgba(212, 173, 99, 0.4); padding: 7px 14px; white-space: nowrap;
	transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.practice-row:hover .practice-tag { background: var(--brass); border-color: var(--brass); color: #16130a; }
.practice-figure {
	max-width: var(--maxw); margin: 64px auto 0;
	display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 34px; align-items: end;
}
.practice-figure img {
	width: 100%; height: 320px; object-fit: cover;
	filter: saturate(0.88);
	box-shadow: 0 30px 60px rgba(5, 9, 18, 0.5);
}
.practice-figure figcaption {
	font-family: var(--font-display); font-style: italic; font-size: 22px; line-height: 1.4;
	color: #d9d2c0; padding-bottom: 12px;
}

/* --------------------------------------------------------------------------
   Consult mid — dark band under practice, white form card
   -------------------------------------------------------------------------- */
.consult-mid {
	background:
		radial-gradient(80% 110% at 12% -8%, rgba(185, 146, 76, 0.14), transparent 55%),
		linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
	padding: 100px 24px;
	border-top: 1px solid var(--line-dark);
}
.consult-mid-inner {
	max-width: var(--maxw); margin: 0 auto;
	display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 70px; align-items: center;
}
.consult-mid-lede { color: #aeb5c2; font-size: 17px; line-height: 1.7; max-width: 520px; }
.consult-mid .link-phone-light {
	display: inline-block; margin-top: 16px;
	font-family: var(--font-display); font-size: 28px; font-weight: 500; color: var(--white);
	border-bottom: 2px solid var(--brass);
}
.consult-mid .link-phone-light:hover { color: var(--brass-bright); }
.consult-mid-fine { font-size: 13.5px; color: #8d96a8; margin-top: 14px; max-width: 440px; }

.consult-form select {
	width: 100%; padding: 14px 16px;
	font-family: var(--font-body); font-size: 15px; color: var(--ink);
	background: #f4f0e8; border: 1px solid #ddd5c4;
	appearance: none; -webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23b9924c' stroke-width='2'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 16px center;
	cursor: pointer;
	transition: border-color 0.2s, background-color 0.2s;
}
.consult-form select:focus { outline: none; border-color: var(--brass); background-color: #fff; box-shadow: 0 0 0 3px rgba(185, 146, 76, 0.18); }
.consult-form select:invalid { color: #8a887b; }

.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.consult-form { position: relative; }

/* Letterhead masthead on the mid-page form — feels like firm stationery */
.form-masthead {
	display: flex; align-items: center; gap: 16px;
	padding-bottom: 20px; margin-bottom: 22px;
	/* Classic letterhead double rule */
	border-bottom: 1px solid #d8ceb6;
	box-shadow: 0 3px 0 -2px #e9e2d1;
}
.form-seal {
	flex: none; width: 52px; height: 52px;
	display: grid; place-items: center;
	border: 1px solid var(--brass); border-radius: 50%;
	font-family: var(--font-display); font-weight: 500; font-size: 17px; letter-spacing: 0.06em;
	color: var(--brass);
	box-shadow: inset 0 0 0 3px var(--white), inset 0 0 0 4px rgba(185, 146, 76, 0.4);
}
.form-masthead-txt { flex: 1; line-height: 1.3; }
.form-masthead-txt strong {
	display: block; font-family: var(--font-display); font-weight: 460; font-size: 19px; color: var(--ink);
}
.form-masthead-txt span { font-size: 12px; color: #8a887b; letter-spacing: 0.05em; }
.form-masthead-no {
	font-family: var(--font-display); font-style: italic; font-size: 13px; color: #b6ad97;
	white-space: nowrap;
}
.form-notice {
	margin: 0 0 18px; padding: 13px 16px;
	font-size: 14px; line-height: 1.5;
}
.form-notice-ok { background: #eef3e7; border-left: 3px solid #6d8a4e; color: #3c5227; }
.form-notice-err { background: #f7e9e6; border-left: 3px solid var(--crimson); color: #6e1a29; }

/* --------------------------------------------------------------------------
   Counsel — Daniel Wright
   -------------------------------------------------------------------------- */
.counsel { background: var(--paper); padding: 110px 24px; }
.counsel-inner {
	max-width: var(--maxw); margin: 0 auto;
	display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: 70px; align-items: center;
}
.counsel-portrait { margin: 0; position: relative; }
.counsel-portrait::before {
	content: ""; position: absolute; inset: 26px -26px -26px 26px;
	border: 1px solid var(--brass); z-index: 0;
}
.counsel-portrait img {
	position: relative; z-index: 1; width: 100%; object-fit: cover;
	box-shadow: 0 30px 60px rgba(13, 22, 38, 0.22);
	filter: saturate(0.94) contrast(1.02);
	transition: transform 0.6s var(--ease-out);
}
.counsel-portrait:hover img { transform: translate(-8px, -8px); }
/* Nameplate etched onto the portrait — gallery placard */
.counsel-portrait::after {
	content: "Daniel Wright \00b7 Lead Attorney";
	position: absolute; left: 0; bottom: -1px; z-index: 2;
	padding: 10px 20px;
	background: var(--ink); color: var(--brass-bright);
	font-size: 10.5px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
	border-top: 2px solid var(--brass);
}
.counsel-role {
	font-size: 12.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
	color: #6b6a5f; margin: -8px 0 20px;
}
.counsel-points { list-style: none; margin: 24px 0; padding: 0; }
.counsel-points li {
	padding: 13px 0 13px 34px; position: relative;
	border-bottom: 1px solid var(--line-light);
	font-size: 16px;
}
.counsel-points li::before {
	content: ""; position: absolute; left: 2px; top: 21px;
	width: 16px; height: 2px; background: var(--brass);
}
.counsel-points strong { color: var(--ink); }
.counsel-team {
	display: flex; gap: 18px; align-items: center; margin: 28px 0;
	padding: 18px 22px; background: var(--paper-2);
}
.counsel-team img {
	width: 64px; height: 64px; object-fit: cover; object-position: 20% 25%; border-radius: 50%;
	border: 2px solid var(--brass);
	flex: none;
}
.counsel-team p { margin: 0; font-size: 14.5px; color: #45495a; }
.counsel-actions { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; margin-top: 10px; }
.link-phone {
	font-family: var(--font-display); font-size: 24px; font-weight: 500; color: var(--ink);
	border-bottom: 2px solid var(--brass);
	transition: color 0.2s;
}
.link-phone:hover { color: var(--crimson); }

/* --------------------------------------------------------------------------
   Reviews — dark band
   -------------------------------------------------------------------------- */
.reviews {
	background: linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
	padding: 100px 24px;
	position: relative; overflow: hidden;
}
.reviews-ornament {
	position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
	font-family: var(--font-display); font-size: 480px; line-height: 1;
	color: rgba(185, 146, 76, 0.07);
	pointer-events: none; user-select: none;
}
/* Staggered card entrance once the section reveals */
.reviews .review-card { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out), border-color 0.3s, background 0.3s; }
.reviews.is-in .review-card { opacity: 1; transform: translateY(0); }
.reviews.is-in .review-card:nth-child(1) { transition-delay: 0.05s; }
.reviews.is-in .review-card:nth-child(2) { transition-delay: 0.15s; }
.reviews.is-in .review-card:nth-child(3) { transition-delay: 0.25s; }
.reviews.is-in .review-card:nth-child(4) { transition-delay: 0.35s; }
.reviews.is-in .review-card:nth-child(5) { transition-delay: 0.45s; }
.reviews.is-in .review-card:nth-child(6) { transition-delay: 0.55s; }
.reviews.is-in .review-card:hover { transform: translateY(-6px); transition-delay: 0s; }
.reviews-head { max-width: var(--maxw); margin: 0 auto 50px; text-align: center; }
.reviews-lede { color: #aeb5c2; max-width: 560px; margin: 0 auto; }
.review-cards {
	max-width: var(--maxw); margin: 0 auto;
	display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px;
}
/* Lead + closing testimonials set like pull-quotes — mirrored two-column spans */
.review-card:first-child { grid-column: span 2; padding: 44px 44px 28px; }
.review-card:first-child p { font-size: clamp(22px, 2.2vw, 30px); line-height: 1.45; }
.review-card:first-child .stars { font-size: 18px; }
.review-card:last-child { grid-column: 2 / span 2; padding: 40px 40px 26px; }
.review-card:last-child p { font-size: clamp(19px, 1.8vw, 24px); line-height: 1.5; }
.review-card {
	background: linear-gradient(170deg, rgba(246, 241, 231, 0.06), rgba(246, 241, 231, 0.025));
	border: 1px solid var(--line-dark);
	border-top: 2px solid rgba(212, 173, 99, 0.5);
	padding: 34px 28px 24px;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s var(--ease-out), border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.review-card::before {
	content: "\201C";
	position: absolute; top: -26px; right: 10px;
	font-family: var(--font-display); font-size: 130px; line-height: 1;
	color: rgba(212, 173, 99, 0.14);
	pointer-events: none;
}
.review-card:hover {
	transform: translateY(-6px);
	border-color: rgba(212, 173, 99, 0.6);
	border-top-color: var(--brass-bright);
	background: linear-gradient(170deg, rgba(246, 241, 231, 0.095), rgba(246, 241, 231, 0.045));
	box-shadow: 0 26px 50px rgba(4, 8, 16, 0.45);
}
.review-card footer { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; border-top: 1px solid rgba(212, 173, 99, 0.16); padding-top: 14px; }
.review-card .stars { color: var(--brass-bright); letter-spacing: 4px; font-size: 15px; margin-bottom: 14px; }
.review-card p {
	margin: 0 0 18px;
	font-family: var(--font-display); font-size: 17.5px; font-style: italic; line-height: 1.55;
	color: #ede7d8;
}
.review-card footer strong { display: block; color: var(--white); font-size: 14px; }
.review-card footer span { color: #8d96a8; font-size: 12.5px; }

/* --------------------------------------------------------------------------
   Results
   -------------------------------------------------------------------------- */
.results {
	background:
		radial-gradient(70% 90% at 50% -20%, rgba(185, 146, 76, 0.12), transparent 60%),
		var(--paper);
	padding: 110px 24px 100px;
	position: relative;
}
.results-head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.results-lede { color: #45495a; }
.results-grid {
	max-width: var(--maxw); margin: 0 auto;
	display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
}
.result-cell {
	padding: 44px 26px 38px; text-align: center;
	position: relative;
	transition: transform 0.35s var(--ease-out);
}
/* Brass ticks instead of a full cage — lighter, more expensive */
.result-cell::before {
	content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
	width: 44px; height: 3px; background: var(--brass);
	transition: width 0.4s var(--ease-out);
}
.result-cell + .result-cell::after {
	content: ""; position: absolute; left: 0; top: 22%; bottom: 22%;
	width: 1px; background: var(--line-light);
}
.result-cell:hover { transform: translateY(-6px); }
.result-cell:hover::before { width: 100%; }
.result-amount {
	display: block;
	font-family: var(--font-display); font-weight: 340; font-style: italic;
	font-size: clamp(34px, 3.8vw, 52px); letter-spacing: -0.02em; color: var(--ink);
	margin-bottom: 10px;
}
.result-amount::first-letter { color: var(--brass); }
.result-lbl {
	font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #6b6a5f;
}
.results-fine { max-width: var(--maxw); margin: 22px auto 0; font-size: 12.5px; color: #8a887b; text-align: center; }

/* --------------------------------------------------------------------------
   FAQ band
   -------------------------------------------------------------------------- */
.faq-band {
	background: linear-gradient(180deg, var(--ink) 0%, var(--ink-3) 130%);
	padding: 100px 24px;
}
.faq-inner {
	max-width: var(--maxw); margin: 0 auto;
	display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 70px; align-items: start;
}
.faq-lede { color: #aeb5c2; }
.faq-phone {
	display: inline-block; margin-top: 20px;
	font-family: var(--font-display); font-size: 30px; color: var(--white);
	border-bottom: 2px solid var(--brass);
}
.faq-phone:hover { color: var(--brass-bright); }
.faq-list { border-top: 1px solid var(--line-dark); }
.faq-item { border-bottom: 1px solid var(--line-dark); }
.faq-item summary {
	list-style: none; cursor: pointer;
	display: grid; grid-template-columns: 52px minmax(0, 1fr) 30px; align-items: center; gap: 12px;
	padding: 22px 4px;
	transition: background 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: rgba(185, 146, 76, 0.05); }
.faq-num {
	font-family: var(--font-display); font-style: italic; font-size: 19px; color: var(--brass);
}
.faq-q { color: var(--white); font-weight: 600; font-size: 17px; line-height: 1.4; }
.faq-chevron {
	width: 12px; height: 12px; justify-self: end;
	border-right: 2px solid var(--brass-bright); border-bottom: 2px solid var(--brass-bright);
	transform: rotate(45deg); transition: transform 0.3s var(--ease-out);
}
.faq-item[open] .faq-chevron { transform: rotate(225deg); }
.faq-a { padding: 0 4px 26px 68px; }
.faq-a p { margin: 0; color: #b9c0cc; font-size: 15.5px; }
.faq-a a { color: var(--brass-bright); }

/* --------------------------------------------------------------------------
   Consult
   -------------------------------------------------------------------------- */
.consult {
	background:
		radial-gradient(90% 120% at 85% -10%, rgba(185, 146, 76, 0.16), transparent 55%),
		var(--paper-2);
	padding: 110px 24px;
}
.consult-inner {
	max-width: var(--maxw); margin: 0 auto;
	display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 70px; align-items: center;
}
.consult-kicker {
	font-size: 12px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
	color: var(--crimson); margin: 0 0 14px;
}
.consult-h2 {
	font-family: var(--font-display); font-weight: 360;
	font-size: clamp(44px, 5.6vw, 76px); line-height: 1; letter-spacing: -0.02em; margin: 0 0 20px; color: var(--ink);
}
.consult-h2 em { font-style: italic; color: var(--brass); }
.cta-phone.big {
	display: inline-block; margin: 18px 0 8px;
	font-size: clamp(30px, 3.4vw, 42px); color: var(--ink);
	border-bottom: 3px solid var(--brass);
}
.cta-phone.big:hover { color: var(--crimson); }
.consult-addr { font-size: 14px; color: #6b6a5f; letter-spacing: 0.03em; }

.consult-form {
	background: var(--white);
	padding: 40px 38px 34px;
	box-shadow: 0 34px 70px rgba(13, 22, 38, 0.16);
	border-top: 4px solid var(--brass);
}
.consult-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.consult-form input,
.consult-form textarea {
	width: 100%; padding: 14px 16px;
	font-family: var(--font-body); font-size: 15px; color: var(--ink);
	background: #f4f0e8; border: 1px solid #ddd5c4;
	transition: border-color 0.2s, background 0.2s;
}
.consult-form input:focus,
.consult-form textarea:focus {
	outline: none; border-color: var(--brass); background: #fff;
	box-shadow: 0 0 0 3px rgba(185, 146, 76, 0.18);
}
.consult-form textarea { resize: vertical; margin-bottom: 18px; }
.consult-form .btn-brass { width: 100%; }
.consult-form .fine { margin: 14px 0 0; font-size: 12px; color: #8a887b; text-align: center; }
.consult-form .cf-turnstile { margin: 0 0 16px; }
.consult-mid-addr { margin-top: 8px !important; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: #aeb5c2; }
.footer-band {
	border-bottom: 1px solid var(--line-dark);
	padding: 22px 24px; text-align: center;
}
.footer-band-line { margin: 0; font-size: 14px; color: #c6ccd6; max-width: 900px; margin-inline: auto; }
.footer-band-line a { color: var(--brass-bright); font-weight: 600; }
.footer-grid {
	max-width: var(--maxw); margin: 0 auto; padding: 64px 24px 50px;
	display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 46px;
}
.footer-logo img { width: 170px; }
.footer-tag { font-size: 13.5px; margin: 18px 0 6px; color: #c6ccd6; }
.footer-values { font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brass); }
.footer-h {
	font-family: var(--font-display); font-weight: 460; font-size: 18px; color: var(--white);
	margin: 0 0 16px;
}
.footer-addr { margin: 0 0 10px; font-size: 14.5px; line-height: 1.6; }
.footer-phone { font-family: var(--font-display); font-size: 20px; color: var(--brass-bright); }
.footer-note { font-size: 12.5px; color: #8d96a8; margin: 8px 0 0; }
.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin-bottom: 9px; }
.footer-list a { color: #c6ccd6; font-size: 14.5px; transition: color 0.2s; }
.footer-list a:hover { color: var(--brass-bright); }
.footer-legal {
	border-top: 1px solid var(--line-dark);
	padding: 20px 24px 26px; text-align: center;
}
.footer-legal p { margin: 0 auto; max-width: 880px; font-size: 12px; color: #7a8294; line-height: 1.6; }
.footer-credit { margin: 12px auto 0 !important; text-align: center; }
.footer-credit a {
	color: #8d96a8;
	text-decoration: none;
	font-size: 12px;
	letter-spacing: 0.02em;
}
.footer-credit a:hover { color: var(--brass-bright); }

/* Quick contact dock — matches live machilaw.com (call / email / text),
   restyled to the ink/brass system: brass hairline, brass top rule, brass dividers */
.float-contact {
	position: fixed;
	right: 88px;
	bottom: 26px;
	z-index: 99;
	display: flex;
	align-items: stretch;
	background: rgba(13, 22, 38, 0.94);
	border: 1px solid rgba(212, 173, 99, 0.45);
	border-top: 2px solid var(--brass);
	backdrop-filter: blur(8px);
	box-shadow: 0 12px 30px rgba(6, 10, 20, 0.5);
}
.float-contact__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 48px;
	color: #ede7d8;
	border-right: 1px solid rgba(212, 173, 99, 0.28);
	transition: background 0.2s, color 0.2s;
}
.float-contact__btn:last-child { border-right: none; }
.float-contact__btn svg { width: 18px; height: 18px; }
.float-contact__btn:hover {
	background: rgba(185, 146, 76, 0.18);
	color: var(--brass-bright);
}
.float-contact__btn:focus-visible { outline-offset: -3px; }

/* Back to top */
.back-to-top {
	position: fixed; right: 26px; bottom: 26px; z-index: 90;
	width: 48px; height: 48px; padding: 12px;
	background: linear-gradient(135deg, var(--brass-bright), var(--brass) 70%);
	color: #16130a; border: none; cursor: pointer;
	border-top: 2px solid rgba(255, 255, 255, 0.35);
	opacity: 0; visibility: hidden; transform: translateY(14px);
	transition: opacity 0.3s, transform 0.3s, visibility 0.3s, box-shadow 0.3s;
	box-shadow: 0 12px 26px rgba(6, 10, 20, 0.4);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--brass-bright); box-shadow: 0 16px 32px rgba(6, 10, 20, 0.5); }

@media (max-width: 520px) {
	.float-contact { right: 78px; bottom: 18px; }
	.float-contact__btn { width: 46px; height: 44px; }
	.back-to-top { right: 16px; bottom: 18px; width: 44px; height: 44px; }
}

/* --------------------------------------------------------------------------
   Generic page
   -------------------------------------------------------------------------- */
.page-main { max-width: 880px; margin: 0 auto; padding: 80px 24px 100px; }
.page-title { font-family: var(--font-display); font-weight: 420; font-size: clamp(34px, 4.4vw, 52px); line-height: 1.08; }
.page-content h2, .page-content h3 { font-family: var(--font-display); font-weight: 460; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1120px) {
	.header-nav-links > li > a { padding: 12px 9px; font-size: 13.5px; }
	.review-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.review-card:last-child { grid-column: span 2; }
	.results-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.result-cell:nth-child(3)::after { display: none; }
}

@media (max-width: 1020px) {
	.hero-rail { display: none; }
	.hero-inner--editorial { grid-template-columns: 1fr; align-items: start; gap: 46px; }
	.hero-ledger { max-width: 480px; }
	.hero-scrollcue { display: none; }
	.header-cta { display: none; }
	.mobile-menu-toggle {
		display: flex; flex-direction: column; gap: 5px; justify-content: center;
		margin-left: auto;
		width: 46px; height: 42px; padding: 10px;
		background: transparent; border: 1px solid var(--line-dark); cursor: pointer;
	}
	.mobile-menu-toggle span { display: block; height: 2px; background: var(--brass-bright); }
	.nav-links-main {
		display: none;
		position: absolute; top: 100%; left: 0; right: 0;
		background: #101b31; border-bottom: 1px solid var(--line-dark);
		max-height: calc(100vh - 90px); overflow-y: auto;
	}
	.nav-links-main.is-open { display: block; }
	.header-nav-links { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0; }
	.header-nav-links > li > a { padding: 15px 24px; font-size: 16px; border-bottom: 1px solid rgba(185, 146, 76, 0.12); }
	.header-nav-links .sub-menu {
		position: static; min-width: 0; box-shadow: none; border: none;
		border-left: 2px solid var(--brass);
		margin: 0 0 8px 24px;
		display: none; opacity: 1; visibility: visible; transform: none;
	}
	.header-nav-links > li.sub-menu-open > .sub-menu { display: block; }

	.intro-inner, .counsel-inner, .faq-inner, .consult-inner, .consult-mid-inner { grid-template-columns: 1fr; gap: 46px; }
	.intro-figure { position: static; }
	.practice-figure { grid-template-columns: 1fr; }
	.counsel-portrait::before { display: none; }
}

@media (max-width: 640px) {
	.alert-rail-inner { font-size: 12.5px; gap: 8px; }
	.hero { min-height: max(88vh, 600px); }
	.hero-inner { padding: 90px 20px 96px; }
	.hero-punch { font-size: clamp(56px, 16.5vw, 74px); line-height: 0.94; }
	.hero-lede { padding-left: 16px; }
	.hero-ledger { padding: 22px 20px 18px; }
	.ledger-row { grid-template-columns: 78px minmax(0, 1fr); }
	.ledger-row dt { font-size: 26px; }
	.hero-baseline { gap: 12px; padding: 12px 16px; justify-content: flex-start; overflow: hidden; flex-wrap: nowrap; }
	.hero-baseline span { font-size: 9.5px; letter-spacing: 0.16em; }
	/* text-indent compensates trailing letter-space so the line optically centers */
	.hero-firm { letter-spacing: 0.3em; font-size: 13px; text-indent: 0.3em; }
	.hero-kicker { gap: 10px; font-size: 10.5px; letter-spacing: 0.22em; }
	.kicker-rule { width: 26px; }
	.hero-frame { inset: 10px; }
	.hero-actions { flex-direction: column; }
	.btn-brass { width: 100%; text-align: center; }
	.btn-callchip { align-items: center; width: 100%; }
	.ticker-track { gap: 22px; }
	.ticker-track span { font-size: 14px; }
	.intro-watermark { font-size: 190px; top: auto; bottom: -30px; right: -24px; }
	.intro .lede::first-letter { font-size: 2.9em; }
	.reviews-ornament { font-size: 300px; top: -40px; }
	.form-masthead { gap: 12px; }
	.form-masthead-no { display: none; }
	.practice-row { grid-template-columns: minmax(0, 1fr); gap: 10px; padding: 30px 8px; }
	.practice-row:hover { padding-left: 8px; }
	.practice-num { font-size: 44px; line-height: 1; }
	.practice-tag { display: none; }
	.review-cards { grid-template-columns: 1fr; }
	.review-card:first-child, .review-card:last-child { grid-column: auto; padding: 34px 28px 24px; }
	.review-card:first-child p, .review-card:last-child p { font-size: 20px; }
	.results-grid { grid-template-columns: 1fr; gap: 8px; }
	.result-cell + .result-cell::after { display: none; }
	main section[data-reveal] .eyebrow::before { display: block; margin: 0 0 4px; padding: 0; border: none; }
	.consult-form { padding: 28px 22px; }
	.consult-form .row { grid-template-columns: 1fr; }
	.consult-mid { padding: 80px 20px; }
	.faq-a { padding-left: 4px; }
	.footer-grid { grid-template-columns: 1fr; gap: 34px; }
}

/* ==========================================================================
   Reviews interior page (page-reviews.php) — editorial folio of client letters
   ========================================================================== */

/* Reviews page carries its own folio numbering separate from homepage acts */
.rvw { counter-reset: mwr-act; }

/* --- Hero — DFW skyline fade under ink wash -------------------------------- */
.rvw-hero {
	position: relative;
	background: var(--ink);
	padding: clamp(110px, 15vw, 170px) 24px clamp(80px, 10vw, 120px);
	overflow: hidden;
}
.rvw-hero-media {
	position: absolute; inset: 0; z-index: 0;
	pointer-events: none;
}
.rvw-hero-bg {
	position: absolute; inset: 0;
	background-size: cover;
	background-position: center 42%;
	transform: scale(1.04);
}
.rvw-hero-fade {
	position: absolute; inset: 0;
	background:
		linear-gradient(100deg, rgba(7, 11, 20, 0.94) 0%, rgba(7, 11, 20, 0.82) 38%, rgba(7, 11, 20, 0.55) 62%, rgba(7, 11, 20, 0.72) 100%),
		linear-gradient(180deg, rgba(7, 11, 20, 0.35) 0%, transparent 40%, rgba(7, 11, 20, 0.88) 100%),
		radial-gradient(110% 130% at 78% -20%, rgba(212, 173, 99, 0.12), transparent 55%);
}
.rvw-hero .hero-frame,
.rvw-hero-ornament,
.rvw-hero-inner { position: relative; z-index: 2; }
.rvw-hero-ornament {
	position: absolute; top: -90px; right: 2%; z-index: 1;
	font-family: var(--font-display); font-size: clamp(340px, 44vw, 640px); line-height: 1;
	color: rgba(185, 146, 76, 0.08);
	pointer-events: none; user-select: none;
}
.rvw-hero-inner { max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 2; }
.rvw-kicker {
	display: flex; align-items: center; gap: 18px;
	font-size: 12.5px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
	color: var(--brass-bright); margin: 0 0 28px;
}
.rvw-h1 {
	margin: 0 0 30px;
	font-family: var(--font-display); font-weight: 340;
	font-size: clamp(56px, 9.5vw, 128px);
	line-height: 0.95; letter-spacing: -0.025em;
	color: var(--white);
}
.rvw-h1 span, .rvw-h1 em { display: block; }
.rvw-h1 em {
	font-style: italic; font-weight: 380;
	background: linear-gradient(100deg, #e8c886 10%, var(--brass-bright) 45%, #f0d9a4 70%, var(--brass) 100%);
	-webkit-background-clip: text; background-clip: text;
	-webkit-text-fill-color: transparent; color: var(--brass-bright);
}
.rvw-lede {
	max-width: 640px; margin: 0 0 44px;
	font-size: clamp(16px, 1.6vw, 19px); line-height: 1.7; color: #d5dae0;
	border-left: 2px solid var(--brass); padding-left: 22px;
	text-wrap: balance;
}
.rvw-plaque {
	display: inline-flex; flex-wrap: wrap;
	border: 1px solid rgba(212, 173, 99, 0.4);
	border-top: 2px solid var(--brass);
	background: linear-gradient(168deg, rgba(9, 15, 27, 0.72), rgba(13, 22, 38, 0.5));
	backdrop-filter: blur(8px);
}
.rvw-plaque-cell {
	display: flex; flex-direction: column; gap: 3px;
	padding: 20px 34px;
	border-right: 1px solid rgba(212, 173, 99, 0.22);
}
.rvw-plaque-cell:last-child { border-right: none; }
.rvw-plaque-cell strong {
	font-family: var(--font-display); font-weight: 380;
	font-size: 34px; line-height: 1; color: var(--white);
}
.rvw-plaque-cell strong i { font-style: normal; color: var(--brass-bright); font-size: 0.65em; }
.rvw-plaque-cell .stars { color: var(--brass-bright); letter-spacing: 3px; font-size: 13px; }
.rvw-plaque-cell > span:last-child {
	font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
	color: #8d96a8;
}

/* --- Featured pull-quote — parchment broadsheet --------------------------- */
.rvw-feature { background: var(--paper); padding: clamp(80px, 10vw, 130px) 24px; }
.rvw-feature-inner {
	max-width: var(--maxw); margin: 0 auto;
	display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
	gap: clamp(40px, 6vw, 90px); align-items: start;
}
.rvw-feature .eyebrow { grid-column: 1 / -1; }
.rvw-feature-quote { margin: 0; position: relative; }
.rvw-feature-quote p {
	margin: 0 0 34px;
	font-family: var(--font-display); font-style: italic; font-weight: 360;
	font-size: clamp(28px, 3.6vw, 52px); line-height: 1.25; letter-spacing: -0.015em;
	color: var(--ink); text-wrap: balance;
}
.rvw-feature-quote p em { font-style: italic; color: var(--brass); }
.rvw-feature-quote footer { display: flex; flex-direction: column; gap: 4px; padding-left: 26px; border-left: 2px solid var(--brass); }
.rvw-sig { font-family: var(--font-display); font-style: italic; font-size: 22px; color: var(--ink); }
.rvw-sig-meta { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--crimson); }
.rvw-feature-side { display: flex; flex-direction: column; gap: 26px; padding-top: 10px; }
.rvw-side-quote {
	margin: 0; padding: 24px 26px 18px;
	background: var(--white);
	border: 1px solid var(--line-light);
	border-top: 2px solid var(--brass);
	box-shadow: 0 18px 40px rgba(13, 22, 38, 0.08);
}
.rvw-side-quote .stars { color: var(--brass); letter-spacing: 4px; font-size: 14px; margin-bottom: 10px; }
.rvw-side-quote p { margin: 0 0 14px; font-family: var(--font-display); font-style: italic; font-size: 17px; line-height: 1.55; color: #2a3549; }
.rvw-side-quote footer { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; border-top: 1px solid var(--line-light); padding-top: 10px; }
.rvw-side-quote footer strong { font-size: 13.5px; color: var(--ink); }
.rvw-side-quote footer span { font-size: 12px; color: #7a8194; }

/* --- Testimonial ledger — dark masonry columns ---------------------------- */
.rvw-ledger {
	background: linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
	padding: clamp(90px, 11vw, 130px) 24px;
	position: relative; overflow: hidden;
}
.rvw-ledger-head { max-width: var(--maxw); margin: 0 auto 56px; text-align: center; }
.rvw-ledger-lede { color: #aeb5c2; max-width: 620px; margin: 0 auto; }
.rvw-columns {
	max-width: var(--maxw); margin: 0 auto;
	columns: 3; column-gap: 24px;
}
.rvw-entry {
	break-inside: avoid; margin: 0 0 24px;
	background: linear-gradient(170deg, rgba(246, 241, 231, 0.06), rgba(246, 241, 231, 0.025));
	border: 1px solid var(--line-dark);
	border-top: 2px solid rgba(212, 173, 99, 0.5);
	padding: 30px 28px 22px;
	position: relative; overflow: hidden;
	transition: transform 0.3s var(--ease-out), border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.rvw-entry::before {
	content: "\201C";
	position: absolute; top: -24px; right: 8px;
	font-family: var(--font-display); font-size: 120px; line-height: 1;
	color: rgba(212, 173, 99, 0.12);
	pointer-events: none;
}
.rvw-entry:hover {
	transform: translateY(-5px);
	border-color: rgba(212, 173, 99, 0.6);
	border-top-color: var(--brass-bright);
	background: linear-gradient(170deg, rgba(246, 241, 231, 0.095), rgba(246, 241, 231, 0.045));
	box-shadow: 0 26px 50px rgba(4, 8, 16, 0.45);
}
.rvw-tag {
	display: inline-block; margin-bottom: 14px;
	font-size: 10.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
	color: var(--brass-bright);
	border: 1px solid rgba(212, 173, 99, 0.4);
	padding: 4px 10px;
}
.rvw-entry .stars { color: var(--brass-bright); letter-spacing: 4px; font-size: 14px; margin-bottom: 12px; }
.rvw-entry p {
	margin: 0 0 18px;
	font-family: var(--font-display); font-style: italic;
	font-size: 17px; line-height: 1.55; color: #ede7d8;
}
.rvw-entry footer {
	display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
	border-top: 1px solid rgba(212, 173, 99, 0.16); padding-top: 12px;
}
.rvw-entry footer strong { color: var(--white); font-size: 14px; }
.rvw-entry footer span { color: #8d96a8; font-size: 12.5px; }
.rvw-ledger-fine { max-width: var(--maxw); margin: 34px auto 0; text-align: center; font-size: 12.5px; color: #778093; }

/* --- Trust strip ----------------------------------------------------------- */
.rvw-trust { background: var(--paper-2); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); padding: 44px 24px; }
.rvw-trust-inner {
	max-width: var(--maxw); margin: 0 auto;
	display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px;
	text-align: center;
}
.rvw-trust-cell { position: relative; }
.rvw-trust-cell + .rvw-trust-cell::after {
	content: ""; position: absolute; left: -10px; top: 12%; bottom: 12%;
	width: 1px; background: var(--line-light);
}
.rvw-trust-cell strong {
	display: block;
	font-family: var(--font-display); font-weight: 380;
	font-size: clamp(28px, 3vw, 40px); line-height: 1.1; color: var(--ink);
}
.rvw-trust-cell span { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--crimson); }

/* --- CTA band --------------------------------------------------------------- */
.rvw-cta {
	background:
		radial-gradient(90% 140% at 50% -40%, rgba(212, 173, 99, 0.14), transparent 60%),
		linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
	padding: clamp(90px, 11vw, 140px) 24px;
	text-align: center;
}
.rvw-cta-inner { max-width: 780px; margin: 0 auto; }
.rvw-cta-h2 {
	margin: 0 0 22px;
	font-family: var(--font-display); font-weight: 360;
	font-size: clamp(38px, 5.4vw, 66px); line-height: 1.05; letter-spacing: -0.02em;
	color: var(--white); text-wrap: balance;
}
.rvw-cta-h2 em { font-style: italic; color: var(--brass-bright); }
.rvw-cta-lede { color: #c7cdd8; margin: 0 0 36px; }
.rvw-cta-actions { display: flex; gap: 18px; justify-content: center; align-items: center; flex-wrap: wrap; }
.rvw-cta-addr { margin: 30px 0 0; font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; color: #8d96a8; }

/* --- Reviews page responsive ------------------------------------------------ */
@media (max-width: 1120px) {
	.rvw-columns { columns: 2; }
}
@media (max-width: 900px) {
	.rvw-feature-inner { grid-template-columns: 1fr; }
	.rvw-trust-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 20px; }
	.rvw-trust-cell:nth-child(3)::after { display: none; }
}
@media (max-width: 680px) {
	.rvw-columns { columns: 1; }
	.rvw-plaque { display: flex; width: 100%; flex-direction: column; }
	.rvw-plaque-cell { border-right: none; border-bottom: 1px solid rgba(212, 173, 99, 0.22); padding: 16px 24px; }
	.rvw-plaque-cell:last-child { border-bottom: none; }
	.rvw-cta-actions { flex-direction: column; }
	.rvw-cta-actions .btn-brass, .rvw-cta-actions .btn-callchip { width: 100%; text-align: center; align-items: center; }
}

/* ==========================================================================
   Reviews LIGHT interior (page-reviews-light.php) — paper body, ink hero only
   Production interior shell candidate (less continuous navy).
   ========================================================================== */

.rvw--light .rvw-hero {
	padding: clamp(96px, 12vw, 140px) 24px clamp(64px, 8vw, 96px);
}
.rvw--light .rvw-hero-fade {
	background:
		linear-gradient(100deg, rgba(7, 11, 20, 0.9) 0%, rgba(7, 11, 20, 0.72) 42%, rgba(7, 11, 20, 0.42) 68%, rgba(7, 11, 20, 0.58) 100%),
		linear-gradient(180deg, rgba(7, 11, 20, 0.28) 0%, transparent 45%, rgba(7, 11, 20, 0.78) 100%),
		radial-gradient(110% 130% at 78% -20%, rgba(212, 173, 99, 0.1), transparent 55%);
}
.rvw--light .rvw-hero-bg { background-position: center 55%; }

/* Ledger → white / parchment content plane */
.rvw--light .rvw-ledger {
	background: var(--white);
	border-top: 1px solid var(--line-light);
}
.rvw--light .rvw-ledger-head .section-h2 { color: var(--ink); }
.rvw--light .rvw-ledger-lede { color: #4a5568; }
.rvw--light .rvw-columns {
	columns: unset;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}
.rvw--light .rvw-entry {
	margin: 0;
	background: var(--paper);
	border: 1px solid var(--line-light);
	border-top: 2px solid var(--brass);
	box-shadow: 0 14px 36px rgba(13, 22, 38, 0.06);
}
.rvw--light .rvw-entry::before { color: rgba(185, 146, 76, 0.18); }
.rvw--light .rvw-entry:hover {
	transform: translateY(-4px);
	border-color: rgba(185, 146, 76, 0.45);
	border-top-color: var(--brass);
	background: var(--white);
	box-shadow: 0 22px 48px rgba(13, 22, 38, 0.1);
}
.rvw--light .rvw-tag {
	color: var(--crimson);
	border-color: rgba(160, 36, 55, 0.28);
	background: rgba(160, 36, 55, 0.04);
}
.rvw--light .rvw-entry .stars { color: var(--brass); }
.rvw--light .rvw-entry p { color: #2a3549; }
.rvw--light .rvw-entry footer {
	border-top-color: var(--line-light);
}
.rvw--light .rvw-entry footer strong { color: var(--ink); }
.rvw--light .rvw-entry footer span { color: #7a8194; }
.rvw--light .rvw-ledger-fine { color: #7a8194; }

.rvw--light .rvw-trust {
	background: var(--paper);
	border-top: 1px solid var(--line-light);
	border-bottom: none;
}

/* Light bridge into consult band (footer) — no second ink CTA wall */
.rvw-bridge {
	background: var(--paper-2);
	border-top: 1px solid var(--line-light);
	padding: clamp(64px, 8vw, 100px) 24px;
	text-align: center;
}
.rvw-bridge-inner { max-width: 720px; margin: 0 auto; }
.rvw-bridge-lede {
	color: #4a5568;
	margin: 0 auto 28px;
	max-width: 560px;
	font-size: 17px;
	line-height: 1.7;
}
.rvw--light .rvw-bridge .btn-brass { display: inline-flex; }

@media (max-width: 1120px) {
	.rvw--light .rvw-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
	.rvw--light .rvw-columns { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Combine-v3 Near you mega on Rev1 dark-blue top nav (2026-07-19)
   Blue sticky bar (Daniel Rev1) + Veitch mega dropdown (combine-v3).
   ========================================================================== */

:root {
	--navy: #0a2a4a;
	--navy-2: #123a5c;
	--navy-deep: #071a2e;
	--navy-mid: #123a5c;
	--fog: #7d8aa0;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header--combine-nav {
	position: sticky;
	top: 0;
	z-index: 100;
	background: linear-gradient(180deg, rgba(16, 26, 44, 0.98), rgba(13, 22, 38, 0.97));
	backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(212, 173, 99, 0.28);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
	transition: box-shadow 0.3s ease;
}
.site-header--combine-nav.is-scrolled {
	box-shadow: 0 10px 34px rgba(6, 10, 20, 0.5);
}

.header__inner {
	position: relative;
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 10px 14px;
	padding: 10px 18px;
}
.site-header--combine-nav .logo img {
	height: 44px;
	width: auto;
	filter: brightness(1.05);
}
.site-header--combine-nav.is-scrolled .logo img {
	height: 38px;
}
.nav-toggle {
	display: none;
	background: none;
	border: 0;
	width: 44px;
	height: 44px;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	cursor: pointer;
	padding: 0;
}
.nav-toggle span {
	display: block;
	height: 2px;
	background: var(--brass-bright);
	width: 22px;
}

.nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4px 10px;
	flex-wrap: nowrap;
	min-width: 0;
}
.nav > a {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #e8e2d4 !important;
	text-decoration: none;
	padding: 10px 4px;
	white-space: nowrap;
	flex-shrink: 0;
	border-bottom: 2px solid transparent;
}
.nav > a:hover {
	color: var(--brass-bright) !important;
}
.menu-item--mega {
	position: static;
	flex-shrink: 0;
}
.nav__mega-btn {
	background: transparent;
	color: var(--brass-bright);
	border: 0;
	cursor: pointer;
	font-family: inherit;
	padding: 10px 4px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	white-space: nowrap;
}
.nav__mega-btn:hover,
.nav__mega.is-open .nav__mega-btn {
	color: #fff;
}
.nav__caret {
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	opacity: 0.75;
}

/* —— Mega dropdown = combine-v3 light panel (unchanged system) —— */
.mega {
	position: absolute;
	left: 50%;
	top: calc(100% - 2px);
	width: min(1080px, calc(100vw - 1.5rem));
	transform: translateX(-50%);
	padding-top: 14px;
	background: transparent;
	border: 0;
	box-shadow: none;
	z-index: 90;
	overflow: visible;
}
.mega[hidden] {
	display: none !important;
}
.nav__mega.is-open .mega {
	display: block;
}
.mega__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1.1rem 1.35rem 1rem;
	border: 1px solid rgba(10, 49, 97, 0.12);
	border-bottom: 1px solid rgba(10, 49, 97, 0.1);
	box-shadow: 0 32px 80px rgba(8, 37, 72, 0.18);
	background:
		radial-gradient(900px 220px at 10% 0%, rgba(184, 146, 63, 0.12), transparent 55%),
		#fffcf7;
}
.mega__kicker {
	margin: 0 0 0.45rem;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--brass);
}
.mega__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.25rem, 2.2vw, 1.75rem);
	font-weight: 400;
	color: var(--navy-deep);
	line-height: 1.2;
	max-width: 28ch;
}
.mega__all {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--navy) !important;
	text-decoration: none;
	white-space: nowrap;
}
.mega__all:hover {
	color: var(--brass) !important;
}
.mega__featured {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	padding: 1.1rem 1.35rem;
	border-bottom: 1px solid rgba(10, 49, 97, 0.1);
	background: #fffcf7;
	border-left: 1px solid rgba(10, 49, 97, 0.12);
	border-right: 1px solid rgba(10, 49, 97, 0.12);
}
.mega--practice {
	width: min(720px, calc(100vw - 1.5rem));
}
.mega__featured--2 {
	grid-template-columns: repeat(2, 1fr);
}
.mega--practice .mega__card {
	min-height: 9.5rem;
}
.mega--practice .mega__card-meta {
	line-height: 1.45;
	max-width: 36ch;
}
.mega__card {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 0.9rem 1rem 1rem;
	min-height: 7.5rem;
	background: #fff;
	border: 1px solid rgba(10, 49, 97, 0.12);
	border-left: 3px solid var(--brass);
	text-decoration: none;
	color: inherit !important;
	transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.mega__card:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(8, 37, 72, 0.12);
	color: inherit !important;
}
.mega__card-note {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--brass);
}
.mega__card-city {
	font-family: var(--font-display);
	font-size: 1.25rem;
	color: var(--navy);
	font-weight: 500;
}
.mega__card-meta {
	font-size: 13px;
	color: var(--fog);
}
.mega__card-go {
	margin-top: auto;
	padding-top: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--navy);
}
.mega__regions {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	padding: 1rem 1.35rem;
	border-bottom: 1px solid rgba(10, 49, 97, 0.1);
	background: #fffcf7;
	border-left: 1px solid rgba(10, 49, 97, 0.12);
	border-right: 1px solid rgba(10, 49, 97, 0.12);
}
.mega__region-label {
	margin: 0 0 10px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--fog);
}
.mega__cities {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.mega__cities a,
.mega__cities span {
	display: inline-block;
	padding: 8px 12px;
	background: #fff;
	border: 1px solid rgba(10, 49, 97, 0.14);
	font-size: 12px;
	font-weight: 600;
	color: var(--navy-mid) !important;
	text-decoration: none;
	min-height: 36px;
	line-height: 20px;
}
.mega__cities a:hover {
	border-color: var(--navy);
	color: var(--navy) !important;
	background: rgba(10, 49, 97, 0.04);
}
.mega__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.35rem;
	background: rgba(10, 49, 97, 0.04);
	border-left: 1px solid rgba(10, 49, 97, 0.12);
	border-right: 1px solid rgba(10, 49, 97, 0.12);
}
.mega__foot p {
	margin: 0;
	font-size: 14px;
	color: var(--fog);
	max-width: 48ch;
}
.mega__call {
	display: inline-block;
	padding: 12px 18px;
	background: var(--brass);
	color: #fff !important;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
}
.mega__call:hover {
	background: var(--brass-bright);
	color: var(--navy) !important;
}
.mega__bar {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border: 1px solid rgba(10, 49, 97, 0.12);
	border-top: 0;
}
.mega__bar-cta,
.mega__bar-phone {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	min-height: 48px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
}
.mega__bar-cta {
	background: var(--navy);
	color: #fff !important;
}
.mega__bar-cta:hover {
	background: var(--navy-deep);
}
.mega__bar-phone {
	background: #efe9df;
	color: var(--navy) !important;
}
.mega__bar-phone:hover {
	background: #e5dfd3;
}

/* Phone / CTA — Rev1 dark-bar treatment */
.header__phone {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 4px;
	flex-shrink: 0;
	line-height: 1.25;
}
.header__phone .phone-num {
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 500;
	color: #fff !important;
	text-decoration: none;
	white-space: nowrap;
	letter-spacing: 0.01em;
}
.header__phone .phone-num:hover {
	color: var(--brass-bright) !important;
}
.header__cta {
	display: inline-block;
	padding: 8px 12px;
	background: var(--brass);
	color: var(--ink) !important;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
}
.header__cta:hover {
	background: var(--brass-bright);
	color: var(--ink) !important;
}

@media (max-width: 1280px) and (min-width: 981px) {
	.nav {
		gap: 2px 6px;
	}
	.nav > a,
	.nav__mega-btn {
		font-size: 10px;
		letter-spacing: 0.04em;
		padding: 8px 2px;
	}
	.site-header--combine-nav .logo img {
		height: 36px;
	}
	.header__phone .phone-num {
		font-size: 16px;
	}
	.header__cta {
		padding: 7px 10px;
		font-size: 9px;
	}
	.header__inner {
		padding: 8px 12px;
		gap: 8px 10px;
	}
}

@media (max-width: 980px) {
	.nav-toggle {
		display: flex;
		justify-self: end;
	}
	.header__inner {
		grid-template-columns: 1fr auto;
	}
	.header__phone {
		display: none;
	}
	.nav {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		background: linear-gradient(180deg, #101b31, #0d1626);
		border-bottom: 1px solid rgba(212, 173, 99, 0.28);
		flex-direction: column;
		align-items: stretch;
		flex-wrap: nowrap;
		padding: 8px 16px 20px;
		gap: 0;
		max-height: min(80vh, 640px);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		z-index: 95;
	}
	.nav.is-open {
		display: flex;
	}
	.nav > a,
	.nav__mega-btn {
		width: 100%;
		text-align: left;
		padding: 14px 8px;
		font-size: 13px;
		border-bottom: 1px solid rgba(185, 146, 76, 0.12);
		min-height: 48px;
		color: #e8e2d4 !important;
	}
	.nav > a:hover,
	.nav__mega-btn:hover {
		color: var(--brass-bright) !important;
	}
	.menu-item--mega {
		width: 100%;
	}
	.nav__mega-btn {
		justify-content: space-between;
		width: 100%;
	}
	.mega {
		position: static;
		transform: none;
		width: 100%;
		border: 0;
		box-shadow: none;
		margin: 0 0 8px;
		padding-top: 0;
	}
	.mega__featured {
		grid-template-columns: 1fr;
	}
	.mega__featured--2 {
		grid-template-columns: 1fr;
	}
	.mega--practice {
		width: 100%;
	}
	.mega__regions {
		grid-template-columns: 1fr;
	}
	.mega__bar {
		grid-template-columns: 1fr;
	}
	.mega__foot {
		flex-direction: column;
		align-items: flex-start;
	}
	.mega__head {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* --------------------------------------------------------------------------
   Single post / blog content (light shell)
   -------------------------------------------------------------------------- */
.rvw-hero--short {
	padding: clamp(88px, 10vw, 120px) 24px clamp(52px, 7vw, 72px);
}
.post-article {
	background: var(--paper);
	padding: 64px 24px 40px;
}
.post-article-inner {
	max-width: 42rem;
	margin: 0 auto;
}
.post-content {
	font-size: 17.5px;
	line-height: 1.7;
	color: #2b3040;
}
.post-content h2 {
	font-family: var(--font-display);
	font-weight: 460;
	font-size: clamp(1.55rem, 2.4vw, 1.95rem);
	line-height: 1.2;
	margin: 2.2rem 0 0.85rem;
	color: var(--ink);
}
.post-content h2 em { color: var(--brass); font-style: italic; }
.post-content h3 {
	font-family: var(--font-display);
	font-weight: 460;
	font-size: 1.25rem;
	margin: 1.75rem 0 0.65rem;
	color: var(--ink);
}
.post-content p { margin: 0 0 1.1rem; }
.post-content ul,
.post-content ol {
	margin: 0 0 1.25rem;
	padding-left: 1.2rem;
}
.post-content li { margin: 0 0 0.45rem; }
.post-content blockquote {
	margin: 1.5rem 0;
	padding: 1.1rem 1.25rem;
	border-left: 3px solid var(--brass);
	background: var(--paper-2);
	font-family: var(--font-display);
	font-style: italic;
}
.post-updated {
	margin: 2rem 0 0;
	font-size: 0.8rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	opacity: 0.55;
}
@media (max-width: 720px) {
	.post-article { padding: 40px 20px 28px; }
	.post-content { font-size: 16.5px; }
}

