/* ==========================================================================
   SAM MEDIA — WordPress Theme
   Matte black + metallic gold agency aesthetic
   ========================================================================== */

:root {
	--sam-black: #0a0a0a;
	--sam-black-deep: #000000;
	--sam-charcoal: #141414;
	--sam-surface: #1a1a1a;
	--sam-surface-2: #222222;
	--sam-gold: #e5a00d;
	--sam-gold-bright: #ff9900;
	--sam-gold-classic: #d4af37;
	--sam-gold-soft: #f0c14b;
	--sam-gold-dim: rgba(229, 160, 13, 0.15);
	--sam-gold-line: rgba(229, 160, 13, 0.35);
	--sam-white: #f5f5f5;
	--sam-muted: #9a9a9a;
	--sam-border: rgba(255, 255, 255, 0.08);

	--font-display: "Bebas Neue", Impact, sans-serif;
	--font-body: "Outfit", "Segoe UI", sans-serif;

	--space-xs: 0.5rem;
	--space-sm: 1rem;
	--space-md: 1.5rem;
	--space-lg: 2.5rem;
	--space-xl: 4rem;
	--space-2xl: 6rem;
	--space-3xl: 8rem;

	--header-h: 5.75rem;
	--radius: 2px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--max: 1180px;
}

/* Reset / Base
   ========================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--sam-white);
	background: var(--sam-black);
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}

.site-wrap {
	overflow-x: clip;
	width: 100%;
	max-width: 100%;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--sam-gold);
	text-decoration: none;
	transition: color 0.25s var(--ease);
}

a:hover {
	color: var(--sam-gold-soft);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: 0.02em;
	margin: 0 0 0.6em;
	color: var(--sam-white);
}

p {
	margin: 0 0 1em;
}

ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	background: none;
}

.skip-link,
.screen-reader-text {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 9999;
	padding: 0.75rem 1.25rem;
	background: var(--sam-gold);
	color: var(--sam-black);
}

.skip-link:focus,
.screen-reader-text:focus {
	left: 1rem;
	top: 1rem;
}

.container {
	width: min(100% - 2.5rem, var(--max));
	margin-inline: auto;
}

/* Buttons
   ========================================================================== */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.85rem 1.75rem;
	font-family: var(--font-body);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	border: 1.5px solid transparent;
	border-radius: var(--radius);
	transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.btn:hover {
	transform: translateY(-2px);
	text-decoration: none;
}

.btn-gold {
	background: linear-gradient(135deg, var(--sam-gold-bright) 0%, var(--sam-gold) 45%, var(--sam-gold-classic) 100%);
	color: var(--sam-black-deep);
	border-color: transparent;
}

.btn-gold:hover {
	color: var(--sam-black-deep);
	filter: brightness(1.08);
}

.btn-outline {
	background: transparent;
	color: var(--sam-gold);
	border-color: var(--sam-gold);
}

.btn-outline:hover {
	background: var(--sam-gold-dim);
	color: var(--sam-gold-soft);
}

.btn-lg {
	padding: 1rem 2.25rem;
	font-size: 0.9375rem;
}

/* Header
   ========================================================================== */

.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 100;
	background: rgba(10, 10, 10, 0.85);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
	background: rgba(0, 0, 0, 0.95);
	box-shadow: none;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(100% - 2.5rem, var(--max));
	margin-inline: auto;
	height: var(--header-h);
	gap: 1.5rem;
}

.custom-logo-link img,
.site-logo {
	display: block;
	max-height: 58px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.site-logo-link {
	display: inline-flex;
	align-items: center;
}

.site-logo-footer {
	max-height: 52px;
}

/* Official SAM Media Agency brand lockup — transparent gold wordmark */
.brand-lockup {
	display: inline-flex;
	align-items: center;
	gap: 0;
	text-decoration: none;
	color: var(--sam-gold);
	min-height: 68px;
	padding: 0.2rem 0;
	line-height: 1;
}

.brand-lockup:hover {
	color: var(--sam-gold-soft);
	opacity: 0.94;
}

.site-logo-header {
	display: block;
	width: auto;
	height: clamp(52px, 6.2vw, 72px);
	max-height: calc(var(--header-h) - 1rem);
	max-width: min(240px, 42vw);
	object-fit: contain;
	background: #fff;
	border-radius: 10px;
	padding: 0.2rem 0.35rem;
	box-shadow: 0 0 0 1px rgba(229, 160, 13, 0.18), 0 6px 18px rgba(0, 0, 0, 0.35);
}

.brand-lockup-footer {
	min-height: 48px;
}

.brand-lockup-footer .site-logo-footer {
	height: 56px;
	max-height: 56px;
	max-width: 200px;
	width: auto;
	background: #fff;
	border-radius: 10px;
	padding: 0.2rem 0.35rem;
	box-shadow: 0 0 0 1px rgba(229, 160, 13, 0.16), 0 4px 14px rgba(0, 0, 0, 0.3);
}

/* Legacy text lockup helpers (kept for pages that still reference them) */
.brand-owl {
	width: 64px;
	height: 64px;
	flex-shrink: 0;
	display: block;
	object-fit: contain;
	filter: drop-shadow(0 0 12px rgba(229, 160, 13, 0.35));
}

.brand-divider {
	width: 1.5px;
	height: 50px;
	background: linear-gradient(180deg, transparent, var(--sam-gold), transparent);
	opacity: 0.75;
	flex-shrink: 0;
}

.brand-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.18rem;
	min-width: 0;
}

.brand-wordmark {
	position: relative;
	display: inline-block;
	padding-right: 4.5rem;
	line-height: 0.82;
}

.brand-sam {
	font-family: var(--font-display);
	font-size: 2.75rem;
	letter-spacing: 0.08em;
	line-height: 0.82;
	color: var(--sam-gold);
	text-shadow: 0 0 20px rgba(229, 160, 13, 0.25);
}

.brand-swoosh {
	position: absolute;
	left: 2.1rem;
	bottom: -0.35rem;
	width: 9rem;
	height: auto;
	pointer-events: none;
	opacity: 0.95;
}

.brand-agency {
	font-family: var(--font-body);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: #f0c14b;
}

.brand-tag {
	font-family: var(--font-body);
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(240, 193, 75, 0.88);
	margin-top: 0.1rem;
}

.brand-lockup-footer .brand-owl {
	width: 46px;
	height: 46px;
}

.brand-lockup-footer .brand-divider {
	height: 34px;
}

.brand-lockup-footer .brand-sam {
	font-size: 1.85rem;
}

.brand-lockup-footer .brand-agency {
	font-size: 0.65rem;
	letter-spacing: 0.22em;
}

.brand-lockup-footer .brand-swoosh,
.brand-lockup-footer .brand-tag {
	display: none;
}

.brand-mark {
	display: inline-flex;
	flex-direction: column;
	line-height: 0.9;
	color: var(--sam-gold);
}

.brand-mark:hover {
	color: var(--sam-gold-soft);
}

.header-cta {
	padding: 0.65rem 1.25rem;
	font-size: 0.75rem;
}

.primary-nav {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex: 1 1 auto;
	justify-content: flex-end;
	min-width: 0;
}

.nav-menu {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 0 1.15rem;
	min-width: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	height: 2.5rem;
}

.nav-menu > .menu-item,
.nav-menu .menu-item {
	display: flex;
	align-items: center;
	height: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	list-style-type: none;
}

.nav-menu .menu-item::marker {
	content: none;
	font-size: 0;
}

.nav-menu > .menu-item > a,
.nav-menu > .menu-item > a:link,
.nav-menu > .menu-item > a:visited,
.nav-menu > .menu-item > a:hover,
.nav-menu > .menu-item > a:focus,
.nav-menu > .menu-item > a:active {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 2.5rem;
	padding: 0;
	margin: 0;
	color: var(--sam-muted);
	font-size: 0.76rem;
	font-weight: 500;
	letter-spacing: 0.07em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
	text-decoration: none;
	text-decoration-line: none;
	border-bottom: none;
	box-shadow: none;
	background-image: none;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current-menu-ancestor > a {
	color: var(--sam-gold);
	text-decoration: none;
	border-bottom: none;
}

.nav-menu .menu-item-has-children {
	position: relative;
	padding-bottom: 0;
	margin-bottom: 0;
}

.nav-menu .menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 0.4rem;
	margin-top: 0.12rem;
	border-left: 3.5px solid transparent;
	border-right: 3.5px solid transparent;
	border-top: 4.5px solid currentColor;
	border-bottom: none;
	flex-shrink: 0;
	opacity: 0.75;
	transition: transform 0.2s var(--ease);
}

.nav-menu .menu-item-has-children:hover > a::after,
.nav-menu .menu-item-has-children.is-open > a::after,
.nav-menu .menu-item-has-children:focus-within > a::after {
	transform: rotate(180deg);
}

.nav-menu .sub-menu {
	position: absolute;
	top: calc(100% + 0.35rem);
	left: 0;
	transform: translateY(6px);
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.15rem;
	min-width: 15.5rem;
	max-width: min(22rem, 86vw);
	max-height: min(70vh, 28rem);
	overflow: auto;
	padding: 0.75rem;
	margin: 0;
	list-style: none;
	list-style-type: none;
	background: rgba(8, 8, 8, 0.98);
	border: 1px solid rgba(229, 160, 13, 0.28);
	box-shadow: 0 22px 55px rgba(0, 0, 0, 0.58);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.18s var(--ease), visibility 0.18s, transform 0.18s var(--ease);
	z-index: 130;
	scrollbar-width: thin;
}

.nav-menu .has-sub-services > .sub-menu {
	grid-template-columns: 1fr;
	min-width: 16.5rem;
	max-width: 20rem;
}

.nav-menu .has-sub-location > .sub-menu {
	grid-template-columns: repeat(3, minmax(7.75rem, 1fr));
	gap: 0.2rem 0.65rem;
	min-width: min(34rem, 78vw);
	max-width: min(38rem, 88vw);
	padding: 1rem 1.05rem;
}

.nav-menu .sub-menu .menu-item {
	display: block;
	height: auto;
	list-style: none;
}

.nav-menu .sub-menu a {
	display: block;
	height: auto;
	padding: 0.55rem 0.65rem;
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.35;
	white-space: normal;
	max-width: none;
	color: var(--sam-muted);
	text-decoration: none;
	border-bottom: none;
	border-radius: 2px;
	transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-menu .sub-menu a:hover,
.nav-menu .sub-menu a:focus {
	color: var(--sam-gold-bright);
	background: rgba(229, 160, 13, 0.08);
}

.nav-menu .menu-item-has-children:last-of-type .sub-menu,
.nav-menu .menu-item-has-children:nth-last-child(2) .sub-menu {
	left: auto;
	right: 0;
}

/* Invisible bridge so mouse can reach submenu without closing */
.nav-menu .sub-menu::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -16px;
	height: 16px;
}

.nav-menu .menu-item-has-children:hover > .sub-menu,
.nav-menu .menu-item-has-children:focus-within > .sub-menu,
.nav-menu .menu-item-has-children.is-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.nav-menu .sub-menu .menu-item:first-child a {
	color: var(--sam-gold-soft);
	font-weight: 600;
	margin-bottom: 0.2rem;
	border-bottom: 1px solid rgba(229, 160, 13, 0.18);
	border-radius: 0;
	padding-bottom: 0.7rem;
}

.nav-menu .has-sub-location > .sub-menu .menu-item:first-child {
	grid-column: 1 / -1;
}

.header-cta,
.header-cta:link,
.header-cta:visited,
.header-cta:hover,
.header-cta:focus,
.header-cta:active {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 2.5rem;
	padding: 0 1.15rem;
	font-size: 0.72rem;
	line-height: 1;
	flex-shrink: 0;
	text-decoration: none;
	border-bottom: none;
	list-style: none;
	box-sizing: border-box;
}

.header-gold-line {
	display: none;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 0.5rem;
	z-index: 110;
}

.nav-toggle-bar {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--sam-gold);
	transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
	opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Compact desktop nav when space is tight */
@media (max-width: 1200px) and (min-width: 1101px) {
	.nav-menu {
		gap: 0.1rem 0.75rem;
	}

	.nav-menu a {
		font-size: 0.7rem;
		letter-spacing: 0.05em;
	}

	.header-cta {
		padding: 0.55rem 0.9rem;
	}

	.primary-nav {
		gap: 0.85rem;
	}
}

/* Hero
   ========================================================================== */

.hero {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	padding: calc(var(--header-h) + 1.5rem) 0 0;
	background: var(--sam-black-deep);
}

.hero-stripe {
	position: absolute;
	top: -18%;
	right: -18%;
	width: 28%;
	height: 88%;
	background: linear-gradient(145deg, var(--sam-gold-bright) 0%, var(--sam-gold) 42%, var(--sam-gold-classic) 100%);
	clip-path: polygon(48% 0, 100% 0, 100% 100%, 28% 100%);
	opacity: 0.9;
	animation: stripeIn 1.2s var(--ease) both;
	z-index: 0;
	pointer-events: none;
}

.hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.hero-watermark {
	position: absolute;
	bottom: 5%;
	left: -2%;
	font-family: var(--font-display);
	font-size: clamp(8rem, 28vw, 22rem);
	line-height: 0.8;
	color: transparent;
	-webkit-text-stroke: 1px rgba(229, 160, 13, 0.08);
	letter-spacing: 0.04em;
	user-select: none;
	animation: fadeUp 1s 0.2s var(--ease) both;
}

.hero-content {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(300px, 1fr);
	align-items: end;
	gap: 0.5rem 1rem;
	width: min(100% - 2.5rem, var(--max));
	margin-inline: auto;
	min-height: calc(100dvh - var(--header-h) - 1.5rem);
	padding-bottom: 1.5rem;
}

.hero-copy {
	align-self: center;
	padding-bottom: 2rem;
	animation: fadeUp 0.9s 0.15s var(--ease) forwards;
	opacity: 1;
	transform: none;
}

.hero-visual {
	position: relative;
	z-index: 5;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	align-self: end;
	height: 100%;
	min-height: min(72vh, 680px);
	margin: 0;
	padding-bottom: 0.5rem;
	overflow: visible;
	animation: fadeIn 1.1s 0.3s var(--ease) forwards;
	opacity: 1;
	isolation: isolate;
}

.hero-visual::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 90%;
	height: 48%;
	transform: translateX(-50%);
	background: radial-gradient(ellipse at center bottom, rgba(229, 160, 13, 0.5) 0%, rgba(229, 160, 13, 0.15) 45%, transparent 75%);
	pointer-events: none;
	z-index: 0;
}

/* Opaque body underlay — gold stripe can never bleed through hoodie */
.hero-visual::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 8%;
	width: min(58%, 280px);
	height: 52%;
	transform: translateX(-50%);
	background: radial-gradient(ellipse at center, #0a0a0a 0%, #0a0a0a 62%, transparent 78%);
	pointer-events: none;
	z-index: 1;
}

.hero-tagline {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	margin-bottom: 1.25rem;
	font-size: 0.8125rem;
	font-weight: 400;
	letter-spacing: 0.12em;
	text-transform: lowercase;
	color: var(--sam-white);
}

.tagline-line {
	display: block;
	width: 2.5rem;
	height: 1px;
	background: var(--sam-gold);
	flex-shrink: 0;
}

.hero-owl-badge {
	position: relative;
	z-index: 3;
	display: block;
	margin: 0.65rem 0 0;
	padding: 0.2rem 0 0;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	text-align: center;
	color: var(--sam-gold);
}

