/* Kars Halı Yıkamacı — tasarım sistemi (altın sarısı + siyah)
 *
 * Fontlar kendi sunucumuzda: Plus Jakarta Sans (başlık) + Inter (metin).
 * Google Fonts'a runtime bağlantı yok; ilk boya bekleyen üçüncü taraf isteği
 * kalmasın diye ikisi de latin + latin-ext alt kümesiyle preload ediliyor.
 */

@font-face {
  font-family: Jakarta;
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/jakarta-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Jakarta;
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/jakarta-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: InterVar;
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/assets/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: InterVar;
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  /* Altın sarısı + siyah. Altın bir VURGU rengi: beyaz üstünde metin olarak
   * kontrastı yetmez, o yüzden metin için koyu altın (--gold-ink), zemin ve
   * dekor için parlak altın (--gold) kullanılıyor. */
  --ink: #17171c;
  --muted: #5c5c66;
  --coal: #1c1c21;
  --coal-deep: #0b0b0d;
  --gold: #f2b63c;
  --gold-strong: #d99a08;
  --gold-ink: #8a5f00;
  --gold-soft: #fdf4dd;
  --green: #16a34a;
  --paper: #fff;
  --soft: #faf7f0;
  --line: #e8e3d6;
  --line-strong: #d5cdb9;
  --danger: #b42318;

  --font-head: Jakarta, "Segoe UI", system-ui, sans-serif;
  --font-body: InterVar, "Segoe UI", system-ui, -apple-system, sans-serif;

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;
  --r-pill: 999px;

  --sh-sm: 0 1px 2px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.05);
  --sh: 0 2px 6px rgba(0, 0, 0, 0.06), 0 14px 34px rgba(0, 0, 0, 0.09);
  --sh-lg: 0 4px 10px rgba(0, 0, 0, 0.07), 0 28px 60px rgba(0, 0, 0, 0.14);
  --shadow: var(--sh);

  --header-h: 74px;
  --topbar-h: 40px;
  --container: 1220px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16.5px;
  font-variant-ligatures: none;
  line-height: 1.66;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(217, 154, 8, 0.55);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 11px 16px;
  color: #fff;
  background: var(--coal);
  border-radius: var(--r-sm);
  font-weight: 600;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 44px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 62px 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  color: #fff;
  background:
    radial-gradient(120% 130% at 85% 0%, rgba(217, 154, 8, 0.45), transparent 60%),
    var(--coal-deep);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 6px 13px 6px 10px;
  color: var(--gold-ink);
  background: var(--gold-soft);
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  content: "";
}

.section-dark .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow {
  color: #ffdc8f;
  background: rgba(242, 182, 60, 0.16);
}

.section-dark .eyebrow::before,
.hero .eyebrow::before,
.page-hero .eyebrow::before {
  background: var(--gold);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: inherit;
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  text-wrap: balance;
}

/* Plus Jakarta Sans'ın boşluk genişliği 0.170em (Inter'de 0.281em). Kalın ve kısa
 * etiketlerde kelimeler birbirine yapışıyor ("Kabul et" → "Kabulet"). Jakarta
 * kullanan her yerde kelime aralığını normale çekiyoruz. */
h1,
h2,
h3,
h4,
.btn,
.nav-link,
.eyebrow,
.brand-name,
.brand-sub,

h1 {
  font-size: clamp(2.3rem, 4.6vw, 4.1rem);
}

h2 {
  font-size: clamp(1.8rem, 3.1vw, 2.7rem);
}

h3 {
  font-size: 1.22rem;
  letter-spacing: -0.015em;
}

p {
  margin: 0 0 18px;
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.72;
  text-wrap: pretty;
}

.section-dark .lead,
.hero .lead,
.page-hero .lead {
  color: rgba(255, 255, 255, 0.84);
}

/* ── düğmeler ──────────────────────────────────────────────────────────── */

