@import url("fonts.css");

:root {
  --black: #000000;
  --red: #FF1A1A;
  --red-soft: #FFE8E8;
  --white: #FFFFFF;
  --bg: #FFFFFF;
  --surface: #F7F7F8;
  --border: #E3E3E6;
  --text: #1C1C1F;
  --text-2: #55555C;
  --text-3: #8B8B92;
  --header-h: 72px;
  --radius: 10px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
.logo svg { height: 40px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  flex-wrap: nowrap;
  gap: 2px;
  list-style: none;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.nav-links > li {
  flex-shrink: 0;
}

.nav-links a,
.nav-more-toggle {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.2;
}

.nav-links a:hover,
.nav-links a.active,
.nav-more-toggle:hover,
.nav-more-toggle.active {
  color: var(--text);
  background: var(--surface);
}

.nav-links a.active,
.nav-more-toggle.active {
  box-shadow: inset 0 -2px 0 var(--red);
  background: transparent;
}

.nav-more {
  position: relative;
}

.nav-more-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 190px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 120;
}

.nav-more.open .nav-more-menu {
  display: block;
}

.nav-more-menu a {
  display: block;
  width: 100%;
  padding: 10px 12px;
  font-size: 13px;
}

.header-inner > .btn-primary {
  flex-shrink: 0;
  padding: 9px 16px;
  font-size: 13px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: var(--transition);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover { background: #E01515; border-color: #E01515; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-dark:hover { background: #222; border-color: #222; }

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover { background: var(--border); }

.btn-sm { padding: 9px 18px; font-size: 13.5px; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 48px) 0 80px;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: none;
}

.hero-video-wrap.hero-use-banner .hero-video { display: none; }
.hero-video-wrap.hero-use-banner .hero-banner { display: block; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 48%, rgba(255, 26, 26, 0.06) 48%, rgba(255, 26, 26, 0.06) 52%, transparent 52%),
    linear-gradient(to right, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.72) 45%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 75%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; max-width: 680px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 26, 26, 0.15);
  border: 1px solid rgba(255, 26, 26, 0.35);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ff6b6b;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--red);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 36px;
  max-width: 520px;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.hero-stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ── Sections ── */
section { padding: 88px 0; }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-2);
  max-width: 560px;
  margin-bottom: 48px;
}

.bg-surface { background: var(--surface); }
.bg-dark { background: var(--black); color: var(--white); }

/* ── Service cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.service-icon,
.contact-item-icon {
  width: 48px; height: 48px;
  background: var(--red-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.service-icon svg,
.contact-item-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 16px;
  font-weight: 700;
}

.service-card p {
  font-size: 14px;
  color: var(--text-2);
  flex: 1;
}

.service-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.service-link:hover { gap: 8px; }

/* ── Why us ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }

.why-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-check {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--red) 0%, #e01515 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  box-shadow: 0 3px 12px rgba(255, 26, 26, 0.25);
}

.why-check svg {
  width: 16px; height: 16px;
}

.why-list strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}

.why-list span { font-size: 14px; color: var(--text-2); }

.why-visual {
  background: var(--black);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.why-visual::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: var(--red);
  opacity: 0.15;
  transform: rotate(45deg);
}

.why-visual blockquote {
  position: relative;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--white);
  border-left: 3px solid var(--red);
  padding-left: 20px;
}

.why-visual cite {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  font-style: normal;
  color: rgba(255,255,255,0.5);
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.rating-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-soft);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.testimonial p {
  font-size: 14.5px;
  color: var(--text-2);
  margin-bottom: 16px;
  line-height: 1.65;
}

.testimonial-author {
  font-size: 13.5px;
  font-weight: 700;
}

.testimonial-author span {
  display: block;
  font-weight: 400;
  color: var(--text-3);
  font-size: 12.5px;
  margin-top: 2px;
}

/* ── CTA band ── */
.cta-band {
  background: var(--black);
  color: var(--white);
  border-radius: 16px;
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  bottom: -60px; right: -20px;
  width: 240px; height: 240px;
  background: var(--red);
  opacity: 0.12;
  transform: rotate(30deg);
  pointer-events: none;
}

.cta-band h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.cta-band p { color: rgba(255,255,255,0.65); font-size: 15px; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.contact-item-icon { margin-bottom: 16px; }

.contact-item h3 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.contact-item p, .contact-item a { font-size: 14.5px; color: var(--text-2); }
.contact-item a:hover { color: var(--red); }

/* ── Page hero (inner pages) ── */
.page-hero {
  padding: calc(var(--header-h) + 56px) 0 56px;
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 48%, rgba(255,26,26,0.08) 48%, rgba(255,26,26,0.08) 52%, transparent 52%);
  pointer-events: none;
}