.hero-hook {
	margin: 0 0 1.25rem;
	font-size: clamp(2rem, 4.6vw, 3.4rem);
	line-height: 1.08;
	max-width: 16ch;
	background: linear-gradient(160deg, var(--sam-gold-soft) 0%, var(--sam-gold-bright) 40%, var(--sam-gold) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero-seo-line {
	margin: 0 0 1.5rem;
	max-width: 38rem;
	font-size: 0.875rem;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.55);
}

.hero-brand {
	margin: 0 0 1.25rem;
	line-height: 0.85;
}

.hero-sam {
	display: block;
	font-size: clamp(4.5rem, 12vw, 8.5rem);
	background: linear-gradient(160deg, var(--sam-gold-soft) 0%, var(--sam-gold-bright) 35%, var(--sam-gold) 70%, var(--sam-gold-classic) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	letter-spacing: 0.02em;
	filter: drop-shadow(0 4px 24px rgba(229, 160, 13, 0.25));
}

.hero-media {
	display: block;
	font-size: clamp(1.75rem, 4.5vw, 3rem);
	letter-spacing: 0.45em;
	color: var(--sam-gold);
	margin-top: 0.15em;
	margin-left: 0.08em;
}

.hero-lead {
	max-width: 32rem;
	margin-bottom: 2rem;
	font-size: 1.0625rem;
	color: var(--sam-muted);
	font-weight: 300;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.hero-image {
	position: relative;
	z-index: 2;
	width: min(100%, 560px);
	max-height: min(72vh, 640px);
	object-fit: contain;
	object-position: bottom center;
	filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.7));
	background: transparent;
}

.hero-scroll {
	position: absolute;
	bottom: 1.25rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 4;
}

.hero-scroll span {
	display: block;
	width: 1px;
	height: 48px;
	background: linear-gradient(to bottom, var(--sam-gold), transparent);
	animation: scrollPulse 2s ease-in-out infinite;
}

/* Sections
   ========================================================================== */

.section {
	padding: var(--space-3xl) 0;
	position: relative;
}

.section-header {
	margin-bottom: var(--space-xl);
	max-width: 36rem;
}

.section-label {
	margin: 0 0 0.75rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--sam-gold);
}

.section-title {
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	margin: 0;
}

.section-sub {
	margin: 1rem 0 0;
	color: var(--sam-muted);
	font-weight: 300;
	max-width: 40rem;
}

.prose-wrap {
	max-width: 44rem;
}

.prose-wrap p,
.prose p {
	color: var(--sam-muted);
	font-weight: 300;
	font-size: 1.0625rem;
}

.prose-punch {
	color: var(--sam-white) !important;
	font-weight: 400 !important;
}

.owl-intro {
	font-size: 1.2rem !important;
	color: var(--sam-white) !important;
	margin-bottom: 1.5rem !important;
}

.owl-says {
	font-size: 0.8rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--sam-gold) !important;
}

.owl-quote {
	margin: 1.25rem 0 1.75rem;
	padding: 1.25rem 0 1.25rem 1.25rem;
	border-left: 2px solid var(--sam-gold);
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 3vw, 2rem);
	line-height: 1.2;
	color: var(--sam-gold-soft);
}

.big-no {
	font-family: var(--font-display);
	font-size: clamp(3rem, 8vw, 5.5rem);
	line-height: 1;
	margin: 0.5rem 0 1.25rem !important;
	background: linear-gradient(135deg, var(--sam-gold-bright), var(--sam-gold));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent !important;
}

.story-section {
	background: var(--sam-black);
	border-top: 1px solid var(--sam-border);
}

.why-section {
	background: var(--sam-charcoal);
}

.confusion-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem 2rem;
	margin: 1.5rem 0 2rem;
	padding: 1.5rem 0;
	border-top: 1px solid var(--sam-border);
	border-bottom: 1px solid var(--sam-border);
}

.confusion-list li {
	position: relative;
	padding-left: 1.25rem;
	color: var(--sam-white);
	font-weight: 400;
}

.confusion-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.65em;
	width: 0.5rem;
	height: 1px;
	background: var(--sam-gold);
}

.dukhda-block {
	margin-top: var(--space-xl);
}

.dukhda-block .owl-says {
	margin-bottom: 1.25rem;
}

.pain-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: var(--sam-border);
	border: 1px solid var(--sam-border);
}

.pain-item {
	padding: 1.35rem 1.25rem;
	background: var(--sam-black);
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.pain-item-wide {
	grid-column: span 2;
	background: linear-gradient(135deg, rgba(229, 160, 13, 0.12), var(--sam-black));
}

.pain-item span {
	font-size: 0.8125rem;
	color: var(--sam-muted);
}

.pain-item strong {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 400;
	letter-spacing: 0.03em;
	color: var(--sam-gold);
}

.game-section {
	background: var(--sam-black-deep);
	border-top: 1px solid var(--sam-gold-line);
}

.game-claim {
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 5vw, 3.5rem);
	letter-spacing: 0.04em;
	color: var(--sam-white) !important;
	margin: 0.5rem 0 1rem !important;
}

.sell-examples {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem 1.5rem;
	margin: 1.25rem 0 1.75rem;
	padding: 1.25rem 0;
	border-top: 1px solid var(--sam-border);
	border-bottom: 1px solid var(--sam-border);
}

.sell-examples li {
	color: var(--sam-muted);
	font-weight: 300;
}

.sell-examples strong {
	color: var(--sam-gold-soft);
	font-weight: 500;
}

.section-cta {
	margin-top: 1.75rem;
}

.help-section {
	background: var(--sam-black);
}

.help-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-bottom: var(--space-xl);
}

.help-card {
	padding: 1.75rem 0;
	border-top: 1px solid var(--sam-gold-line);
}

.help-num {
	display: block;
	font-family: var(--font-display);
	font-size: 0.95rem;
	letter-spacing: 0.14em;
	color: var(--sam-gold);
	opacity: 0.7;
	margin-bottom: 0.85rem;
}

.help-card h3 {
	font-size: 1.65rem;
	margin-bottom: 0.75rem;
}

.help-card p {
	color: var(--sam-muted);
	font-weight: 300;
	margin-bottom: 1.25rem;
}

.help-closer {
	margin-top: var(--space-lg);
	padding-top: var(--space-lg);
	border-top: 1px solid var(--sam-border);
}

.services-intro,
.testimonials-intro {
	margin-bottom: var(--space-lg);
}

.home-faq .faq-wrap {
	max-width: 52rem;
	margin-inline: auto;
}

.faq-tabs-section .section-lead {
	max-width: 42rem;
	margin-inline: auto;
	color: var(--sam-muted);
}

.faq-tabs {
	width: 100%;
	max-width: 100%;
}

.faq-tabs-nav {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	gap: 0.55rem;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 0.35rem 0.15rem 0.95rem;
	margin: 0 auto 0.35rem;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x proximity;
	overscroll-behavior-x: contain;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.faq-tabs-nav::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

.faq-tab {
	flex: 0 0 auto;
	scroll-snap-align: start;
	padding: 0.55rem 1.05rem;
	border: 1px solid rgba(229, 160, 13, 0.28);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	cursor: pointer;
	white-space: nowrap;
	touch-action: manipulation;
	min-height: 2.5rem;
	transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.faq-tab:hover {
	border-color: rgba(229, 160, 13, 0.55);
	color: var(--sam-gold-soft);
}

.faq-tab.is-active {
	background: linear-gradient(135deg, var(--sam-gold), #c8890a);
	border-color: transparent;
	color: #111;
	box-shadow: 0 0 0 1px rgba(229, 160, 13, 0.35), 0 8px 22px rgba(229, 160, 13, 0.25);
}

.faq-tab-meta {
	margin: 0 0 1rem;
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(240, 193, 75, 0.75);
}

.faq-tab-panel {
	display: none;
	opacity: 0;
	transform: translateX(18px);
	width: 100%;
}

.faq-tab-panel.is-active {
	display: block;
	animation: faqPanelSlide 0.38s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes faqPanelSlide {
	from {
		opacity: 0;
		transform: translateX(18px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.faq-tabs-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	margin-top: 1.75rem;
}

/* PC: wrap FAQ tabs so no awkward half-scroll */
@media (min-width: 981px) {
	.faq-tabs-nav {
		flex-wrap: wrap;
		justify-content: center;
		overflow: visible;
		scroll-snap-type: none;
		padding-bottom: 0.5rem;
		gap: 0.65rem;
	}

	.faq-tab {
		font-size: 0.88rem;
		padding: 0.6rem 1.15rem;
	}

	.gmb-review-card {
		flex-basis: min(360px, 32vw);
		max-width: min(360px, 32vw);
	}
}

@media (max-width: 980px) {
	.faq-tabs-nav {
		margin-inline: -0.35rem;
		padding-inline: 0.5rem;
	}

	.faq-tab {
		font-size: 0.78rem;
		padding: 0.5rem 0.9rem;
	}
}

@media (max-width: 680px) {
	.faq-tabs-cta {
		flex-direction: column;
	}

	.faq-tabs-cta .btn {
		width: 100%;
		text-align: center;
	}

	.faq-tab {
		font-size: 0.74rem;
		padding: 0.48rem 0.82rem;
		min-height: 2.35rem;
	}

	.faq-tab-meta {
		font-size: 0.68rem;
	}

	.home-faq .faq-wrap {
		max-width: 100%;
	}

	.district-faq-list summary {
		font-size: 0.98rem;
		line-height: 1.35;
		padding-right: 1.5rem;
	}
}



.pillars-list {
	margin: 1rem 0 1.25rem;
	padding-left: 0;
	list-style: none;
	display: grid;
	gap: 0.65rem;
}

.pillars-list li {
	position: relative;
	padding-left: 1.15rem;
	color: var(--sam-muted);
	font-weight: 300;
}

.pillars-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.7em;
	width: 0.45rem;
	height: 1px;
	background: var(--sam-gold);
}

.pillars-list strong {
	color: var(--sam-gold-soft);
	font-weight: 500;
}

.adv-list {
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 1.25rem;
	counter-reset: adv;
}

.adv-list li {
	counter-increment: adv;
	padding-left: 3rem;
	position: relative;
}

.adv-list li::before {
	content: counter(adv, decimal-leading-zero);
	position: absolute;
	left: 0;
	top: 0.1rem;
	font-family: var(--font-display);
	font-size: 1.1rem;
	letter-spacing: 0.08em;
	color: var(--sam-gold);
}

.adv-list strong {
	display: block;
	margin-bottom: 0.35rem;
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 400;
	letter-spacing: 0.03em;
	color: var(--sam-gold-soft);
}

.adv-list span {
	display: block;
	color: var(--sam-muted);
	font-weight: 300;
}

.cta-lead {
	color: var(--sam-muted);
	max-width: 32rem;
	margin-bottom: 1rem;
}

.cta-actions {
	margin-top: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

/* Services
   ========================================================================== */

.services {
	background: var(--sam-charcoal);
	border-top: 1px solid var(--sam-border);
}

.services-list {
	display: flex;
	flex-direction: column;
	border-top: 1px solid var(--sam-border);
}

.service-row {
	display: grid;
	grid-template-columns: 4.5rem 1fr;
	gap: 1.25rem;
	padding: 1.75rem 0;
	border-bottom: 1px solid var(--sam-border);
	transition: background 0.35s var(--ease);
}

.service-row:hover {
	background: var(--sam-gold-dim);
}

.service-num {
	display: block;
	font-family: var(--font-display);
	font-size: 1.25rem;
	letter-spacing: 0.1em;
	color: var(--sam-gold);
	opacity: 0.7;
	padding-top: 0.2rem;
}

.service-row h3 {
	font-size: 1.65rem;
	margin-bottom: 0.5rem;
}

.service-row p {
	margin: 0;
	color: var(--sam-muted);
	font-weight: 300;
	max-width: 48rem;
}

/* Testimonials
   ========================================================================== */

.testimonials {
	background: var(--sam-black-deep);
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.testimonial {
	margin: 0;
	padding: 1.75rem 0;
	border-top: 1px solid var(--sam-border);
}

.testimonial p {
	margin: 0 0 1rem;
	color: var(--sam-muted);
	font-weight: 300;
	font-size: 1rem;
}

.testimonial cite {
	font-style: normal;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--sam-gold);
}

/* FAQ
   ========================================================================== */

.faq-section {
	background: var(--sam-black);
}

.faq-list {
	max-width: 52rem;
}

.faq-item {
	border-bottom: 1px solid var(--sam-border);
}

.faq-item summary {
	cursor: pointer;
	list-style: none;
	padding: 1.35rem 2.5rem 1.35rem 0;
	font-family: var(--font-display);
	font-size: 1.35rem;
	letter-spacing: 0.02em;
	color: var(--sam-white);
	position: relative;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-family: var(--font-body);
	font-size: 1.5rem;
	color: var(--sam-gold);
	line-height: 1;
}

.faq-item[open] summary::after {
	content: "–";
}

.faq-item summary:hover {
	color: var(--sam-gold-soft);
}

.faq-body {
	padding: 0 0 1.5rem;
}

.faq-body p {
	color: var(--sam-muted);
	font-weight: 300;
}

.faq-ol,
.faq-ul {
	margin: 0 0 1em 1.25em;
	color: var(--sam-muted);
	font-weight: 300;
}

.faq-ol {
	list-style: decimal;
}

.faq-ul {
	list-style: disc;
}

.faq-ol li,
.faq-ul li {
	margin-bottom: 0.5rem;
}

.cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

/* About page
   ========================================================================== */

.about-hero {
	position: relative;
	overflow: hidden;
	padding-bottom: 4rem;
}

.about-hero .hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.about-stripe {
	position: absolute;
	top: -5%;
	right: -8%;
	width: 38%;
	height: 55%;
	background: linear-gradient(145deg, var(--sam-gold-bright), var(--sam-gold), var(--sam-gold-classic));
	clip-path: polygon(40% 0, 100% 0, 100% 100%, 0% 100%);
	opacity: 0.85;
}

.about-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 44rem;
}

.about-hero-lead {
	margin: 1.25rem 0 0.75rem;
	font-size: 1.15rem;
	color: var(--sam-muted);
	font-weight: 300;
}

.about-hero-punch {
	margin: 0;
	font-size: 1.25rem;
	color: var(--sam-gold-soft);
	font-weight: 500;
}

.about-story {
	background: var(--sam-black);
	padding-top: var(--space-xl);
}

.about-mid-title {
	font-size: clamp(1.85rem, 4vw, 2.75rem);
	margin: 0.5rem 0 1.25rem;
	color: var(--sam-white);
}

.about-owl {
	background: var(--sam-charcoal);
	border-top: 1px solid var(--sam-border);
}

.about-owl-layout {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: var(--space-xl);
	align-items: center;
}

.about-owl-visual img {
	width: 100%;
	max-width: 420px;
	margin-inline: auto;
}

.about-team {
	background: var(--sam-black-deep);
}

.ninja-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	margin-top: var(--space-lg);
	background: var(--sam-border);
	border: 1px solid var(--sam-border);
}

.ninja-grid li {
	padding: 1.35rem 1.25rem;
	background: var(--sam-surface);
	font-family: var(--font-display);
	font-size: 1.25rem;
	letter-spacing: 0.04em;
	color: var(--sam-gold);
}

.about-trust {
	background: var(--sam-black);
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
}

.trust-item {
	padding: var(--space-lg) var(--space-md) var(--space-lg) 0;
	border-top: 1px solid var(--sam-border);
}

.trust-item:nth-child(odd) {
	padding-right: var(--space-lg);
	border-right: 1px solid var(--sam-border);
}

.trust-item:nth-child(even) {
	padding-left: var(--space-lg);
}

.trust-num {
	display: block;
	margin-bottom: 0.75rem;
	font-family: var(--font-display);
	font-size: 1.1rem;
	color: var(--sam-gold);
	opacity: 0.7;
}

.trust-item h3 {
	font-size: 1.65rem;
	margin-bottom: 0.75rem;
}

.trust-item p {
	margin: 0;
	color: var(--sam-muted);
	font-weight: 300;
	max-width: 32rem;
}

.about-together {
	background: var(--sam-charcoal);
	border-top: 1px solid var(--sam-gold-line);
}

/* Services page
   ========================================================================== */

.svc-intro {
	padding-top: var(--space-xl);
	background: var(--sam-black);
}

.svc-jump {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
	margin-top: var(--space-lg);
	padding-top: var(--space-md);
	border-top: 1px solid var(--sam-border);
}

.svc-jump a {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--sam-muted);
	padding-bottom: 0.25rem;
	border-bottom: 1px solid transparent;
}

.svc-jump a:hover {
	color: var(--sam-gold);
	border-bottom-color: var(--sam-gold);
}

.svc-block {
	background: var(--sam-black);
	border-top: 1px solid var(--sam-border);
}

.svc-block-alt {
	background: var(--sam-charcoal);
}

.svc-block-head {
	margin-bottom: var(--space-lg);
	max-width: 40rem;
}

.svc-detail-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	margin-top: var(--space-lg);
	border-top: 1px solid var(--sam-border);
}

.svc-detail {
	padding: var(--space-lg) 0;
	border-bottom: 1px solid var(--sam-border);
}

.svc-detail h3 {
	font-size: 1.75rem;
	margin-bottom: 0.85rem;
	color: var(--sam-gold-soft);
}

.svc-detail p {
	color: var(--sam-muted);
	font-weight: 300;
	max-width: 52rem;
}

.svc-detail-2,
.svc-detail-3 {
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.svc-detail-2 {
		grid-template-columns: 1fr 1fr;
		gap: 0 2rem;
	}

	.svc-detail-3 {
		grid-template-columns: 1fr;
	}
}

/* Inner pages — Work / Clients / Team / Gallery / Contact / Location
   ========================================================================== */

.work-page {
	background: var(--sam-black-deep);
}

.work-page .work-meta h2 {
	font-size: 1.5rem;
	margin-bottom: 0.4rem;
}

.location-section {
	background: var(--sam-charcoal);
}

.location-layout {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: var(--space-xl);
	align-items: center;
}

.location-owl {
	margin: 0 0 1.5rem;
	max-width: 280px;
}

.location-map-wrap {
	position: relative;
	min-height: 420px;
	border: 1px solid var(--sam-gold-line);
	background: var(--sam-surface);
	overflow: hidden;
}

.location-map {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 420px;
	border: 0;
	filter: grayscale(0.35) contrast(1.05);
}

.location-highlights {
	background: var(--sam-black);
}

.location-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.75rem;
	margin-top: 1.5rem;
}

.location-card {
	padding: 1.5rem 0;
	border-top: 1px solid var(--sam-border);
}

.location-card h3 {
	font-size: 1.35rem;
	margin-bottom: 0.5rem;
	color: var(--sam-gold-soft);
}

.location-card p {
	margin: 0;
	color: var(--sam-muted);
	font-weight: 300;
}

/* UP East — districts coverage
   ========================================================================== */

.up-east-hero {
	position: relative;
	min-height: min(88vh, 820px);
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	padding: calc(var(--header-h) + 2rem) 0 3.5rem;
	background: var(--sam-black-deep);
}

.up-east-hero-media {
	position: absolute;
	inset: 0;
}

.up-east-hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
}