.btn {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  transition: background-color 180ms var(--ease), border-color 180ms var(--ease),
    color 180ms var(--ease), transform 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  color: #1a1508;
  background: linear-gradient(180deg, #ffcb52, var(--gold));
  border-color: var(--gold-strong);
  box-shadow: 0 6px 18px rgba(242, 182, 60, 0.36);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #ffd97a, #f5b526);
  box-shadow: 0 10px 26px rgba(242, 182, 60, 0.44);
}

.btn-secondary {
  color: #fff;
  background: linear-gradient(180deg, #2c2c33, var(--coal));
  border-color: #000;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.btn-secondary:hover {
  background: linear-gradient(180deg, #3a3a43, #101015);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.36);
}

.btn-outline {
  color: var(--coal);
  background: #fff;
  border-color: var(--line-strong);
}

.btn-outline:hover {
  color: var(--gold-ink);
  border-color: var(--gold-ink);
  box-shadow: var(--sh-sm);
}

/* Koyu kahraman zemininde üçüncü eylem: beyaz kutu fazla ağır kalıyor. */
.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.17);
  border-color: rgba(255, 255, 255, 0.72);
}

.btn-whatsapp {
  color: #fff;
  background: linear-gradient(180deg, #1cb85a, #12903f);
  border-color: #0f7c36;
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.3);
}

.btn-whatsapp:hover {
  background: linear-gradient(180deg, #22c765, #14a046);
}

.btn-block {
  width: 100%;
}

/* ── üst şerit + başlık ────────────────────────────────────────────────── */

.topbar {
  color: rgba(255, 255, 255, 0.86);
  background: var(--coal-deep);
  font-size: 0.85rem;
}

.topbar-inner {
  display: flex;
  min-height: var(--topbar-h);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-group {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.topbar a,
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

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

.topbar i {
  color: var(--gold);
  font-size: 0.82em;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid transparent;
  transition: box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

/* Buzlu cam efekti sözde öğede duruyor, başlığın kendisinde DEĞİL:
 * `backdrop-filter` uygulanan öğe, sabit konumlu (position:fixed) torunları
 * için içeren blok üretir. Efekt .site-header üzerindeyken mobil çekmece ve
 * karartma katmanı ekrana değil başlık kutusuna hapsoluyor, çekmecenin yalnız
 * üst 74 pikseli görünüyordu. Sözde öğenin torunu olmadığı için yan etkisi yok. */
.site-header::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  content: "";
  transition: background-color 220ms var(--ease);
}

.site-header.is-stuck::before {
  background: rgba(255, 255, 255, 0.95);
}

.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  display: flex;
  min-height: var(--header-h);
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.04;
}

.brand-name {
  color: var(--coal);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-sub {
  margin-top: 3px;
  color: var(--gold-ink);
  font-family: var(--font-head);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  position: relative;
}

/* Menü öğeleri tek satırda kalmalı — sarma, başlığın yüksekliğini bozuyor. */
.nav-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  border-radius: var(--r-pill);
  color: #3c3c44;
  font-family: var(--font-head);
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: -0.012em;
  white-space: nowrap;
  transition: color 160ms var(--ease), background-color 160ms var(--ease);
}

.nav-link i {
  font-size: 0.62em;
  opacity: 0.55;
  transition: transform 200ms var(--ease);
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--gold-ink);
  background: var(--gold-soft);
}

.nav-item:hover .nav-link i {
  transform: rotate(180deg);
}

.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 20;
  width: 268px;
  margin: 0;
  padding: 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh-lg);
  list-style: none;
  opacity: 0;
  transform: translate(-50%, 8px);
  visibility: hidden;
  transition: opacity 180ms var(--ease), transform 180ms var(--ease),
    visibility 180ms;
}

/* Menü ile açılır liste arasındaki boşlukta imleç kaybolmasın. */
.nav-item:has(.submenu)::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
  content: "";
}

.submenu a {
  display: block;
  padding: 9px 12px;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 140ms var(--ease), background-color 140ms var(--ease);
}

.submenu a:hover {
  color: var(--gold-ink);
  background: var(--soft);
}

.nav-item:hover > .submenu,
.nav-item:focus-within > .submenu {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}

/* margin-left:auto şart: 1000px altında .main-nav position:fixed olduğu için
 * flex akışından çıkıyor, kalan iki öğe (marka + eylemler) sola yığılıyordu —
 * dil seçici ve menü butonu logoya yapışık görünüyordu. */
.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  margin-left: auto;
  gap: 8px;
}

.header-phone {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.93rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--coal);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  cursor: pointer;
  font-size: 1.15rem;
}

