:root {
  --bg: #0f172a;
  --bg-soft: #f8fafc;
  --primary: #dc2626;
  --primary-dark: #b91c1c;
  --text: #111827;
  --muted: #64748b;
  --border: #e5e7eb;
  --card: #ffffff;
  --accent: #1e293b;
  --success: #16a34a;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(2, 6, 23, 0.08);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.section { padding: 72px 0; }
.narrow-content { width: min(100%, 820px); }
.text-center { text-align: center; }

.topbar {
  background: var(--bg);
  color: #fff;
  font-size: 14px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  gap: 16px;
}
.topbar-phone { font-weight: 700; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}
.header-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
}
.branding {
  display: flex;
  align-items: center;
  gap: 14px;
}
.site-title {
  display: block;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.site-tagline {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.menu, .footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
  align-items: center;
}
.menu a, .footer-menu a { font-weight: 600; }
.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 24px rgba(220, 38, 38, 0.22);
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline {
  border-color: var(--border);
  background: #fff;
}
.btn-light {
  background: #fff;
  color: var(--text);
}
.btn-secondary {
  background: #22c55e;
  color: #fff;
}

.hero {
  background:
    radial-gradient(circle at top left, rgba(220, 38, 38, 0.10), transparent 35%),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  padding: 88px 0 72px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 28px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  color: var(--primary);
  background: rgba(220, 38, 38, 0.08);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero h1 {
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.05;
  margin: 18px 0 18px;
  letter-spacing: -0.03em;
}
.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 700px;
}
.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-features {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  gap: 18px;
  color: var(--accent);
  font-weight: 700;
}
.hero-card, .card, .about-box, .cta-panel, .stat-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card {
  padding: 28px;
  border: 1px solid rgba(229, 231, 235, 0.9);
}
.contact-box {
  margin-top: 16px;
  padding: 16px;
  border-radius: 14px;
  background: var(--bg-soft);
}
.contact-box span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 6px;
}
.contact-box a, .contact-box strong { font-size: 20px; font-weight: 800; }

.section-heading {
  text-align: center;
  margin-bottom: 28px;
}
.section-heading.left { text-align: left; }
.section-heading h2 {
  margin: 12px 0 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.cards.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  padding: 26px;
  border: 1px solid var(--border);
}
.card h3 { margin-top: 0; margin-bottom: 10px; }
.card p { margin: 0; color: var(--muted); }


.cards.three-col.six-col {
  grid-template-columns: repeat(3, 1fr);
}
.gallery-section { background: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
  min-height: 320px;
}
.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 656px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.promo-section {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.promo-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}
.promo-poster img {
  width: 100%;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.promo-content {
  padding: 12px 0;
}

.stats-section { padding-top: 12px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.stat-card {
  padding: 22px;
  text-align: center;
  border: 1px solid var(--border);
}
.stat-card strong {
  display: block;
  font-size: 28px;
  color: var(--primary);
}
.stat-card span { color: var(--muted); }

.regions-section { background: var(--bg-soft); }
.region-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.region-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 12px;
  text-align: center;
  font-weight: 700;
}
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 900;
}
.about-box, .cta-panel {
  padding: 28px;
  border: 1px solid var(--border);
}
.about-section { background: #fff; }

.page-section .page-title {
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.page-content { color: #334155; }
.post-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 20px;
}
.entry-meta { color: var(--muted); font-size: 14px; margin-bottom: 14px; }

.site-footer {
  background: var(--bg);
  color: #fff;
  margin-top: 24px;
}
.footer-cta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-cta h3 { margin: 0 0 8px; font-size: 30px; }
.footer-cta p { margin: 0; color: rgba(255,255,255,0.72); }
.footer-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
  padding: 40px 0;
}
.footer-grid h4 { margin-top: 0; font-size: 20px; }
.footer-menu { display: grid; gap: 10px; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 0;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}

.mobile-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  grid-template-columns: 1fr 1fr;
  z-index: 200;
  box-shadow: 0 -8px 24px rgba(2,6,23,0.12);
}
.mobile-sticky-bar a {
  padding: 16px;
  text-align: center;
  font-weight: 800;
  color: #fff;
}
.mobile-sticky-bar a:first-child { background: var(--primary); }
.mobile-sticky-bar a:last-child { background: #16a34a; }

@media (max-width: 1080px) {
  .header-inner,
  .hero-grid,
  .two-col,
  .footer-grid,
  .cards.three-col,
  .stats-grid,
  .promo-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item-large { grid-column: span 2; grid-row: span 1; min-height: 420px; }
  .region-grid { grid-template-columns: repeat(3, 1fr); }
  .main-nav { display: none; }
}

@media (max-width: 767px) {
  .section { padding: 54px 0; }
  .hero { padding: 64px 0 48px; }
  .topbar-inner, .header-inner, .footer-cta { flex-direction: column; align-items: flex-start; }
  .header-actions { width: 100%; }
  .header-actions .btn { flex: 1; }
  .cards.three-col.six-col,
  .gallery-grid,
  .region-grid { grid-template-columns: 1fr; }
  .gallery-item-large { grid-column: span 1; min-height: 320px; }
  .mobile-sticky-bar { display: grid; }
  .site-footer { padding-bottom: 64px; }
}
