/* ==========================================================================
   ARITMA SERVİSİM — ana stil dosyası (v2 — premium yeniden tasarım)
   Yön: "Teknik netlik" — su arıtma cihazının içini bilen bir ekibin markası.
   Signature: 6 kademeli filtrasyon şemasının çizgisel (blueprint) dili,
   header'dan footer'a kadar ince ölçü çizgileri ve düğüm noktalarıyla tekrar eder.
   Palet logodaki üç damladan türetilmiştir; burada daha derin, daha az doygun
   ve büyük yüzeylerde degrade yerine düz renk + ince doku olarak kullanılır.

   İçindekiler:
   01 Tokenlar · 02 Temel · 03 Tipografi · 04 Butonlar · 05 Header
   06 Hero · 07 Bölüm iskeleti · 08 Güven şeridi · 09 Hizmetler · 10 Neden biz
   11 Süreç · 12 Filtre aşamaları · 13 Bölgeler · 14 SSS · 15 Blog
   16 İletişim & form · 17 CTA · 18 Footer · 19 Sabit butonlar & lightbox
   20 Sayfa başlığı & breadcrumb · 21 Yazı içeriği, arama, yorumlar, 404
   22 Yardımcılar, animasyon & responsive
   ========================================================================== */

/* ---------------------------------------------------------------- 01 */
:root {
	/* Nötr uçlar */
	--asv-ink:    #0A1B22;   /* ana metin / en koyu yüzey */
	--asv-deep:   #0A1B22;   /* koyu bölüm zemini (eşanlamlı, geriye dönük uyum) */
	--asv-navy:   #0C3A57;   /* marka koyu tonu */
	--asv-blue:   #0E5F72;   /* geçiş tonu */
	--asv-teal:   #0F7A87;   /* orta marka tonu */
	--asv-cyan:   #22C4B6;   /* vurgu / parlama */
	--asv-cyan-soft: #CFEFE9;

	--asv-body:   #4E6469;   /* ikincil metin */
	--asv-mute:   #7C9095;   /* üçüncül metin / ipucu */
	--asv-ice:    #F1F5F4;   /* sayfa üzerindeki soluk zemin */
	--asv-mist:   #E7EFEE;   /* biraz daha koyu soluk zemin */
	--asv-line:   #DEE7E6;   /* ayraç */
	--asv-line-strong: #C9D6D5;
	--asv-white:  #FFFFFF;
	--asv-wa:     #25D366;

	/* Az ve öz degrade kullanımı: büyük yüzeylerde değil, küçük vurgularda */
	--asv-grad:      linear-gradient(120deg, var(--asv-teal) 0%, var(--asv-cyan) 100%);
	--asv-grad-deep: radial-gradient(120% 140% at 82% 8%, #12455F 0%, var(--asv-ink) 62%);
	--asv-grad-line: linear-gradient(180deg, rgba(34,196,182,.9), rgba(34,196,182,.15));

	--asv-shadow-sm: 0 2px 8px rgba(10, 27, 34, .06);
	--asv-shadow:    0 16px 40px rgba(10, 27, 34, .10);
	--asv-shadow-lg: 0 28px 70px rgba(10, 27, 34, .16);
	--asv-glow:      0 0 0 1px rgba(34,196,182,.35), 0 18px 40px rgba(34,196,182,.18);

	--radius-sm: 10px;
	--radius: 14px;
	--radius-lg: 22px;
	--radius-pill: 999px;

	--font-display: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
	--font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
	--font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

	--container: 1240px;
	--gutter: 24px;
	--header-h: 88px;
	--topbar-h: 40px;
	--section-y: clamp(64px, 8vw, 116px);

	--ease: cubic-bezier(.22, .61, .36, 1);
	--ease-spring: cubic-bezier(.34, 1.4, .4, 1);
}

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

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

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.7;
	color: var(--asv-body);
	background: var(--asv-white);
	padding-top: calc(var(--header-h) + var(--topbar-h));
	overflow-x: hidden;
}

body.is-front { padding-top: 0; }
body.nav-open { overflow: hidden; }

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

a { color: var(--asv-teal); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--asv-cyan); }

button { font: inherit; }

::selection { background: var(--asv-cyan); color: var(--asv-ink); }

:focus-visible {
	outline: 2.5px solid var(--asv-cyan);
	outline-offset: 3px;
	border-radius: 4px;
}

.container {
	width: min(100% - (var(--gutter) * 2), var(--container));
	margin-inline: auto;
}
.container--narrow { width: min(100% - (var(--gutter) * 2), 860px); }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip-path: inset(50%);
	white-space: nowrap; border: 0;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	background: var(--asv-ink);
	color: #fff;
	padding: 12px 20px;
	border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------------------------------------------------------------- 03 */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	color: var(--asv-ink);
	line-height: 1.16;
	letter-spacing: -.01em;
	margin: 0 0 .5em;
	font-weight: 600;
}

h1 { font-size: clamp(2.1rem, 1.6rem + 2.2vw, 3.4rem); font-weight: 700; letter-spacing: -.02em; }
h2 { font-size: clamp(1.7rem, 1.4rem + 1.4vw, 2.5rem); font-weight: 700; letter-spacing: -.015em; }
h3 { font-size: 1.22rem; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 14px;
	padding: 6px 14px 6px 10px;
	border: 1px solid var(--asv-line);
	border-radius: var(--radius-pill);
	font-family: var(--font-mono);
	font-size: .74rem;
	font-weight: 500;
	letter-spacing: .05em;
	color: var(--asv-teal);
	background: var(--asv-ice);
}
.eyebrow .icon { color: var(--asv-cyan); }

