/* ==========================================================================
   locksmithil — main stylesheet
   Design system: tokens, reset, typography, layout, base components.
   Mobile-first. Tablet (768+) and desktop (1024+) overrides at the bottom.
   ========================================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
	/* Colors */
	--bg-primary: #0a0a0a;
	--bg-secondary: #111111;
	--bg-card: #1a1a1a;
	--bg-card-hover: #222222;
	--gold: #D4A017;
	--gold-hover: #F0B429;
	--gold-soft: rgba(212, 160, 23, 0.12);
	--text: #FFFFFF;
	--text-muted: rgba(255, 255, 255, 0.55);
	--text-hint: rgba(255, 255, 255, 0.30);
	--border: rgba(255, 255, 255, 0.08);
	--border-strong: rgba(255, 255, 255, 0.16);
	--whatsapp: #25D366;
	--whatsapp-hover: #1da851;
	--overlay: rgba(10, 10, 10, 0.62);
	--success: #1D9E75;
	--danger: #E24B4A;

	/* Typography */
	--font-heading: 'Heebo', 'Assistant', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-body: 'Rubik', 'Heebo', 'Assistant', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	/* Font sizes — fluid, mobile-first */
	--text-xs: 12px;
	--text-sm: 14px;
	--text-base: 16px;
	--text-lg: 18px;
	--text-xl: 20px;
	--text-2xl: clamp(22px, 4vw, 28px);
	--text-3xl: clamp(26px, 5vw, 36px);
	--text-4xl: clamp(30px, 6.5vw, 48px);
	--text-5xl: clamp(36px, 8vw, 56px);

	/* Line heights */
	--lh-tight: 1.15;
	--lh-snug: 1.3;
	--lh-base: 1.6;
	--lh-loose: 1.75;

	/* Spacing scale (4 / 8pt) */
	--space-1: 4px;
	--space-2: 8px;
	--space-3: 12px;
	--space-4: 16px;
	--space-5: 24px;
	--space-6: 32px;
	--space-7: 48px;
	--space-8: 64px;
	--space-9: 96px;

	/* Sections */
	--section-py: clamp(56px, 9vw, 112px);
	--section-px: 20px;

	/* Layout */
	--container-max: 1120px;
	--container-px: 20px;

	/* Radii */
	--radius-xs: 4px;
	--radius-sm: 6px;
	--radius-md: 10px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--radius-pill: 999px;

	/* Shadows */
	--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
	--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
	--shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.55);
	--shadow-gold: 0 8px 24px rgba(212, 160, 23, 0.32);

	/* Transitions */
	--t-fast: 120ms ease;
	--t-base: 200ms ease;
	--t-slow: 320ms ease;

	/* z-index */
	--z-base: 1;
	--z-sticky: 100;
	--z-nav: 200;
	--z-overlay: 800;
	--z-modal: 900;

	/* Component sizes */
	--cta-height: 56px;
	--cta-height-lg: 64px;
	--nav-height: 64px;
	--tap-min: 44px;
}

/* ---------- RESET ---------- */
*, *::before, *::after {
	box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
}

html {
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: var(--nav-height);
}

body {
	font-family: var(--font-body);
	font-size: var(--text-base);
	line-height: var(--lh-base);
	color: var(--text);
	background: var(--bg-primary);
	direction: rtl;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	min-height: 100vh;
	overflow-x: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--t-fast), opacity var(--t-fast);
}

a:hover, a:focus-visible {
	color: var(--gold);
}

button {
	font: inherit;
	color: inherit;
	cursor: pointer;
	background: transparent;
	border: none;
}

ul, ol {
	list-style: none;
}

input, textarea, select, button {
	font-family: inherit;
	color: inherit;
}

:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 2px;
	border-radius: var(--radius-sm);
}

::selection {
	background: var(--gold);
	color: var(--bg-primary);
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	line-height: var(--lh-tight);
	font-weight: 700;
	color: var(--text);
	letter-spacing: -0.01em;
}

/* Override Elementor global kit (.elementor-kit-69 h2 = 0,1,1) which loads after our CSS.
   Use !important so source-order no longer matters. */
.section-title,
.why-card h3,
.step-body h3,
.review-card,
.faq-q span { color: #ffffff !important; }

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl);  font-weight: 500; }
h5 { font-size: var(--text-lg);  font-weight: 500; }
h6 { font-size: var(--text-base); font-weight: 500; }

p {
	color: var(--text-muted);
	font-size: var(--text-base);
	line-height: var(--lh-base);
}

p strong, p b {
	color: var(--text);
	font-weight: 500;
}

small, .text-sm { font-size: var(--text-sm); }
.text-xs { font-size: var(--text-xs); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }

/* ---------- LAYOUT ---------- */
.container {
	width: 100%;
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--container-px);
}

.section {
	padding-block: var(--section-py);
}

.section-tight {
	padding-block: calc(var(--section-py) * 0.6);
}

.section-dark   { background: var(--bg-primary); }
.section-darker { background: #050505; }
.section-card   { background: var(--bg-secondary); }

/* ---------- BUTTONS ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-2);
	min-height: var(--cta-height);
	padding: 0 var(--space-5);
	border-radius: var(--radius-md);
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: var(--text-lg);
	line-height: 1;
	text-decoration: none;
	transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast);
	white-space: nowrap;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
}

.btn:active { transform: translateY(1px); }
.btn:hover, .btn:focus-visible { color: inherit; }

.btn-gold {
	background: var(--gold);
	color: var(--bg-primary);
	box-shadow: var(--shadow-gold);
}

.btn-gold:hover, .btn-gold:focus-visible {
	background: var(--gold-hover);
	color: var(--bg-primary);
	transform: translateY(-1px);
	box-shadow: 0 10px 28px rgba(240, 180, 41, 0.4);
}

.btn-wa {
	background: var(--whatsapp);
	color: #fff;
}

.btn-wa:hover, .btn-wa:focus-visible {
	background: var(--whatsapp-hover);
	color: #fff;
}

.btn-ghost {
	background: transparent;
	color: var(--text);
	border: 1px solid var(--border-strong);
}

.btn-ghost:hover, .btn-ghost:focus-visible {
	border-color: var(--gold);
	color: var(--gold);
}

.btn-lg {
	min-height: var(--cta-height-lg);
	font-size: 20px;
	padding: 0 var(--space-6);
}

.btn-sm {
	min-height: 40px;
	font-size: var(--text-sm);
	padding: 0 var(--space-4);
}

.btn-block { width: 100%; }

/* ---------- CARDS ---------- */
.card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: var(--space-5);
	transition: border-color var(--t-base), transform var(--t-base);
}

