/* ==========================================================================
   Audit Siguranta Rutiera — main stylesheet
   Rebrand of GOIA layout with gold/charcoal palette
   ========================================================================== */

:root {
	--asr-gold: #d4a017;
	--asr-gold-soft: #e8b84a;
	--asr-gold-dark: #a87d10;
	--asr-charcoal: #2b2f36;
	--asr-ink: #111418;
	--asr-cream: #faf7f1;
	--asr-slate-50: #f8fafc;
	--asr-slate-100: #f1f5f9;
	--asr-slate-200: #e2e8f0;
	--asr-slate-300: #cbd5e1;
	--asr-slate-500: #64748b;
	--asr-slate-600: #475569;
	--asr-slate-700: #334155;
	--asr-slate-800: #1e293b;
	--asr-slate-900: #0f172a;
	--asr-white: #ffffff;
	--asr-red-500: #ef4444;
	--asr-red-50:  #fef2f2;
	--asr-amber-50: #fffbeb;
	--asr-amber-100: #fef3c7;
	--asr-amber-500: #f59e0b;
	--asr-amber-700: #b45309;

	--asr-shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
	--asr-shadow:    0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.08);
	--asr-shadow-lg: 0 18px 42px -12px rgba(15, 23, 42, 0.18), 0 8px 16px -6px rgba(15, 23, 42, 0.08);
	--asr-shadow-gold: 0 0 30px rgba(212, 160, 23, 0.22);

	--asr-radius-sm: 6px;
	--asr-radius:    12px;
	--asr-radius-lg: 18px;
	--asr-radius-xl: 24px;

	--asr-font-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	--asr-font-display: 'Space Grotesk', 'Inter', sans-serif;

	--asr-container-max: 1200px;
	--asr-nav-h: 72px;
}

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

html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--asr-font-sans);
	font-size: 16px;
	line-height: 1.6;
	color: var(--asr-slate-800);
	background: var(--asr-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--asr-gold-dark); text-decoration: none; }
a:hover { color: var(--asr-gold); }
button { font: inherit; }

.asr-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--asr-ink);
	color: var(--asr-white);
	padding: 12px 16px;
	z-index: 100;
}
.asr-skip:focus { left: 16px; top: 16px; }

/* ---------- containers + typography ---------- */
.asr-container {
	max-width: var(--asr-container-max);
	margin: 0 auto;
	padding: 0 24px;
}

.asr-section {
	padding: 96px 0;
	position: relative;
}
.asr-section--tight { padding: 72px 0; }
.asr-section--alt { background: var(--asr-slate-50); }

.asr-section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--asr-gold-dark);
	font-weight: 700;
	margin-bottom: 18px;
}
.asr-section-eyebrow::before,
.asr-section-eyebrow::after {
	content: '';
	width: 28px;
	height: 2px;
	background: var(--asr-gold);
}
.asr-section-eyebrow.asr-eyebrow--left::after { display: none; }

.asr-section-heading {
	font-family: var(--asr-font-display);
	font-weight: 700;
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.15;
	color: var(--asr-ink);
	margin: 0 0 16px;
	letter-spacing: -0.01em;
}
.asr-section-subtitle {
	color: var(--asr-slate-600);
	font-size: 17px;
	max-width: 720px;
	margin: 0 0 32px;
}