.section-head { max-width: 640px; margin: 0 0 44px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--start { text-align: start; }
.section-head__title { margin-bottom: .4em; }
.section-head__lead { color: var(--asv-body); font-size: 1.06rem; margin: 0; }

/* ---------------------------------------------------------------- 04 */
.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 13px 24px;
	border-radius: var(--radius-pill);
	font-family: var(--font-display);
	font-weight: 600;
	font-size: .96rem;
	letter-spacing: -.005em;
	border: 1px solid transparent;
	cursor: pointer;
	white-space: nowrap;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn .icon { flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--asv-ink); color: #fff; box-shadow: var(--asv-shadow-sm); }
.btn--primary:hover { background: var(--asv-teal); color: #fff; box-shadow: var(--asv-glow); }

.btn--outline { background: transparent; color: var(--asv-ink); border-color: var(--asv-line-strong); }
.btn--outline:hover { border-color: var(--asv-teal); color: var(--asv-teal); background: var(--asv-ice); }

.btn--glass {
	background: rgba(255,255,255,.08);
	color: #fff;
	border-color: rgba(255,255,255,.28);
	backdrop-filter: blur(10px);
}
.btn--glass:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.5); }

.btn--wa { background: var(--asv-wa); color: #fff; }
.btn--wa:hover { background: #1fb457; color: #fff; }

.btn--lg { padding: 16px 30px; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ---------------------------------------------------------------- 05 */
.site-header { position: fixed; inset-inline: 0; top: 0; z-index: 220; }

.topbar {
	height: var(--topbar-h);
	background: var(--asv-ink);
	color: rgba(255,255,255,.82);
	font-family: var(--font-mono);
	font-size: .78rem;
}
.topbar__inner {
	height: 100%;
	display: flex;
	align-items: center;
	gap: 22px;
	overflow-x: auto;
	scrollbar-width: none;
}
.topbar__inner::-webkit-scrollbar { display: none; }

.topbar__pulse { display: inline-flex; align-items: center; gap: 8px; flex: none; color: #fff; font-weight: 500; }
.topbar__dot {
	width: 7px; height: 7px; border-radius: 50%;
	background: var(--asv-cyan);
	box-shadow: 0 0 0 0 rgba(34,196,182,.6);
	animation: asvPulse 2.2s ease-out infinite;
}
@keyframes asvPulse {
	0%   { box-shadow: 0 0 0 0 rgba(34,196,182,.55); }
	70%  { box-shadow: 0 0 0 7px rgba(34,196,182,0); }
	100% { box-shadow: 0 0 0 0 rgba(34,196,182,0); }
}

.topbar__link {
	display: inline-flex; align-items: center; gap: 6px;
	flex: none;
	color: inherit;
}
.topbar__link .icon { color: var(--asv-cyan); }
.topbar__link:hover { color: #fff; }
.topbar__link--muted { color: rgba(255,255,255,.55); }

.site-header__bar {
	background: rgba(255,255,255,.9);
	backdrop-filter: blur(14px) saturate(1.4);
	border-bottom: 1px solid var(--asv-line);
	box-shadow: 0 1px 0 rgba(10,27,34,.02);
	transition: box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.site-header.is-scrolled .site-header__bar { box-shadow: var(--asv-shadow-sm); background: rgba(255,255,255,.97); }
.site-nav.is-open { transform: translateX(0); }
.site-header__inner {
	height: var(--header-h);
	display: flex;
	align-items: center;
	gap: 28px;
}

.site-header__brand { flex: none; margin-inline-end: auto; }
.custom-logo, .site-header__brand img { height: 44px; width: auto; display: block; }

.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav__list {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 0; padding: 0;
	list-style: none;
}
.site-nav__list .menu-item { position: relative; }
.site-nav__list a {
	display: block;
	padding: 10px 15px;
	border-radius: var(--radius-pill);
	font-weight: 500;
	font-size: .96rem;
	color: var(--asv-ink);
}
.site-nav__list a:hover { background: var(--asv-ice); color: var(--asv-teal); }
.site-nav__list .current-menu-item > a,
.site-nav__list .current_page_item > a {
	background: var(--asv-ink);
	color: #fff;
}
.site-nav__mobile-actions { display: none; }

.site-header__actions { display: flex; align-items: center; gap: 14px; flex: none; }

.header-call {
	display: inline-flex; align-items: center; gap: 12px;
	padding: 9px 18px 9px 14px;
	border-radius: var(--radius-pill);
	background: var(--asv-ink);
	color: #fff;
	position: relative;
	overflow: hidden;
}
.header-call:hover { background: var(--asv-teal); color: #fff; }
.header-call__ring {
	position: absolute; inset: 0;
	background: var(--asv-grad);
	opacity: 0;
	transition: opacity .3s var(--ease);
}
.header-call:hover .header-call__ring { opacity: 1; }
.header-call > .icon, .header-call__text { position: relative; z-index: 1; }
.header-call__text { display: flex; flex-direction: column; line-height: 1.25; }
.header-call__text small { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .06em; text-transform: uppercase; opacity: .78; }
.header-call__text strong { font-family: var(--font-display); font-size: .96rem; font-weight: 600; }

.nav-toggle {
	display: none;
	align-items: center; justify-content: center;
	width: 42px; height: 42px;
	border: 1px solid var(--asv-line);
	border-radius: var(--radius-sm);
	background: #fff;
	color: var(--asv-ink);
	cursor: pointer;
}
.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: inline-flex; }

.nav-scrim {
	position: fixed; inset: 0;
	background: rgba(10,27,34,.5);
	backdrop-filter: blur(2px);
	z-index: 200;
}
.nav-scrim[hidden] { display: none; }

/* ---------------------------------------------------------------- 06 */
.hero {
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: stretch;
	background: var(--asv-ink);
	overflow: hidden;
	isolation: isolate;
}

.hero-slider { position: relative; width: 100%; }

.hero-slide {
	position: absolute; inset: 0;
	opacity: 0; visibility: hidden;
	transition: opacity 1s var(--ease);
}
.hero-slide.is-active { position: relative; opacity: 1; visibility: visible; }

.hero-slide__media { position: absolute; inset: 0; }
.hero-slide__media img { width: 100%; height: 100%; object-fit: cover; }

.hero-slide__scrim {
	position: absolute; inset: 0;
	background:
		linear-gradient(100deg, rgba(9,22,28,.94) 0%, rgba(9,22,28,.82) 34%, rgba(9,22,28,.42) 62%, rgba(9,22,28,.55) 100%);
}

.hero-slide__inner {
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: center;
	padding-block: calc(var(--header-h) + var(--topbar-h) + 40px) 90px;
}

.hero-slide__content { max-width: 620px; color: #fff; }

.hero-slide__eyebrow {
	display: inline-flex; align-items: center; gap: 9px;
	margin: 0 0 20px;
	padding: 7px 16px 7px 12px;
	border: 1px solid rgba(255,255,255,.22);
	border-radius: var(--radius-pill);
	background: rgba(255,255,255,.06);
	font-family: var(--font-mono);
	font-size: .78rem;
	letter-spacing: .04em;
	color: var(--asv-cyan-soft);
}
.hero-slide__eyebrow .icon { color: var(--asv-cyan); }

.hero-slide__title {
	color: #fff;
	font-size: clamp(2.15rem, 1.5rem + 2.6vw, 3.6rem);
	margin-bottom: .38em;
}

.hero-slide__text {
	color: rgba(255,255,255,.78);
	font-size: 1.12rem;
	max-width: 46ch;
	margin-bottom: 2em;
}

.hero-slide__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-slide__actions .btn--primary { background: #fff; color: var(--asv-ink); }
.hero-slide__actions .btn--primary:hover { background: var(--asv-cyan); color: var(--asv-ink); }

/* signature schematic illustration */
.hero-schematic {
	position: absolute;
	right: clamp(0px, 4vw, 90px);
	top: 50%;
	transform: translateY(-50%);
	width: clamp(300px, 27vw, 420px);
	opacity: .9;
	pointer-events: none;
	z-index: 1;
	animation: asvFloat 9s ease-in-out infinite;
}
.hero-schematic img { width: 100%; height: auto; }
@keyframes asvFloat {
	0%, 100% { transform: translateY(-50%); }
	50% { transform: translateY(calc(-50% - 10px)); }
}

.hero-dots {
	position: absolute;
	left: 50%;
	bottom: 28px;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 2;
}
.hero-dot {
	position: relative;
	width: 34px; height: 3px;
	border-radius: var(--radius-pill);
	background: rgba(255,255,255,.28);
	border: 0;
	padding: 0;
	cursor: pointer;
	overflow: hidden;
}
.hero-dot__progress {
	position: absolute; inset: 0;
	background: var(--asv-cyan);
	transform: scaleX(0);
	transform-origin: left;
}
.hero-dot.is-active .hero-dot__progress { animation: asvDotFill 7s linear forwards; }
@keyframes asvDotFill { to { transform: scaleX(1); } }

.hero-wave {
	position: absolute; left: 0; right: 0; bottom: -1px;
	height: 64px;
	color: var(--asv-white);
	z-index: 2;
	line-height: 0;
}
.hero-wave svg { width: 100%; height: 100%; display: block; }

/* ---------------------------------------------------------------- 07 */
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(32px, 4vw, 56px); }
.section--ice { background: var(--asv-ice); }
.section--contact { background: var(--asv-ice); }

.section--deep {
	background: var(--asv-grad-deep);
	color: rgba(255,255,255,.82);
	position: relative;
	overflow: hidden;
}
.section--deep::before {
	content: "";
	position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(120% 100% at 100% 0%, #000 10%, transparent 72%);
	pointer-events: none;
}
.section--deep .section-head__title,
.section--deep h2, .section--deep h3 { color: #fff; }
.section--deep .section-head__lead { color: rgba(255,255,255,.68); }
.section--deep .eyebrow { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); color: var(--asv-cyan-soft); }

.section__foot { margin-top: 40px; display: flex; justify-content: center; }

/* prose block that can appear from WP page content on the front page */
.prose--home { max-width: 760px; margin-inline: auto; color: var(--asv-body); }

/* ---------------------------------------------------------------- 08 */
.stats {
	position: relative;
	z-index: 5;
	margin-top: -64px;
}
.stats__grid {
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: var(--asv-shadow-lg);
	border: 1px solid var(--asv-line);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}
.stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 10px;
	padding: 30px 20px;
	border-inline-start: 1px solid var(--asv-line);
}
.stat:first-child { border-inline-start: 0; }
.stat__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 46px; height: 46px;
	border-radius: var(--radius-sm);
	background: var(--asv-ice);
	color: var(--asv-teal);
}
.stat__value {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.36rem;
	color: var(--asv-ink);
	letter-spacing: -.01em;
}
.stat__label { font-size: .88rem; color: var(--asv-body); }

/* ---------------------------------------------------------------- 09 */
.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.service-card {
	background: #fff;
	border: 1px solid var(--asv-line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.service-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--asv-shadow-lg);
	border-color: transparent;
}
.service-card__link { display: block; color: inherit; height: 100%; }

.service-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--asv-ink);
}
.service-card__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .6s var(--ease);
}
.service-card:hover .service-card__media img { transform: scale(1.06); }

.service-card__media::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(10,27,34,0) 40%, rgba(10,27,34,.55) 100%);
}

.service-card__icon {
	position: absolute;
	left: 20px; bottom: 20px;
	z-index: 1;
	display: inline-flex; align-items: center; justify-content: center;
	width: 46px; height: 46px;
	border-radius: var(--radius-sm);
	background: rgba(255,255,255,.14);
	border: 1px solid rgba(255,255,255,.35);
	backdrop-filter: blur(8px);
	color: #fff;
}

.service-card__body { padding: 24px 24px 26px; }
.service-card__title { margin: 0 0 9px; color: var(--asv-ink); font-size: 1.16rem; }
.service-card__text { margin: 0 0 16px; font-size: .95rem; }

.service-card__cta {
	display: inline-flex; align-items: center; gap: 7px;
	font-family: var(--font-display);
	font-weight: 600; font-size: .92rem;
	color: var(--asv-teal);
}
.service-card__cta .icon { transition: transform .3s var(--ease); }
.service-card:hover .service-card__cta .icon { transform: translateX(5px); }

/* ---------------------------------------------------------------- 10 */
.split {
	display: grid;
	grid-template-columns: .92fr 1.08fr;
	gap: 64px;
	align-items: center;
}
.split__media { position: relative; }
.split__body { min-width: 0; }
.drop-frame {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--asv-shadow);
	aspect-ratio: 16/12;
}
.drop-frame img { width: 100%; height: 100%; object-fit: cover; }