.card:hover {
	border-color: var(--border-strong);
}

.card-link {
	display: block;
	color: inherit;
}

.card-link:hover {
	transform: translateY(-2px);
	color: inherit;
}

/* ---------- BADGES ---------- */
.badge {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	padding: 6px 14px;
	border-radius: var(--radius-pill);
	background: var(--gold-soft);
	color: var(--gold);
	font-size: var(--text-sm);
	font-weight: 500;
	font-family: var(--font-heading);
}

.badge-success {
	background: rgba(29, 158, 117, 0.16);
	color: var(--success);
}

.badge-live::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 0 0 0 0 currentColor;
	animation: locksmithil-pulse 1.8s infinite;
}

@keyframes locksmithil-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(29, 158, 117, 0.6); }
	70%  { box-shadow: 0 0 0 10px rgba(29, 158, 117, 0); }
	100% { box-shadow: 0 0 0 0 rgba(29, 158, 117, 0); }
}

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

.text-muted { color: var(--text-muted); }
.text-hint  { color: var(--text-hint); }
.text-gold  { color: var(--gold); }
.text-white { color: var(--text); }

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

.flex          { display: flex; }
.flex-col      { display: flex; flex-direction: column; }
.items-center  { align-items: center; }
.justify-center{ justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: var(--space-1); }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-5 { gap: var(--space-5); }

.grid { display: grid; }

.mt-1 { margin-top: var(--space-1); } .mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); } .mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); } .mt-6 { margin-top: var(--space-6); }
.mb-1 { margin-bottom: var(--space-1); } .mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); } .mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); } .mb-6 { margin-bottom: var(--space-6); }

.hidden { display: none !important; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* ---------- BREAKPOINTS ---------- */

/* Tablet (768px+) */
@media (min-width: 768px) {
	:root {
		--container-px: 32px;
		--section-px: 32px;
	}
	body { font-size: 16.5px; }
	.hidden-desktop { display: none !important; }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
	:root {
		--container-px: 40px;
	}
	body { font-size: 17px; }
}

/* Mobile-only utility */
@media (max-width: 767px) {
	.hidden-mobile { display: none !important; }
}

/* ==========================================================================
   HOMEPAGE SECTIONS — Phase 3
   ========================================================================== */

/* --- SITE HEADER / NAV --- */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: var(--z-nav);
	height: var(--nav-height);
	background: #0a0a0a;
	box-shadow: 0 1px 0 var(--border);
}

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

.site-logo {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 20px;
	letter-spacing: -0.02em;
	flex-shrink: 0;
}

/* Higher specificity to beat Elementor kit .elementor-kit-69 a (0,1,1) */
.site-header .site-logo { color: #ffffff; }
.site-header .site-logo:hover { color: var(--gold); }

.logo-icon { flex-shrink: 0; }

.desktop-nav {
	display: flex;
	align-items: center;
	gap: var(--space-5);
	flex: 1;
	justify-content: center;
}

.desktop-nav a {
	font-family: var(--font-heading);
	font-size: var(--text-sm);
	font-weight: 500;
	transition: color var(--t-fast);
}

/* Higher specificity to beat Elementor kit .elementor-kit-69 a (0,1,1) */
.site-header .desktop-nav a { color: var(--text-muted); }
.site-header .desktop-nav a:hover { color: #ffffff; }

.header-cta { min-height: 40px; font-size: 14px; }

/* Offset main content so header doesn't overlap */
.site-main { padding-top: var(--nav-height); }

/* Compensate for the sticky nav when linking to anchor IDs */
body.menu-open { overflow: hidden; }

/* --- HERO --- */
.hero {
	position: relative;
	min-height: calc(100svh - var(--nav-height));
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding-block: var(--space-9) var(--space-8);
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: var(--overlay);
}

.hero-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: var(--space-5);
}

.hero-heading {
	font-size: var(--text-5xl);
	font-weight: 700;
	line-height: var(--lh-tight);
	text-shadow: 0 2px 12px rgba(0,0,0,0.6);
	max-width: 760px;
}

/* Higher specificity to beat Elementor kit .elementor-kit-69 h1 (0,1,1) */
.hero h1.hero-heading { color: #ffffff; }

.hero-sub {
	font-size: var(--text-xl);
	color: rgba(255,255,255,0.85);
	font-family: var(--font-heading);
	font-weight: 500;
	margin-top: calc(-1 * var(--space-3));
}

.hero-cta {
	font-size: 20px;
	min-height: var(--cta-height-lg);
	padding: 0 var(--space-7);
	box-shadow: 0 12px 32px rgba(212,160,23,0.45);
}

.trust-bar {
	display: flex;
	justify-content: center;
	gap: 24px;
	padding: 16px 0;
	margin-top: var(--space-4);
}

.trust-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	border: 0.5px solid rgba(255,255,255,0.15);
	border-radius: 12px;
	padding: 10px 16px;
	background: rgba(255,255,255,0.04);
}

.trust-item .icon {
	font-size: 22px;
	line-height: 1;
}

.trust-item .label {
	font-size: 12px;
	color: rgba(255,255,255,0.85);
	text-align: center;
	font-family: var(--font-heading);
	font-weight: 500;
}

/* --- SECTION SHARED --- */
.section-title {
	font-size: var(--text-3xl);
	margin-bottom: var(--space-6);
}

.section-sub {
	color: var(--text-muted);
	font-size: var(--text-lg);
	margin-top: calc(-1 * var(--space-5));
	margin-bottom: var(--space-6);
}

/* --- SERVICES STRIP --- */
.services-strip {
	padding-block: var(--space-8);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: var(--space-3);
}

.service-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-3);
	padding: var(--space-5) var(--space-3);
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	text-align: center;
	transition: border-color var(--t-base), transform var(--t-base), background var(--t-base);
}