.page-hero .container { position: relative; }

.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--white); }

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
}

/* ── Service page content ── */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.content-main h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

.content-main h2:first-child { margin-top: 0; }

.content-main p { color: var(--text-2); margin-bottom: 14px; font-size: 15px; }

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--text-2);
}

.feature-list li::before {
  content: "";
  flex-shrink: 0;
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 8px;
}

.steps { counter-reset: step; list-style: none; margin: 16px 0; }

.steps li {
  counter-increment: step;
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
  color: var(--text-2);
}

.steps li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--black);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.alert {
  background: var(--red-soft);
  border: 1px solid rgba(255, 26, 26, 0.25);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 14.5px;
  color: var(--text);
}

.alert strong { display: block; margin-bottom: 4px; color: var(--red); }

.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.sidebar-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}

.sidebar-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.sidebar-meta dt { font-size: 12px; color: var(--text-3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.sidebar-meta dd { font-size: 14.5px; font-weight: 600; }

.sidebar-card .btn { width: 100%; }

.other-services { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); }
.other-services h4 { font-size: 13px; color: var(--text-3); margin-bottom: 10px; font-weight: 600; }
.other-services a { display: block; font-size: 14px; padding: 6px 0; color: var(--text-2); }
.other-services a:hover { color: var(--red); }

/* ── Footer ── */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(5, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.65;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 14px; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.footer-bottom a { color: var(--red); }

.footer-credit {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-credit a { color: rgba(255, 255, 255, 0.45); }
.footer-credit a:hover { color: rgba(255, 255, 255, 0.7); }

/* ── WhatsApp float ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  width: 56px; height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition);
}

.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: currentColor; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; text-align: center; padding: 40px 32px; }
}

@media (max-width: 640px) {
  .container { width: calc(100% - 32px); }

  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    flex: none;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; }
  .nav-links a,
  .nav-more-toggle {
    width: 100%;
    padding: 12px 16px;
    justify-content: flex-start;
  }

  .nav-more-menu {
    display: block;
    position: static;
    min-width: 0;
    margin: 0 0 8px;
    padding: 0 0 0 12px;
    border: none;
    box-shadow: none;
    background: transparent;
  }

  .nav-more-menu li { width: 100%; }
  .nav-more-toggle { display: none; }
  .nav-more.open .nav-more-menu { display: block; }

  .header-inner .btn-primary { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
}

/* ── FAQ ── */
.faq-list { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: none;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question:hover { background: var(--surface); }

.faq-question::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--red);
  flex-shrink: 0;
}

.faq-item.open .faq-question::after { content: "−"; }

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.65;
}

.faq-item.open .faq-answer { display: block; }

/* ── Blog ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.blog-card-image {
  height: 160px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.blog-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 48%, rgba(255,26,26,0.15) 48%, rgba(255,26,26,0.15) 52%, transparent 52%);
}

.blog-card-body { padding: 22px; }

.blog-card-meta {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-card p { font-size: 14px; color: var(--text-2); margin-bottom: 14px; }

.article-content { max-width: 720px; }
.article-content h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 32px 0 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.article-content p, .article-content li { color: var(--text-2); font-size: 15px; margin-bottom: 12px; line-height: 1.7; }
.article-content ul { padding-left: 20px; margin-bottom: 16px; }

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.gallery-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.gallery-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 200px;
}

.gallery-half {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.gallery-half.before { background: #1a1a1a; color: rgba(255,255,255,0.7); }
.gallery-half.after { background: var(--surface); color: var(--text-2); }

.gallery-half span.label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.gallery-half.before span.label { color: rgba(255,255,255,0.45); }
.gallery-half.after span.label { color: var(--red); }

.gallery-half strong { font-size: 1.4rem; font-weight: 800; color: var(--white); }
.gallery-half.after strong { color: var(--text); }

.gallery-caption {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-2);
  border-top: 1px solid var(--border);
}

.gallery-caption strong { display: block; color: var(--text); margin-bottom: 4px; }

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.stat-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 4px;
}

.stat-box span { font-size: 13px; color: var(--text-2); }

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

.district-link {
  display: block;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 600;
  font-size: 14.5px;
  transition: border-color var(--transition), transform var(--transition);
}

.district-link:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.district-link span {
  display: block;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--text-3);
  margin-top: 4px;
}


@media (max-width: 960px) {
  .blog-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .district-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: 1fr; }
}

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