.up-east-hero-shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.35) 100%),
		linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, transparent 55%);
}

.up-east-hero-copy {
	position: relative;
	z-index: 2;
	max-width: 40rem;
}

.up-east-hero-copy .page-title {
	max-width: 12ch;
}

.up-east-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 1.75rem 2.5rem;
	margin: 1.75rem 0 2rem;
}

.up-east-stats strong {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 2.75rem);
	line-height: 1;
	color: var(--sam-gold);
}

.up-east-stats span {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.75rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--sam-muted);
}

.up-east-intro {
	background: var(--sam-charcoal);
}

.up-east-intro-grid {
	display: grid;
	grid-template-columns: 0.75fr 1.25fr;
	gap: var(--space-xl);
	align-items: center;
}

.up-east-intro-visual {
	margin: 0;
	display: flex;
	justify-content: center;
}

.up-east-intro-copy p {
	color: var(--sam-muted);
	font-weight: 300;
}

.up-east-districts {
	background: var(--sam-black-deep);
}

.up-east-districts .section-lead {
	max-width: 36rem;
	margin: 0.75rem 0 0;
	color: var(--sam-muted);
	font-weight: 300;
}

.up-east-division {
	margin-top: var(--space-xl);
}

.up-east-division-banner {
	position: relative;
	min-height: 220px;
	overflow: hidden;
	margin-bottom: 1.25rem;
	border: 1px solid var(--sam-gold-line);
}

.up-east-division-banner img {
	width: 100%;
	height: 100%;
	min-height: 220px;
	object-fit: cover;
	filter: saturate(0.9) contrast(1.05);
}

.up-east-division-banner::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.15) 100%);
}

.up-east-division-banner-copy {
	position: absolute;
	left: 1.5rem;
	bottom: 1.35rem;
	z-index: 1;
	max-width: 28rem;
}

.up-east-division-banner-copy h3 {
	margin: 0.2rem 0 0;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	color: var(--sam-gold-soft);
}

.up-east-district-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: var(--sam-border);
	border: 1px solid var(--sam-border);
}

.up-east-district-card {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	min-height: 140px;
	padding: 1.25rem 1.15rem;
	background: var(--sam-surface);
	color: var(--sam-white);
	text-decoration: none;
	transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.up-east-district-card:hover {
	background: #1f1a12;
	color: var(--sam-gold-soft);
	transform: translateY(-2px);
}

.up-east-district-name {
	font-family: var(--font-display);
	font-size: 1.55rem;
	letter-spacing: 0.04em;
	color: var(--sam-gold);
}

.up-east-district-tag {
	font-size: 0.9rem;
	color: var(--sam-muted);
	font-weight: 300;
	line-height: 1.4;
}

.up-east-district-cta {
	margin-top: auto;
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sam-gold-bright);
}

.up-east-services {
	background: var(--sam-charcoal);
}

.up-east-service-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin-top: 1.5rem;
}

.up-east-service-card {
	padding: 1.5rem 0;
	border-top: 1px solid var(--sam-border);
}

.up-east-service-card h3 {
	font-size: 1.35rem;
	margin-bottom: 0.55rem;
	color: var(--sam-gold-soft);
}

.up-east-service-card p {
	margin: 0;
	color: var(--sam-muted);
	font-weight: 300;
}

@media (max-width: 960px) {
	.location-layout,
	.location-grid,
	.up-east-intro-grid,
	.up-east-district-grid,
	.up-east-service-grid {
		grid-template-columns: 1fr 1fr;
	}

	.up-east-intro-grid {
		grid-template-columns: 1fr;
	}

	.location-map-wrap,
	.location-map {
		min-height: 320px;
	}
}

@media (max-width: 640px) {
	.up-east-district-grid,
	.up-east-service-grid,
	.location-grid {
		grid-template-columns: 1fr;
	}

	.up-east-hero {
		min-height: auto;
		padding-bottom: 2.5rem;
	}
}

/* District SEO pages
   ========================================================================== */

.district-crumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	padding-top: calc(var(--header-h) + 1.25rem);
	padding-bottom: 0.75rem;
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--sam-muted);
}

.district-crumbs a {
	color: var(--sam-muted);
}

.district-crumbs a:hover {
	color: var(--sam-gold);
}

.district-hero {
	position: relative;
	min-height: min(88vh, 860px);
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	padding: calc(var(--header-h) + 1.5rem) 0 3.5rem;
	background: var(--sam-black-deep);
}

.district-hero-media {
	position: absolute;
	inset: 0;
}

.district-hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 40%;
	transform: scale(1.03);
}

.district-hero-shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(105deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.78) 38%, rgba(0, 0, 0, 0.28) 72%, rgba(0, 0, 0, 0.55) 100%),
		linear-gradient(0deg, rgba(0, 0, 0, 0.92) 0%, transparent 55%);
}

.district-hero-grain {
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: 0.14;
	background-image: radial-gradient(rgba(229, 160, 13, 0.18) 0.55px, transparent 0.55px);
	background-size: 3px 3px;
	mix-blend-mode: soft-light;
}

.district-hero-copy {
	position: relative;
	z-index: 2;
	max-width: 44rem;
}

.district-hero-copy .page-title {
	max-width: 14ch;
	font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.district-keyword-line {
	margin: 0 0 0.65rem;
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(240, 193, 75, 0.85);
}

.district-hero-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem 2rem;
	margin: 1.5rem 0 1.75rem;
	padding: 1.1rem 0;
	border-top: 1px solid rgba(229, 160, 13, 0.22);
	border-bottom: 1px solid rgba(229, 160, 13, 0.22);
	list-style: none;
}

.district-hero-stats strong {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	line-height: 1;
	color: var(--sam-gold);
}

.district-hero-stats span {
	display: block;
	margin-top: 0.3rem;
	font-size: 0.68rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sam-muted);
}

.district-intro,
.district-pain,
.district-why {
	background: var(--sam-charcoal);
}

.district-intro-grid,
.district-pain-grid,
.district-why-grid {
	display: grid;
	grid-template-columns: 0.78fr 1.22fr;
	gap: var(--space-xl);
	align-items: center;
}

.district-pain-grid {
	grid-template-columns: 1.22fr 0.78fr;
}

.district-intro-visual,
.district-pain-visual,
.district-why-owl,
.district-process-owl {
	margin: 0;
	display: flex;
	justify-content: center;
}

.district-intro-visual img,
.district-pain-visual img,
.district-why-owl img,
.district-process-owl img,
.district-cta .owl-mascot {
	max-width: min(100%, 380px);
	height: auto;
	filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.45));
}

.district-focus-list,
.district-pain-list {
	margin: 1.25rem 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.7rem;
}

.district-focus-list li,
.district-pain-list li {
	position: relative;
	padding-left: 1.15rem;
	color: var(--sam-muted);
	font-weight: 300;
	line-height: 1.5;
}

.district-focus-list li::before,
.district-pain-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55rem;
	width: 0.45rem;
	height: 0.45rem;
	background: var(--sam-gold);
}

.district-market {
	background: var(--sam-black-deep);
	border-top: 1px solid var(--sam-border);
}

.district-services {
	background: var(--sam-black);
	border-top: 1px solid var(--sam-gold-line);
}

.district-service-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
	margin-top: var(--space-lg);
}

.district-service-card {
	overflow: hidden;
	border-radius: 18px;
	border: 1px solid rgba(229, 160, 13, 0.16);
	background: #0c0c0c;
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
	transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.district-service-card:hover {
	transform: translateY(-4px);
	border-color: rgba(229, 160, 13, 0.42);
}

.district-service-media {
	margin: 0;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #111;
}

.district-service-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s var(--ease);
}

.district-service-card:hover .district-service-media img {
	transform: scale(1.06);
}

.district-service-body {
	padding: 1.2rem 1.25rem 1.35rem;
}

.district-service-body h3 {
	font-size: clamp(1.25rem, 2vw, 1.55rem);
	margin-bottom: 0.55rem;
	color: var(--sam-gold-soft);
}

.district-service-body p {
	margin: 0;
	color: var(--sam-muted);
	font-weight: 300;
	line-height: 1.55;
}

.district-process {
	background: var(--sam-charcoal);
	border-top: 1px solid var(--sam-border);
}

.district-steps {
	display: grid;
	gap: 1.25rem;
	margin: 1.25rem 0 1.5rem;
}

.district-step {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.9rem;
	align-items: start;
	padding-top: 1rem;
	border-top: 1px solid rgba(229, 160, 13, 0.18);
}

.district-step-num {
	font-family: var(--font-display);
	font-size: 1.1rem;
	letter-spacing: 0.12em;
	color: var(--sam-gold);
	opacity: 0.8;
}

.district-step h3 {
	margin: 0 0 0.35rem;
	font-size: 1.35rem;
}

.district-step p {
	margin: 0;
	color: var(--sam-muted);
	font-weight: 300;
}

.district-process-owl {
	margin-top: 0.5rem;
}

.district-process-owl img {
	max-width: 220px;
}

.district-faq {
	background: var(--sam-black);
}

.district-faq-wrap {
	max-width: 52rem;
	margin-inline: auto;
}

.district-faq-list details {
	border-top: 1px solid var(--sam-border);
	padding: 1.15rem 0;
}

.district-faq-list details:last-child {
	border-bottom: 1px solid var(--sam-border);
}

.district-faq-list summary {
	cursor: pointer;
	font-family: var(--font-display);
	font-size: clamp(1.15rem, 2.2vw, 1.45rem);
	letter-spacing: 0.03em;
	color: var(--sam-gold-soft);
	list-style: none;
	padding-right: 2rem;
	position: relative;
}

.district-faq-list summary::-webkit-details-marker {
	display: none;
}

.district-faq-list summary::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 0.05rem;
	color: var(--sam-gold);
	font-size: 1.35rem;
	line-height: 1;
}

.district-faq-list details[open] summary::after {
	content: "–";
}

.district-faq-list p {
	margin: 0.85rem 0 0.15rem;
	color: var(--sam-muted);
	font-weight: 300;
	line-height: 1.72;
}

.district-nearby {
	background: var(--sam-charcoal);
	border-top: 1px solid var(--sam-border);
}

.district-nearby-grid {
	margin-top: var(--space-lg);
}

.district-cta {
	background: var(--sam-black-deep);
}

@media (max-width: 1100px) {
	.district-service-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 960px) {
	.district-intro-grid,
	.district-pain-grid,
	.district-why-grid {
		grid-template-columns: 1fr;
	}

	.district-pain-visual,
	.district-intro-visual,
	.district-why-owl {
		order: -1;
	}

	.district-hero {
		min-height: auto;
		padding-bottom: 2.5rem;
	}

	.district-hero-copy .page-title {
		max-width: none;
	}

	.district-service-card:hover {
		transform: none;
	}
}

@media (max-width: 640px) {
	.district-hero-stats {
		gap: 1rem 1.35rem;
	}

	.district-crumbs {
		font-size: 0.78rem;
	}
}

/* Service detail pages + hub cards
   ========================================================================== */

.service-hero {
	position: relative;
	min-height: min(72vh, 640px);
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	padding: 2rem 0 3rem;
	background: var(--sam-black-deep);
}

.service-hero-media {
	position: absolute;
	inset: 0;
}

.service-hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.service-hero-shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.7) 48%, rgba(0, 0, 0, 0.42) 100%),
		linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 55%);
}

.service-hero-copy {
	position: relative;
	z-index: 2;
	max-width: 44rem;
}

.svc-trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin: 1.15rem 0 1.35rem;
}

