/*
 * Zamzam Link – main stylesheet
 * Design tokens, layout, components, responsive rules.
 */

:root {
	--zl-primary: #0f4c81;
	--zl-primary-dark: #0b3961;
	--zl-primary-soft: #e8f0f7;
	--zl-secondary: #1e7d4d;
	--zl-secondary-soft: #e6f3ec;
	--zl-accent: #e6a817;
	--zl-accent-soft: #fdf3dd;
	--zl-bg: #f8f9fb;
	--zl-surface: #ffffff;
	--zl-text: #222222;
	--zl-muted: #5a6472;
	--zl-border: #e2e6ee;
	--zl-radius: 14px;
	--zl-radius-lg: 22px;
	--zl-shadow-sm: 0 2px 8px rgba(15, 76, 129, 0.06);
	--zl-shadow: 0 12px 32px rgba(15, 76, 129, 0.09);
	--zl-shadow-lg: 0 24px 60px rgba(15, 76, 129, 0.14);
	--zl-container: 1200px;
	--zl-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	--zl-font-head: "Barlow Condensed", "Inter", Arial, sans-serif;
	--zl-transition: 220ms cubic-bezier(0.2, 0.7, 0.3, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	font-family: var(--zl-font);
	font-size: 1rem;
	line-height: 1.7;
	color: var(--zl-text);
	background: var(--zl-bg);
	-webkit-font-smoothing: antialiased;
}

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

a { color: var(--zl-primary); text-decoration: none; transition: color var(--zl-transition); }
a:hover, a:focus { color: var(--zl-secondary); text-decoration: underline; }

:focus-visible {
	outline: 3px solid var(--zl-accent);
	outline-offset: 2px;
	border-radius: 4px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--zl-font-head);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 0.01em;
	margin: 0 0 0.6em;
	color: #14243a;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.1rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }

p, ul, ol, address, dl, figure, table, pre { margin: 0 0 1.1rem; }
address { font-style: normal; }

blockquote {
	margin: 1.5rem 0;
	padding: 1rem 1.5rem;
	border-left: 4px solid var(--zl-accent);
	background: var(--zl-surface);
	border-radius: 0 var(--zl-radius) var(--zl-radius) 0;
	box-shadow: var(--zl-shadow-sm);
}

table { width: 100%; border-collapse: collapse; }
th, td { border: 1px solid var(--zl-border); padding: 0.65rem 0.8rem; text-align: left; }
th { background: var(--zl-primary-soft); }

/* ---------- Layout ---------- */

.container {
	width: 100%;
	max-width: var(--zl-container);
	margin: 0 auto;
	padding: 0 1.25rem;
}

.container.narrow { max-width: 860px; }
.center { text-align: center; }

.section { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.section-light { background: var(--zl-surface); }

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

.content-with-sidebar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 2.5rem;
	align-items: start;
}

body.no-sidebar .content-with-sidebar { grid-template-columns: minmax(0, 1fr); }

/* ---------- Buttons ---------- */

.btn,
button,
input[type="submit"],
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-family: var(--zl-font);
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.2;
	padding: 0.85rem 1.6rem;
	border: 2px solid transparent;
	border-radius: 10px;
	cursor: pointer;
	text-decoration: none;
	transition: transform var(--zl-transition), box-shadow var(--zl-transition), background-color var(--zl-transition), color var(--zl-transition);
}

.btn:hover, .btn:focus { text-decoration: none; transform: translateY(-2px); }

.btn-primary, button, input[type="submit"], .wp-block-button__link {
	background: var(--zl-primary);
	color: #fff;
	box-shadow: var(--zl-shadow-sm);
}
.btn-primary:hover, .btn-primary:focus, button:hover, input[type="submit"]:hover {
	background: var(--zl-primary-dark);
	color: #fff;
	box-shadow: var(--zl-shadow);
}

