:root {
  --bg: #ffffff;
  --text: #16353a;
  --muted: #60767b;
  --line: #e4ecee;
  --soft: #f6fbfb;
  --primary: #3a9e8d;
  --primary-dark: #1f6b61;
  --radius: 24px;
  --shadow: 0 18px 45px rgba(20, 67, 74, 0.10);
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
}
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  background: #f7fbfb;
  border-radius: 18px;
  padding: 6px;
}
.mini {
  margin: 0 0 4px;
  font-size: .76rem;
  color: var(--muted);
  letter-spacing: .18em;
}
.brand h1 {
  margin: 0;
  font-size: 1.1rem;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
}
.nav a:hover { color: var(--primary-dark); }
.hero {
  padding: 42px 0 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fcfb 100%);
}
.hero-grid,
.split,
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 30px;
  align-items: center;
}
.hero-copy h2,
h2 {
  margin: 12px 0 14px;
  line-height: 1.1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
}
.hero-copy p,
.section-text,
.info p,
.region-card p,
.contact-card p,
.site-footer p { color: var(--muted); }
.chip,
.section-label,
.tags span,
.contact-list a,
.contact-list span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--primary-dark);
  font-weight: 700;
}
.section-label {
  text-transform: uppercase;
  letter-spacing: .10em;
  font-size: .74rem;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.btn-secondary {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--primary-dark);
}
.hero-image,
.contact-photo,
.region-card,
.gallery .card,
.stack .card { background: #f7fbfb; }
.hero-image img,
.contact-photo img,
.region-card img,
.gallery img,
.stack img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f7fbfb;
}
.hero-image { min-height: 440px; }
.section { padding: 88px 0; }
.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.info { padding: 26px; }
.info h3 { margin-top: 0; color: var(--primary-dark); }
.soft { background: linear-gradient(180deg, #ffffff 0%, #f8fcfb 100%); }
.tags,
.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.stack { display: grid; gap: 16px; }
.tall { min-height: 430px; }
.double {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.double .card { min-height: 220px; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.pad { padding: 18px; }
.region-card h3 { margin: 0 0 8px; }
.region-card img { aspect-ratio: 4 / 3; }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.gallery .portrait { min-height: 470px; }
.gallery .landscape { min-height: 300px; }
.contact-wrap { padding-top: 40px; }
.contact-card { padding: 30px; }
.contact-photo { min-height: 420px; }
.site-footer {
  padding: 26px 0 40px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 700;
}
@media (max-width: 1100px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .topbar,
  .hero-grid,
  .split,
  .contact-grid,
  .footer-inner,
  .intro-grid,
  .gallery { grid-template-columns: 1fr; display: grid; }
  .nav { justify-content: flex-start; }
  .cards-grid { grid-template-columns: 1fr; }
  .double { grid-template-columns: 1fr; }
  .hero-image,
  .contact-photo,
  .gallery .portrait,
  .gallery .landscape,
  .tall,
  .double .card { min-height: auto; }
}
