/* Erdemir Otokurtarma */
:root {
  --bg: #0a0a0a;
  --bg-2: #121212;
  --bg-3: #1a1a1a;
  --surface: #161616;
  --red: #e10600;
  --red-dark: #b00400;
  --red-glow: rgba(225, 6, 0, 0.35);
  --silver: #c8c8c8;
  --text: #f5f5f5;
  --muted: #a3a3a3;
  --line: rgba(255, 255, 255, 0.08);
  --radius: 4px;
  --header-h: 92px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --max: 1140px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Sticky header ile hash/anchor hedefleri üstte kalmasın */
[id] {
  scroll-margin-top: calc(var(--header-h) + 14px);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
.btn {
  font-family: inherit;
  cursor: pointer;
  border: 0;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--red);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 10000;
}
.skip-link:focus {
  top: 1rem;
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  z-index: 1002;
}

.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  background: #000;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.02;
  min-width: 0;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.6vw, 2rem);
  letter-spacing: 0.04em;
  color: #fff;
}

.brand-text span {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 800;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-desktop a {
  padding: 0.55rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--silver);
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: #fff;
  background: rgba(225, 6, 0, 0.12);
}

.header-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 24px var(--red-glow);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-ghost:hover {
  border-color: var(--red);
  color: #fff;
}

.btn-whatsapp {
  background: #1faf58;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #189449;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #fff;
  z-index: 1002;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  position: relative;
  transition: transform 0.25s, opacity 0.25s;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}
.menu-toggle span::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}
.menu-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-mobile {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: calc(100dvh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  background: rgba(0, 0, 0, 0.98);
  padding: 1rem 1.25rem calc(1rem + var(--safe-bottom));
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 1003;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.nav-mobile.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 7vw, 2rem);
  letter-spacing: 0.04em;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  color: #fff;
}

.nav-mobile a[aria-current="page"] {
  color: var(--red);
}

.nav-mobile-actions {
  margin-top: auto;
  padding-top: 0.9rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.92) 24%);
  display: grid;
  gap: 0.75rem;
}

body.menu-open {
  position: fixed;
  top: var(--menu-lock-top, 0px);
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  touch-action: none;
}

@media (min-width: 960px) {
  .menu-toggle {
    display: none;
  }
  .nav-desktop,
  .header-cta {
    display: flex;
  }
  .nav-mobile {
    display: none;
  }
  .brand-logo {
    width: 88px;
    height: 88px;
  }

  .site-header {
    --header-h: 104px;
    height: 104px;
  }
}

/* ========== HERO ========== */
.hero {
  --hero-duration: 6.2s;
  position: relative;
  min-height: min(100svh, 880px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: #050505;
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  will-change: opacity;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.1);
}

.hero-slide.is-active img {
  animation: hero-kenburns var(--hero-duration) linear forwards;
}

.hero-slide:nth-child(even) img {
  object-position: center 35%;
}

.hero-slide:nth-child(3) img {
  object-position: 55% center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.62) 0%, rgba(8, 8, 8, 0.28) 38%, rgba(8, 8, 8, 0.88) 78%, #080808 100%),
    linear-gradient(105deg, rgba(8, 8, 8, 0.82) 0%, rgba(8, 8, 8, 0.35) 48%, rgba(8, 8, 8, 0.15) 100%);
  pointer-events: none;
}

.hero-frame {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--red);
  opacity: 0.9;
}

.hero-content {
  position: relative;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 2.25rem 0 2.75rem;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--red);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.85rem;
  animation: hero-copy-in 0.8s ease 0.1s both;
}

.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 12vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  max-width: 11ch;
  margin-bottom: 0.9rem;
  text-shadow: 0 14px 48px rgba(0, 0, 0, 0.6);
  animation: hero-copy-in 0.85s ease 0.18s both;
}

.hero h1 em {
  font-style: normal;
  color: var(--red);
}