.service-card:hover {
	border-color: var(--gold);
	background: var(--bg-card-hover);
	transform: translateY(-3px);
	color: var(--gold);
}

.service-icon { font-size: 32px; line-height: 1; }

.service-name {
	font-family: var(--font-heading);
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--text);
}

/* --- WHY US --- */
.why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-5);
}

.why-card {
	padding: var(--space-6);
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	text-align: center;
	transition: border-color var(--t-base);
}

.why-card:hover { border-color: var(--gold-soft); }

.why-icon {
	display: block;
	font-size: 40px;
	margin-bottom: var(--space-4);
}

.why-card h3 {
	font-size: var(--text-xl);
	margin-bottom: var(--space-3);
}

.why-card p { font-size: var(--text-sm); }

/* --- HOW IT WORKS --- */
.steps-timeline {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-5);
	counter-reset: steps;
	position: relative;
}

/* Connector line between steps (desktop) */
.steps-timeline::before {
	content: '';
	position: absolute;
	top: 28px;
	right: calc(33% + var(--space-4));
	left: calc(33% + var(--space-4));
	height: 2px;
	background: linear-gradient(to left, var(--gold), var(--border));
}

.step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: var(--space-4);
	padding: var(--space-5);
}

.step-num {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--gold);
	color: var(--bg-primary);
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: var(--text-xl);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: var(--shadow-gold);
	position: relative;
	z-index: 1;
}

.step-body h3 { font-size: var(--text-xl); margin-bottom: var(--space-2); }
.step-body p  { font-size: var(--text-sm); }

/* --- SERVICE AREA --- */
.cities-grid {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2);
	justify-content: center;
	margin-top: var(--space-2);
}

.city-link {
	padding: 8px 16px;
	border: 1px solid var(--border);
	border-radius: var(--radius-pill);
	font-size: var(--text-sm);
	font-family: var(--font-heading);
	color: var(--text-muted);
	transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
	white-space: nowrap;
}

.city-link:hover {
	border-color: var(--gold);
	color: var(--gold);
	background: var(--gold-soft);
}

/* --- REVIEWS --- */
.reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-5);
}

.review-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: var(--space-6);
	display: flex;
	flex-direction: column;
	gap: var(--space-4);
	transition: border-color var(--t-base);
}

.review-card:hover { border-color: var(--gold); }

.review-stars {
	color: var(--gold);
	font-size: var(--text-xl);
	letter-spacing: 2px;
}

.review-text p {
	font-size: var(--text-base);
	color: var(--text);
	font-style: italic;
	line-height: var(--lh-loose);
}

.review-author {
	font-size: var(--text-sm);
	color: var(--text-muted);
}

.review-author strong { color: var(--text); }

/* --- FAQ --- */
.faq-container { max-width: 760px; }

.faq-list { display: flex; flex-direction: column; gap: var(--space-2); }

.faq-item {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: border-color var(--t-base);
}

.faq-item.is-open, .faq-item:hover { border-color: var(--border-strong); }
.faq-item.is-open { border-color: var(--gold); }

.faq-q {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: var(--space-5);
	cursor: pointer;
	font-family: var(--font-heading);
	font-weight: 500;
	font-size: var(--text-lg);
	color: var(--text);
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	list-style: none;
}

.faq-q::-webkit-details-marker { display: none; }

.faq-icon {
	font-size: 22px;
	color: var(--gold);
	line-height: 1;
	transition: transform var(--t-base);
	flex-shrink: 0;
	margin-inline-start: var(--space-3);
}

.faq-item.is-open .faq-icon { transform: rotate(45deg); }

.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 300ms ease;
}

.faq-a > div {
	padding: 0 var(--space-5) var(--space-5);
}

.faq-a p { font-size: var(--text-base); }

/* --- FOOTER --- */
.site-footer {
	background: var(--bg-secondary);
	border-top: 1px solid var(--border);
	padding-top: var(--space-8);
}

.footer-inner {
	display: grid;
	grid-template-columns: 1.4fr 2fr;
	gap: var(--space-7);
	padding-bottom: var(--space-7);
}

.footer-brand { display: flex; flex-direction: column; gap: var(--space-4); }

.footer-logo { font-size: 18px; }

.footer-tagline {
	color: var(--text-muted);
	font-size: var(--text-sm);
	margin-top: calc(-1 * var(--space-2));
}

.footer-contact-btns { display: flex; gap: var(--space-2); flex-wrap: wrap; }

.footer-nav {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-5);
}

.footer-nav-heading {
	font-size: var(--text-sm);
	font-weight: 700;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: var(--space-3);
}

.footer-nav ul { display: flex; flex-direction: column; gap: var(--space-2); }

.footer-nav a {
	font-size: var(--text-sm);
	color: var(--text-muted);
}

.footer-nav a:hover { color: var(--text); }

.footer-bottom {
	border-top: 1px solid var(--border);
	padding-block: var(--space-4);
}

.footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: var(--space-3);
}

.footer-copy, .footer-legal {
	font-size: var(--text-xs);
	color: var(--text-hint);
}

.footer-legal { display: flex; gap: var(--space-4); }
.footer-legal a { color: var(--text-hint); }
.footer-legal a:hover { color: var(--text-muted); }

/* ==========================================================================
   HOMEPAGE — RESPONSIVE OVERRIDES
   ========================================================================== */