.drops { position: absolute; width: 78px; height: auto; opacity: .9; }
.drops--float { top: -22px; left: -22px; filter: drop-shadow(0 10px 18px rgba(10,27,34,.18)); }
.drops--sm { position: static; width: 52px; margin-bottom: 18px; }

.split__badge {
	position: absolute;
	right: 22px; bottom: -22px;
	display: inline-flex; align-items: center; gap: 12px;
	background: #fff;
	padding: 14px 20px 14px 14px;
	border-radius: var(--radius);
	box-shadow: var(--asv-shadow-lg);
	color: var(--asv-ink);
}
.split__badge-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 42px; height: 42px;
	border-radius: 50%;
	background: var(--asv-ink);
	color: #fff;
	flex: none;
}
.split__badge small { display: block; font-size: .72rem; letter-spacing: .05em; color: var(--asv-mute); }
.split__badge strong { font-family: var(--font-display); font-size: 1.02rem; }

.reason-list { display: flex; flex-direction: column; gap: 26px; margin-top: 30px; }
.reason { display: flex; gap: 18px; }
.reason__icon {
	flex: none;
	display: inline-flex; align-items: center; justify-content: center;
	width: 48px; height: 48px;
	border-radius: var(--radius-sm);
	background: var(--asv-ice);
	color: var(--asv-teal);
}
.reason__title { margin: 0 0 6px; font-size: 1.04rem; }
.reason__text { margin: 0; font-size: .95rem; }