.asr-gradient-gold {
	background: linear-gradient(135deg, var(--asr-gold) 0%, var(--asr-gold-soft) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* ---------- buttons ---------- */
.asr-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: var(--asr-radius);
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	border: 1px solid transparent;
	transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	text-decoration: none;
}
.asr-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.asr-btn-primary {
	background: var(--asr-gold);
	color: var(--asr-ink);
	box-shadow: var(--asr-shadow-gold);
}
.asr-btn-primary:hover { background: var(--asr-gold-soft); transform: translateY(-1px); color: var(--asr-ink); }
.asr-btn-secondary {
	background: transparent;
	color: var(--asr-gold-dark);
	border-color: var(--asr-gold);
}
.asr-btn-secondary:hover { background: var(--asr-gold); color: var(--asr-ink); }
.asr-btn-dark {
	background: var(--asr-ink);
	color: var(--asr-cream);
}
.asr-btn-dark:hover { background: var(--asr-charcoal); color: var(--asr-white); }

/* ---------- navbar ---------- */
.asr-nav {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 60;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: saturate(150%) blur(12px);
	-webkit-backdrop-filter: saturate(150%) blur(12px);
	border-bottom: 1px solid transparent;
	transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.asr-nav.is-scrolled {
	border-bottom-color: var(--asr-slate-200);
	box-shadow: 0 6px 20px -12px rgba(15, 23, 42, 0.2);
	background: rgba(255, 255, 255, 0.98);
}
.asr-nav-inner {
	max-width: var(--asr-container-max);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 14px 24px;
	min-height: var(--asr-nav-h);
}
.asr-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	color: inherit;
	text-decoration: none;
}
.asr-brand-mark { width: 46px; height: auto; flex-shrink: 0; }
.asr-brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.asr-brand-line-1 {
	font-family: var(--asr-font-display);
	font-weight: 700;
	font-size: 17px;
	color: var(--asr-charcoal);
	letter-spacing: -0.01em;
}
.asr-brand-line-2 {
	font-size: 11.5px;
	color: var(--asr-gold-dark);
	margin-top: 2px;
	letter-spacing: 0.02em;
}
.asr-nav-links { display: flex; align-items: center; gap: 20px; }
.asr-menu {
	display: flex;
	align-items: center;
	gap: 22px;
	list-style: none;
	padding: 0;
	margin: 0;
}
.asr-menu a {
	color: var(--asr-charcoal);
	font-weight: 500;
	font-size: 14.5px;
	position: relative;
	padding: 8px 0;
	transition: color 0.15s ease;
}
.asr-menu a:hover { color: var(--asr-gold-dark); }
.asr-menu a::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 2px;
	width: 4px;
	height: 4px;
	background: var(--asr-gold);
	border-radius: 50%;
	transform: translateX(-50%) scale(0);
	transition: transform 0.2s ease;
}
.asr-menu a.is-active::after,
.asr-menu a:hover::after { transform: translateX(-50%) scale(1); }

.asr-nav-cta { padding: 10px 18px; }

.asr-burger {
	display: none;
	background: transparent;
	border: 0;
	width: 40px;
	height: 40px;
	position: relative;
	cursor: pointer;
}
.asr-burger span {
	display: block;
	position: absolute;
	left: 8px;
	right: 8px;
	height: 2px;
	background: var(--asr-charcoal);
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}
.asr-burger span:nth-child(1) { top: 13px; }
.asr-burger span:nth-child(2) { top: 19px; }
.asr-burger span:nth-child(3) { top: 25px; }
.asr-burger[aria-expanded="true"] span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.asr-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.asr-burger[aria-expanded="true"] span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

.asr-mobile-panel {
	background: var(--asr-white);
	border-top: 1px solid var(--asr-slate-200);
	padding: 8px 24px 24px;
}
.asr-mobile-panel ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.asr-mobile-panel li a {
	display: block;
	padding: 12px 8px;
	color: var(--asr-charcoal);
	font-weight: 500;
	border-radius: var(--asr-radius-sm);
}
.asr-mobile-panel li a:hover { background: var(--asr-slate-50); color: var(--asr-gold-dark); }
.asr-mobile-panel li .asr-btn { justify-content: center; margin-top: 12px; }

/* ---------- hero ---------- */
.asr-hero {
	position: relative;
	padding: calc(var(--asr-nav-h) + 64px) 0 120px;
	background:
		linear-gradient(180deg, rgba(17, 20, 24, 0.72) 0%, rgba(43, 47, 54, 0.55) 55%, rgba(17, 20, 24, 0.55) 100%),
		url('../img/hero-highway.jpg') center bottom / cover no-repeat;
	color: var(--asr-cream);
	overflow: hidden;
	min-height: min(680px, 88vh);
	display: flex;
	align-items: center;
}
.asr-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 20% 20%, rgba(212,160,23,0.25) 0%, transparent 55%),
	            radial-gradient(circle at 80% 70%, rgba(43,47,54,0.35) 0%, transparent 50%);
	pointer-events: none;
}
.asr-hero-inner {
	position: relative;
	max-width: var(--asr-container-max);
	margin: 0 auto;
	padding: 0 24px;
	text-align: center;
	z-index: 1;
}
.asr-hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 18px;
	background: rgba(212,160,23,0.18);
	border: 1px solid rgba(212,160,23,0.45);
	color: var(--asr-gold-soft);
	border-radius: 999px;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.asr-hero-title {
	font-family: var(--asr-font-display);
	font-size: clamp(36px, 6vw, 64px);
	line-height: 1.05;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin: 18px auto 22px;
	max-width: 960px;
	color: var(--asr-white);
	text-shadow: 0 3px 16px rgba(0,0,0,0.35);
}
.asr-hero-title em { font-style: normal; color: var(--asr-gold-soft); }
.asr-hero-sub {
	font-size: clamp(16px, 1.4vw, 19px);
	color: var(--asr-cream);
	max-width: 680px;
	margin: 0 auto 32px;
	opacity: 0.92;
}
.asr-hero-ctas {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}
.asr-hero-badges {
	margin-top: 40px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
}
.asr-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 999px;
	font-size: 13px;
	color: var(--asr-cream);
	backdrop-filter: blur(8px);
}
.asr-hero-stats {
	margin-top: 56px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}