/* Tablet (768–1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
	.services-grid { grid-template-columns: repeat(3, 1fr); }
	.reviews-grid  { grid-template-columns: repeat(2, 1fr); }
	.footer-inner  { grid-template-columns: 1fr; }
	.footer-nav    { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile (max 767px) */
@media (max-width: 767px) {
	/* Hero */
	.hero { min-height: 92svh; padding-block: var(--space-7) var(--space-6); }
	.hero-heading  { font-size: clamp(28px, 9vw, 38px); }
	.hero-sub      { font-size: var(--text-base); }
	.hero-cta      { width: 100%; font-size: 18px; min-height: var(--cta-height); padding: 0 var(--space-5); }
/* Services: horizontal scroll */
	.services-strip .container { padding-inline: 0; }
	.services-grid {
		grid-template-columns: repeat(5, 160px);
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		padding-inline: var(--container-px);
		gap: var(--space-3);
		scrollbar-width: none;
	}
	.services-grid::-webkit-scrollbar { display: none; }
	.service-card { scroll-snap-align: start; min-width: 0; }

	/* Why Us: stack */
	.why-grid { grid-template-columns: 1fr; gap: var(--space-4); }
	.why-card { text-align: right; padding: var(--space-5); }
	.why-icon { display: inline; font-size: 26px; margin-bottom: 0; margin-inline-end: var(--space-2); }

	/* How It Works: stack */
	.steps-timeline {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.steps-timeline::before { display: none; }
	.step {
		flex-direction: row;
		text-align: right;
		align-items: flex-start;
		padding: var(--space-4) var(--space-4) var(--space-4) 0;
		border-bottom: 1px solid var(--border);
		gap: var(--space-4);
	}
	.step:last-child { border-bottom: none; }
	.step-num { width: 44px; height: 44px; font-size: var(--text-base); flex-shrink: 0; }
	.step-body h3 { font-size: var(--text-lg); }

	/* Reviews: single column */
	.reviews-grid { grid-template-columns: 1fr; }

	/* Footer: stack */
	.footer-inner { grid-template-columns: 1fr; gap: var(--space-6); }
	.footer-nav   { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
	.footer-bottom-inner { justify-content: center; text-align: center; }
}

/* ==========================================================================
   CITY PAGES
   ========================================================================== */

/* --- Breadcrumb --- */
.breadcrumb-nav {
	background: var(--bg-secondary);
	border-bottom: 1px solid var(--border);
	padding-block: var(--space-3);
}

.breadcrumb {
	display: flex;
	align-items: center;
	gap: var(--space-2);
	flex-wrap: wrap;
	list-style: none;
	font-size: var(--text-sm);
	color: var(--text-muted);
}

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

/* --- City Hero --- */
.city-hero {
	padding-block: var(--space-9) var(--space-8);
	text-align: center;
}

.city-hero-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-5);
}

.city-h1 {
	font-size: var(--text-4xl);
	font-weight: 700;
	color: #ffffff !important;
	line-height: var(--lh-tight);
	max-width: 800px;
}

.city-intro {
	font-size: var(--text-lg);
	color: rgba(255,255,255,0.80);
	max-width: 680px;
	line-height: var(--lh-base);
}

.city-cta {
	font-size: 20px;
	min-height: var(--cta-height-lg);
	padding: 0 var(--space-7);
	box-shadow: 0 12px 32px rgba(212,160,23,0.45);
}

.city-stats {
	display: flex;
	gap: var(--space-6);
	justify-content: center;
	flex-wrap: wrap;
	margin-top: var(--space-4);
}

.city-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-1);
}

.city-stat-icon { font-size: 28px; line-height: 1; }

.city-stat-value {
	font-family: var(--font-heading);
	font-size: var(--text-xl);
	font-weight: 700;
	color: var(--gold);
}

.city-stat-label {
	font-size: var(--text-xs);
	color: var(--text-muted);
}

/* --- City Services --- */
.city-services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-5);
	margin-top: var(--space-6);
}

.city-service-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: var(--space-6);
	text-align: center;
	transition: border-color var(--t-base), transform var(--t-base);
}

.city-service-card:hover {
	border-color: var(--gold);
	transform: translateY(-2px);
}

.city-service-card .service-icon {
	display: block;
	font-size: 40px;
	margin-bottom: var(--space-4);
}

.city-service-card h3 {
	font-size: var(--text-lg);
	color: #ffffff !important;
	margin-bottom: var(--space-3);
}

.city-service-card p {
	font-size: var(--text-sm);
	color: var(--text-muted);
	line-height: var(--lh-base);
}

/* --- Neighborhoods --- */
.hoods-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-3);
	margin-top: var(--space-6);
}

.hood-item {
	display: flex;
	align-items: center;
	gap: var(--space-2);
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: var(--space-3) var(--space-4);
	font-size: var(--text-sm);
	color: var(--text-muted);
}

.hood-icon { font-size: 16px; flex-shrink: 0; }

/* --- Nearby cities --- */
.nearby-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-4);
	margin-top: var(--space-6);
}

.nearby-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-2);
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: var(--space-5);
	text-align: center;
	transition: border-color var(--t-base);
	color: var(--text);
}

.nearby-card:hover { border-color: var(--gold); color: var(--text); }
.nearby-icon { font-size: 28px; }
.nearby-name { font-size: var(--text-sm); font-weight: 500; color: #ffffff; }
.nearby-time { font-size: var(--text-xs); color: var(--gold); }

/* --- Bottom CTA --- */
.city-bottom-cta { padding-block: var(--space-8); }

.cta-group {
	display: flex;
	gap: var(--space-4);
	justify-content: center;
	flex-wrap: wrap;
	margin-top: var(--space-5);
}

/* --- City page mobile --- */
@media (max-width: 767px) {
	.city-h1 { font-size: clamp(26px, 8vw, 36px); }
	.city-intro { font-size: var(--text-base); }
	.city-cta { width: 100%; font-size: 18px; }
	.city-stats { gap: var(--space-4); }

	.city-services-grid { grid-template-columns: 1fr; }
	.hoods-grid { grid-template-columns: repeat(2, 1fr); }
	.nearby-grid { grid-template-columns: repeat(2, 1fr); }

	.cta-group .btn { width: 100%; }
}

/* ==========================================================================
   SERVICE PAGES (page-service.php)
   ========================================================================== */

/* --- Service Hero --- */
.service-hero { padding-block: var(--space-10) var(--space-8); }

.service-hero-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: var(--space-5);
	max-width: 820px;
	margin-inline: auto;
}