.btn-accent {
	background: var(--zl-accent);
	color: #22303f;
	box-shadow: 0 10px 24px rgba(230, 168, 23, 0.28);
}
.btn-accent:hover, .btn-accent:focus { background: #d5990f; color: #1b2635; }

.btn-outline {
	background: transparent;
	border-color: var(--zl-primary);
	color: var(--zl-primary);
}
.btn-outline:hover, .btn-outline:focus { background: var(--zl-primary); color: #fff; }

.btn-ghost {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.6);
	color: #fff;
	backdrop-filter: blur(4px);
}
.btn-ghost:hover, .btn-ghost:focus { background: #fff; color: var(--zl-primary); border-color: #fff; }

/* ---------- Top bar & header ---------- */

.topbar {
	background: var(--zl-primary-dark);
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.85rem;
}

.topbar-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.5rem;
	align-items: center;
	justify-content: space-between;
	min-height: 44px;
}

.topbar p { margin: 0; }
.topbar a { color: #fff; display: inline-flex; align-items: center; gap: 0.4rem; }
.topbar a:hover { color: var(--zl-accent); text-decoration: none; }
.topbar .zl-icon { width: 16px; height: 16px; }

.topbar-contact {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--zl-border);
	transition: box-shadow var(--zl-transition);
}

.site-header.is-stuck { box-shadow: var(--zl-shadow); }

.header-inner {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	min-height: 76px;
}

.site-branding { margin-right: auto; }
.custom-logo-link img { max-height: 56px; width: auto; }

.site-title {
	font-family: var(--zl-font-head);
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0;
	letter-spacing: 0.02em;
}
.site-title a { color: var(--zl-primary); }
.site-title a:hover { text-decoration: none; }
.site-description { margin: 0; font-size: 0.8rem; color: var(--zl-muted); }

.main-navigation ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.main-navigation li { position: relative; }

.main-navigation a {
	display: block;
	padding: 0.6rem 0.85rem;
	font-size: 0.95rem;
	font-weight: 500;
	color: #24313f;
	border-radius: 8px;
}
.main-navigation a:hover,
.main-navigation a:focus { background: var(--zl-primary-soft); color: var(--zl-primary); text-decoration: none; }

.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a { color: var(--zl-primary); background: var(--zl-primary-soft); }

.main-navigation .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	display: block;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--zl-border);
	border-radius: var(--zl-radius);
	box-shadow: var(--zl-shadow);
	padding: 0.4rem;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity var(--zl-transition), transform var(--zl-transition), visibility var(--zl-transition);
}

.main-navigation li:hover > .sub-menu,
.main-navigation li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.menu-toggle {
	display: none;
	background: var(--zl-primary-soft);
	border: none;
	border-radius: 10px;
	padding: 0.7rem;
	box-shadow: none;
}

.menu-toggle-bars { display: grid; gap: 4px; }
.menu-toggle-bars span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--zl-primary);
	transition: transform var(--zl-transition), opacity var(--zl-transition);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
	position: relative;
	color: #fff;
	padding: clamp(4rem, 9vw, 8rem) 0;
	overflow: hidden;
	isolation: isolate;
}

.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(105deg, rgba(11, 41, 68, 0.94) 0%, rgba(15, 76, 129, 0.82) 45%, rgba(15, 76, 129, 0.45) 100%);
}

.hero-inner { max-width: 780px; animation: zl-rise 700ms var(--zl-transition) both; }

.hero-title { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 1rem; }
.hero-text { font-size: clamp(1rem, 1.6vw, 1.15rem); color: rgba(255, 255, 255, 0.92); max-width: 62ch; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 1.8rem 0 2rem; }

.hero-badges {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem 1.5rem;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.9);
}
.hero-badges li { display: flex; align-items: center; gap: 0.5rem; }
.hero-badges .zl-icon { width: 18px; height: 18px; color: var(--zl-accent); }

.eyebrow {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--zl-secondary);
	margin: 0 0 0.6rem;
}
.eyebrow-light { color: var(--zl-accent); }

/* ---------- Section heading ---------- */

.section-heading { max-width: 760px; margin: 0 auto 2.6rem; text-align: center; }
.section-title { margin: 0 0 0.7rem; }
.section-text { color: var(--zl-muted); margin: 0; }

/* ---------- Cards / tiles / features ---------- */

.card {
	background: var(--zl-surface);
	border: 1px solid var(--zl-border);
	border-radius: var(--zl-radius-lg);
	padding: 1.9rem;
	box-shadow: var(--zl-shadow-sm);
	transition: transform var(--zl-transition), box-shadow var(--zl-transition), border-color var(--zl-transition);
}

.card p { margin-bottom: 0; color: var(--zl-muted); }
.card-title { margin: 0 0 0.6rem; }