.menu-toggle:hover {
  border-color: var(--gold-ink);
}


/* ── kahraman ──────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: min(740px, calc(100vh - var(--header-h)));
  overflow: hidden;
  color: #fff;
  background: var(--coal-deep);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  width: min(70%, 980px);
  background: linear-gradient(
    100deg,
    rgba(9, 9, 11, 0.95) 0%,
    rgba(14, 14, 17, 0.9) 48%,
    rgba(11, 11, 14, 0) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(740px, calc(100vh - var(--header-h)));
  align-items: center;
  padding: 72px 0 128px;
}

.hero-copy {
  width: min(700px, 60%);
}

.hero h1 {
  max-width: 660px;
}

.hero .lead {
  max-width: 615px;
  margin-top: 22px;
  font-size: clamp(1.03rem, 1.35vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 500;
}

.hero-points i {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  color: #16161a;
  background: var(--gold);
  border-radius: 50%;
  font-size: 0.6rem;
}

/* ── güven şeridi ──────────────────────────────────────────────────────── */

.trust-strip {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--sh-lg);
  backdrop-filter: blur(8px);
}

.trust-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  min-height: 92px;
  padding: 16px 22px;
  color: var(--ink);
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--gold-ink);
  background: var(--gold-soft);
  border-radius: 13px;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: var(--coal);
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: -0.015em;
  line-height: 1.22;
}

.trust-item span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.35;
}

/* ── kartlar ───────────────────────────────────────────────────────────── */

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease),
    border-color 240ms var(--ease);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 154, 8, 0.35);
  box-shadow: var(--sh-lg);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.service-card-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin: -46px 0 14px;
  color: var(--coal);
  background: var(--gold);
  border: 3px solid #fff;
  border-radius: 14px;
  box-shadow: var(--sh-sm);
}

.service-card p {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 0.93rem;
}

.service-card .text-link {
  margin-top: auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-ink);
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
}

.text-link i {
  transition: transform 200ms var(--ease);
}

.text-link:hover {
  color: var(--gold-ink);
}

.text-link:hover i {
  transform: translateX(4px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.split-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.check-list i {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  color: var(--gold-ink);
  background: var(--gold-soft);
  border-radius: 10px;
  font-size: 0.76rem;
}

.check-list strong {
  display: block;
  color: var(--coal);
  font-family: var(--font-head);
  letter-spacing: -0.015em;
}

.check-list span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.92rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.process-step {
  position: relative;
  padding: 26px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: box-shadow 220ms var(--ease), transform 220ms var(--ease);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh);
}

.process-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #1a1508;
  background: linear-gradient(145deg, #ffd06a, var(--gold-strong));
  border-radius: 13px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
}

.process-step p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.type-item {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease),
    transform 180ms var(--ease);
}

.type-item:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 154, 8, 0.4);
  box-shadow: var(--sh-sm);
}

.type-item i {
  color: var(--gold-ink);
}

.area-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 56px;
  align-items: start;
}

.district-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.district-list a {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  font-weight: 500;
  transition: background-color 160ms var(--ease), border-color 160ms var(--ease),
    color 160ms var(--ease);
}

.district-list a:hover {
  color: #0b0b0d;
  background: var(--gold);
  border-color: var(--gold);
}

.district-list i {
  font-size: 0.7em;
  opacity: 0.6;
}

/* ── teklif formu ──────────────────────────────────────────────────────── */

.quote-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 54px;
  align-items: start;
}

.quote-side {
  position: sticky;
  top: calc(var(--header-h) + 30px);
}

.contact-stack {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.contact-line {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
}

.contact-line i {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--coal);
  background: var(--gold);
  border-radius: 14px;
}

.contact-line small {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
}

.quote-form {
  padding: 30px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field-label {
  color: #33333b;
  font-family: var(--font-head);
  font-size: 0.87rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 14px;
  color: var(--ink);
  background: #fdfbf6;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease),
    background-color 160ms var(--ease);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: #fff;
  border-color: var(--gold-ink);
  outline: 3px solid rgba(217, 154, 8, 0.14);
  outline-offset: 0;
}

.consent-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.82rem;
}

.consent-row input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 3px 0 0;
  accent-color: var(--gold-ink);
}