.service-hero-icon { font-size: 60px; line-height: 1; }

.service-h1 {
	font-family: var(--font-heading);
	font-size: var(--text-4xl);
	font-weight: 700;
	color: #ffffff !important;
	line-height: var(--lh-tight);
	margin: 0;
}

.service-intro {
	font-size: var(--text-lg);
	color: var(--text-muted);
	line-height: var(--lh-loose);
	max-width: 700px;
}

.service-cta { min-width: 260px; }

.service-features {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--space-3) var(--space-5);
	margin-top: var(--space-2);
}

.service-feature-item {
	display: flex;
	align-items: center;
	gap: var(--space-2);
	font-size: var(--text-sm);
	color: var(--text-muted);
}

.feature-check {
	color: var(--gold);
	font-size: var(--text-base);
	font-weight: 700;
	flex-shrink: 0;
}

/* --- Process Steps --- */
.service-process { padding-block: var(--space-9); }

.process-steps {
	display: flex;
	flex-direction: column;
	gap: var(--space-6);
	margin-top: var(--space-7);
	max-width: 760px;
	margin-inline: auto;
}

.process-step {
	display: flex;
	gap: var(--space-5);
	align-items: flex-start;
}

.process-num {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--gold);
	color: #000;
	font-family: var(--font-heading);
	font-size: var(--text-lg);
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.process-content { flex: 1; }

.process-title {
	font-family: var(--font-heading);
	font-size: var(--text-lg);
	font-weight: 700;
	color: #ffffff !important;
	margin: 0 0 var(--space-2);
}

.process-desc {
	font-size: var(--text-sm);
	color: var(--text-muted);
	line-height: var(--lh-base);
	margin: 0;
}

/* --- Bottom CTA --- */
.service-bottom-cta { padding-block: var(--space-8); }

/* --- Service page mobile --- */
@media (max-width: 767px) {
	.service-h1 { font-size: clamp(24px, 7.5vw, 34px); }
	.service-intro { font-size: var(--text-base); }
	.service-cta { width: 100%; }
	.process-step { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
	.service-features { flex-direction: column; align-items: flex-start; gap: var(--space-2); padding-inline: var(--space-2); }
}

/* ==========================================================================
   AREAS PAGE (page-areas.php)
   ========================================================================== */

/* --- Areas Hero --- */
.areas-hero { padding-block: var(--space-10) var(--space-8); }

.areas-hero-inner {
	max-width: 760px;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-5);
}

.areas-h1 {
	font-family: var(--font-heading);
	font-size: var(--text-4xl);
	font-weight: 700;
	color: #ffffff !important;
	line-height: var(--lh-tight);
	margin: 0;
}

.areas-intro {
	font-size: var(--text-lg);
	color: var(--text-muted);
	line-height: var(--lh-loose);
	max-width: 680px;
}

.areas-cta { min-width: 260px; }

/* --- Cities Grid --- */
.areas-grid-section { padding-block: var(--space-9); }

.areas-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-4);
	margin-top: var(--space-7);
}

.area-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-2);
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: var(--space-5) var(--space-4);
	text-align: center;
	transition: border-color var(--t-base), background var(--t-base);
	color: var(--text);
	text-decoration: none;
}

.area-card:hover { border-color: var(--gold); background: var(--bg-card-hover); color: var(--text); }

.area-icon { font-size: 28px; }
.area-name { font-size: var(--text-sm); font-weight: 600; color: #ffffff; }
.area-time { font-size: var(--text-xs); color: var(--gold); }

/* --- Why Us --- */
.areas-why { padding-block: var(--space-9); }

.areas-why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-5);
	margin-top: var(--space-7);
}

.why-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: var(--space-6);
	text-align: center;
}

.why-icon { font-size: 40px; display: block; margin-bottom: var(--space-3); }

.why-card h3 {
	font-family: var(--font-heading);
	font-size: var(--text-lg);
	font-weight: 700;
	color: #ffffff !important;
	margin: 0 0 var(--space-3);
}

.why-card p {
	font-size: var(--text-sm);
	color: var(--text-muted);
	line-height: var(--lh-base);
	margin: 0;
}

/* --- Services hub page (page-services-hub.php) / areas bottom CTA --- */
.areas-bottom-cta { padding-block: var(--space-8); }

/* --- Areas page mobile --- */
@media (max-width: 767px) {
	.areas-h1 { font-size: clamp(24px, 7.5vw, 34px); }
	.areas-intro { font-size: var(--text-base); }
	.areas-cta { width: 100%; }
	.areas-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
	.areas-why-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
}

/* ==========================================================================
   SERVICES HUB PAGE (page-services.php)
   ========================================================================== */

.services-hub-hero { padding-block: var(--space-10) var(--space-8); }

.services-hub-inner {
	max-width: 760px;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-5);
	text-align: center;
}

.services-hub-h1 {
	font-family: var(--font-heading);
	font-size: var(--text-4xl);
	font-weight: 700;
	color: #ffffff !important;
	line-height: var(--lh-tight);
	margin: 0;
}

.services-hub-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-6);
	margin-top: var(--space-7);
}

.service-hub-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-3);
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: var(--space-7) var(--space-5);
	text-align: center;
	transition: border-color var(--t-base), background var(--t-base);
	color: var(--text);
	text-decoration: none;
}

.service-hub-card:hover { border-color: var(--gold); background: var(--bg-card-hover); color: var(--text); }

.service-hub-icon { font-size: 48px; }