/* ---------------------------------------------------------------- 11 */
.process {
	list-style: none;
	margin: 0; padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: var(--radius-lg);
	overflow: hidden;
	position: relative; z-index: 1;
}
.process__step {
	background: rgba(255,255,255,.035);
	padding: 34px 26px;
	position: relative;
}
.process__no {
	display: block;
	font-family: var(--font-mono);
	font-size: .8rem;
	color: var(--asv-cyan);
	margin-bottom: 18px;
	letter-spacing: .04em;
}
.process__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 46px; height: 46px;
	border-radius: var(--radius-sm);
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.14);
	color: var(--asv-cyan-soft);
	margin-bottom: 18px;
}
.process__title { color: #fff; font-size: 1.05rem; margin-bottom: 8px; }
.process__text { color: rgba(255,255,255,.66); font-size: .92rem; margin: 0; }

/* ---------------------------------------------------------------- 12 */
.stage-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.stage {
	background: #fff;
	border: 1px solid var(--asv-line);
	border-radius: var(--radius);
	padding: 26px 24px;
	position: relative;
	transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.stage:hover { border-color: var(--asv-cyan); transform: translateY(-4px); box-shadow: var(--asv-shadow); }
.stage__no {
	display: inline-flex;
	font-family: var(--font-mono);
	font-size: .82rem;
	color: var(--asv-teal);
	background: var(--asv-ice);
	border-radius: var(--radius-pill);
	padding: 4px 11px;
	margin-bottom: 16px;
	letter-spacing: .04em;
}
.stage__title { font-size: 1.02rem; margin-bottom: 8px; }
.stage__text { font-size: .93rem; margin: 0; }

.stage-note {
	display: flex; align-items: center; gap: 10px;
	justify-content: center;
	margin: 34px 0 0;
	font-size: .94rem;
	color: var(--asv-body);
}
.stage-note .icon { color: var(--asv-cyan); flex: none; }

/* ---------------------------------------------------------------- 13 */
.district-cloud {
	list-style: none;
	margin: 0 0 22px; padding: 0;
	display: flex; flex-wrap: wrap; gap: 10px;
}
.district {
	display: inline-flex; align-items: center; gap: 7px;
	padding: 9px 15px;
	border: 1px solid var(--asv-line);
	border-radius: var(--radius-pill);
	font-size: .89rem;
	color: var(--asv-body);
	background: #fff;
	transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
}
.district .icon { color: var(--asv-mute); }
.district:hover { border-color: var(--asv-teal); color: var(--asv-teal); background: var(--asv-ice); }
.district-note { font-size: .92rem; color: var(--asv-mute); margin: 0; }

/* ---------------------------------------------------------------- 14 */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
	background: #fff;
	border: 1px solid var(--asv-line);
	border-radius: var(--radius);
	padding: 6px 22px;
}
.faq__item[open] { border-color: var(--asv-teal); box-shadow: var(--asv-shadow-sm); }
.faq__q {
	list-style: none;
	display: flex; align-items: center; justify-content: space-between;
	gap: 20px;
	padding: 18px 0;
	cursor: pointer;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.01rem;
	color: var(--asv-ink);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__marker {
	flex: none;
	display: inline-flex; align-items: center; justify-content: center;
	width: 30px; height: 30px;
	border-radius: 50%;
	background: var(--asv-ice);
	color: var(--asv-teal);
	transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.faq__item[open] .faq__marker { transform: rotate(45deg); background: var(--asv-ink); color: #fff; }
.faq__a { padding: 0 0 20px; }
.faq__a p { margin: 0; font-size: .96rem; }

/* ---------------------------------------------------------------- 15 */
.card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.post-card {
	background: #fff;
	border: 1px solid var(--asv-line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--asv-shadow-lg); }
.post-card__link { color: inherit; display: block; }
.post-card__media { position: relative; aspect-ratio: 10/7; overflow: hidden; background: var(--asv-ink); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.06); }
.post-card__cat {
	position: absolute; left: 16px; top: 16px;
	padding: 6px 12px;
	border-radius: var(--radius-pill);
	background: rgba(10,27,34,.55);
	backdrop-filter: blur(6px);
	color: #fff;
	font-family: var(--font-mono);
	font-size: .72rem;
	letter-spacing: .04em;
}
.post-card__body { padding: 22px 22px 24px; }
.post-card__meta {
	display: flex; align-items: center; gap: 8px;
	font-family: var(--font-mono);
	font-size: .76rem;
	color: var(--asv-mute);
	margin-bottom: 10px;
}
.post-card__title { font-size: 1.08rem; margin-bottom: 8px; }
.post-card__excerpt { font-size: .93rem; margin-bottom: 16px; }
.post-card__cta { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--asv-teal); }
.post-card__cta .icon { transition: transform .3s var(--ease); }
.post-card:hover .post-card__cta .icon { transform: translateX(5px); }

/* ---------------------------------------------------------------- 16 */
.contact-grid {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: 28px;
	align-items: start;
}
.contact-form-card {
	background: #fff;
	border: 1px solid var(--asv-line);
	border-radius: var(--radius-lg);
	padding: 34px;
	box-shadow: var(--asv-shadow-sm);
}
.contact-form__hp { position: absolute; left: -9999px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.field { position: relative; margin: 0 0 18px; }
.field input, .field textarea, .field select {
	width: 100%;
	padding: 15px 16px;
	border: 1px solid var(--asv-line-strong);
	border-radius: var(--radius-sm);
	font: inherit;
	font-size: .96rem;
	color: var(--asv-ink);
	background: #fff;
	transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus {
	outline: none;
	border-color: var(--asv-teal);
	box-shadow: 0 0 0 3px rgba(15,122,135,.14);
}
.field label {
	position: absolute;
	left: 15px; top: 15px;
	padding: 0 5px;
	background: #fff;
	color: var(--asv-mute);
	font-size: .96rem;
	pointer-events: none;
	transition: all .18s var(--ease);
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
	top: -9px; left: 11px;
	font-size: .74rem;
	color: var(--asv-teal);
	font-family: var(--font-mono);
	letter-spacing: .02em;
}
.field--select select { appearance: none; padding-right: 42px; color: var(--asv-ink); cursor: pointer; }
.field__chevron { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: var(--asv-mute); pointer-events: none; }

.contact-form__note { font-size: .84rem; color: var(--asv-mute); margin-top: 14px; text-align: center; }

.form-notice, .asv-notice, .notice {
	padding: 14px 18px;
	border-radius: var(--radius-sm);
	margin-bottom: 20px;
	font-size: .92rem;
	border: 1px solid var(--asv-line);
	background: var(--asv-ice);
	color: var(--asv-ink);
}
.notice-info { border-color: #bfe0e6; background: #eaf7f8; }
.notice.is-dismissible { position: relative; padding-right: 40px; }

/* WordPress core yorum formu düğmesi (comments.php üzerinden) */
.button-primary,
#commentform input[type="submit"] {
	display: inline-flex; align-items: center; justify-content: center;
	padding: 13px 24px;
	border-radius: var(--radius-pill);
	background: var(--asv-ink);
	color: #fff;
	border: 0;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: .95rem;
	cursor: pointer;
	transition: background .2s var(--ease), transform .2s var(--ease);
}
.button-primary:hover, #commentform input[type="submit"]:hover { background: var(--asv-teal); transform: translateY(-2px); }
#commentform p { margin-bottom: 16px; }
#commentform input[type="text"], #commentform input[type="email"], #commentform input[type="url"], #commentform textarea {
	width: 100%;
	padding: 13px 15px;
	border: 1px solid var(--asv-line-strong);
	border-radius: var(--radius-sm);
	font: inherit;
}
#commentform textarea { min-height: 130px; }

.contact-side { display: flex; flex-direction: column; gap: 22px; }
.contact-cards { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.contact-card {
	display: flex; align-items: center; gap: 15px;
	padding: 17px 18px;
	background: #fff;
	border: 1px solid var(--asv-line);
	border-radius: var(--radius);
	color: inherit;
	transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
a.contact-card:hover { border-color: var(--asv-teal); transform: translateX(4px); box-shadow: var(--asv-shadow-sm); }
.contact-card--wa .contact-card__icon { background: rgba(37,211,102,.12); color: var(--asv-wa); }
.contact-card--static { cursor: default; }
.contact-card__icon {
	flex: none;
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px;
	border-radius: var(--radius-sm);
	background: var(--asv-ice);
	color: var(--asv-teal);
}
.contact-card__body { display: flex; flex-direction: column; gap: 2px; }
.contact-card__body small { font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--asv-mute); font-family: var(--font-mono); }
.contact-card__body strong { font-family: var(--font-display); font-size: .98rem; color: var(--asv-ink); }
.contact-card__extra { font-size: .86rem; color: var(--asv-body); }

.contact-map, .site-footer__map {
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--asv-line);
	aspect-ratio: 16/11;
}
.contact-map iframe, .site-footer__map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------------------------------------------------------------- 17 */
.cta-band {
	position: relative;
	overflow: hidden;
	background: var(--asv-ink);
	color: #fff;
}
.cta-band__media { position: absolute; inset: 0; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; opacity: .9; }
.cta-band::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(100deg, rgba(9,22,28,.92) 10%, rgba(9,22,28,.55) 70%);
}
.cta-band__inner {
	position: relative; z-index: 1;
	padding-block: 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}
.cta-band__text { max-width: 560px; }
.cta-band__text .drops { position: static; width: 46px; margin-bottom: 16px; }
.cta-band__text h2 { color: #fff; margin-bottom: .35em; }
.cta-band__text p { color: rgba(255,255,255,.72); margin: 0; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-band__actions .btn--primary { background: #fff; color: var(--asv-ink); }
.cta-band__actions .btn--primary:hover { background: var(--asv-cyan); }

/* ---------------------------------------------------------------- 18 */
.site-footer {
	position: relative;
	background: var(--asv-grad-deep);
	color: rgba(255,255,255,.68);
	padding-top: 30px;
}
.site-footer__wave { color: var(--asv-white); line-height: 0; margin-top: -1px; }
.site-footer__wave svg { width: 100%; height: 56px; display: block; transform: scaleY(-1); }

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
	gap: 40px;
	padding-block: 56px 40px;
}
.site-footer__col { min-width: 0; }
.site-footer__col--brand { padding-right: 12px; }
.site-footer__logo { height: 40px; width: auto; margin-bottom: 18px; }
.site-footer__about { font-size: .93rem; max-width: 32ch; }
.site-footer__social { display: flex; gap: 10px; margin-top: 18px; }
.site-footer__social a {
	display: inline-flex; align-items: center; justify-content: center;
	width: 38px; height: 38px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,.18);
	color: rgba(255,255,255,.8);
	font-size: .74rem;
}
.site-footer__social a:hover { border-color: var(--asv-cyan); color: var(--asv-cyan); }

.site-footer__title {
	font-family: var(--font-mono);
	font-size: .78rem;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: rgba(255,255,255,.5);
	font-weight: 500;
	margin-bottom: 18px;
}
.site-footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.site-footer__links a, .site-footer__links span { color: rgba(255,255,255,.72); font-size: .93rem; display: inline-flex; align-items: center; gap: 9px; }
.site-footer__links a:hover { color: var(--asv-cyan); }
.site-footer__links .icon { color: var(--asv-cyan); flex: none; }
.site-footer__links--contact li { align-items: flex-start; }

.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); }
.site-footer__bottom-inner {
	padding-block: 22px;
	display: flex; align-items: center; justify-content: space-between;
	gap: 20px; flex-wrap: wrap;
	font-size: .84rem;
}
.site-footer__legal { list-style: none; display: flex; gap: 18px; margin: 0; padding: 0; }
.site-footer__legal a { color: rgba(255,255,255,.6); }
.site-footer__legal a:hover { color: var(--asv-cyan); }

/* ---------------------------------------------------------------- 19 */
.float-stack {
	position: fixed;
	right: 22px; bottom: 22px;
	z-index: 150;
	display: flex; flex-direction: column; gap: 12px;
	align-items: flex-end;
}
.float-btn {
	display: inline-flex; align-items: center;
	width: 54px; height: 54px;
	border-radius: 50%;
	color: #fff;
	box-shadow: var(--asv-shadow-lg);
	overflow: hidden;
	transition: width .3s var(--ease), transform .2s var(--ease);
	justify-content: center;
}
.float-btn:hover { width: 168px; justify-content: flex-start; padding-inline: 16px; transform: translateY(-2px); }
.float-btn--wa { background: var(--asv-wa); }
.float-btn--tel { background: var(--asv-ink); }
.float-btn__label {
	max-width: 0;
	overflow: hidden;
	white-space: nowrap;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: .9rem;
	transition: max-width .3s var(--ease), margin .3s var(--ease);
}
.float-btn:hover .float-btn__label { max-width: 120px; margin-inline-start: 10px; }

.mobile-bar {
	display: none;
	position: fixed; left: 0; right: 0; bottom: 0;
	z-index: 140;
	background: #fff;
	border-top: 1px solid var(--asv-line);
	box-shadow: 0 -8px 24px rgba(10,27,34,.08);
}
.mobile-bar__item {
	flex: 1;
	display: flex; flex-direction: column; align-items: center; gap: 4px;
	padding: 10px 4px 12px;
	color: var(--asv-body);
	font-size: .72rem;
	font-weight: 500;
}
.mobile-bar__item--primary { color: var(--asv-teal); }

.to-top {
	position: fixed;
	right: 22px; bottom: 96px;
	z-index: 149;
	width: 44px; height: 44px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid var(--asv-line);
	box-shadow: var(--asv-shadow);
	color: var(--asv-ink);
	display: flex; align-items: center; justify-content: center;
	cursor: pointer;
	transform: rotate(180deg);
}
.to-top[hidden] { display: none; }

.lightbox {
	position: fixed; inset: 0; z-index: 300;
	background: rgba(9,22,28,.92);
	display: flex; align-items: center; justify-content: center;
	padding: 40px;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-height: 88vh; border-radius: var(--radius); }
.lightbox__close {
	position: absolute; top: 24px; right: 24px;
	width: 44px; height: 44px;
	border-radius: 50%;
	background: rgba(255,255,255,.1);
	border: 1px solid rgba(255,255,255,.2);
	color: #fff;
	cursor: pointer;
}

/* ---------------------------------------------------------------- 20 */
.page-header {
	position: relative;
	background: var(--asv-grad-deep);
	color: #fff;
	padding-block: calc(var(--header-h) + var(--topbar-h) + 54px) 54px;
	overflow: hidden;
}
.page-header__art {
	position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(120% 140% at 100% 0%, #000 0%, transparent 68%);
}
.page-header__inner { position: relative; z-index: 1; }
.page-header__title { color: #fff; margin-bottom: .3em; }
.page-header__lead { color: rgba(255,255,255,.7); max-width: 60ch; margin: 0; }
.page-header__meta { display: flex; gap: 10px; font-family: var(--font-mono); font-size: .82rem; color: rgba(255,255,255,.6); margin: 0; }

.breadcrumbs { margin-bottom: 16px; }
.breadcrumbs__list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; font-size: .84rem; }
.breadcrumbs__item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.5); }
.breadcrumbs__item a { color: rgba(255,255,255,.72); }
.breadcrumbs__item a:hover { color: var(--asv-cyan); }
.breadcrumbs__item:not(:last-child)::after { content: "/"; margin-left: 8px; color: rgba(255,255,255,.3); }