.svc-trust-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.45rem 0.75rem;
	border: 1px solid rgba(229, 160, 13, 0.28);
	background: rgba(0, 0, 0, 0.45);
	color: var(--sam-gold-soft, #f0c14b);
	text-decoration: none;
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	backdrop-filter: blur(6px);
}

.svc-trust-chip strong {
	color: var(--sam-gold, #e5a00d);
	font-size: 0.95rem;
}

.svc-trust-static {
	color: rgba(255, 255, 255, 0.82);
}

.svc-page-jump,
.svc-jump {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin: 1.75rem auto 0;
	padding-bottom: 0.5rem;
}

.svc-page-jump a,
.svc-jump a {
	display: inline-flex;
	padding: 0.45rem 0.8rem;
	border: 1px solid rgba(229, 160, 13, 0.25);
	color: var(--sam-gold-soft, #f0c14b);
	text-decoration: none;
	font-size: 0.78rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.svc-page-jump a:hover,
.svc-jump a:hover {
	border-color: var(--sam-gold, #e5a00d);
	background: rgba(229, 160, 13, 0.08);
}

.svc-detail-link {
	display: inline-block;
	margin-top: 0.85rem;
	color: var(--sam-gold, #e5a00d);
	font-weight: 600;
	text-decoration: none;
	letter-spacing: 0.02em;
}

.svc-detail-link:hover {
	text-decoration: underline;
}

.svc-related-guides {
	border-top: 1px solid var(--sam-border);
}

.svc-guide-list {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.85rem;
}

.svc-guide-list a {
	display: block;
	padding: 1rem 1.1rem;
	border: 1px solid rgba(229, 160, 13, 0.22);
	color: var(--sam-white);
	text-decoration: none;
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), transparent 65%);
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.svc-guide-list a:hover {
	border-color: rgba(229, 160, 13, 0.55);
	color: var(--sam-gold-soft, #f0c14b);
	transform: translateY(-2px);
}

@media (max-width: 900px) {
	.svc-guide-list {
		grid-template-columns: 1fr;
	}
}

.service-card-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.service-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--sam-surface);
	border: 1px solid var(--sam-border);
	color: var(--sam-white);
	text-decoration: none;
	overflow: hidden;
	transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.service-card:hover {
	border-color: var(--sam-gold-line);
	color: var(--sam-gold-soft);
	transform: translateY(-3px);
}

.service-card-media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--sam-black);
}

.service-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s var(--ease);
}

.service-card:hover .service-card-media img {
	transform: scale(1.04);
}

.service-card-body {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	padding: 1.15rem 1.1rem 1.25rem;
	flex: 1;
}

.service-card-body .up-east-district-cta {
	margin-top: auto;
}

@media (max-width: 960px) {
	.service-card-grid {
		grid-template-columns: 1fr 1fr;
	}

	.service-hero {
		min-height: auto;
	}
}

@media (max-width: 640px) {
	.service-card-grid {
		grid-template-columns: 1fr;
	}
}

/* Premium service detail + hub banners
   ========================================================================== */

.services-hub-hero .service-hero-copy {
	max-width: 44rem;
}

.svc-hub-banner {
	margin: 0 0 1.75rem;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid rgba(229, 160, 13, 0.2);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
	aspect-ratio: 16 / 9;
	background: #0a0a0a;
}

.svc-hub-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.svc-pro-split {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: center;
}

.svc-pro-split-reverse {
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.svc-pro-split-reverse .svc-pro-visual {
	order: 2;
}

.svc-pro-visual {
	margin: 0;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid rgba(229, 160, 13, 0.22);
	box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
	aspect-ratio: 4 / 3;
	background: #0a0a0a;
}

.svc-pro-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.svc-pro-copy .section-title {
	margin-bottom: 1rem;
}

.svc-pro-card-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.15rem;
}

.svc-pro-card {
	padding: 1.25rem 1.2rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.02);
}

.svc-pro-card h3 {
	margin: 0 0 0.55rem;
	font-family: var(--font-display);
	font-size: 1.35rem;
	letter-spacing: 0.04em;
	color: var(--sam-gold);
}

.svc-pro-card p {
	margin: 0;
	color: var(--sam-muted);
	font-weight: 300;
	line-height: 1.65;
}

.svc-pro-steps {
	list-style: none;
	margin: 1.25rem 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
}

.svc-pro-steps li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.85rem;
	align-items: start;
}

.svc-pro-step-num {
	font-family: var(--font-display);
	font-size: 1.35rem;
	color: var(--sam-gold);
	letter-spacing: 0.06em;
	line-height: 1;
	padding-top: 0.2rem;
}

.svc-pro-steps h3 {
	margin: 0 0 0.35rem;
	font-size: 1.15rem;
	color: var(--sam-white);
}

.svc-pro-steps p {
	margin: 0;
	color: var(--sam-muted);
	font-weight: 300;
	line-height: 1.6;
}

.svc-pro-deliverables {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.65rem 1.25rem;
	margin: 1.75rem 0 0;
	padding: 0;
	list-style: none;
}

.svc-pro-deliverables li {
	position: relative;
	padding-left: 1.1rem;
	color: var(--sam-muted);
	font-size: 0.95rem;
	line-height: 1.5;
}

.svc-pro-deliverables li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 50%;
	background: var(--sam-gold);
}

.svc-pro-story {
	background: rgba(255, 255, 255, 0.015);
}

@media (max-width: 960px) {
	.svc-pro-split,
	.svc-pro-split-reverse {
		grid-template-columns: 1fr;
	}

	.svc-pro-split-reverse .svc-pro-visual {
		order: -1;
	}

	.svc-pro-card-grid,
	.svc-pro-deliverables {
		grid-template-columns: 1fr;
	}

	.svc-hub-banner {
		aspect-ratio: 16 / 10;
		max-height: 280px;
	}
}

.clients-logos {
	background: var(--sam-black);
	padding-bottom: var(--space-xl);
}

.logo-wall {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	margin-top: 1.5rem;
	background: var(--sam-border);
	border: 1px solid var(--sam-border);
}

.logo-wall li {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100px;
	padding: 1.25rem;
	background: var(--sam-surface);
}

.logo-wall span {
	font-family: var(--font-display);
	font-size: 1.35rem;
	letter-spacing: 0.08em;
	color: var(--sam-gold);
	text-align: center;
}

.clients-stories {
	background: var(--sam-charcoal);
}

.client-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.client-card {
	padding: 1.5rem 0;
	border-top: 1px solid var(--sam-border);
}

.client-card h3 {
	font-size: 1.35rem;
	margin-bottom: 0.5rem;
	color: var(--sam-gold-soft);
}

.client-card p {
	margin: 0;
	color: var(--sam-muted);
	font-weight: 300;
}

.team-intro {
	background: var(--sam-charcoal);
}

.team-roles {
	background: var(--sam-black);
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
}

.team-card {
	padding: var(--space-lg) var(--space-md) var(--space-lg) 0;
	border-top: 1px solid var(--sam-border);
}

.team-card:nth-child(odd) {
	padding-right: var(--space-lg);
	border-right: 1px solid var(--sam-border);
}

.team-card:nth-child(even) {
	padding-left: var(--space-lg);
}

.team-card h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.team-card p {
	margin: 0;
	color: var(--sam-muted);
	font-weight: 300;
}

.gallery-section {
	background: var(--sam-black-deep);
}

.gallery-hero .hero-actions {
	margin-top: 1.25rem;
}

.gallery-gmb-section .section-header {
	margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.gmb-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 2.5vw, 1.5rem);
}

.gmb-card {
	display: flex;
	flex-direction: column;
	margin: 0;
	border: 1px solid rgba(229, 160, 13, 0.18);
	border-radius: 16px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.02);
	transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.gmb-card:hover {
	border-color: rgba(229, 160, 13, 0.45);
	transform: translateY(-3px);
}

.gmb-card-media {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	cursor: zoom-in;
	background: #0c0c0c;
}

.gmb-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.45s var(--ease);
}

.gmb-card:hover .gmb-card-media img {
	transform: scale(1.04);
}

.gmb-card-badge {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 1;
	padding: 0.3rem 0.55rem;
	border-radius: 999px;
	border: 1px solid rgba(229, 160, 13, 0.4);
	background: rgba(10, 10, 10, 0.75);
	color: var(--sam-gold-soft);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	backdrop-filter: blur(8px);
}

.gmb-card-body {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	padding: 1.05rem 1.1rem 1.2rem;
	flex: 1;
}

.gmb-card-date {
	margin: 0;
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(240, 193, 75, 0.75);
}

.gmb-card-title {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.35rem;
	letter-spacing: 0.03em;
	line-height: 1.15;
	color: var(--sam-white);
}

.gmb-card-excerpt {
	margin: 0;
	color: var(--sam-muted);
	font-weight: 300;
	font-size: 0.92rem;
	line-height: 1.55;
	flex: 1;
}

.gmb-card-link {
	margin-top: 0.35rem;
	color: var(--sam-gold);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-decoration: none;
}

.gmb-card-link:hover {
	color: var(--sam-gold-bright);
}

.gmb-gallery-cta {
	margin-top: clamp(2rem, 4vw, 3rem);
	padding: 1.5rem;
	border-radius: 16px;
	border: 1px solid rgba(229, 160, 13, 0.22);
	background: linear-gradient(135deg, rgba(229, 160, 13, 0.08), transparent 55%);
	text-align: center;
}

.gmb-gallery-cta p {
	margin: 0 0 1.1rem;
	color: var(--sam-muted);
	font-weight: 300;
}

.gmb-gallery-cta .cta-actions {
	justify-content: center;
}

.gmb-lightbox {
	padding: 0;
	border: 1px solid rgba(229, 160, 13, 0.28);
	border-radius: 18px;
	background: #0b0b0b;
	color: var(--sam-white);
	max-width: min(920px, calc(100vw - 1.5rem));
	width: 100%;
	overflow: hidden;
}

.gmb-lightbox::backdrop {
	background: rgba(0, 0, 0, 0.82);
	backdrop-filter: blur(6px);
}

.gmb-lightbox-close {
	position: absolute;
	top: 0.65rem;
	right: 0.75rem;
	z-index: 2;
	width: 2.4rem;
	height: 2.4rem;
	border: 1px solid rgba(229, 160, 13, 0.35);
	border-radius: 999px;
	background: rgba(10, 10, 10, 0.8);
	color: var(--sam-gold-soft);
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
}

.gmb-lightbox-figure {
	margin: 0;
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
}

.gmb-lightbox-figure img {
	width: 100%;
	height: 100%;
	min-height: 320px;
	max-height: min(78vh, 720px);
	object-fit: cover;
	display: block;
	background: #111;
}

.gmb-lightbox-figure figcaption {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	padding: 1.5rem 1.35rem;
	justify-content: center;
}

.gmb-lightbox-date {
	margin: 0;
	font-size: 0.7rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(240, 193, 75, 0.75);
}

.gmb-lightbox-title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 3vw, 2rem);
	line-height: 1.1;
	color: var(--sam-white);
}

.gmb-lightbox-excerpt {
	margin: 0 0 0.5rem;
	color: var(--sam-muted);
	font-weight: 300;
	line-height: 1.6;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.gallery-item {
	margin: 0;
	aspect-ratio: 4 / 3;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	padding: 1.25rem;
}

.gallery-item figcaption {
	position: relative;
	z-index: 1;
	font-family: var(--font-display);
	font-size: 1.15rem;
	letter-spacing: 0.06em;
	color: var(--sam-white);
}

.gal-1 { background: linear-gradient(160deg, #1a1a1a, #2a2008), repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(229,160,13,0.07) 10px, rgba(229,160,13,0.07) 11px); }
.gal-2 { background: radial-gradient(ellipse at 60% 40%, rgba(255,153,0,0.28), transparent 55%), #141414; }
.gal-3 { background: linear-gradient(200deg, rgba(212,175,55,0.22), transparent 50%), #1a1a1a; }
.gal-4 { background: linear-gradient(135deg, #222 0%, #0a0a0a 100%); }
.gal-5 { background: radial-gradient(circle at 30% 70%, rgba(229,160,13,0.2), transparent 50%), #121212; }
.gal-6 { background: linear-gradient(45deg, #1a1408, #0a0a0a); }

.gallery-note {
	margin-top: 2rem;
	font-size: 0.875rem;
	color: var(--sam-muted);
}

@media (max-width: 960px) {
	.gmb-gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gmb-lightbox-figure {
		grid-template-columns: 1fr;
	}

	.gmb-lightbox-figure img {
		max-height: 42vh;
		min-height: 220px;
	}
}

@media (max-width: 640px) {
	.gmb-gallery-grid {
		grid-template-columns: 1fr;
	}

	.gmb-gallery-cta .cta-actions {
		flex-direction: column;
	}

	.gmb-gallery-cta .cta-actions .btn {
		width: 100%;
		justify-content: center;
	}

	.gallery-hero .hero-actions {
		flex-direction: column;
	}

	.gallery-hero .hero-actions .btn {
		width: 100%;
		justify-content: center;
	}
}

.contact-section {
	background:
		radial-gradient(ellipse 55% 40% at 12% 18%, rgba(229, 160, 13, 0.08), transparent 60%),
		var(--sam-black);
	padding-block: clamp(2.75rem, 6vw, 4.5rem);
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: clamp(1.75rem, 4vw, 3rem);
	align-items: stretch;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	min-width: 0;
}

.contact-info-top {
	display: grid;
	grid-template-columns: minmax(0, 140px) minmax(0, 1fr);
	gap: 1.15rem 1.35rem;
	align-items: center;
}

.contact-owl {
	margin: 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.contact-owl .owl-mascot {
	width: 100%;
	max-width: 150px;
	height: auto;
	margin: 0;
	filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.55));
}

.contact-info-intro {
	min-width: 0;
}

.contact-info-title {
	margin: 0.35rem 0 0.55rem;
	font-size: clamp(1.65rem, 3.2vw, 2.35rem);
	line-height: 1.05;
	color: var(--sam-white);
}

.contact-info-lead {
	margin: 0;
	max-width: 28ch;
	color: var(--sam-muted);
	font-size: 0.95rem;
	line-height: 1.55;
}

.contact-list {
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.85rem;
}

.contact-list li {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	padding: 0.95rem 1rem;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(229, 160, 13, 0.18);
	min-height: 4.75rem;
}

.contact-list span {
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--sam-gold);
}

.contact-list strong,
.contact-list a {
	color: var(--sam-white);
	font-weight: 400;
	font-size: 0.95rem;
	line-height: 1.35;
	text-decoration: none;
	word-break: break-word;
}

.contact-list a:hover {
	color: var(--sam-gold-soft);
}

.contact-social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem 0.85rem;
}

.contact-social a {
	position: relative;
	padding-right: 0.85rem;
}

.contact-social a:not(:last-child)::after {
	content: "·";
	position: absolute;
	right: 0;
	color: var(--sam-muted);
}

.contact-quick-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.contact-quick-actions .btn {
	min-height: 2.75rem;
	padding-inline: 1.25rem;
}

.contact-note {
	margin: 0;
	font-size: 0.75rem;
	letter-spacing: 0.04em;
	color: rgba(154, 154, 154, 0.85);
	line-height: 1.5;
}

.contact-form-wrap {
	display: flex;
	flex-direction: column;
	gap: 1.35rem;
	padding: clamp(1.35rem, 3vw, 2rem);
	background:
		linear-gradient(165deg, rgba(255, 255, 255, 0.04), transparent 42%),
		var(--sam-surface);
	border: 1px solid rgba(229, 160, 13, 0.22);
	box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
	min-height: 100%;
}

.contact-form-head {
	margin: 0;
}

.contact-form-title {
	margin: 0.35rem 0 0;
	font-size: clamp(1.45rem, 2.6vw, 1.9rem);
	line-height: 1.1;
	color: var(--sam-white);
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.05rem;
	flex: 1;
}

.contact-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.05rem;
}

.contact-form label {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.contact-form label span {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--sam-gold);
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 0.9rem 1rem;
	background: var(--sam-black-deep);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius);
	color: var(--sam-white);
	font-family: inherit;
	font-size: 0.95rem;
	transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.contact-form textarea {
	min-height: 8.5rem;
	resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: rgba(154, 154, 154, 0.75);
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--sam-gold);
	box-shadow: 0 0 0 3px rgba(229, 160, 13, 0.15);
}

.contact-submit {
	width: 100%;
	margin-top: 0.35rem;
}

.contact-success {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.75rem;
	min-height: 16rem;
	padding: 0.5rem 0;
}

@media (max-width: 960px) {
	.logo-wall,
	.client-grid,
	.team-grid,
	.gallery-grid {
		grid-template-columns: 1fr 1fr;
	}

	.contact-layout,
	.team-grid {
		grid-template-columns: 1fr;
	}

	.contact-info-top {
		grid-template-columns: minmax(0, 110px) minmax(0, 1fr);
	}

	.contact-form-row {
		grid-template-columns: 1fr;
	}

	.team-card:nth-child(odd),
	.team-card:nth-child(even) {
		padding: var(--space-md) 0;
		border-right: none;
	}
}

@media (max-width: 600px) {
	.logo-wall,
	.client-grid,
	.gallery-grid {
		grid-template-columns: 1fr;
	}

	.contact-info-top {
		grid-template-columns: 1fr;
	}

	.contact-owl {
		justify-content: flex-start;
	}

	.contact-owl .owl-mascot {
		max-width: 130px;
	}

	.contact-list {
		grid-template-columns: 1fr;
	}

	.contact-quick-actions {
		flex-direction: column;
	}

	.contact-quick-actions .btn {
		width: 100%;
		justify-content: center;
	}

	.primary-nav .nav-menu {
		max-height: 70vh;
		overflow-y: auto;
	}
}

/* Owl mascot placements
   ========================================================================== */

.owl-mascot {
	width: 100%;
	height: auto;
	max-width: 460px;
	margin-inline: auto;
	object-fit: contain;
	object-position: center bottom;
	filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.55));
	animation: owlFloat 4.5s ease-in-out infinite;
}

.hero-image.owl-mascot {
	max-width: 640px;
	animation: owlFloat 4.5s ease-in-out infinite;
}

@keyframes owlFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-12px); }
}