.service-hub-name {
	font-family: var(--font-heading);
	font-size: var(--text-xl);
	font-weight: 700;
	color: #ffffff;
	margin: 0;
}

.service-hub-desc {
	font-size: var(--text-sm);
	color: var(--text-muted);
	line-height: var(--lh-base);
	margin: 0;
}

.service-hub-link {
	color: var(--gold);
	font-size: var(--text-sm);
	font-weight: 600;
	margin-top: auto;
}

@media (max-width: 767px) {
	.services-hub-h1 { font-size: clamp(24px, 7.5vw, 34px); }
	.services-hub-grid { grid-template-columns: 1fr; gap: var(--space-4); }
}

/* ==========================================================================
   BLOG ARCHIVE (archive.php)
   ========================================================================== */

.blog-archive-hero { padding-block: var(--space-9) var(--space-7); }

.blog-archive-h1 {
	font-family: var(--font-heading);
	font-size: var(--text-4xl);
	font-weight: 700;
	color: #ffffff !important;
	margin: 0 0 var(--space-3);
}

.blog-archive-sub {
	font-size: var(--text-lg);
	color: var(--text-muted);
	max-width: 640px;
	margin: 0 auto;
}

.blog-archive-section { padding-block: var(--space-9); }

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-6);
	margin-top: var(--space-6);
}

.blog-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: border-color var(--t-base);
}

.blog-card:hover { border-color: var(--gold); }

.blog-card-inner {
	display: block;
	padding: var(--space-6);
	text-decoration: none;
	color: var(--text);
	height: 100%;
}

.blog-card-body { display: flex; flex-direction: column; gap: var(--space-3); }

.blog-card-title {
	font-family: var(--font-heading);
	font-size: var(--text-xl);
	font-weight: 700;
	color: #ffffff !important;
	margin: 0;
	line-height: var(--lh-snug);
}

.blog-card-excerpt {
	font-size: var(--text-sm);
	color: var(--text-muted);
	line-height: var(--lh-base);
	margin: 0;
	flex: 1;
}

.blog-card-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: var(--text-xs);
	color: var(--text-hint);
	margin-top: var(--space-2);
}

.blog-card-read { color: var(--gold); font-weight: 600; }

/* Pagination */
.nav-links { display: flex; gap: var(--space-2); justify-content: center; margin-top: var(--space-8); }
.page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; border: 1px solid var(--border); border-radius: var(--radius-md); color: var(--text-muted); font-size: var(--text-sm); text-decoration: none; transition: border-color var(--t-base); padding-inline: var(--space-3); }
.page-numbers:hover, .page-numbers.current { border-color: var(--gold); color: var(--gold); }

@media (max-width: 767px) {
	.blog-archive-h1 { font-size: clamp(22px, 7vw, 32px); }
	.blog-grid { grid-template-columns: 1fr; gap: var(--space-4); }
}

@media (min-width: 768px) and (max-width: 1023px) {
	.blog-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   SINGLE ARTICLE (single.php)
   ========================================================================== */

/* --- Article Hero --- */
.article-hero { padding-block: var(--space-9) var(--space-7); }

.article-hero-inner {
	max-width: 800px;
	margin-inline: auto;
	text-align: center;
}

.article-cat-badge {
	display: inline-block;
	background: var(--gold-soft);
	color: var(--gold);
	border: 1px solid rgba(212, 160, 23, 0.3);
	border-radius: 100px;
	font-size: var(--text-xs);
	font-weight: 600;
	padding: 4px 12px;
	margin-bottom: var(--space-4);
	text-decoration: none;
}

.article-title {
	font-family: var(--font-heading);
	font-size: clamp(26px, 5vw, 44px);
	font-weight: 700;
	color: #ffffff !important;
	line-height: var(--lh-tight);
	margin: 0 0 var(--space-4);
}

.article-meta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-3);
	font-size: var(--text-sm);
	color: var(--text-muted);
}

.article-meta-sep { opacity: 0.4; }

/* --- Article Layout --- */
.article-body { padding-block: var(--space-9); background: var(--bg-secondary); }

.article-layout {
	display: grid;
	grid-template-columns: 1fr 280px;
	gap: var(--space-8);
	align-items: start;
}

/* --- Article Content (post body) --- */
.article-content {
	min-width: 0; /* prevent overflow */
	font-size: var(--text-base);
	line-height: var(--lh-loose);
	color: rgba(255, 255, 255, 0.85);
}

.article-content h2 {
	font-family: var(--font-heading);
	font-size: var(--text-2xl);
	font-weight: 700;
	color: #ffffff !important;
	margin: var(--space-8) 0 var(--space-4);
	padding-bottom: var(--space-3);
	border-bottom: 1px solid var(--border);
}

.article-content h3 {
	font-family: var(--font-heading);
	font-size: var(--text-xl);
	font-weight: 700;
	color: #ffffff !important;
	margin: var(--space-6) 0 var(--space-3);
}

.article-content p { margin: 0 0 var(--space-4); }

.article-content ul,
.article-content ol {
	margin: 0 0 var(--space-4);
	padding-right: var(--space-5);
}

.article-content li { margin-bottom: var(--space-2); }