.card-hover:hover, .card-hover:focus-within {
	transform: translateY(-6px);
	box-shadow: var(--zl-shadow-lg);
	border-color: rgba(15, 76, 129, 0.25);
}

.card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 16px;
	margin-bottom: 1.1rem;
}
.icon-primary { background: var(--zl-primary-soft); color: var(--zl-primary); }
.icon-secondary { background: var(--zl-secondary-soft); color: var(--zl-secondary); }
.icon-accent { background: var(--zl-accent-soft); color: #a9760a; }

.card-cta {
	background: linear-gradient(140deg, var(--zl-primary) 0%, var(--zl-primary-dark) 100%);
	border-color: transparent;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.8rem;
}
.card-cta .card-title, .card-cta p { color: #fff; }
.card-cta .btn { align-self: flex-start; }

.tile {
	background: var(--zl-surface);
	border: 1px solid var(--zl-border);
	border-radius: var(--zl-radius);
	padding: 1.5rem 1.25rem;
	text-align: center;
	box-shadow: var(--zl-shadow-sm);
	transition: transform var(--zl-transition), box-shadow var(--zl-transition);
}
.tile:hover { transform: translateY(-5px); box-shadow: var(--zl-shadow); }
.tile p { font-size: 0.9rem; color: var(--zl-muted); margin: 0; }
.tile-title { font-size: 1.1rem; margin: 0.6rem 0 0.4rem; }
.tile-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--zl-primary-soft);
	color: var(--zl-primary);
}

.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature-title { font-size: 1.1rem; margin: 0 0 0.35rem; }
.feature p { margin: 0; color: var(--zl-muted); font-size: 0.95rem; }
.feature-icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 14px;
	background: var(--zl-secondary-soft);
	color: var(--zl-secondary);
}

/* ---------- Stats ---------- */