/* ---------------------------------------------------------------- 21 */
.site-main { position: relative; }
.single { display: block; padding-block: var(--section-y); }
.single__share { flex-wrap: wrap; }
.single__share span { font-size: .88rem; color: var(--asv-mute); margin-right: 4px; }

.prose { max-width: 760px; margin-inline: auto; font-size: 1.03rem; color: var(--asv-body); }
.prose h2 { margin-top: 1.6em; font-size: 1.5rem; }
.prose h3 { margin-top: 1.3em; }
.prose p, .prose ul, .prose ol { margin-bottom: 1.3em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .5em; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote {
	margin: 1.8em 0;
	padding: 4px 0 4px 22px;
	border-left: 3px solid var(--asv-cyan);
	font-style: italic;
	color: var(--asv-ink);
}
.prose img { border-radius: var(--radius); margin: 1.6em 0; }
.prose figcaption { font-size: .84rem; color: var(--asv-mute); text-align: center; margin-top: -1.2em; margin-bottom: 1.6em; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.6em 0; font-size: .94rem; }
.prose th, .prose td { border: 1px solid var(--asv-line); padding: 10px 14px; text-align: left; }
.prose th { background: var(--asv-ice); font-family: var(--font-display); }
.prose code { background: var(--asv-ice); padding: .15em .4em; border-radius: 5px; font-family: var(--font-mono); font-size: .9em; }
.prose pre { background: var(--asv-ink); color: #fff; padding: 18px 20px; border-radius: var(--radius); overflow-x: auto; }
.prose pre code { background: none; padding: 0; }

.single__cover { border-radius: var(--radius-lg); overflow: hidden; margin: 0 0 40px; box-shadow: var(--asv-shadow); }
.single__cover img { width: 100%; }
.single__tags { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 40px 0 0; padding: 0; }
.tag {
	padding: 6px 13px;
	border-radius: var(--radius-pill);
	background: var(--asv-ice);
	color: var(--asv-teal);
	font-size: .82rem;
}
.single__share { display: flex; align-items: center; gap: 12px; margin-top: 24px; }

.post-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	max-width: 760px;
	margin: 56px auto 0;
	padding-top: 36px;
	border-top: 1px solid var(--asv-line);
}
.post-nav__item {
	padding: 20px;
	border: 1px solid var(--asv-line);
	border-radius: var(--radius);
	color: inherit;
	transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.post-nav__item:hover { border-color: var(--asv-teal); transform: translateY(-3px); }
.post-nav__item small { display: block; font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; color: var(--asv-teal); font-family: var(--font-mono); margin-bottom: 6px; }
.post-nav__item--next { text-align: right; grid-column: 2; }

.comments { max-width: 760px; margin: 56px auto 0; }
.comments__title { margin-bottom: 24px; }
.comments__list { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 20px; }

/* WordPress çekirdek yorum çıktısı (wp_list_comments / comment_form varsayılanları) */
.comment-body {
	display: flex; gap: 16px;
	padding: 20px;
	border: 1px solid var(--asv-line);
	border-radius: var(--radius);
	background: #fff;
}
.comment-body .avatar { border-radius: 50%; flex: none; }
.comment-author .fn { font-family: var(--font-display); font-weight: 600; color: var(--asv-ink); font-style: normal; }
.comment-metadata { font-size: .78rem; color: var(--asv-mute); margin-bottom: 8px; }
.comment-metadata a { color: inherit; }
.comment-content p { margin-bottom: .8em; font-size: .95rem; }
.comment-reply-link { font-family: var(--font-display); font-weight: 600; font-size: .82rem; color: var(--asv-teal); }
.children { list-style: none; margin: 16px 0 0; padding-left: 30px; }
.comment-respond { margin-top: 20px; }
.comment-reply-title { font-size: 1.3rem; }
.comment-form p { margin-bottom: 16px; }
.comment-form label { display: block; margin-bottom: 6px; font-size: .88rem; color: var(--asv-body); }
.comment-form-cookies-consent { display: flex; align-items: center; gap: 8px; }
.comment-notes, .logged-in-as { font-size: .86rem; color: var(--asv-mute); }
.required { color: #c0503f; }

.search-top { display: flex; justify-content: center; margin-bottom: 32px; }
.search-form { position: relative; width: min(100%, 460px); }
.search-form__input {
	width: 100%;
	padding: 14px 48px 14px 18px;
	border: 1px solid var(--asv-line-strong);
	border-radius: var(--radius-pill);
	font: inherit;
}
.search-form { display: flex; align-items: center; }
.search-form__input { padding-left: 46px; }
.search-form__icon {
	position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
	color: var(--asv-mute);
	pointer-events: none;
}
.search-form__submit {
	position: absolute; right: 5px; top: 5px; bottom: 5px;
	padding-inline: 20px;
	font-size: .88rem;
}

.page-links { margin-top: 30px; font-size: .9rem; }

.empty-state {
	text-align: center;
	max-width: 460px;
	margin: 40px auto;
	padding: 48px 30px;
}
.empty-state__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 68px; height: 68px;
	border-radius: 50%;
	background: var(--asv-ice);
	color: var(--asv-teal);
	margin-bottom: 20px;
}
.empty-state__title { margin-bottom: 10px; }
.empty-state__text { color: var(--asv-body); }

.error-404 { text-align: center; padding-block: calc(var(--header-h) + var(--topbar-h) + 60px) 80px; }
.drops--lg { width: 96px; margin-inline: auto; margin-bottom: 24px; }
.error-404__code {
	font-family: var(--font-mono);
	font-size: clamp(4rem, 3rem + 4vw, 7rem);
	font-weight: 600;
	color: var(--asv-line-strong);
	line-height: 1;
	margin-bottom: 10px;
}
.error-404__title { margin-bottom: 10px; }
.error-404__text { max-width: 48ch; margin-inline: auto; color: var(--asv-body); }
.error-404__actions { display: flex; gap: 14px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }

.widget { margin-bottom: 34px; }
.widget__title { font-size: 1rem; margin-bottom: 14px; }

/* ---------------------------------------------------------------- 22 */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
	.reveal {
		opacity: 0;
		transform: translateY(22px);
		transition: opacity .7s var(--ease), transform .7s var(--ease);
	}
	.reveal.is-visible { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

.icon { display: inline-block; flex: none; }

/* ================================ RESPONSIVE ================================ */
@media (max-width: 1080px) {
	.hero-schematic { display: none; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; row-gap: 40px; }
}

@media (max-width: 960px) {
	.topbar__link--wide { display: none !important; }
	.site-nav { position: fixed; inset: calc(var(--header-h) + var(--topbar-h)) 0 0 auto; width: min(84vw, 360px); background: #fff; flex-direction: column; align-items: stretch; padding: 24px; overflow-y: auto; transform: translateX(100%); transition: transform .35s var(--ease); box-shadow: -20px 0 50px rgba(10,27,34,.18); }
	body.nav-open .site-nav { transform: translateX(0); }
	.site-nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
	.site-nav__list a { padding: 13px 14px; }
	.site-nav__mobile-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--asv-line); }
	.nav-toggle { display: flex; }
	.header-call__text { display: none; }
	.header-call { padding: 11px; }

	.service-grid, .card-grid { grid-template-columns: repeat(2, 1fr); }
	.stats__grid { grid-template-columns: repeat(2, 1fr); }
	.stat:nth-child(3) { border-inline-start: 0; }
	.stat:nth-child(odd) { border-inline-start: 0; }
	.stat { border-top: 1px solid var(--asv-line); }
	.stat:nth-child(-n+2) { border-top: 0; }

	.split { grid-template-columns: 1fr; gap: 40px; }
	.split__badge { position: static; margin-top: -40px; margin-inline: 20px; }
	.drop-frame { margin-top: 40px; }

	.process { grid-template-columns: 1fr 1fr; }
	.stage-grid { grid-template-columns: 1fr 1fr; }

	.contact-grid { grid-template-columns: 1fr; }
	.field-row { grid-template-columns: 1fr; gap: 0; }

	.mobile-bar { display: flex; }
	body { padding-bottom: 64px; }
	.float-stack { bottom: 84px; }
	.to-top { bottom: 158px; }
}

@media (max-width: 640px) {
	:root { --header-h: 72px; }
	.custom-logo, .site-header__brand img { height: 36px; }
	.hero-slide__inner { padding-block: calc(var(--header-h) + var(--topbar-h) + 24px) 70px; align-items: flex-end; min-height: 82vh; }
	.hero { min-height: 82vh; }
	.hero-slide__title { font-size: clamp(1.9rem, 1.5rem + 4vw, 2.4rem); }
	.hero-slide__actions { flex-direction: column; align-items: stretch; }
	.hero-slide__actions .btn { width: 100%; }

	.service-grid, .card-grid, .process, .stage-grid { grid-template-columns: 1fr; }
	.stats__grid { grid-template-columns: 1fr 1fr; }
	.stat { padding: 22px 14px; }

	.site-footer__grid { grid-template-columns: 1fr; gap: 34px; padding-block: 44px 30px; }
	.post-nav { grid-template-columns: 1fr; }
	.post-nav__item--next { grid-column: 1; text-align: left; }

	.cta-band__inner { padding-block: 48px; }
	.contact-form-card { padding: 24px; }

	.district-cloud { gap: 8px; }
}