.consent-row a {
  color: var(--gold-ink);
  text-decoration: underline;
}

.form-status {
  min-height: 24px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-status.error {
  color: var(--danger);
}

/* ── S.S.S. ────────────────────────────────────────────────────────────── */

.faq-list {
  display: grid;
  max-width: 920px;
  gap: 12px;
  margin: 38px auto 0;
}

.faq-list details {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.faq-list details[open] {
  border-color: rgba(217, 154, 8, 0.35);
  box-shadow: var(--sh-sm);
}

.faq-list summary {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 22px;
  color: var(--coal);
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 1.01rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  list-style: none;
}

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

.faq-list summary::after {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--gold-ink);
  background: var(--gold-soft);
  border-radius: 50%;
  content: "+";
  font-size: 1.2rem;
  transition: transform 220ms var(--ease);
}

.faq-list details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* ── iç sayfa kahramanı ────────────────────────────────────────────────── */

.page-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  color: #fff;
  background: var(--coal-deep);
}

.page-hero-media,
.page-hero-media img,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero-media img {
  object-fit: cover;
}

.page-hero-overlay {
  background: linear-gradient(
    92deg,
    rgba(9, 9, 11, 0.94) 0%,
    rgba(14, 14, 17, 0.86) 55%,
    rgba(11, 11, 14, 0.62) 100%
  );
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 420px;
  align-content: center;
  padding: 78px 0;
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
}

.page-hero .lead {
  max-width: 760px;
  margin-top: 18px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}

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

/* ── içerik + kenar ────────────────────────────────────────────────────── */

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 52px;
  align-items: start;
}

.prose {
  max-width: 800px;
}

.prose h2 {
  margin: 42px 0 16px;
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
}

.prose h3 {
  margin: 30px 0 12px;
}

.prose p,
.prose li {
  color: #4a4a54;
  text-wrap: pretty;
}

.prose ul {
  display: grid;
  gap: 9px;
  padding-left: 22px;
}

.prose ul li::marker {
  color: var(--gold-ink);
}

.side-panel {
  position: sticky;
  top: calc(var(--header-h) + 26px);
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}

.side-panel h3 {
  margin-bottom: 16px;
}

.side-links {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.side-links a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 0.89rem;
  font-weight: 500;
  transition: color 160ms var(--ease), border-color 160ms var(--ease),
    transform 160ms var(--ease);
}

.side-links a:hover {
  color: var(--gold-ink);
  border-color: var(--gold-ink);
  transform: translateX(3px);
}

.side-links i {
  font-size: 0.7em;
  opacity: 0.5;
}

.neighborhoods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.neighborhood {
  padding: 7px 13px;
  color: #3c3c44;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  font-weight: 500;
}

.district-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.district-card {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease),
    border-color 200ms var(--ease);
}

.district-card:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 154, 8, 0.4);
  box-shadow: var(--sh);
}

.district-card strong {
  font-family: var(--font-head);
  font-size: 1.04rem;
  letter-spacing: -0.02em;
}

.district-card span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.83rem;
}

/* ── CTA + alt bilgi ───────────────────────────────────────────────────── */

.cta-band {
  color: #fff;
  background:
    radial-gradient(90% 160% at 12% 0%, rgba(242, 182, 60, 0.22), transparent 62%),
    linear-gradient(120deg, #101014, #26200f);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.cta-copy {
  max-width: 760px;
}

.cta-copy p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.85);
}

.cta-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.site-footer {
  padding: 72px 0 26px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--coal-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 0.8fr 1fr;
  gap: 46px;
}

.footer-brand .brand-name {
  color: #fff;
}

.footer-brand p {
  max-width: 360px;
  margin-top: 20px;
  font-size: 0.92rem;
}

.footer-title {
  margin-bottom: 17px;
  color: #fff;
  font-size: 0.98rem;
}

.footer-links {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
}