.split-owl {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: var(--space-xl);
	align-items: center;
}

.split-owl-reverse {
	grid-template-columns: 0.85fr 1.15fr;
}

.split-owl-copy p {
	color: var(--sam-muted);
	font-weight: 300;
}

.split-owl-visual {
	margin: 0;
	position: relative;
	display: block;
	justify-content: unset;
}

.split-owl-visual.home-photo-frame {
	display: block;
}

.split-owl .confusion-list {
	grid-template-columns: 1fr;
	margin-top: 1rem;
}

.owl-duo {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 1.5rem;
	margin-top: var(--space-xl);
	flex-wrap: wrap;
}

.owl-duo-img {
	max-width: 260px;
}

.cta-with-owl {
	padding: var(--space-2xl) 0;
}

.cta-owl-layout {
	display: grid;
	grid-template-columns: 0.75fr 1.25fr;
	gap: var(--space-lg);
	align-items: center;
}

.cta-owl-visual {
	margin: 0;
	display: flex;
	justify-content: center;
}

.cta-owl-visual .owl-mascot {
	max-width: 340px;
}

.cta-owl-copy h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	margin: 0.5rem 0 0.75rem;
}

@media (max-width: 960px) {
	.split-owl,
	.split-owl-reverse,
	.cta-owl-layout {
		grid-template-columns: 1fr;
		text-align: left;
	}

	/*
	 * Phone: always show copy first, then photo.
	 * Reverse sections put the figure first in the DOM — without this,
	 * story's photo and why's photo stack back-to-back (2 images at once).
	 */
	.split-owl-reverse .split-owl-copy {
		order: 1;
	}

	.split-owl-reverse .split-owl-visual {
		order: 2;
	}

	.home-story .split-owl,
	.home-why .split-owl,
	.game-section .split-owl,
	.home-why .split-owl-reverse,
	.help-closer.split-owl,
	.help-closer.split-owl-reverse {
		gap: 1.35rem;
	}

	.home-story,
	.home-why,
	.game-section {
		padding-block: clamp(2.5rem, 6vw, 3.75rem);
	}

	.home-photo-frame {
		max-width: 100%;
		margin-inline: auto;
		margin-top: 0.35rem;
	}

	.home-photo-frame > img:first-child {
		aspect-ratio: 16 / 10;
		max-height: min(48vw, 260px);
		width: 100%;
		object-fit: cover;
		border-radius: 4px;
	}

	.home-photo-owl {
		right: 2%;
		bottom: -4%;
		width: min(34%, 140px) !important;
	}

	.owl-mascot {
		max-width: 340px;
	}

	.hero-image.owl-mascot {
		max-width: 420px;
	}
}

/* About
   ========================================================================== */

.about {
	background: var(--sam-charcoal);
	overflow: hidden;
}

.about-stripe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--sam-gold-bright), var(--sam-gold), transparent 70%);
}

.about-layout {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: var(--space-xl);
	align-items: center;
}

.about-copy p {
	color: var(--sam-muted);
	font-weight: 300;
	max-width: 34rem;
}

.about-stats {
	display: flex;
	flex-direction: column;
	gap: var(--space-lg);
	padding: var(--space-lg);
	border-left: 1px solid var(--sam-gold-line);
}

.stat-value {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(3rem, 6vw, 4.5rem);
	line-height: 1;
	background: linear-gradient(135deg, var(--sam-gold-soft), var(--sam-gold-bright), var(--sam-gold));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.stat-label {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.8125rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--sam-muted);
}

/* Work
   ========================================================================== */

.work {
	background: var(--sam-black-deep);
}

.work-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.work-item {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.work-visual {
	aspect-ratio: 4 / 3;
	background: var(--sam-surface);
	position: relative;
	overflow: hidden;
}

.work-visual::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, transparent 40%, rgba(229, 160, 13, 0.25));
	opacity: 0;
	transition: opacity 0.4s var(--ease);
}

.work-item:hover .work-visual::after {
	opacity: 1;
}

.work-visual-1 {
	background:
		linear-gradient(135deg, var(--sam-surface) 0%, var(--sam-surface-2) 100%),
		repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(229, 160, 13, 0.06) 12px, rgba(229, 160, 13, 0.06) 13px);
}

.work-visual-2 {
	background:
		radial-gradient(ellipse at 70% 30%, rgba(255, 153, 0, 0.2), transparent 55%),
		var(--sam-surface);
}

.work-visual-3 {
	background:
		linear-gradient(200deg, rgba(212, 175, 55, 0.18) 0%, transparent 50%),
		var(--sam-charcoal);
}

.work-cat {
	display: block;
	margin-bottom: 0.4rem;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--sam-gold);
}

.work-meta h3 {
	font-size: 1.5rem;
	margin-bottom: 0.4rem;
}

.work-meta p {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--sam-muted);
	font-weight: 300;
}

/* CTA band
   ========================================================================== */

.cta-band {
	padding: var(--space-2xl) 0;
	background: linear-gradient(120deg, var(--sam-charcoal) 0%, var(--sam-black) 50%, #1a1408 100%);
	border-top: 1px solid var(--sam-gold-line);
	border-bottom: 1px solid var(--sam-gold-line);
}

.cta-band-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.cta-band h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	margin: 0;
	max-width: 18ch;
}

/* Blog teaser / posts
   ========================================================================== */

.blog-teaser {
	background: var(--sam-black);
}

.blog-listing-page .blog-listing-section {
	padding-top: clamp(2.5rem, 5vw, 4rem);
	background:
		radial-gradient(ellipse at 50% 0%, rgba(229, 160, 13, 0.06) 0%, transparent 50%),
		var(--sam-black);
}

.posts-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
	align-items: stretch;
}

.post-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border: 1px solid rgba(229, 160, 13, 0.2);
	background: linear-gradient(165deg, rgba(26, 26, 26, 0.98), rgba(10, 10, 10, 0.98));
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
	transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.post-card:hover {
	transform: translateY(-4px);
	border-color: rgba(229, 160, 13, 0.5);
	box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(229, 160, 13, 0.1);
}

.post-card-thumb {
	display: block;
	flex-shrink: 0;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--sam-surface);
	border-bottom: 1px solid rgba(229, 160, 13, 0.15);
}

.post-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.55s var(--ease);
}

.post-card:hover .post-card-thumb img {
	transform: scale(1.05);
}

.post-card-body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	gap: 0.75rem;
	padding: 1.15rem 1.2rem 1.35rem;
	min-height: 0;
}

.post-card-meta {
	margin: 0;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--sam-gold);
}

.post-card-title,
.post-card h2,
.post-card h3 {
	font-size: clamp(1.15rem, 1.6vw, 1.35rem);
	line-height: 1.15;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 3.45em;
}

.post-card h2 a,
.post-card h3 a,
.post-card-title a {
	color: var(--sam-white);
}

.post-card h2 a:hover,
.post-card h3 a:hover,
.post-card-title a:hover {
	color: var(--sam-gold);
}

.post-card .excerpt {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--sam-muted);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex: 1 1 auto;
}

.post-card-cta,
.post-card .btn.post-card-cta {
	margin-top: auto;
	align-self: flex-start;
	padding: 0.55rem 1.1rem;
	font-size: 0.7rem;
}

@media (max-width: 980px) {
	.posts-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* Elementor Free content area
   ========================================================================== */

.sam-elementor-main {
	min-height: 50vh;
}

.sam-elementor-content {
	width: 100%;
}

.sam-elementor-content .elementor-section.elementor-section-boxed > .elementor-container {
	max-width: var(--max);
}

.sam-elementor-canvas-main {
	min-height: 100vh;
}

body.elementor-editor-active .site-header,
body.elementor-editor-preview .site-header {
	z-index: 9998;
}

/* Homepage SEO guides + district service links
   ========================================================================== */

.home-seo-guides {
	padding-block: clamp(3rem, 6vw, 5rem);
	background:
		radial-gradient(ellipse at 20% 0%, rgba(229, 160, 13, 0.08), transparent 50%),
		var(--sam-black);
}

.home-guides-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
	margin-top: 2rem;
}

.home-guide-card a {
	display: block;
	height: 100%;
	padding: 1.35rem 1.4rem;
	border: 1px solid rgba(229, 160, 13, 0.22);
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), transparent 60%);
	text-decoration: none;
	color: inherit;
	transition: border-color 0.25s ease, transform 0.25s ease;
}

.home-guide-card a:hover {
	border-color: rgba(229, 160, 13, 0.55);
	transform: translateY(-2px);
}

.home-guide-card h3 {
	font-family: var(--font-display, inherit);
	font-size: clamp(1.15rem, 2vw, 1.45rem);
	letter-spacing: 0.02em;
	margin: 0 0 0.55rem;
	color: var(--sam-gold, #e5a00d);
}

.home-guide-card p {
	margin: 0 0 0.85rem;
	opacity: 0.85;
	line-height: 1.55;
}

.home-guide-cta {
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--sam-gold, #e5a00d);
}

.district-service-link {
	display: block;
	color: inherit;
	text-decoration: none;
	height: 100%;
}

.district-service-link:hover h3 {
	color: var(--sam-gold, #e5a00d);
}

@media (max-width: 760px) {
	.home-guides-grid {
		grid-template-columns: 1fr;
	}

	:root {
		--header-h: 4.85rem;
	}

	.site-logo-header {
		height: 44px;
		max-width: min(158px, 52vw);
	}

	.brand-lockup-footer .site-logo-footer {
		height: 46px;
		max-height: 46px;
		max-width: 160px;
	}
}

@media (max-width: 420px) {
	.site-logo-header {
		height: 40px;
		max-width: min(142px, 56vw);
	}
}

/* Page hero (inner pages)
   ========================================================================== */

.page-hero {
	padding: calc(var(--header-h) + 3.5rem) 0 3rem;
	background:
		linear-gradient(160deg, rgba(229, 160, 13, 0.12) 0%, transparent 45%),
		var(--sam-black-deep);
	border-bottom: 1px solid var(--sam-border);
}

.page-title {
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	margin: 0;
	background: linear-gradient(135deg, var(--sam-white) 0%, var(--sam-gold-soft) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.content-layout {
	display: grid;
	grid-template-columns: 1fr 280px;
	gap: var(--space-xl);
	align-items: start;
}

.content-layout.no-sidebar {
	grid-template-columns: 1fr;
}

.entry-content {
	font-weight: 300;
	color: var(--sam-muted);
}

.entry-content h2,
.entry-content h3 {
	color: var(--sam-white);
	margin-top: 1.75em;
}

.entry-content a {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.entry-content ul,
.entry-content ol {
	margin: 0 0 1.25em 1.25em;
	list-style: disc;
}

.entry-content ol {
	list-style: decimal;
}

/* SEO pillar blog / long-form guide
   ========================================================================== */

.seo-pillar-hero {
	position: relative;
	min-height: min(70vh, 620px);
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	padding: 2.5rem 0 3rem;
	background: var(--sam-black-deep);
}

.seo-pillar-hero-media {
	position: absolute;
	inset: 0;
}

.seo-pillar-hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.seo-pillar-hero-shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 48%, rgba(0, 0, 0, 0.45) 100%),
		linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, transparent 55%);
}

.seo-pillar-hero-copy {
	position: relative;
	z-index: 2;
	max-width: 48rem;
}

.seo-pillar-body {
	padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 5rem);
	max-width: 52rem;
}

.seo-toc {
	margin: 0 0 2.5rem;
	padding: 1.25rem 1.35rem;
	border: 1px solid rgba(229, 160, 13, 0.25);
	border-radius: 14px;
	background: rgba(229, 160, 13, 0.06);
}

.seo-toc-title {
	margin: 0 0 0.75rem;
	font-size: 0.72rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--sam-gold);
	font-weight: 600;
}

.seo-toc ol {
	margin: 0;
	padding-left: 1.2rem;
	display: grid;
	gap: 0.45rem;
}

.seo-toc a {
	color: var(--sam-muted);
	text-decoration: none;
	font-size: 0.95rem;
}

.seo-toc a:hover {
	color: var(--sam-gold);
}

.seo-section {
	margin: 0 0 clamp(2.25rem, 5vw, 3.5rem);
}

.seo-section h2 {
	margin: 0 0 1rem;
	font-size: clamp(1.65rem, 3.2vw, 2.25rem);
	line-height: 1.15;
	color: var(--sam-white);
}

.seo-section h3 {
	margin: 1.5rem 0 0.75rem;
	color: var(--sam-gold-soft);
}

.seo-figure {
	margin: 0 0 1.35rem;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(229, 160, 13, 0.2);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
	background: #0a0a0a;
	aspect-ratio: 16 / 9;
}