.article-content a {
	color: var(--gold);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.article-content a:hover { color: var(--gold-hover); }

.article-content strong { color: #ffffff; font-weight: 600; }

/* Mid-article CTA box (used by agents) */
.article-cta-box {
	background: linear-gradient(135deg, var(--bg-card), #111);
	border: 1px solid rgba(212, 160, 23, 0.35);
	border-radius: var(--radius-lg);
	padding: var(--space-6);
	text-align: center;
	margin: var(--space-8) 0;
}

.article-cta-box .btn-gold {
	font-size: var(--text-lg);
	padding: 14px 28px;
}

/* --- Sidebar --- */
.article-sidebar {
	position: sticky;
	top: calc(var(--space-6) + 70px); /* below header */
	display: flex;
	flex-direction: column;
	gap: var(--space-4);
}

.sidebar-cta-card,
.sidebar-links-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: var(--space-5);
}

.sidebar-cta-icon { font-size: 36px; text-align: center; display: block; margin-bottom: var(--space-3); }

.sidebar-cta-title {
	font-family: var(--font-heading);
	font-size: var(--text-lg);
	font-weight: 700;
	color: #ffffff !important;
	margin: 0 0 var(--space-2);
	text-align: center;
}

.sidebar-cta-sub {
	font-size: var(--text-xs);
	color: var(--text-muted);
	text-align: center;
	margin: 0 0 var(--space-4);
}

.sidebar-cta-btn { margin-bottom: var(--space-2); font-size: var(--text-sm); }

.sidebar-links-title {
	font-family: var(--font-heading);
	font-size: var(--text-base);
	font-weight: 700;
	color: #ffffff !important;
	margin: 0 0 var(--space-3);
}

.sidebar-links-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
}

.sidebar-links-list a {
	font-size: var(--text-sm);
	color: var(--text-muted);
	text-decoration: none;
	display: block;
	padding: var(--space-2) var(--space-3);
	border-radius: var(--radius-sm);
	transition: background var(--t-base), color var(--t-base);
}

.sidebar-links-list a:hover { background: var(--bg-card-hover); color: var(--gold); }

/* --- Article Nav (prev/next) --- */
.article-nav { padding-block: var(--space-6); }

.article-nav-inner {
	display: flex;
	gap: var(--space-4);
	justify-content: space-between;
}

.article-nav-item {
	display: flex;
	flex-direction: column;
	gap: var(--space-1);
	flex: 1;
	max-width: 48%;
	text-decoration: none;
	padding: var(--space-4);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	background: var(--bg-card);
	transition: border-color var(--t-base);
}

.article-nav-item:hover { border-color: var(--gold); }
.article-nav-next { text-align: left; margin-right: auto; }

.article-nav-label {
	font-size: var(--text-xs);
	color: var(--gold);
	font-weight: 600;
}

.article-nav-title {
	font-size: var(--text-sm);
	color: var(--text-muted);
	line-height: var(--lh-snug);
}

/* --- Single article mobile --- */
@media (max-width: 1023px) {
	.article-layout {
		grid-template-columns: 1fr;
		gap: var(--space-6);
	}
	.article-sidebar {
		position: static;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--space-4);
	}
}

@media (max-width: 767px) {
	.article-title { font-size: clamp(22px, 7vw, 32px); }
	.article-sidebar { grid-template-columns: 1fr; }
	.article-nav-inner { flex-direction: column; }
	.article-nav-item { max-width: 100%; }
}

/* ==========================================================================
   BLOG ARCHIVE — Phase 6 additions
   ========================================================================== */

.blog-archive-hero { padding-block: var(--space-9) var(--space-7); }

/* 3-col desktop grid */
@media (min-width: 1024px) {
	.blog-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Gold category badge on each card */
.blog-card-badge {
	display: inline-block;
	background: var(--gold-soft);
	color: var(--gold);
	border: 1px solid rgba(212,160,23,0.35);
	border-radius: 100px;
	font-size: var(--text-xs);
	font-weight: 600;
	padding: 3px 10px;
	margin-bottom: var(--space-2);
	line-height: 1.6;
}

/* Reading time */
.blog-card-readtime {
	font-size: var(--text-xs);
	color: var(--text-muted);
}

/* Card background override */
.blog-card {
	background: #1a1a1a !important;
}


/* ==========================================================================
   SINGLE ARTICLE — Phase 6 v2 additions
   ========================================================================== */

/* ── Body text: 17px Rubik 1.8 lh ── */
.article-content {
	font-size: 17px !important;
	line-height: 1.8 !important;
	color: rgba(255, 255, 255, 0.85) !important;
	font-family: 'Rubik', 'Heebo', sans-serif;
}

/* ── H2: white + RTL gold border-right ── */
.article-content h2 {
	color: #ffffff !important;
	border-bottom: none !important;
	border-right: 3px solid #D4A017 !important;
	padding-right: var(--space-4) !important;
	padding-bottom: 0 !important;
	scroll-margin-top: 100px;
}

/* ── H3: gold ── */
.article-content h3 {
	color: #D4A017 !important;
	scroll-margin-top: 100px;
}

/* ── TOC — Desktop (sidebar) ── */
.toc-desktop {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: var(--space-5);
}

.toc-heading {
	font-family: var(--font-heading);
	font-size: var(--text-base);
	font-weight: 700;
	color: #ffffff !important;
	margin: 0 0 var(--space-3);
	padding-bottom: var(--space-3);
	border-bottom: 1px solid var(--border);
}

.toc-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
	counter-reset: toc-counter;
}

.toc-list li {
	counter-increment: toc-counter;
}

.toc-list a {
	display: block;
	font-size: var(--text-sm);
	color: var(--text-muted);
	text-decoration: none;
	padding: var(--space-2) var(--space-3);
	border-radius: var(--radius-sm);
	border-right: 2px solid transparent;
	transition: background var(--t-base), color var(--t-base), border-color var(--t-base);
	line-height: var(--lh-snug);
}

.toc-list a:hover,
.toc-list li.toc-active > a {
	background: var(--gold-soft);
	color: var(--gold);
	border-right-color: var(--gold);
}

/* ── TOC — Mobile (collapsible details) ── */
.toc-mobile {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	margin-bottom: var(--space-6);
	overflow: hidden;
}

.toc-mobile-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--space-4) var(--space-5);
	cursor: pointer;
	font-family: var(--font-heading);
	font-size: var(--text-base);
	font-weight: 700;
	color: #ffffff;
	list-style: none;
	user-select: none;
}

.toc-mobile-toggle::-webkit-details-marker { display: none; }

.toc-chevron {
	transition: transform 0.25s ease;
	flex-shrink: 0;
	color: var(--gold);
}

.toc-mobile[open] .toc-chevron { transform: rotate(180deg); }

