.site-shell {
  width: min(var(--container), 100% - 2rem);
  margin: 0 auto;
}

/* ── Header ──────────────────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(15, 46, 82, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-3) 0;
  flex-wrap: wrap;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  max-width: 280px;
  width: 100%;
  height: auto;
}

.header-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.header-hours {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.header-contacts {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
}

.header-contacts a {
  color: var(--brand-600);
  text-decoration: none;
  font-weight: 700;
}

.header-contacts a:hover {
  color: var(--brand-700);
  text-decoration: underline;
}

.header-cta {
  flex-shrink: 0;
}

/* ── Content + Main ───────────────────────────────────────────────────────── */
.content {
  margin: var(--space-5) auto var(--space-6);
}

.main {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-6) var(--space-5);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--brand-700);
  color: #fff;
  padding: var(--space-7) 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}

.hero-title {
  font-size: 2.25rem;
  line-height: 1.2;
  color: #fff;
  margin-bottom: var(--space-3);
}

.hero-sub {
  font-size: 1.05rem;
  color: #b8d4f0;
  margin-bottom: var(--space-5);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.hero-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  aspect-ratio: 4 / 3;
}

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

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer {
  background: var(--brand-700);
  color: #e2eeff;
  padding: var(--space-6) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #fff;
  margin-bottom: var(--space-3);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-links a {
  color: #a8c5e8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: #fff;
}

.footer-address {
  font-style: normal;
  font-size: 0.9rem;
  color: #a8c5e8;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-address p {
  margin: 0;
  line-height: 1.5;
}

.footer-address a {
  color: #a8c5e8;
  text-decoration: none;
}

.footer-address a:hover {
  color: #fff;
}

.footer-bottom {
  padding: var(--space-4) 0;
  font-size: 0.875rem;
  color: #a8c5e8;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .site-shell {
    width: min(var(--container), 100% - 1rem);
  }

  .header-inner {
    gap: var(--space-3);
  }

  .logo img {
    max-width: 220px;
  }

  .header-cta {
    display: none;
  }

  .main {
    padding: var(--space-5) var(--space-4);
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

@media (max-width: 640px) {
  .main {
    padding: var(--space-4);
  }

  .hero {
    padding: var(--space-5) 0;
  }

  .hero-title {
    font-size: 1.5rem;
  }
}