.seo-figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.seo-figure figcaption {
	padding: 0.65rem 0.9rem;
	font-size: 0.82rem;
	color: var(--sam-muted);
	background: rgba(0, 0, 0, 0.55);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.seo-table-wrap {
	margin: 1.25rem 0 1.5rem;
	overflow-x: auto;
	border-radius: 12px;
	border: 1px solid rgba(229, 160, 13, 0.22);
	background: rgba(255, 255, 255, 0.02);
	-webkit-overflow-scrolling: touch;
}

.seo-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 520px;
	font-size: 0.92rem;
}

.seo-table th,
.seo-table td {
	padding: 0.85rem 1rem;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.seo-table th {
	background: rgba(229, 160, 13, 0.12);
	color: var(--sam-gold);
	font-weight: 600;
	letter-spacing: 0.03em;
	white-space: nowrap;
}

.seo-table td {
	color: var(--sam-muted);
	font-weight: 300;
	line-height: 1.55;
}

.seo-table tr:last-child td {
	border-bottom: 0;
}

.seo-table a {
	color: var(--sam-gold-soft);
	text-decoration: none;
}

.seo-table a:hover {
	color: var(--sam-gold-bright);
}

.seo-section ul {
	margin: 0 0 1.25rem 1.15rem;
	color: var(--sam-muted);
	font-weight: 300;
	line-height: 1.7;
}

.seo-faq .district-faq-list {
	margin-top: 1rem;
}

.seo-cta-band .cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 1.25rem;
}

@media (max-width: 640px) {
	.seo-pillar-hero {
		min-height: auto;
		padding-top: 5.5rem;
	}

	.seo-figure {
		aspect-ratio: 16 / 10;
		max-height: 260px;
	}

	.seo-cta-band .cta-actions {
		flex-direction: column;
	}

	.seo-cta-band .cta-actions .btn {
		width: 100%;
		justify-content: center;
	}
}

.entry-meta {
	margin-bottom: 1.5rem;
	font-size: 0.8125rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--sam-gold);
}

.entry-footer {
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--sam-border);
	font-size: 0.875rem;
	color: var(--sam-muted);
}

/* Sidebar
   ========================================================================== */

.sidebar .widget {
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--sam-border);
}

.widget-title {
	font-size: 1.15rem;
	margin-bottom: 1rem;
	color: var(--sam-gold);
}

.widget ul li {
	margin-bottom: 0.5rem;
}

.widget a {
	color: var(--sam-muted);
}

.widget a:hover {
	color: var(--sam-gold);
}

/* Footer
   ========================================================================== */

.site-footer {
	position: relative;
	background:
		radial-gradient(ellipse 70% 50% at 100% 0%, rgba(229, 160, 13, 0.1), transparent 55%),
		var(--sam-black-deep);
	padding: clamp(3.5rem, 7vw, 6.5rem) 0 clamp(1.5rem, 3vw, 2.25rem);
	border-top: 1px solid rgba(229, 160, 13, 0.18);
	overflow: hidden;
}

.footer-glow,
.footer-accent {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(115deg, transparent 55%, rgba(255, 153, 0, 0.07) 100%);
}

.footer-inner {
	position: relative;
	z-index: 1;
	width: min(100% - 2.5rem, var(--max));
	margin-inline: auto;
}

.footer-cta-band {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: center;
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
	padding-bottom: clamp(2rem, 4vw, 3rem);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta-copy {
	max-width: 36rem;
}

.footer-eyebrow {
	margin: 0 0 0.65rem;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--sam-gold);
}

.footer-heading {
	font-size: clamp(2rem, 4.5vw, 3.35rem);
	margin: 0 0 0.85rem;
	line-height: 0.98;
	color: var(--sam-white);
}

.footer-cta-lead {
	margin: 0 0 1.5rem;
	color: var(--sam-muted);
	font-weight: 300;
	font-size: 1.05rem;
	line-height: 1.65;
	max-width: 34rem;
}

.footer-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}

.footer-cta-visual {
	margin: 0;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid rgba(229, 160, 13, 0.22);
	box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
	aspect-ratio: 4 / 3;
	background: #0c0c0c;
}

.footer-cta-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
	gap: clamp(1.5rem, 3vw, 2.5rem);
	align-items: start;
}

.footer-brand .brand-lockup-footer {
	margin-bottom: 0.35rem;
}

.footer-tagline {
	margin: 0.85rem 0 0.65rem;
	color: var(--sam-muted);
	font-weight: 300;
	font-size: 0.94rem;
	line-height: 1.6;
	max-width: 22rem;
}

.footer-address {
	margin: 0 0 1rem;
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(240, 193, 75, 0.78);
}

.footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-social a {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 0.75rem;
	border: 1px solid rgba(229, 160, 13, 0.28);
	border-radius: 999px;
	color: var(--sam-gold-soft);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	transition: border-color 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.footer-social a:hover {
	border-color: rgba(229, 160, 13, 0.55);
	background: rgba(229, 160, 13, 0.1);
	color: var(--sam-gold-bright);
}

.footer-col-title,
.site-footer .widget-title {
	margin: 0 0 1rem;
	font-family: var(--font-display);
	font-size: 1.35rem;
	letter-spacing: 0.06em;
	color: var(--sam-gold);
}

.footer-menu {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-menu a {
	color: var(--sam-muted);
	font-size: 0.92rem;
	text-decoration: none;
	transition: color 0.2s var(--ease);
}

.footer-menu a:hover {
	color: var(--sam-gold);
}

.footer-contact-list li {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	padding-bottom: 0.55rem;
}

.footer-contact-label {
	font-size: 0.68rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(240, 193, 75, 0.7);
}

.footer-contact-plain {
	color: var(--sam-muted);
	font-size: 0.92rem;
}

.footer-gmb {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
	gap: clamp(1.25rem, 3vw, 2.5rem);
	align-items: stretch;
	margin-top: clamp(2rem, 4vw, 3rem);
	padding: clamp(1.25rem, 3vw, 1.75rem);
	border: 1px solid rgba(229, 160, 13, 0.22);
	border-radius: 18px;
	background:
		linear-gradient(135deg, rgba(229, 160, 13, 0.08), transparent 42%),
		rgba(255, 255, 255, 0.02);
}

.footer-gmb-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.footer-gmb-title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.55rem, 3vw, 2.15rem);
	line-height: 1.05;
	color: var(--sam-white);
}

.footer-gmb-lead {
	margin: 0 0 1rem;
	color: var(--sam-muted);
	font-weight: 300;
	font-size: 0.98rem;
	line-height: 1.65;
	max-width: 32rem;
}

.footer-gmb-address {
	margin: 0 0 1.25rem;
	max-width: 30rem;
}

.footer-gmb-address a {
	color: var(--sam-gold-soft);
	font-size: 0.92rem;
	line-height: 1.55;
	text-decoration: none;
	border-bottom: 1px solid rgba(229, 160, 13, 0.28);
	transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.footer-gmb-address a:hover {
	color: var(--sam-gold-bright);
	border-color: rgba(229, 160, 13, 0.55);
}

.footer-gmb-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.footer-gmb-map {
	position: relative;
	min-height: 260px;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid rgba(229, 160, 13, 0.2);
	background: #0c0c0c;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.footer-gmb-map iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 280px;
	border: 0;
	filter: grayscale(0.15) contrast(1.05);
}

.footer-gmb-map-link {
	position: absolute;
	right: 0.75rem;
	bottom: 0.75rem;
	z-index: 2;
	padding: 0.45rem 0.75rem;
	border-radius: 999px;
	border: 1px solid rgba(229, 160, 13, 0.35);
	background: rgba(10, 10, 10, 0.82);
	color: var(--sam-gold-soft);
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	backdrop-filter: blur(8px);
	transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.footer-gmb-map-link:hover {
	background: rgba(229, 160, 13, 0.18);
	color: var(--sam-gold-bright);
}

.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.85rem 1.5rem;
	margin-top: clamp(2rem, 4vw, 3rem);
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 0.8rem;
	color: var(--sam-muted);
}

.footer-bottom p {
	margin: 0;
}

.footer-bottom-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem 1.25rem;
}

.footer-bottom-links a {
	color: var(--sam-muted);
	text-decoration: none;
	letter-spacing: 0.04em;
}

.footer-bottom-links a:hover {
	color: var(--sam-gold);
}

@media (max-width: 960px) {
	.footer-cta-band {
		grid-template-columns: 1fr;
	}

	.footer-cta-visual {
		order: -1;
		max-height: 260px;
		aspect-ratio: 16 / 10;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.footer-brand {
		grid-column: 1 / -1;
	}

	.footer-gmb {
		grid-template-columns: 1fr;
		padding: 1.15rem;
	}

	.footer-gmb-map {
		min-height: 240px;
		order: -1;
	}

	.footer-gmb-map iframe {
		min-height: 240px;
	}
}

@media (max-width: 640px) {
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}

	.footer-cta-actions {
		flex-direction: column;
	}

	.footer-cta-actions .btn {
		width: 100%;
	}

	.footer-gmb-actions {
		flex-direction: column;
	}

	.footer-gmb-actions .btn {
		width: 100%;
		justify-content: center;
	}

	.footer-gmb-map iframe {
		min-height: 220px;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* Pagination / Comments / Forms
   ========================================================================== */

.navigation.pagination {
	margin-top: var(--space-xl);
	display: flex;
	justify-content: center;
}

.nav-links {
	display: flex;
	gap: 0.5rem;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.75rem;
	border: 1px solid var(--sam-border);
	color: var(--sam-muted);
	font-size: 0.875rem;
}

.page-numbers.current,
.page-numbers:hover {
	border-color: var(--sam-gold);
	color: var(--sam-gold);
}

.comments-area {
	margin-top: var(--space-xl);
	padding-top: var(--space-lg);
	border-top: 1px solid var(--sam-border);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea,
.search-form input[type="search"],
.wp-block-search__input {
	width: 100%;
	padding: 0.85rem 1rem;
	background: var(--sam-surface);
	border: 1px solid var(--sam-border);
	border-radius: var(--radius);
	color: var(--sam-white);
	font-family: inherit;
	font-size: 1rem;
}

.comment-form input:focus,
.comment-form textarea:focus,
.search-form input:focus {
	outline: none;
	border-color: var(--sam-gold);
}

.comment-form .submit,
.search-form .search-submit,
.wp-block-search__button {
	margin-top: 0.75rem;
	padding: 0.85rem 1.75rem;
	background: linear-gradient(135deg, var(--sam-gold-bright), var(--sam-gold));
	color: var(--sam-black);
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border: none;
	border-radius: var(--radius);
	cursor: pointer;
}

.no-results {
	text-align: center;
	padding: var(--space-xl) 0;
}

.no-results h2 {
	margin-bottom: 0.75rem;
}

.error-404 {
	text-align: center;
	padding: var(--space-3xl) 0;
}

.error-404 .error-code {
	font-family: var(--font-display);
	font-size: clamp(6rem, 18vw, 12rem);
	line-height: 1;
	background: linear-gradient(135deg, var(--sam-gold-bright), var(--sam-gold));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* Reveal animation
   ========================================================================== */

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(32px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes stripeIn {
	from {
		opacity: 0;
		transform: translateX(40px);
	}
	to {
		opacity: 0.95;
		transform: translateX(0);
	}
}

@keyframes scrollPulse {
	0%, 100% { opacity: 0.3; transform: scaleY(0.7); transform-origin: top; }
	50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* Responsive
   ========================================================================== */

@media (max-width: 960px) {
	.hero-content {
		grid-template-columns: 1fr;
		align-items: start;
		min-height: 0;
		text-align: left;
		gap: 1.25rem;
		padding-bottom: 0.75rem;
	}

	/* Phone: brand copy first, then Wise Owl + caption */
	.hero-copy {
		order: 1;
		padding-bottom: 0;
		align-self: start;
		width: 100%;
	}

	.hero-visual {
		order: 2;
		justify-content: flex-end;
		align-items: center;
		align-self: center;
		min-height: 0;
		height: auto;
		width: 100%;
		margin: 1.15rem 0 0;
		padding: 0.5rem 0 0.25rem;
	}

	.hero-image,
	.hero-image.owl-mascot {
		width: min(68%, 260px);
		max-width: 260px;
		max-height: min(40vh, 300px);
		margin-inline: auto;
		animation: none;
	}

	.hero-visual::before {
		height: 38%;
		opacity: 0.75;
	}

	.hero-visual::after {
		width: min(48%, 180px);
		height: 44%;
		bottom: 18%;
	}

	.hero-owl-badge {
		margin-top: 0.45rem;
		font-size: 0.68rem;
		letter-spacing: 0.22em;
	}

	.home-hero .hero-photo {
		opacity: 0.22;
	}

	.home-hero .hero-photo-veil {
		background:
			linear-gradient(180deg, rgba(8, 8, 8, 0.55) 0%, rgba(8, 8, 8, 0.82) 48%, rgba(8, 8, 8, 0.96) 100%);
	}

	.hero-hook {
		max-width: none;
		font-size: clamp(1.85rem, 8vw, 2.45rem);
	}

	.hero-lead {
		font-size: 0.95rem;
		line-height: 1.55;
	}

	.hero-stripe {
		width: 36%;
		height: 32%;
		right: -12%;
		top: -8%;
		opacity: 0.4;
	}

	.hero-scroll {
		display: none;
	}

	.cta-owl-layout .cta-owl-copy {
		order: 1;
	}

	.cta-owl-layout .cta-owl-visual {
		order: 2;
		margin-top: 0.5rem;
	}

	.cta-owl-visual .owl-mascot {
		max-width: min(70%, 260px);
	}

	.work-grid,
	.posts-grid,
	.content-layout,
	.help-grid,
	.testimonial-grid,
	.pain-grid,
	.confusion-list,
	.about-owl-layout,
	.trust-grid,
	.ninja-grid {
		grid-template-columns: 1fr;
	}

	.pain-grid {
		grid-template-columns: 1fr 1fr;
	}

	.pain-item-wide {
		grid-column: 1 / -1;
	}

	.sell-examples {
		grid-template-columns: 1fr;
	}

	.help-closer.split-owl,
	.help-closer.split-owl-reverse {
		grid-template-columns: 1fr;
	}

	.ninja-grid {
		grid-template-columns: 1fr 1fr;
	}

	.trust-item:nth-child(odd),
	.trust-item:nth-child(even) {
		padding: var(--space-md) 0;
		border-right: none;
	}

	.service-row {
		grid-template-columns: 3rem 1fr;
	}
}

@media (max-width: 1100px) {
	.nav-toggle {
		display: flex;
	}

	.site-logo-header {
		height: 48px;
		max-width: min(176px, 48vw);
	}

	.brand-lockup {
		min-height: 52px;
	}

	.brand-owl {
		width: 44px;
		height: 44px;
	}

	.brand-divider {
		height: 34px;
	}

	.brand-sam {
		font-size: 1.9rem;
	}

	.brand-wordmark {
		padding-right: 3.25rem;
	}

	.brand-swoosh {
		width: 6.5rem;
		left: 1.5rem;
		bottom: -0.25rem;
	}

	.brand-agency {
		font-size: 0.65rem;
		letter-spacing: 0.18em;
	}

	.brand-tag {
		display: none;
	}

	.primary-nav {
		position: fixed;
		inset: 0 0 0 auto;
		width: min(100%, 340px);
		height: 100dvh;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		padding: calc(var(--header-h) + 1.25rem) 1.35rem 2rem;
		background: var(--sam-black-deep);
		border-left: 1px solid var(--sam-gold-line);
		transform: translateX(100%);
		transition: transform 0.4s var(--ease);
		gap: 1.5rem;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		z-index: 105;
		box-shadow: -20px 0 50px rgba(0, 0, 0, 0.45);
	}

	.primary-nav.is-open {
		transform: translateX(0);
	}

	.primary-nav::before {
		content: "";
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.55);
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.3s var(--ease);
		z-index: -1;
	}

	.primary-nav.is-open::before {
		opacity: 1;
		pointer-events: auto;
		right: min(100%, 340px);
		left: 0;
		width: auto;
	}

	.nav-menu {
		flex-direction: column;
		align-items: flex-start;
		flex-wrap: nowrap;
		gap: 0.35rem;
		width: 100%;
		height: auto;
	}

	.nav-menu > .menu-item {
		width: 100%;
		height: auto;
		border-bottom: none;
	}

	.nav-menu .menu-item-has-children {
		width: 100%;
		padding-bottom: 0;
		margin-bottom: 0;
	}

	.nav-menu > .menu-item > a,
	.nav-menu .menu-item-has-children > a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		height: auto;
		padding: 0.95rem 0.15rem;
		line-height: 1.2;
	}

	.nav-menu .menu-item-has-children > a::after {
		margin-left: 0.75rem;
		margin-top: 0;
		transition: transform 0.25s var(--ease);
	}

	.nav-menu .menu-item-has-children.is-open > a::after {
		transform: rotate(180deg);
	}

	.nav-menu > .menu-item:not(.menu-item-has-children) > a {
		justify-content: flex-start;
	}

	.header-cta,
	.header-cta:link,
	.header-cta:visited,
	.header-cta:hover,
	.header-cta:focus,
	.header-cta:active {
		width: 100%;
		height: auto;
		min-height: 2.75rem;
		padding: 0.85rem 1.25rem;
		justify-content: center;
	}

	.nav-menu .sub-menu {
		position: static;
		transform: none !important;
		left: auto;
		right: auto;
		display: none;
		grid-template-columns: 1fr !important;
		min-width: 0 !important;
		max-width: none !important;
		max-height: none;
		margin-top: 0;
		margin-bottom: 0.5rem;
		padding: 0.15rem 0 0.65rem 0.85rem;
		border: 0;
		border-left: 1px solid var(--sam-gold-line);
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		background: transparent;
		overflow: visible;
	}

	.nav-menu .has-sub-services > .sub-menu,
	.nav-menu .has-sub-location > .sub-menu {
		grid-template-columns: 1fr !important;
		min-width: 0 !important;
		max-width: none !important;
	}

	.nav-menu .menu-item-has-children.is-open > .sub-menu {
		display: grid;
	}

	.nav-menu .sub-menu .menu-item:first-child {
		grid-column: auto;
	}

	.nav-menu .sub-menu .menu-item:first-child a {
		border-bottom: 1px solid rgba(229, 160, 13, 0.2);
		margin-bottom: 0.35rem;
		padding-bottom: 0.65rem;
	}

	.nav-menu .sub-menu a {
		font-size: 0.86rem;
		padding: 0.55rem 0.25rem;
		max-width: none;
		background: transparent;
	}

	.nav-menu .sub-menu a:hover,
	.nav-menu .sub-menu a:focus {
		background: transparent;
	}

	.nav-menu a {
		font-size: 0.95rem;
		letter-spacing: 0.06em;
		white-space: normal;
	}

	.header-cta {
		width: 100%;
		justify-content: center;
		margin-top: 0.5rem;
		padding: 0.85rem 1.25rem;
		font-size: 0.8rem;
	}

	.hero {
		padding-top: calc(var(--header-h) + 0.85rem);
		min-height: auto;
		padding-bottom: 3.25rem;
	}

	.home-hero .hero-content {
		min-height: 0;
	}

	.hero-tagline {
		flex-wrap: wrap;
		margin-bottom: 0.85rem;
		font-size: 0.75rem;
	}

	.hero-brand-line {
		margin-bottom: 0.65rem;
	}

	.hero-actions {
		gap: 0.75rem;
		margin-top: 0.25rem;
	}

	.section {
		padding: var(--space-2xl) 0;
	}

	.cta-band-inner {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 480px) {
	.hero-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.btn-lg {
		width: 100%;
	}

	.posts-grid {
		grid-template-columns: 1fr;
	}
}

/* WordPress admin bar offset */
.admin-bar .site-header {
	top: 32px;
}

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}
}

/* Location hub — premium overrides
   ========================================================================== */

.location-hero {
	position: relative;
	min-height: min(92vh, 920px);
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	padding: calc(var(--header-h) + 2.5rem) 0 4rem;
	background: var(--sam-black-deep);
}

.location-hero-media {
	position: absolute;
	inset: 0;
}

.location-hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 38%;
	transform: scale(1.03);
}

.location-hero-shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(105deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.78) 36%, rgba(0, 0, 0, 0.25) 70%, rgba(0, 0, 0, 0.55) 100%),
		linear-gradient(0deg, rgba(0, 0, 0, 0.92) 0%, transparent 54%);
}