.asr-hero-stat {
	text-align: center;
	padding: 18px 10px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: var(--asr-radius);
	backdrop-filter: blur(6px);
}
.asr-hero-stat strong {
	display: block;
	font-family: var(--asr-font-display);
	font-size: clamp(22px, 3vw, 34px);
	color: var(--asr-gold-soft);
}
.asr-hero-stat span {
	font-size: 13px;
	color: var(--asr-cream);
	opacity: 0.88;
}

/* ---------- about (Despre noi) ---------- */
.asr-about-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 64px;
	align-items: start;
}
.asr-about-values {
	list-style: none;
	padding: 0;
	margin: 28px 0 0;
	display: grid;
	gap: 12px;
}
.asr-about-values li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: var(--asr-slate-700);
}
.asr-about-values li::before {
	content: '';
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	margin-top: 2px;
	background: var(--asr-gold);
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") no-repeat center / contain;
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") no-repeat center / contain;
}

.asr-pillar-cards { display: grid; gap: 18px; }
.asr-pillar {
	background: var(--asr-white);
	border: 1px solid var(--asr-slate-200);
	border-radius: var(--asr-radius-lg);
	padding: 22px;
	box-shadow: var(--asr-shadow-sm);
	transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.asr-pillar:hover { transform: translateY(-3px); box-shadow: var(--asr-shadow-lg); }
.asr-pillar h3 {
	margin: 0 0 8px;
	font-family: var(--asr-font-display);
	color: var(--asr-ink);
	font-size: 18px;
}
.asr-pillar p { margin: 0; color: var(--asr-slate-600); font-size: 14.5px; }
.asr-pillar-icon {
	display: inline-flex;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: rgba(212,160,23,0.15);
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
	color: var(--asr-gold-dark);
}

.asr-metric-card {
	margin-top: 8px;
	background: var(--asr-ink);
	color: var(--asr-cream);
	padding: 28px;
	border-radius: var(--asr-radius-xl);
	box-shadow: var(--asr-shadow-gold);
}
.asr-metric-card span { color: var(--asr-slate-300); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
.asr-metric-card strong {
	display: block;
	margin: 10px 0 6px;
	font-family: var(--asr-font-display);
	font-size: 48px;
	line-height: 1;
	background: linear-gradient(135deg, var(--asr-gold) 0%, var(--asr-gold-soft) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.asr-metric-card small { color: var(--asr-slate-300); font-size: 13px; }

/* ---------- services ---------- */
.asr-services-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}
.asr-service {
	background: var(--asr-white);
	border: 1px solid var(--asr-slate-200);
	border-radius: var(--asr-radius-lg);
	padding: 26px;
	box-shadow: var(--asr-shadow-sm);
	transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.asr-service:hover { transform: translateY(-4px); box-shadow: var(--asr-shadow-lg); border-color: rgba(212,160,23,0.5); }
.asr-service-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--asr-gold), var(--asr-gold-soft));
	color: var(--asr-ink);
}
.asr-service-icon.asr-service-icon--dark {
	background: linear-gradient(135deg, var(--asr-charcoal), var(--asr-ink));
	color: var(--asr-gold-soft);
}
.asr-service h3 {
	margin: 0;
	font-family: var(--asr-font-display);
	font-size: 19px;
	color: var(--asr-ink);
}
.asr-service p { margin: 0; color: var(--asr-slate-600); font-size: 14.5px; }
.asr-service-tags { margin-top: auto; display: flex; flex-wrap: wrap; gap: 6px; }
.asr-service-tags span {
	padding: 4px 10px;
	font-size: 12px;
	background: var(--asr-slate-100);
	color: var(--asr-slate-700);
	border-radius: 999px;
	font-weight: 500;
}

.asr-services-cta {
	margin-top: 48px;
	text-align: center;
	color: var(--asr-slate-600);
}
.asr-services-cta p { margin: 0 0 14px; }

/* ---------- news ---------- */
.asr-news-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}
.asr-news-card {
	background: var(--asr-white);
	border: 1px solid var(--asr-slate-200);
	border-radius: var(--asr-radius-lg);
	overflow: hidden;
	box-shadow: var(--asr-shadow-sm);
	display: flex;
	flex-direction: column;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.asr-news-card:hover { transform: translateY(-3px); box-shadow: var(--asr-shadow-lg); }
.asr-news-banner {
	aspect-ratio: 16 / 9;
	background: linear-gradient(135deg, var(--asr-gold), var(--asr-gold-soft));
	position: relative;
}
.asr-news-banner[data-variant="dark"]  { background: linear-gradient(135deg, var(--asr-charcoal), var(--asr-ink)); }
.asr-news-banner[data-variant="green"] { background: linear-gradient(135deg, #065f46, #14b8a6); }
.asr-news-banner span {
	position: absolute;
	left: 16px;
	bottom: 16px;
	background: rgba(255,255,255,0.92);
	color: var(--asr-ink);
	font-weight: 600;
	font-size: 12px;
	padding: 6px 12px;
	border-radius: 999px;
}
.asr-news-card-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.asr-news-meta { display: flex; gap: 16px; font-size: 12.5px; color: var(--asr-slate-500); }
.asr-news-card h3 {
	margin: 0;
	font-family: var(--asr-font-display);
	font-size: 18px;
	color: var(--asr-ink);
	line-height: 1.3;
}
.asr-news-card p { margin: 0; color: var(--asr-slate-600); font-size: 14.5px; }
.asr-news-card button {
	align-self: flex-start;
	margin-top: 4px;
	background: none;
	border: 0;
	color: var(--asr-gold-dark);
	font-weight: 600;
	padding: 0;
	cursor: pointer;
}

.asr-news-card button:hover { text-decoration: underline; }

/* ---------- contact ---------- */
.asr-contact-grid {
	display: grid;
	grid-template-columns: 2fr 3fr;
	gap: 48px;
	align-items: start;
}
.asr-contact-info { display: grid; gap: 14px; margin-top: 24px; }
.asr-contact-card {
	display: flex;
	gap: 14px;
	padding: 18px;
	background: var(--asr-white);
	border: 1px solid var(--asr-slate-200);
	border-radius: var(--asr-radius-lg);
	box-shadow: var(--asr-shadow-sm);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.asr-contact-card:hover { transform: translateY(-2px); box-shadow: var(--asr-shadow-lg); }
.asr-contact-card-icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(212,160,23,0.15);
	color: var(--asr-gold-dark);
	display: flex;
	align-items: center;
	justify-content: center;
}
.asr-contact-card h4 { margin: 0 0 4px; font-size: 14px; color: var(--asr-ink); font-family: var(--asr-font-display); }
.asr-contact-card a, .asr-contact-card span { color: var(--asr-slate-600); font-size: 14.5px; word-break: break-word; }
.asr-contact-card a:hover { color: var(--asr-gold-dark); }

.asr-form-panel {
	background: var(--asr-white);
	padding: 32px;
	border-radius: var(--asr-radius-xl);
	border: 1px solid var(--asr-slate-200);
	box-shadow: var(--asr-shadow);
}

.asr-form { display: grid; gap: 14px; }
/* Honeypot field — invisible to humans, present for bots. */
.asr-hp {
	position: absolute !important;
	left: -9999px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.asr-form-row { display: flex; flex-direction: column; gap: 6px; }
.asr-form label {
	font-weight: 600;
	font-size: 14px;
	color: var(--asr-slate-700);
	display: flex;
	align-items: center;
	gap: 6px;
}
.asr-form label span[aria-hidden="true"] { color: var(--asr-gold-dark); }
.asr-field-hint { color: var(--asr-slate-500); font-weight: 500; font-size: 12.5px; }
.asr-form input[type="text"],
.asr-form input[type="email"],
.asr-form input[type="tel"],
.asr-form textarea {
	width: 100%;
	padding: 12px 14px;
	border-radius: var(--asr-radius);
	border: 1px solid var(--asr-slate-200);
	background: var(--asr-white);
	font: inherit;
	font-size: 15px;
	color: var(--asr-slate-800);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	-webkit-appearance: none;
}
.asr-form textarea { min-height: 140px; resize: vertical; font-family: inherit; }
.asr-form input:focus, .asr-form textarea:focus {
	outline: none;
	border-color: var(--asr-gold);
	box-shadow: 0 0 0 3px rgba(212,160,23,0.18);
}
.asr-form input.has-error, .asr-form textarea.has-error {
	border-color: var(--asr-red-500);
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}
.asr-field-error { color: var(--asr-red-500); font-size: 13px; }
.asr-form-submit {
	width: 100%;
	padding: 14px 22px;
	font-size: 15px;
	position: relative;
}
.asr-form-submit[aria-busy="true"] .asr-form-submit-label { opacity: 0.7; }
.asr-form-submit[aria-busy="true"] .asr-form-submit-spinner {
	display: inline-block !important;
	animation: asrSpin 0.9s linear infinite;
}
@keyframes asrSpin { to { transform: rotate(360deg); } }
.asr-form-status {
	display: none;
	padding: 14px 16px;
	border-radius: var(--asr-radius);
	font-size: 14px;
	line-height: 1.5;
	border-width: 1px;
	border-style: solid;
}
.asr-form-status.is-success {
	display: block;
	background: #ecfdf5;
	border-color: #a7f3d0;
	color: #065f46;
}
.asr-form-status.is-error {
	display: block;
	background: var(--asr-red-50);
	border-color: #fecaca;
	color: #991b1b;
}

/* Contact Form 7 overrides (match original Contact.tsx visuals) */
.wpcf7 .wpcf7-form label {
	display: block;
	font-weight: 600;
	font-size: 14px;
	color: var(--asr-slate-700);
	margin-bottom: 6px;
}
.wpcf7 .wpcf7-form input[type="text"],
.wpcf7 .wpcf7-form input[type="email"],
.wpcf7 .wpcf7-form input[type="tel"],
.wpcf7 .wpcf7-form textarea {
	width: 100%;
	padding: 12px 14px;
	border-radius: var(--asr-radius);
	border: 1px solid var(--asr-slate-200);
	background: var(--asr-white);
	font-size: 15px;
	color: var(--asr-slate-800);
	font-family: inherit;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	-webkit-appearance: none;
}
.wpcf7 .wpcf7-form input:focus,
.wpcf7 .wpcf7-form textarea:focus {
	outline: none;
	border-color: var(--asr-gold);
	box-shadow: 0 0 0 3px rgba(212,160,23,0.18);
}
.wpcf7 .wpcf7-form textarea { min-height: 140px; resize: vertical; }
.wpcf7 .wpcf7-form input[type="submit"] {
	width: 100%;
	padding: 14px 22px;
	background: var(--asr-gold);
	color: var(--asr-ink);
	font-weight: 700;
	border: 0;
	border-radius: var(--asr-radius);
	cursor: pointer;
	font-size: 15px;
	box-shadow: var(--asr-shadow-gold);
	transition: background 0.2s ease, transform 0.15s ease;
}
.wpcf7 .wpcf7-form input[type="submit"]:hover { background: var(--asr-gold-soft); transform: translateY(-1px); }
.wpcf7 .wpcf7-not-valid-tip {
	color: var(--asr-red-500);
	font-size: 13px;
	margin-top: 4px;
}
.wpcf7 .wpcf7-response-output {
	margin: 18px 0 0;
	padding: 14px 16px;
	border-radius: var(--asr-radius);
	border-width: 1px;
	border-style: solid;
	font-size: 14px;
}
.wpcf7 form.sent .wpcf7-response-output {
	background: #ecfdf5;
	border-color: #a7f3d0;
	color: #065f46;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output {
	background: var(--asr-red-50);
	border-color: #fecaca;
	color: #991b1b;
}
.asr-form-panel .asr-form-note {
	font-size: 12.5px;
	color: var(--asr-slate-500);
	margin: 14px 0 0;
}
.asr-form-missing {
	padding: 16px;
	background: var(--asr-amber-50);
	border: 1px solid var(--asr-amber-100);
	border-radius: var(--asr-radius);
	color: var(--asr-amber-700);
}

/* ---------- funding block (above footer) ---------- */
.asr-funding {
	background: var(--asr-white);
	border-top: 1px solid var(--asr-slate-200);
}
.asr-funding-inner {
	max-width: var(--asr-container-max);
	margin: 0 auto;
	padding: 56px 24px;
	display: grid;
	grid-template-columns: minmax(240px, 340px) 1fr;
	gap: 48px;
	align-items: center;
}
.asr-funding-logos {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px 22px;
	align-items: center;
	justify-items: center;
}
.asr-funding-logos img {
	max-height: 80px;
	width: auto;
	object-fit: contain;
}
.asr-funding-body {
	font-size: 14px;
	color: var(--asr-slate-700);
	line-height: 1.65;
}
.asr-funding-heading {
	margin: 0 0 14px;
	font-family: var(--asr-font-display);
	font-size: 16px;
	font-weight: 700;
	color: var(--asr-ink);
	letter-spacing: 0.02em;
	text-transform: uppercase;
}
.asr-funding-body p { margin: 0 0 10px; }
.asr-funding-body p:last-child { margin-bottom: 0; }
.asr-funding-body strong { color: var(--asr-ink); }

@media (max-width: 768px) {
	.asr-funding-inner { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px; }
	.asr-funding-logos { max-width: 420px; margin: 0 auto; }
	.asr-funding-logos img { max-height: 64px; }
	.asr-funding-heading { font-size: 15px; }
}

/* ---------- footer ---------- */
.asr-footer {
	background: var(--asr-ink);
	color: var(--asr-slate-300);
}
.asr-footer-inner {
	max-width: var(--asr-container-max);
	margin: 0 auto;
	padding: 64px 24px 32px;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 48px;
}
.asr-footer-brand .asr-brand-line-1 { color: var(--asr-white); }
.asr-footer-brand .asr-brand-line-2 { color: var(--asr-gold-soft); }
.asr-footer-brand p { margin: 16px 0; color: var(--asr-slate-300); font-size: 14.5px; max-width: 420px; }
.asr-social {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 10px;
}
.asr-social a {
	display: inline-flex;
	padding: 8px 12px;
	background: rgba(255,255,255,0.08);
	color: var(--asr-slate-200);
	border-radius: 999px;
	font-size: 12.5px;
	transition: background 0.15s ease, color 0.15s ease;
}
.asr-social a:hover { background: var(--asr-gold); color: var(--asr-ink); }

.asr-footer-col h3 {
	color: var(--asr-slate-200);
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin: 0 0 16px;
	font-family: var(--asr-font-display);
}
.asr-footer-col ul, .asr-footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.asr-footer-col a { color: var(--asr-slate-300); font-size: 14.5px; }
.asr-footer-col a:hover { color: var(--asr-gold-soft); }

.asr-footer-bottom {
	max-width: var(--asr-container-max);
	margin: 0 auto;
	padding: 24px;
	border-top: 1px solid rgba(255,255,255,0.08);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 13px;
	color: var(--asr-slate-500);
}
.asr-footer-bottom a { color: var(--asr-slate-300); }
.asr-footer-bottom a:hover { color: var(--asr-gold-soft); }

/* ---------- modal (legal + article) ---------- */
.asr-modal {
	position: fixed;
	inset: 0;
	z-index: 80;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	animation: asrFadeInFast 0.15s ease-out both;
}
.asr-modal[hidden] { display: none; }
.asr-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.55);
	backdrop-filter: blur(4px);
}
.asr-modal-panel {
	position: relative;
	background: var(--asr-white);
	max-width: 780px;
	width: 100%;
	max-height: 92vh;
	border-radius: var(--asr-radius-xl);
	overflow: hidden;
	box-shadow: var(--asr-shadow-lg);
	display: flex;
	flex-direction: column;
	animation: asrFadeUpFast 0.2s ease-out both;
}
.asr-modal-panel::before {
	content: '';
	display: block;
	height: 5px;
	background: linear-gradient(90deg, var(--asr-gold), var(--asr-gold-soft));
}
.asr-modal-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 24px;
	border-bottom: 1px solid var(--asr-slate-200);
}
.asr-modal-head h2 {
	margin: 0;
	font-family: var(--asr-font-display);
	font-size: 20px;
	color: var(--asr-ink);
}
.asr-modal-head button {
	background: transparent;
	border: 0;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	color: var(--asr-slate-500);
}
.asr-modal-head button:hover { color: var(--asr-ink); }
.asr-modal-body { padding: 24px; overflow-y: auto; }
.asr-modal-body h3 { font-family: var(--asr-font-display); color: var(--asr-ink); }
.asr-modal-body ul { padding-left: 18px; }
.asr-modal-foot {
	padding: 16px 24px;
	border-top: 1px solid var(--asr-slate-200);
	display: flex;
	justify-content: flex-end;
}

/* ---------- cookie consent banner ---------- */
.asr-cookie {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 75;
	background: var(--asr-ink);
	color: var(--asr-cream);
	border: 1px solid rgba(212,160,23,0.35);
	border-radius: var(--asr-radius-lg);
	box-shadow: 0 20px 50px -20px rgba(0,0,0,0.55);
	animation: asrFadeUpFast 0.3s ease-out both;
}
.asr-cookie[hidden] { display: none; }
.asr-cookie-inner {
	max-width: var(--asr-container-max);
	margin: 0 auto;
	padding: 18px 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.asr-cookie-body { flex: 1 1 460px; }
.asr-cookie-title {
	margin: 0 0 4px;
	font-family: var(--asr-font-display);
	font-weight: 600;
	font-size: 15px;
	color: var(--asr-gold-soft);
}
.asr-cookie-text {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.55;
	color: var(--asr-slate-300);
}
.asr-cookie-text a { color: var(--asr-gold-soft); text-decoration: underline; }
.asr-cookie-text a:hover { color: var(--asr-gold); }
.asr-cookie-actions {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}
.asr-cookie-actions .asr-btn { padding: 10px 18px; font-size: 14px; }
.asr-cookie-actions .asr-btn-secondary {
	color: var(--asr-cream);
	border-color: rgba(255,255,255,0.25);
	background: transparent;
}
.asr-cookie-actions .asr-btn-secondary:hover {
	background: rgba(255,255,255,0.08);
	color: var(--asr-white);
}

@media (max-width: 640px) {
	.asr-cookie { left: 12px; right: 12px; bottom: 12px; }
	.asr-cookie-inner { padding: 16px; gap: 14px; }
	.asr-cookie-actions { width: 100%; }
	.asr-cookie-actions .asr-btn { flex: 1; justify-content: center; }
}

/* ---------- reveal animations ---------- */
.asr-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}
.asr-reveal.is-visible { opacity: 1; transform: translateY(0); }
.asr-reveal[data-delay="1"] { transition-delay: 0.1s; }
.asr-reveal[data-delay="2"] { transition-delay: 0.2s; }
.asr-reveal[data-delay="3"] { transition-delay: 0.3s; }
.asr-reveal[data-delay="4"] { transition-delay: 0.4s; }
.asr-reveal[data-delay="5"] { transition-delay: 0.5s; }

@keyframes asrFadeUp      { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes asrFadeIn      { from { opacity: 0; } to { opacity: 1; } }
@keyframes asrFadeUpFast  { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes asrFadeInFast  { from { opacity: 0; } to { opacity: 1; } }
@keyframes asrFloat       { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes asrPulseSlow   { 0%,100% { opacity: 0.8; } 50% { opacity: 0.4; } }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
	.asr-about-grid { grid-template-columns: 1fr; gap: 36px; }
	.asr-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.asr-news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.asr-contact-grid { grid-template-columns: 1fr; gap: 32px; }
	.asr-footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
	.asr-section { padding: 72px 0; }
	.asr-nav-links { display: none; }
	.asr-burger { display: block; }
	.asr-services-grid, .asr-news-grid { grid-template-columns: 1fr; }
	.asr-footer-inner { grid-template-columns: 1fr; gap: 32px; padding-top: 48px; }
	.asr-hero { padding: calc(var(--asr-nav-h) + 48px) 0 80px; }
	.asr-hero-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
	.asr-form-panel { padding: 22px; }
}

/* ---------- prose (legal pages) ---------- */
.asr-prose { max-width: 760px; }
.asr-prose h2, .asr-prose h3 { font-family: var(--asr-font-display); color: var(--asr-ink); }
.asr-prose p { color: var(--asr-slate-700); }