.toc-mobile .toc-list {
	padding: 0 var(--space-4) var(--space-4);
}

/* Hide mobile TOC on desktop, desktop TOC on mobile */
@media (min-width: 1024px) {
	.toc-mobile { display: none; }
}
@media (max-width: 1023px) {
	.toc-desktop { display: none; }
}

/* ── Mid-article CTA box ── */
.article-mid-cta {
	background: linear-gradient(135deg, #111, var(--bg-card));
	border: 2px solid #D4A017;
	border-radius: var(--radius-lg);
	padding: var(--space-6) var(--space-5);
	text-align: center;
	margin: var(--space-8) 0;
}

.article-mid-cta-headline {
	font-family: var(--font-heading);
	font-size: var(--text-xl);
	font-weight: 700;
	color: #ffffff !important;
	margin: 0 0 var(--space-2);
}

.article-mid-cta-sub {
	font-size: var(--text-sm);
	color: var(--text-muted);
	margin: 0 0 var(--space-5);
}

.article-mid-cta-btn {
	font-size: var(--text-base);
}

/* ── Related articles ── */
.article-related { padding-block: var(--space-8); }

.article-related-title {
	font-family: var(--font-heading);
	font-size: var(--text-2xl);
	font-weight: 700;
	color: #ffffff !important;
	margin: 0 0 var(--space-6);
}

/* 2-column grid for related */
.blog-grid-2 {
	grid-template-columns: repeat(2, 1fr) !important;
}

@media (max-width: 767px) {
	.blog-grid-2 { grid-template-columns: 1fr !important; }
}

/* ── Sticky mobile CTA bar ── */
.sticky-mobile-cta {
	display: none; /* shown only on mobile via media query */
}

@media (max-width: 767px) {
	.sticky-mobile-cta {
		display: grid;
		grid-template-columns: 1fr 1fr;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 999;
		background: #0d0d0d;
		border-top: 1px solid rgba(212, 160, 23, 0.4);
		transform: translateY(100%);
		transition: transform 0.3s ease;
	}

	.sticky-mobile-cta.is-visible {
		transform: translateY(0);
	}

	.sticky-mobile-cta-call,
	.sticky-mobile-cta-wa {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: var(--space-2);
		padding: 14px var(--space-3);
		font-family: var(--font-heading);
		font-size: 15px;
		font-weight: 700;
		text-decoration: none;
		text-align: center;
	}

	.sticky-mobile-cta-call {
		background: #D4A017;
		color: #000000;
	}

	.sticky-mobile-cta-wa {
		background: #25D366;
		color: #000000;
	}

	/* Add bottom padding to page so content isn't hidden under bar */
	body.single .site-main {
		padding-bottom: 60px;
	}
}


/* ==========================================================================
   LEGAL PAGES — page-accessibility / privacy / faq / terms
   ========================================================================== */

/* Hero */
.legal-hero { padding-block: var(--space-9) var(--space-7); }

.legal-h1 {
	font-family: var(--font-heading);
	font-size: clamp(26px, 5vw, 44px);
	font-weight: 700;
	color: #ffffff !important;
	margin: 0 0 var(--space-3);
	line-height: var(--lh-tight);
}

.legal-hero-sub {
	font-size: var(--text-lg);
	color: var(--text-muted);
	margin: 0;
}

/* Body wrapper */
.legal-body { background: var(--bg-secondary); padding-block: var(--space-9); }

.legal-content {
	max-width: 780px;
	font-size: 17px;
	line-height: 1.85;
	color: rgba(255,255,255,0.85);
}

.legal-updated {
	font-size: var(--text-sm);
	color: var(--text-muted);
	margin-bottom: var(--space-7);
	padding-bottom: var(--space-4);
	border-bottom: 1px solid var(--border);
}

/* Headings */
.legal-content h2 {
	font-family: var(--font-heading);
	font-size: var(--text-xl);
	font-weight: 700;
	color: #ffffff !important;
	margin: var(--space-8) 0 var(--space-4);
	border-right: 3px solid var(--gold);
	padding-right: var(--space-4);
}

.legal-content h3 {
	font-family: var(--font-heading);
	font-size: var(--text-lg);
	font-weight: 600;
	color: var(--gold) !important;
	margin: var(--space-5) 0 var(--space-3);
}

.legal-content p { margin: 0 0 var(--space-4); }

.legal-content ul,
.legal-content ol {
	margin: 0 0 var(--space-5);
	padding-right: var(--space-6);
}

.legal-content li { margin-bottom: var(--space-2); }

.legal-content a {
	color: var(--gold);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.legal-content a:hover { color: var(--gold-hover); }

.legal-content strong { color: #ffffff; font-weight: 600; }

/* Contact box */
.legal-contact-box {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: var(--space-5) var(--space-6);
	margin: var(--space-5) 0;
}

.legal-contact-box p { margin: 0 0 var(--space-2); }
.legal-contact-box p:last-child { margin: 0; }

/* Mobile adjustments */
@media (max-width: 767px) {
	.legal-content { font-size: 16px; }
	.legal-h1 { font-size: clamp(22px, 7vw, 32px); }
}

/* Footer bottom-bar — add נגישות */
.footer-legal a { color: var(--text-muted); font-size: var(--text-xs); text-decoration: none; }
.footer-legal a:hover { color: var(--gold); }


/* ── Accessibility widget — position bottom-left ─────────────────── */
.cya11y-menu-btn {
  left:  20px !important;
  right: auto !important;
  bottom: 80px !important;
}
.cya11y-widget,
.cya11y-panel {
  left:  20px !important;
  right: auto !important;
}

/* ── JoinChat WhatsApp floating button — ensure visible above sticky bar ── */
#joinchat,
.joinchat,
.joinchat__button {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 9998 !important;
}
.joinchat {
  bottom: 90px !important;
  right: 20px !important;
}
@media (max-width: 767px) {
  /* Push above our sticky mobile CTA bar (~50px) */
  .joinchat {
    bottom: 70px !important;
  }
}