.location-hero-grain {
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: 0.16;
	background-image: radial-gradient(rgba(229, 160, 13, 0.18) 0.55px, transparent 0.55px);
	background-size: 3px 3px;
	mix-blend-mode: soft-light;
}

.location-hero-copy {
	position: relative;
	z-index: 2;
	max-width: 46rem;
}

.location-hero-copy .page-title {
	max-width: 16ch;
	font-size: clamp(2.35rem, 5.4vw, 4rem);
}

.location-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem 2.25rem;
	margin: 1.85rem 0 2.1rem;
	padding: 1.25rem 0;
	border-top: 1px solid rgba(229, 160, 13, 0.22);
	border-bottom: 1px solid rgba(229, 160, 13, 0.22);
}

.location-stats strong {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(1.85rem, 3.5vw, 2.55rem);
	line-height: 1;
	color: var(--sam-gold);
}

.location-stats span {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.72rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--sam-muted);
}

.location-story {
	background: var(--sam-charcoal);
}

.location-story-grid {
	display: grid;
	grid-template-columns: 0.78fr 1.22fr;
	gap: var(--space-xl);
	align-items: center;
}

.location-story-visual.location-place-visual,
.location-cta-visual.location-place-visual,
.district-intro-visual.location-place-visual,
.district-pain-visual.location-place-visual {
	margin: 0;
	display: block;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(229, 160, 13, 0.2);
	box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
	aspect-ratio: 4 / 3;
	background: #0a0a0a;
}

.location-story-visual.location-place-visual img,
.location-cta-visual.location-place-visual img,
.district-intro-visual.location-place-visual img,
.district-pain-visual.location-place-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	max-width: none;
	filter: none;
}

.location-story-grid {
	align-items: stretch;
}

.location-story-copy p,
.narrow-prose p,
.location-why-copy p,
.location-cta-copy > p {
	color: var(--sam-muted);
	font-weight: 300;
	font-size: 1.0625rem;
	line-height: 1.78;
}

.location-deep,
.location-process {
	background: var(--sam-black-deep);
	border-top: 1px solid var(--sam-border);
}

.location-process {
	background: var(--sam-charcoal);
}

.location-split {
	display: grid;
	grid-template-columns: 0.92fr 1.08fr;
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: center;
}

.location-split-flip {
	grid-template-columns: 1.08fr 0.92fr;
}

.location-split-flip .location-split-media {
	order: 2;
}

.location-split-flip .location-split-copy {
	order: 1;
}

.location-split-media {
	margin: 0;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(229, 160, 13, 0.2);
	box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
	aspect-ratio: 16 / 10;
	background: #0a0a0a;
}

.location-split-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.location-split-copy {
	max-width: none;
}

.location-split-copy .section-title {
	margin-bottom: 1rem;
}

.narrow-prose {
	max-width: 48rem;
}

.location-playbook {
	background: var(--sam-black);
	border-top: 1px solid var(--sam-gold-line);
}

.location-play-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin-top: var(--space-lg);
}

.location-play-card {
	padding: 0 0 1.25rem;
	border-top: none;
	border: 1px solid rgba(229, 160, 13, 0.14);
	border-radius: 18px;
	overflow: hidden;
	background: rgba(12, 12, 12, 0.96);
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.location-play-media {
	margin: 0 0 1rem;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #111;
}

.location-play-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s var(--ease);
}

.location-play-card:hover .location-play-media img {
	transform: scale(1.06);
}

.location-play-num {
	display: block;
	font-family: var(--font-display);
	font-size: 0.95rem;
	letter-spacing: 0.14em;
	color: var(--sam-gold);
	opacity: 0.75;
	margin: 0 1.25rem 0.65rem;
}

.location-play-card h3 {
	font-size: 1.4rem;
	margin: 0 1.25rem 0.65rem;
}

.location-play-card p {
	margin: 0 1.25rem 0.35rem;
	color: var(--sam-muted);
	font-weight: 300;
}

/* Division banners + district photo cards (PC + phone) */
.location-districts {
	padding-top: 1rem;
}

.location-districts-wrap {
	max-width: 1180px;
}

.location-division {
	margin-top: 0;
	margin-bottom: 3.5rem;
}

.location-division-banner {
	position: relative;
	display: block;
	margin: 0 0 1.25rem;
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid rgba(229, 160, 13, 0.22);
	box-shadow:
		0 24px 60px rgba(0, 0, 0, 0.55),
		0 0 0 1px rgba(229, 160, 13, 0.06) inset;
	aspect-ratio: 18 / 9;
	min-height: 280px;
	max-height: 460px;
	background: #0a0a0a;
}

.location-division-banner img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
	object-position: center;
	display: block;
	filter: saturate(0.95) contrast(1.05);
	transform: scale(1.02);
	transition: transform 0.7s var(--ease);
}

.location-division:hover .location-division-banner img {
	transform: scale(1.06);
}

.location-division-banner::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.88) 100%),
		linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, transparent 55%);
	pointer-events: none;
	z-index: 1;
}

.location-division-banner-copy {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: clamp(1.25rem, 3vw, 2.25rem);
	margin: 0;
	max-width: none;
}

.location-division-banner-copy .section-label {
	margin-bottom: 0.35rem;
	color: rgba(229, 160, 13, 0.92);
}

.location-division-banner-copy h3 {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(2rem, 5vw, 3.4rem);
	letter-spacing: 0.04em;
	line-height: 0.95;
	color: #fff;
	text-shadow: 0 8px 28px rgba(0, 0, 0, 0.65);
}

.location-district-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
	background: transparent;
	border: 0;
}

.location-district-grid[data-cols="3"] {
	grid-template-columns: repeat(3, 1fr);
}

.location-district-grid[data-cols="2"] {
	grid-template-columns: repeat(2, 1fr);
}

.location-district-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 0;
	padding: 0;
	gap: 0;
	overflow: hidden;
	background: #0c0c0c;
	border: 1px solid rgba(229, 160, 13, 0.16);
	border-radius: 18px;
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
	text-decoration: none;
	color: inherit;
	transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.location-district-card:hover,
.location-district-card:focus-visible {
	background: #0c0c0c;
	border-color: rgba(229, 160, 13, 0.5);
	transform: translateY(-5px);
	box-shadow: 0 22px 48px rgba(0, 0, 0, 0.5);
	outline: none;
	color: inherit;
}

.location-district-media {
	display: block;
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #111;
}

.location-district-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.55) 100%);
	pointer-events: none;
}

.location-district-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s var(--ease);
}

.location-district-grid li:nth-child(2n) .location-district-media img {
	object-position: 30% center;
}

.location-district-grid li:nth-child(3n) .location-district-media img {
	object-position: 70% center;
}

.location-district-grid li:nth-child(4n) .location-district-media img {
	object-position: center 40%;
}

.location-district-card:hover .location-district-media img {
	transform: scale(1.07);
}

.location-district-body {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	flex: 1;
	padding: 1.05rem 1.1rem 1.15rem;
}

.location-district-card .up-east-district-name {
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 2.2vw, 1.75rem);
	letter-spacing: 0.04em;
	color: var(--sam-gold);
	line-height: 1;
}

.location-district-card .up-east-district-tag {
	font-size: 0.84rem;
	color: rgba(245, 245, 245, 0.7);
	line-height: 1.4;
}

.location-district-kw {
	display: block;
	font-size: 0.76rem;
	letter-spacing: 0.01em;
	color: rgba(240, 193, 75, 0.72);
	font-weight: 400;
	line-height: 1.4;
}

.location-district-card .up-east-district-cta {
	margin-top: auto;
	padding-top: 0.75rem;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sam-gold);
}

.location-why {
	background: var(--sam-charcoal);
	border-top: 1px solid var(--sam-border);
}

.location-why-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: var(--space-xl);
	align-items: start;
}

.location-faq {
	background: var(--sam-black);
}

.location-faq-wrap {
	max-width: 52rem;
	margin-inline: auto;
}

.location-faq-list details {
	border-top: 1px solid var(--sam-border);
	padding: 1.2rem 0;
}

.location-faq-list details:last-child {
	border-bottom: 1px solid var(--sam-border);
}

.location-faq-list summary {
	cursor: pointer;
	font-family: var(--font-display);
	font-size: clamp(1.2rem, 2.2vw, 1.5rem);
	letter-spacing: 0.03em;
	color: var(--sam-gold-soft);
	list-style: none;
	padding-right: 2rem;
	position: relative;
}

.location-faq-list summary::-webkit-details-marker {
	display: none;
}

.location-faq-list summary::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 0.05rem;
	color: var(--sam-gold);
	font-size: 1.35rem;
	line-height: 1;
}

.location-faq-list details[open] summary::after {
	content: "–";
}

.location-faq-list p {
	margin: 0.9rem 0 0.2rem;
	color: var(--sam-muted);
	font-weight: 300;
	line-height: 1.72;
}

.location-cta-inner {
	display: grid;
	grid-template-columns: 0.7fr 1.3fr;
	gap: var(--space-lg);
	align-items: center;
}

.location-cta-visual {
	margin: 0;
	display: flex;
	justify-content: center;
}