.footer-links a {
  transition: color 150ms var(--ease);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── sabit mobil eylemler + çerez ──────────────────────────────────────── */

.mobile-actions {
  position: fixed;
  z-index: 980;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #fff;
  box-shadow: 0 -6px 26px rgba(0, 0, 0, 0.16);
  padding-bottom: env(safe-area-inset-bottom);
}

.mobile-actions a {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
}

.mobile-call {
  color: #1a1508;
  background: linear-gradient(180deg, #ffcb52, var(--gold));
}

.mobile-wa {
  background: var(--green);
}

.cookie-banner {
  position: fixed;
  z-index: 1200;
  right: 22px;
  bottom: 22px;
  display: none;
  width: min(430px, calc(100% - 40px));
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner strong {
  display: block;
  color: var(--coal);
  font-family: var(--font-head);
  letter-spacing: -0.02em;
}

.cookie-banner p {
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: 0.83rem;
}

.cookie-actions {
  display: flex;
  gap: 9px;
}

.cookie-actions .btn {
  min-height: 42px;
  flex: 1;
  padding: 8px 14px;
  font-size: 0.86rem;
}

.notice {
  padding: 17px 20px;
  color: #45454f;
  background: var(--gold-soft);
  border: 1px solid rgba(217, 154, 8, 0.2);
  border-radius: var(--r);
}

.notice p:last-child {
  margin-bottom: 0;
}

/* ── mobil çekmece iskeleti ────────────────────────────────────────────── */

.nav-scrim {
  position: fixed;
  z-index: 1040;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(2px);
  transition: opacity 260ms var(--ease), visibility 260ms;
}

.nav-scrim.is-open {
  opacity: 1;
  visibility: visible;
}

/* Çekmece ve karartma başlığın yığınlama bağlamı içinde yaşıyor; başlık 1000'de
 * kaldığı sürece 1200'deki çerez şeridi menünün üstüne biniyordu. Menü açıkken
 * tüm başlık yığınını yukarı alıyoruz. */
body.nav-open .site-header {
  z-index: 1300;
}

.nav-drawer-head,
.nav-drawer-foot {
  display: none;
}

/* ── duyarlı ───────────────────────────────────────────────────────────── */

@media (max-width: 1200px) {
  .nav-link {
    padding-inline: 10px;
    font-size: 0.89rem;
  }

  .header-phone span {
    display: none;
  }

  .header-phone {
    padding-inline: 14px;
  }
}

@media (max-width: 1060px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .type-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .district-list,
  .district-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-grid {
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 38px;
  }
}

/* Menü ~1000px altında sığmıyor; burada çekmeceye geçiyoruz. */
@media (max-width: 1000px) {
  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-phone {
    display: none;
  }

  .topbar-group:last-child {
    display: none;
  }

  .main-nav {
    position: fixed;
    z-index: 1050;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    display: flex;
    width: min(390px, 88vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0;
    background: #fff;
    box-shadow: -18px 0 50px rgba(0, 0, 0, 0.22);
    transform: translateX(100%);
    transition: transform 300ms var(--ease);
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .nav-drawer-head {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .nav-close {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    color: var(--coal);
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    cursor: pointer;
    font-size: 1.05rem;
  }

  .nav-list {
    display: grid;
    align-items: stretch;
    gap: 2px;
    padding: 14px 14px 4px;
  }

  .nav-item {
    border-bottom: 1px solid var(--line);
  }

  .nav-item:last-child {
    border-bottom: 0;
  }

  .nav-link {
    width: 100%;
    min-height: 52px;
    justify-content: space-between;
    padding: 12px 12px;
    border-radius: var(--r-sm);
    font-size: 1rem;
    font-weight: 600;
  }

  .nav-link i {
    font-size: 0.72em;
    opacity: 0.6;
  }

  /* Alt menüler mobilde akordiyon: JS aria-expanded'i açıp kapatıyor. */
  .nav-item:hover .nav-link i,
  .nav-link[aria-expanded="true"] i {
    transform: none;
  }

  .nav-link[aria-expanded="true"] i {
    transform: rotate(180deg);
  }

  .submenu {
    position: static;
    display: grid;
    width: 100%;
    padding: 2px 0 10px 10px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
    transition: none;
  }

  .nav-item:hover > .submenu,
  .nav-item:focus-within > .submenu {
    opacity: 1;
    transform: none;
  }

  .submenu[hidden] {
    display: none;
  }

  .submenu a {
    min-height: 44px;
    display: flex;
    align-items: center;
    color: #4f4f59;
  }

  .nav-drawer-foot {
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding: 18px 16px calc(20px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: var(--soft);
  }

  .nav-drawer-foot .btn {
    width: 100%;
  }

  .nav-drawer-foot .drawer-mail {
    color: var(--muted);
    font-size: 0.86rem;
    text-align: center;
  }

  .hero {
    min-height: 0;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-shade {
    width: 100%;
    background: linear-gradient(
      175deg,
      rgba(9, 9, 11, 0.9) 0%,
      rgba(14, 14, 17, 0.93) 60%,
      rgba(9, 9, 11, 0.96) 100%
    );
  }

  .hero-inner {
    min-height: 0;
    padding: 62px 0 150px;
  }

  .hero-copy {
    width: 100%;
  }

  .trust-strip {
    position: static;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -110px;
    border-radius: var(--r-lg);
  }

  .trust-item:nth-child(2n) {
    border-right: 0;
  }

  .trust-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .section-header,
  .split,
  .area-band,
  .quote-wrap,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    gap: 18px;
  }

  .quote-side,
  .side-panel {
    position: static;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
    padding-bottom: 60px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 60px 0;
  }

  .section-tight {
    padding: 46px 0;
  }

  .topbar {
    font-size: 0.8rem;
  }

  .topbar-inner {
    min-height: 36px;
  }

  .topbar-group {
    width: 100%;
    justify-content: center;
    gap: 18px;
  }

  .nav-inner {
    min-height: 66px;
    gap: 10px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-sub {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
  }




  .hero-inner {
    padding: 50px 0 140px;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .hero .lead {
    margin-top: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-points {
    display: grid;
    gap: 9px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    margin-top: -100px;
  }

  .trust-item {
    min-height: 68px;
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 12px 18px;
    border-right: 0;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
  }

  .trust-icon {
    width: 38px;
    height: 38px;
  }

  .service-grid,
  .process-grid,
  .type-grid,
  .district-list,
  .district-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card-icon {
    margin-top: -48px;
  }

  .quote-form {
    padding: 22px 18px;
  }

  .page-hero,
  .page-hero-inner {
    min-height: 340px;
  }

  .page-hero-inner {
    padding: 52px 0;
  }

  .page-hero h1 {
    font-size: clamp(1.85rem, 8.6vw, 2.7rem);
  }

  .page-hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(9, 9, 11, 0.88) 0%,
      rgba(14, 14, 17, 0.94) 100%
    );
  }

  .cta-inner,
  .cta-actions,
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .mobile-actions {
    display: grid;
  }

  .cookie-banner {
    right: 14px;
    bottom: 74px;
    width: calc(100% - 28px);
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* ── iklim kartları (climate_band) ─────────────────────────────────────── */

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.stat-card {
  padding: 22px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--r);
  box-shadow: var(--sh-sm);
}

.stat-card strong {
  display: block;
  color: var(--coal);
  font-family: var(--font-head);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.stat-card span {
  display: block;
  margin-top: 4px;
  color: var(--gold-ink);
  font-size: 0.9rem;
  font-weight: 600;
}

.stat-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.5;
}

/* ── konum künyesi (ilçe/mahalle sayfaları) ────────────────────────────── */

.meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  background: var(--gold-soft);
  border: 1px solid #f0e0b6;
  border-radius: var(--r-sm);
}

.meta-item i {
  color: var(--gold-ink);
  font-size: 0.95rem;
}

.meta-item small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.meta-item strong {
  display: block;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ── mahalle etiketleri bağlantı olduğunda ─────────────────────────────── */

a.neighborhood {
  transition: color 160ms var(--ease), border-color 160ms var(--ease),
    background-color 160ms var(--ease);
}

a.neighborhood:hover,
a.neighborhood:focus-visible {
  color: var(--gold-ink);
  background: var(--gold-soft);
  border-color: var(--gold-strong);
}

/* ── alt bilgi: sağlayıcı imzası ───────────────────────────────────────── */

.powered-by {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
}

.powered-by img {
  height: 20px;
  width: auto;
  opacity: 0.8;
}

.powered-by:hover {
  color: var(--gold);
}

.powered-by:hover img {
  opacity: 1;
}

@media (max-width: 900px) {
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .meta-strip {
    flex-direction: column;
  }
}