.section-stats {
	background: linear-gradient(120deg, var(--zl-primary) 0%, #123f6b 55%, var(--zl-secondary) 130%);
	color: #fff;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.5rem;
	margin: 0;
	text-align: center;
}
.stat { padding: 1rem 0.5rem; border-radius: var(--zl-radius); background: rgba(255, 255, 255, 0.08); }
.stat-number {
	font-family: var(--zl-font-head);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	color: var(--zl-accent);
	line-height: 1;
}
.stat-label { margin: 0.4rem 0 0; font-size: 0.95rem; color: rgba(255, 255, 255, 0.9); }

/* ---------- CTA band ---------- */

.section-cta { background: var(--zl-primary-dark); color: #fff; padding: clamp(2.5rem, 5vw, 3.5rem) 0; }
.cta-inner { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between; }
.cta-title { color: #fff; margin: 0 0 0.35rem; }
.cta-text { margin: 0; color: rgba(255, 255, 255, 0.85); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ---------- Contact ---------- */

.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 2.5rem; }
.contact-subtitle { font-size: 1.3rem; margin-bottom: 1rem; }
.contact-list { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: 1rem; }
.contact-list li { display: flex; gap: 0.85rem; align-items: flex-start; }
.contact-list address { margin: 0; }
.contact-icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: var(--zl-primary-soft);
	color: var(--zl-primary);
}
.contact-icon .zl-icon { width: 20px; height: 20px; }

.map-embed {
	border-radius: var(--zl-radius-lg);
	overflow: hidden;
	box-shadow: var(--zl-shadow);
	border: 1px solid var(--zl-border);
	background: #dfe6ee;
}
.map-embed iframe { display: block; width: 100%; height: 320px; border: 0; }

.contact-form-wrap {
	background: var(--zl-surface);
	border: 1px solid var(--zl-border);
	border-radius: var(--zl-radius-lg);
	padding: 2rem;
	box-shadow: var(--zl-shadow);
}

.contact-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.form-row { margin: 0; display: grid; gap: 0.35rem; }
.form-row-full, .form-actions { grid-column: 1 / -1; }
.form-actions { margin: 0; }
.form-hp { position: absolute; left: -9999px; }

label { font-size: 0.85rem; font-weight: 600; color: #33414f; }

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="search"],
input[type="password"],
input[type="number"],
textarea,
select {
	width: 100%;
	font: inherit;
	font-size: 0.95rem;
	color: var(--zl-text);
	padding: 0.7rem 0.9rem;
	background: #fff;
	border: 1px solid var(--zl-border);
	border-radius: 10px;
	transition: border-color var(--zl-transition), box-shadow var(--zl-transition);
}

input:focus, textarea:focus, select:focus {
	border-color: var(--zl-primary);
	box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.12);
	outline: none;
}

textarea { resize: vertical; min-height: 130px; }

.form-notice {
	padding: 0.85rem 1rem;
	border-radius: 10px;
	font-size: 0.92rem;
	margin-bottom: 1.2rem;
}
.form-notice-success { background: var(--zl-secondary-soft); color: #145c38; border: 1px solid rgba(30, 125, 77, 0.3); }
.form-notice-error { background: #fdecec; color: #90271f; border: 1px solid rgba(180, 40, 30, 0.25); }

/* ---------- Inner page header ---------- */

.page-hero {
	background: linear-gradient(115deg, var(--zl-primary) 0%, var(--zl-primary-dark) 100%);
	color: #fff;
	padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 5vw, 3.5rem);
}
.page-hero-title { color: #fff; margin: 0.5rem 0 0.6rem; }
.page-hero-text { margin: 0; color: rgba(255, 255, 255, 0.88); max-width: 65ch; }
.breadcrumbs { font-size: 0.85rem; color: rgba(255, 255, 255, 0.8); display: flex; gap: 0.5rem; flex-wrap: wrap; }
.breadcrumbs a { color: var(--zl-accent); }

/* ---------- Blog ---------- */

.post-grid { display: grid; gap: 1.75rem; }

.entry-card {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: 1.5rem;
	background: var(--zl-surface);
	border: 1px solid var(--zl-border);
	border-radius: var(--zl-radius-lg);
	overflow: hidden;
	box-shadow: var(--zl-shadow-sm);
	transition: transform var(--zl-transition), box-shadow var(--zl-transition);
}
.entry-card:hover { transform: translateY(-4px); box-shadow: var(--zl-shadow); }
.entry-card:not(:has(.entry-thumb)) { grid-template-columns: minmax(0, 1fr); }
.entry-thumb img { width: 100%; height: 100%; object-fit: cover; }
.entry-body { padding: 1.5rem 1.75rem 1.75rem; }
.entry-title { font-size: 1.4rem; margin: 0 0 0.4rem; }
.entry-meta { font-size: 0.83rem; color: var(--zl-muted); display: flex; flex-wrap: wrap; gap: 0.5rem; }
.entry-summary { color: var(--zl-muted); }
.link-more { font-weight: 600; }

.entry-single {
	background: var(--zl-surface);
	border: 1px solid var(--zl-border);
	border-radius: var(--zl-radius-lg);
	padding: clamp(1.5rem, 4vw, 2.75rem);
	box-shadow: var(--zl-shadow-sm);
}
.entry-featured { margin: 0 0 1.5rem; border-radius: var(--zl-radius); overflow: hidden; }
.entry-content > *:last-child { margin-bottom: 0; }
.entry-content h2, .entry-content h3 { margin-top: 1.8em; }

.post-navigation { margin-top: 2rem; display: grid; gap: 1rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.post-navigation a { display: block; background: #fff; border: 1px solid var(--zl-border); border-radius: var(--zl-radius); padding: 1rem; box-shadow: var(--zl-shadow-sm); }
.nav-label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--zl-muted); }

.pagination { margin-top: 2rem; }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 0.6rem;
	border-radius: 10px;
	background: #fff;
	border: 1px solid var(--zl-border);
	font-weight: 600;
}
.pagination .page-numbers.current, .pagination .page-numbers:hover { background: var(--zl-primary); color: #fff; border-color: var(--zl-primary); text-decoration: none; }

.no-results { background: #fff; border: 1px solid var(--zl-border); border-radius: var(--zl-radius-lg); padding: 2rem; }

/* ---------- Search form ---------- */

.search-form { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.search-form .search-field { flex: 1 1 220px; }

/* ---------- Sidebar & widgets ---------- */

.widget-area { display: grid; gap: 1.5rem; }
.widget {
	background: var(--zl-surface);
	border: 1px solid var(--zl-border);
	border-radius: var(--zl-radius);
	padding: 1.4rem;
	box-shadow: var(--zl-shadow-sm);
}
.widget-title { font-size: 1.1rem; margin: 0 0 0.9rem; padding-bottom: 0.6rem; border-bottom: 2px solid var(--zl-accent); }
.widget ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.widget ul ul { margin-top: 0.5rem; padding-left: 1rem; }

/* ---------- Comments ---------- */

.comments-area { margin-top: 2.5rem; background: #fff; border: 1px solid var(--zl-border); border-radius: var(--zl-radius-lg); padding: clamp(1.25rem, 3vw, 2rem); }
.comment-list { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: 1.25rem; }
.comment-list .children { list-style: none; margin: 1.25rem 0 0; padding-left: 1.5rem; display: grid; gap: 1.25rem; border-left: 2px solid var(--zl-border); }
.comment-body { background: var(--zl-bg); border-radius: var(--zl-radius); padding: 1.1rem 1.25rem; }
.comment-author img { border-radius: 50%; margin-right: 0.6rem; }
.comment-form { display: grid; gap: 0.9rem; }

/* ---------- 404 ---------- */

.error-code { font-family: var(--zl-font-head); font-size: clamp(4rem, 14vw, 8rem); line-height: 1; color: var(--zl-primary-soft); margin: 0; font-weight: 700; }
.error-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */

.site-footer { background: #0c2540; color: rgba(255, 255, 255, 0.82); margin-top: 0; }
.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 2rem;
	padding: clamp(2.5rem, 5vw, 4rem) 1.25rem;
}
.site-footer:has(.footer-widgets) .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
.footer-heading { color: #fff; font-size: 1.15rem; margin-bottom: 0.9rem; }
.footer-uen { font-size: 0.85rem; color: var(--zl-accent); margin-bottom: 0.6rem; }
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--zl-accent); }
.footer-menu, .social-menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.45rem; }
.social-menu { grid-auto-flow: column; gap: 1rem; }
.footer-hours { font-size: 0.85rem; margin-top: 1rem; }
.footer-widgets .widget { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.12); box-shadow: none; color: inherit; }
.footer-widgets .widget-title { color: #fff; }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); }
.footer-bottom-inner { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; justify-content: space-between; padding: 1.1rem 1.25rem; font-size: 0.85rem; }
.site-info { margin: 0; }

/* ---------- Utilities & animation ---------- */

.mvv { margin-top: 0.5rem; }

@keyframes zl-rise {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: translateY(0); }
}

.zl-reveal { opacity: 0; transform: translateY(20px); }
.zl-reveal.is-visible {
	opacity: 1;
	transform: none;
	transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.7, 0.3, 1);
}

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
	.grid-5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
	.header-inner { flex-wrap: wrap; }
	.menu-toggle { display: inline-flex; order: 3; }
	.header-cta { display: none; }

	.main-navigation {
		order: 4;
		flex: 1 0 100%;
		max-height: 0;
		overflow: hidden;
		transition: max-height var(--zl-transition);
	}
	.main-navigation.is-open { max-height: 80vh; overflow-y: auto; }
	.main-navigation ul { flex-direction: column; align-items: stretch; padding-bottom: 1rem; }
	.main-navigation .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: none;
		padding-left: 1rem;
	}

	.content-with-sidebar { grid-template-columns: minmax(0, 1fr); }
	.contact-layout { grid-template-columns: minmax(0, 1fr); }
	.grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.footer-grid, .site-footer:has(.footer-widgets) .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
	.stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.grid-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.entry-card { grid-template-columns: minmax(0, 1fr); }
	.entry-thumb img { max-height: 240px; }
	.post-navigation { grid-template-columns: minmax(0, 1fr); }
	.topbar-inner { justify-content: center; text-align: center; }
	.topbar-tagline { display: none; }
}

@media (max-width: 560px) {
	.grid-3, .grid-5 { grid-template-columns: minmax(0, 1fr); }
	.contact-form { grid-template-columns: minmax(0, 1fr); }
	.footer-grid, .site-footer:has(.footer-widgets) .footer-grid { grid-template-columns: minmax(0, 1fr); }
	.hero-actions .btn, .error-actions .btn { width: 100%; }
	.contact-form-wrap { padding: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
	}
	.zl-reveal { opacity: 1; transform: none; }
}

@media print {
	.topbar, .site-header, .site-footer, .section-cta, .map-embed { display: none !important; }
	body { background: #fff; }
}