@media (max-width: 1100px) {
	.location-play-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.location-district-grid,
	.location-district-grid[data-cols="3"],
	.location-district-grid[data-cols="2"] {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 960px) {
	.location-story-grid,
	.location-why-grid,
	.location-cta-inner,
	.location-split,
	.location-split-flip {
		grid-template-columns: 1fr;
	}

	.location-split-flip .location-split-media,
	.location-split-flip .location-split-copy {
		order: initial;
	}

	.location-split-media {
		aspect-ratio: 16 / 9;
		border-radius: 16px;
	}

	.location-hero {
		min-height: auto;
		padding-bottom: 2.5rem;
	}

	.location-hero-media {
		min-height: 280px;
		max-height: 380px;
	}

	.location-division-banner {
		aspect-ratio: 16 / 9;
		min-height: 200px;
		max-height: 320px;
		border-radius: 16px;
	}
}

@media (max-width: 640px) {
	.location-play-grid {
		grid-template-columns: 1fr;
	}

	.location-division {
		margin-bottom: 2.5rem;
	}

	.location-division-banner {
		aspect-ratio: 5 / 4;
		min-height: 220px;
		max-height: none;
		border-radius: 14px;
	}

	.location-division-banner-copy {
		padding: 1.1rem 1rem 1.2rem;
	}

	.location-division-banner-copy h3 {
		font-size: clamp(1.7rem, 8vw, 2.2rem);
	}

	.location-district-grid,
	.location-district-grid[data-cols="3"],
	.location-district-grid[data-cols="2"] {
		grid-template-columns: 1fr;
		gap: 0.85rem;
	}

	.location-district-card {
		flex-direction: row;
		align-items: stretch;
		border-radius: 14px;
		min-height: 112px;
	}

	.location-district-media {
		flex: 0 0 38%;
		max-width: 140px;
		aspect-ratio: auto;
		align-self: stretch;
	}

	.location-district-body {
		padding: 0.85rem 0.95rem;
		gap: 0.25rem;
		justify-content: center;
	}

	.location-district-card .up-east-district-name {
		font-size: 1.35rem;
	}

	.location-district-card .up-east-district-tag {
		font-size: 0.78rem;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.location-district-kw {
		font-size: 0.7rem;
		display: -webkit-box;
		-webkit-line-clamp: 1;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.location-district-card .up-east-district-cta {
		padding-top: 0.4rem;
		font-size: 0.65rem;
	}

	.location-district-card:hover {
		transform: none;
	}

	.location-district-card:active {
		border-color: rgba(229, 160, 13, 0.55);
	}
}

/* ==========================================================================
   Homepage polish — AI imagery + Google reviews
   ========================================================================== */

.home-hero .hero-photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 35%;
	opacity: 0.42;
	transform: scale(1.04);
	animation: homeHeroKen 18s ease-in-out infinite alternate;
}

@keyframes homeHeroKen {
	from { transform: scale(1.02); }
	to { transform: scale(1.08); }
}

.home-hero .hero-photo-veil {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(105deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.45) 68%, rgba(10, 10, 10, 0.55) 100%),
		radial-gradient(ellipse at 78% 70%, rgba(229, 160, 13, 0.22) 0%, transparent 55%);
	z-index: 1;
}

.home-hero .hero-stripe {
	opacity: 0.55;
	z-index: 1;
	mix-blend-mode: screen;
}

.home-hero .hero-watermark {
	z-index: 1;
	-webkit-text-stroke: 1px rgba(229, 160, 13, 0.12);
}

.hero-brand-line {
	display: flex;
	align-items: baseline;
	gap: 0.65rem;
	margin: 0 0 0.85rem;
	line-height: 0.9;
}

.hero-brand-line .hero-sam {
	font-family: var(--font-display);
	font-size: clamp(3.2rem, 8vw, 5.5rem);
	letter-spacing: 0.04em;
	background: linear-gradient(160deg, var(--sam-gold-soft) 0%, var(--sam-gold-bright) 40%, var(--sam-gold) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	filter: drop-shadow(0 4px 18px rgba(229, 160, 13, 0.28));
}

.hero-brand-line .hero-media {
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 3.2vw, 2.1rem);
	letter-spacing: 0.32em;
	color: var(--sam-gold);
	opacity: 0.92;
}

.hero-gmb-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin-top: 1.35rem;
	padding: 0.55rem 0.95rem 0.55rem 0.65rem;
	border: 1px solid var(--sam-gold-line);
	background: linear-gradient(135deg, rgba(229, 160, 13, 0.14), rgba(0, 0, 0, 0.35));
	color: var(--sam-white);
	text-decoration: none;
	transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
}

.hero-gmb-chip:hover {
	border-color: var(--sam-gold);
	color: var(--sam-white);
	transform: translateY(-2px);
	background: linear-gradient(135deg, rgba(229, 160, 13, 0.22), rgba(0, 0, 0, 0.4));
}

.hero-gmb-score {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.35rem;
	height: 2.35rem;
	padding: 0 0.35rem;
	font-family: var(--font-display);
	font-size: 1.35rem;
	letter-spacing: 0.02em;
	color: #0a0a0a;
	background: linear-gradient(145deg, var(--sam-gold-soft), var(--sam-gold));
}

.hero-gmb-stars {
	color: var(--sam-gold);
	letter-spacing: 0.08em;
	font-size: 0.85rem;
}

.hero-gmb-meta {
	font-size: 0.78rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
}

.home-photo-frame {
	position: relative;
	margin: 0;
	overflow: visible;
	isolation: isolate;
}

.home-photo-frame > img:first-child {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border: 1px solid var(--sam-gold-line);
	box-shadow:
		0 24px 60px rgba(0, 0, 0, 0.55),
		inset 0 0 0 1px rgba(229, 160, 13, 0.08);
	filter: saturate(1.05) contrast(1.04);
}

.home-photo-owl {
	position: absolute !important;
	right: -6%;
	bottom: -8%;
	width: min(42%, 220px) !important;
	height: auto !important;
	max-width: min(42%, 220px) !important;
	max-height: none !important;
	z-index: 3;
	filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.65));
	pointer-events: none;
}

/* Prevent owl from taking layout space if absolute fails */
.home-photo-frame .home-photo-owl.owl-mascot {
	position: absolute !important;
}

.home-story {
	background:
		radial-gradient(ellipse at 12% 20%, rgba(229, 160, 13, 0.08) 0%, transparent 45%),
		var(--sam-black);
}

.home-why {
	background:
		radial-gradient(ellipse at 88% 10%, rgba(229, 160, 13, 0.07) 0%, transparent 40%),
		var(--sam-charcoal);
}

.home-why .pain-item {
	background: linear-gradient(160deg, rgba(26, 26, 26, 0.95), rgba(14, 14, 14, 0.98));
	border: 1px solid rgba(229, 160, 13, 0.16);
	transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.home-why .pain-item:hover {
	border-color: rgba(229, 160, 13, 0.45);
	transform: translateY(-3px);
}

.testimonials .testimonial {
	background: linear-gradient(165deg, rgba(26, 26, 26, 0.98), rgba(10, 10, 10, 0.98));
	border: 1px solid rgba(229, 160, 13, 0.18);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.testimonials .testimonial:hover {
	border-color: rgba(229, 160, 13, 0.42);
}

/* Google reviews block */
.gmb-reviews-section {
	position: relative;
	overflow: hidden;
	padding-block: clamp(3.5rem, 8vw, 6rem);
	background:
		linear-gradient(180deg, #0c0c0c 0%, #12100a 48%, #0a0a0a 100%);
	border-top: 1px solid rgba(229, 160, 13, 0.22);
	border-bottom: 1px solid rgba(229, 160, 13, 0.16);
}

.gmb-reviews-glow {
	position: absolute;
	inset: auto 10% -30% 10%;
	height: 55%;
	background: radial-gradient(ellipse at center, rgba(229, 160, 13, 0.16) 0%, transparent 70%);
	pointer-events: none;
}

.gmb-reviews-head {
	display: grid;
	grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
	gap: 1.75rem 2.5rem;
	align-items: center;
	margin-bottom: 2.5rem;
}

.gmb-reviews-badge {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	border: 1px solid var(--sam-gold-line);
	background: linear-gradient(145deg, rgba(229, 160, 13, 0.12), rgba(0, 0, 0, 0.45));
}

.gmb-reviews-badge-img {
	width: 72px;
	height: 72px;
	object-fit: cover;
	border: 1px solid rgba(229, 160, 13, 0.35);
}

.gmb-reviews-score {
	display: block;
	font-family: var(--font-display);
	font-size: 2.75rem;
	line-height: 1;
	letter-spacing: 0.02em;
	background: linear-gradient(160deg, var(--sam-gold-soft), var(--sam-gold));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.gmb-reviews-stars {
	display: block;
	margin-top: 0.2rem;
	color: var(--sam-gold);
	letter-spacing: 0.1em;
	font-size: 0.95rem;
}

.gmb-star-row {
	display: inline-flex;
	align-items: center;
	gap: 0.12rem;
	margin-top: 0.15rem;
	line-height: 1;
}

.gmb-star-row::before {
	content: '';
	display: inline-block;
	height: 0.95em;
	width: calc(var(--gmb-stars, 5) * 1em);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23F4B400' d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E");
	background-repeat: repeat-x;
	background-size: 1em 1em;
}

.gmb-star-row-1 { --gmb-stars: 1; }
.gmb-star-row-2 { --gmb-stars: 2; }
.gmb-star-row-3 { --gmb-stars: 3; }
.gmb-star-row-4 { --gmb-stars: 4; }
.gmb-star-row-5 { --gmb-stars: 5; }

.gmb-reviews-count {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--sam-muted);
}

.gmb-reviews-titles .section-title {
	max-width: 18ch;
}

.gmb-reviews-slider {
	position: relative;
	margin-top: 0.5rem;
}

.gmb-reviews-viewport {
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent 0, #000 2%, #000 98%, transparent 100%);
}

.gmb-reviews-track {
	display: flex;
	gap: 1.15rem;
	will-change: transform;
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.gmb-review-card {
	margin: 0;
	flex: 0 0 min(340px, 82vw);
	max-width: min(340px, 82vw);
	padding: 1.35rem 1.25rem 1.4rem;
	background: linear-gradient(165deg, rgba(28, 24, 14, 0.95), rgba(12, 12, 12, 0.98));
	border: 1px solid rgba(229, 160, 13, 0.2);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
	transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.gmb-review-card:hover {
	border-color: rgba(229, 160, 13, 0.5);
	box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(229, 160, 13, 0.12);
}

.gmb-slider-btn {
	position: absolute;
	top: 42%;
	transform: translateY(-50%);
	z-index: 3;
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid rgba(229, 160, 13, 0.45);
	border-radius: 999px;
	background: rgba(10, 10, 10, 0.85);
	color: var(--sam-gold);
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.gmb-slider-btn:hover {
	background: rgba(229, 160, 13, 0.18);
	border-color: var(--sam-gold);
}

.gmb-slider-prev { left: -0.35rem; }
.gmb-slider-next { right: -0.35rem; }

.gmb-slider-dots {
	display: flex;
	justify-content: center;
	gap: 0.45rem;
	margin-top: 1.25rem;
}

.gmb-slider-dots button {
	width: 0.55rem;
	height: 0.55rem;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(229, 160, 13, 0.28);
	cursor: pointer;
}

.gmb-slider-dots button.is-active {
	width: 1.35rem;
	background: var(--sam-gold);
}

.gmb-review-top {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 0.75rem;
	align-items: start;
	margin-bottom: 0.95rem;
}

.gmb-review-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 50%;
	font-family: var(--font-display);
	font-size: 1.15rem;
	color: #0a0a0a;
	background: linear-gradient(145deg, var(--sam-gold-soft), var(--sam-gold));
}

.gmb-review-author {
	display: block;
	font-style: normal;
	font-weight: 600;
	font-size: 0.98rem;
	color: var(--sam-white);
}

.gmb-review-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.45rem 0.7rem;
	margin-top: 0.2rem;
}

.gmb-review-stars {
	color: var(--sam-gold);
	font-size: 0.82rem;
	letter-spacing: 0.06em;
}

.gmb-review-when {
	font-size: 0.75rem;
	color: var(--sam-muted);
}

.gmb-review-google {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.55rem;
	height: 1.55rem;
	border-radius: 50%;
	font-size: 0.78rem;
	font-weight: 700;
	color: #4285f4;
	background: rgba(255, 255, 255, 0.95);
}

.gmb-review-card > p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
	color: rgba(245, 245, 245, 0.86);
}

.gmb-reviews-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	justify-content: center;
	margin: 2.25rem 0 0;
}

.home-cta-band {
	position: relative;
	overflow: hidden;
}

.home-cta-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.home-cta-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.38;
}

.home-cta-veil {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(100deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 55%, rgba(10, 8, 0, 0.78) 100%),
		radial-gradient(ellipse at 70% 50%, rgba(229, 160, 13, 0.18) 0%, transparent 55%);
}

.home-cta-band .cta-owl-layout {
	position: relative;
	z-index: 1;
}

@media (max-width: 980px) {
	.gmb-reviews-head {
		grid-template-columns: 1fr;
	}

	.gmb-slider-prev { left: 0.15rem; }
	.gmb-slider-next { right: 0.15rem; }

	.home-photo-owl {
		right: -2%;
		bottom: -6%;
		width: min(38%, 180px) !important;
	}
}

@media (max-width: 680px) {
	.hero-brand-line {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.15rem;
	}

	.gmb-review-card {
		flex-basis: min(300px, 86vw);
		max-width: min(300px, 86vw);
	}

	.gmb-reviews-cta {
		flex-direction: column;
	}

	.gmb-reviews-cta .btn {
		width: 100%;
		text-align: center;
	}

	.home-photo-owl {
		display: none;
	}
}

/* ==========================================================================
   Responsive polish — PC + phone
   ========================================================================== */

.container {
	width: min(100% - 2rem, var(--max));
}

@media (min-width: 1101px) {
	.header-inner {
		width: min(100% - 3rem, var(--max));
		gap: 1.75rem;
	}

	.site-logo-header {
		height: 64px;
		max-width: 230px;
	}

	.gmb-reviews-viewport {
		mask-image: linear-gradient(90deg, transparent 0, #000 1.5%, #000 98.5%, transparent 100%);
	}

	.footer-gmb {
		align-items: stretch;
	}
}

@media (max-width: 1100px) {
	.header-inner {
		width: min(100% - 1.5rem, var(--max));
		gap: 0.85rem;
	}

	.site-logo-header {
		height: 46px;
		max-width: min(168px, 52vw);
		padding: 0.15rem 0.28rem;
		border-radius: 8px;
	}

	.header-cta {
		display: none;
	}
}

@media (max-width: 760px) {
	:root {
		--header-h: 4.65rem;
	}

	body {
		font-size: 1rem;
	}

	.container {
		width: min(100% - 1.35rem, var(--max));
	}

	.section {
		padding-block: clamp(2.5rem, 8vw, 3.75rem);
	}

	.section-title,
	.page-title {
		word-wrap: break-word;
		overflow-wrap: anywhere;
	}

	.hero-actions,
	.cta-actions {
		display: flex;
		flex-wrap: wrap;
		gap: 0.7rem;
	}

	.hero-actions .btn,
	.cta-actions .btn {
		flex: 1 1 auto;
		min-width: min(100%, 11rem);
		text-align: center;
		justify-content: center;
	}

	.service-hero {
		min-height: min(62vh, 520px);
		padding-bottom: 2rem;
	}

	.service-hero-copy {
		max-width: 100%;
	}

	.svc-trust-row {
		gap: 0.45rem;
	}

	.svc-trust-chip {
		font-size: 0.7rem;
		padding: 0.4rem 0.65rem;
	}

	.gmb-slider-btn {
		width: 2.15rem;
		height: 2.15rem;
		font-size: 1.25rem;
	}

	.footer-gmb-map iframe {
		min-height: 240px;
		height: 240px;
	}

	.brand-lockup-footer .site-logo-footer {
		height: 44px;
		max-height: 44px;
		max-width: 150px;
	}

	.home-guides-grid {
		gap: 0.85rem;
	}
}

@media (max-width: 420px) {
	.site-logo-header {
		height: 40px;
		max-width: min(138px, 58vw);
	}

	.gmb-review-card {
		flex-basis: min(280px, 88vw);
		max-width: min(280px, 88vw);
		padding: 1.1rem 1rem 1.15rem;
	}

	.btn-lg {
		padding-inline: 1.1rem;
		font-size: 0.92rem;
	}
}

@media (hover: none) {
	.faq-tab:hover {
		border-color: rgba(229, 160, 13, 0.28);
		color: rgba(255, 255, 255, 0.78);
	}

	.faq-tab.is-active:hover {
		color: #111;
		border-color: transparent;
	}
}