.hero-lead {
  max-width: 34ch;
  color: var(--silver);
  font-size: clamp(1rem, 2.4vw, 1.12rem);
  margin-bottom: 1.5rem;
  animation: hero-copy-in 0.85s ease 0.26s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: hero-copy-in 0.85s ease 0.34s both;
}

.hero-rail {
  margin-top: 1.75rem;
  max-width: 420px;
  animation: hero-copy-in 0.85s ease 0.42s both;
}

.hero-progress {
  height: 2px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.85rem;
}

.hero-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red), #ff5a52);
  transform-origin: left center;
}

.hero.is-playing .hero-progress span {
  animation: hero-progress var(--hero-duration) linear forwards;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-dots button {
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  padding: 0;
  transition: background 0.25s, transform 0.25s, width 0.25s;
}

.hero-dots button.is-active {
  width: 42px;
  background: var(--red);
}

.hero-dots button:hover,
.hero-dots button:focus-visible {
  background: rgba(255, 255, 255, 0.7);
  outline: none;
}

@keyframes hero-progress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

@keyframes hero-kenburns {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 900px) {
  .hero {
    min-height: min(92vh, 860px);
    align-items: center;
  }

  .hero-content {
    padding: 5.5rem 0 4rem;
  }

  .hero-slide img {
    object-position: center center;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: min(100svh, 760px);
  }

  .hero-content {
    padding-bottom: calc(3.4rem + var(--safe-bottom));
  }

  .hero-actions .btn {
    flex: 1 1 auto;
    min-width: min(100%, 148px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide img,
  .hero-eyebrow,
  .hero h1,
  .hero-lead,
  .hero-actions,
  .hero-rail,
  .hero-progress span {
    animation: none !important;
    transition: none !important;
  }

  .hero-slide img {
    transform: none;
  }

  .hero-dots {
    display: none;
  }
}

/* ========== CHAIN CTA ========== */
.chain-section {
  padding: 3.5rem 0;
  background:
    radial-gradient(ellipse at top, rgba(225, 6, 0, 0.12), transparent 55%),
    var(--bg-2);
  border-block: 1px solid var(--line);
}

.chain-wrap {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 860px) {
  .chain-wrap {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.section-label {
  color: var(--red);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 0.85rem;
}

.section-text {
  color: var(--muted);
  max-width: 48ch;
}

.chain-interactive {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.5rem;
  min-height: 220px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.chain-interactive::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(225, 6, 0, 0.18), transparent 50%);
  pointer-events: none;
}

.chain-svg {
  width: min(100%, 340px);
  height: auto;
  cursor: pointer;
  transition: transform 0.35s ease;
}

.chain-interactive:hover .chain-svg,
.chain-interactive.is-open .chain-svg {
  transform: translateY(-8px) scale(1.03);
}

.chain-link-path {
  fill: none;
  stroke: var(--silver);
  stroke-width: 8;
  stroke-linecap: round;
}

.chain-hook {
  fill: var(--red);
  transform-origin: center;
  animation: hook-swing 2.8s ease-in-out infinite;
}

@keyframes hook-swing {
  0%,
  100% {
    transform: rotate(-6deg);
  }
  50% {
    transform: rotate(6deg);
  }
}

.chain-hint {
  margin-top: 1rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.chain-panel {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}

.chain-interactive:hover .chain-panel,
.chain-interactive:focus-within .chain-panel,
.chain-interactive.is-open .chain-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.chain-panel .btn {
  width: 100%;
  padding: 0.85rem 0.5rem;
  font-size: 0.88rem;
}

@media (hover: none) {
  .chain-interactive.is-open .chain-panel {
    opacity: 1;
    pointer-events: auto;
  }
}

/* ========== SECTIONS ========== */
.section {
  padding: 4rem 0;
}

.section- Tight {
  padding: 3rem 0;
}

.bg-alt {
  background: var(--bg-2);
}

.services-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 700px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.35rem 1.25rem;
  transition: border-color 0.25s, transform 0.25s;
}

.service-item:hover {
  border-color: rgba(225, 6, 0, 0.55);
  transform: translateY(-3px);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--red);
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.45rem;
}

.service-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ========== WHY / TRUST ========== */
.trust-row {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 720px) {
  .trust-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-item {
  padding: 1.25rem 0;
  border-top: 2px solid var(--red);
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.trust-item span {
  color: var(--muted);
  font-weight: 600;
}

/* ========== GALLERY PREVIEW ========== */
.gallery-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 800px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .gallery-zoom {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}

.gallery-item:hover .gallery-zoom,
.gallery-item:focus-within .gallery-zoom {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item.tall {
  aspect-ratio: 3 / 4;
}

.gallery-page-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .gallery-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .gallery-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.gallery-card:hover {
  border-color: rgba(225, 6, 0, 0.45);
  transform: translateY(-2px);
}

.gallery-card .media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  background: #000;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-zoom {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s;
}

.gallery-card:hover .gallery-zoom,
.gallery-card:focus-within .gallery-zoom {
  opacity: 1;
  transform: translateY(0);
}

.gallery-card figcaption {
  padding: 0.85rem 1rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  gap: 0.5rem;
}

.lightbox.is-open {
  display: flex;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(96vw, 1100px);
  width: 100%;
}

.lightbox-image {
  max-width: 100%;
  max-height: min(78vh, 820px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  background: #0a0a0a;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-meta {
  width: 100%;
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  justify-content: space-between;
  align-items: baseline;
}

.lightbox-caption {
  color: #fff;
  font-weight: 700;
  font-size: 0.98rem;
}

.lightbox-counter {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
}

.lightbox-nav {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background 0.2s, border-color 0.2s;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: rgba(225, 6, 0, 0.85);
  border-color: var(--red);
  outline: none;
}

@media (max-width: 720px) {
  .lightbox {
    flex-direction: column;
    padding: 4.5rem 0.75rem 1.25rem;
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .lightbox-prev {
    left: 0.5rem;
  }

  .lightbox-next {
    right: 0.5rem;
  }

  .lightbox-image {
    max-height: 68vh;
  }
}

/* ========== DISTRICTS ========== */
.district-grid {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.75rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 700px) {
  .district-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 980px) {
  .district-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.district-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.95rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 700;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  min-height: 52px;
}

.district-link:hover {
  border-color: var(--red);
  background: rgba(225, 6, 0, 0.08);
  transform: translateY(-2px);
}

.district-link svg {
  width: 18px;
  height: 18px;
  color: var(--red);
  flex-shrink: 0;
}

.district-link--accent {
  border-color: rgba(225, 6, 0, 0.45);
  background: linear-gradient(135deg, rgba(225, 6, 0, 0.16), transparent);
}

.district-tag {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  border: 1px solid var(--line);
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  flex-shrink: 0;
}

.district-link[hidden] {
  display: none !important;
}

.region-group {
  margin-bottom: 2.5rem;
}

.region-group[hidden] {
  display: none !important;
}

.region-group-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line);
}

.region-search {
  display: block;
  margin-top: 1.5rem;
  max-width: 480px;
}

.region-search input {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-weight: 600;
}

.region-search input::placeholder {
  color: var(--muted);
  font-weight: 500;
}

.region-search input:focus {
  outline: 2px solid rgba(225, 6, 0, 0.55);
  outline-offset: 2px;
  border-color: var(--red);
}

.page-hero--region {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(225, 6, 0, 0.22), transparent 50%),
    linear-gradient(180deg, #141414, var(--bg));
}

.region-layout {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 960px) {
  .region-layout {
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.7fr);
    align-items: start;
  }
}

.region-aside .sticky-card {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.aside-text {
  color: var(--muted);
  margin-bottom: 1rem;
}

.aside-list {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.55rem;
}

.aside-list li {
  color: var(--silver);
  font-weight: 600;
  font-size: 0.92rem;
  padding-left: 1.1rem;
  position: relative;
}

.aside-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.faq-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.85rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--red);
  font-weight: 800;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin-top: 0.75rem;
  color: var(--muted);
}

.prose ol.steps {
  margin: 1rem 0;
  padding-left: 1.2rem;
  color: var(--muted);
  list-style: decimal;
}

.prose ol.steps li {
  margin: 0.45rem 0;
  padding-left: 0.25rem;
}

/* ========== PAGE HERO ========== */
.page-hero {
  padding: 3rem 0 2rem;
  background:
    linear-gradient(180deg, rgba(225, 6, 0, 0.14), transparent),
    var(--bg);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--muted);
  max-width: 52ch;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.breadcrumb a:hover {
  color: var(--red);
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.5rem;
}

.contact-card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-list {
  display: grid;
  gap: 1rem;
}

.contact-list a,
.contact-list span {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
}

.contact-list small {
  display: block;
  color: var(--muted);
  font-weight: 500;
  margin-top: 0.2rem;
}

.contact-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* ========== FOOTER ========== */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding: 3.25rem 0 calc(5.75rem + var(--safe-bottom));
}

@media (min-width: 960px) {
  .site-footer {
    padding-bottom: 2.75rem;
  }
}

.footer-top {
  display: grid;
  gap: 2.25rem;
}

.footer-brand-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.footer-logo-link {
  flex-shrink: 0;
}

.footer-logo-link img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  background: #000;
  border-radius: 12px;
  border: 1px solid rgba(225, 6, 0, 0.35);
}

.footer-name {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.55rem;
}

.footer-desc {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 42ch;
  margin-bottom: 1rem;
}

.footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.footer-cta .btn {
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
}

.footer-cols {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 900px) {
  .footer-cols {
    grid-template-columns: 1fr 1fr 1.4fr 1fr;
    gap: 2rem;
  }
}

.footer-col h3 {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.9rem;
  font-weight: 800;
}

.footer-col a {
  display: block;
  color: var(--silver);
  padding: 0.28rem 0;
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-note {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.footer-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.15rem 0.75rem;
}

.footer-areas-all {
  grid-column: 1 / -1;
  margin-top: 0.45rem;
  color: var(--red) !important;
  font-weight: 800 !important;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-bottom p {
  margin: 0;
}

/* ========== MOBILE FLOAT BAR ========== */
.mobile-float {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem calc(0.65rem + var(--safe-bottom));
  background: rgba(10, 10, 10, 0.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.mobile-float .btn {
  padding: 0.9rem 0.5rem;
}

@media (min-width: 960px) {
  .mobile-float {
    display: none;
  }
}

.scroll-top {
  position: fixed;
  right: 1rem;
  bottom: calc(4.75rem + var(--safe-bottom));
  z-index: 1090;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.92);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: opacity 0.2s, transform 0.2s, border-color 0.2s;
}

.scroll-top:not([hidden]) {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top[hidden] {
  display: grid;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.scroll-top:hover {
  border-color: rgba(225, 6, 0, 0.55);
  color: var(--red);
}

@media (min-width: 960px) {
  .scroll-top {
    bottom: 1.25rem;
  }
}

/* ========== ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(225, 6, 0, 0.45);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(225, 6, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(225, 6, 0, 0);
  }
}

.pulse {
  animation: pulse-ring 2s infinite;
}

.truck-drive {
  animation: drive 8s linear infinite;
}

@keyframes drive {
  0% {
    transform: translateX(-8%);
  }
  100% {
    transform: translateX(8%);
  }
}

/* Content prose */
.prose {
  max-width: 70ch;
}

.prose p + p {
  margin-top: 1rem;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 2rem 0 0.75rem;
  letter-spacing: 0.02em;
}

.prose ul {
  margin: 1rem 0;
  padding-left: 1.1rem;
  list-style: disc;
  color: var(--muted);
}

.prose li {
  margin: 0.35rem 0;
}

.prose a {
  color: var(--red);
  font-weight: 700;
}

/* Utility */
.mt-2 {
  margin-top: 2rem;
}
.text-center {
  text-align: center;
}
.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}
