
:root {
  color-scheme: light;
  --bg: #f6f7f5;
  --panel: #ffffff;
  --text: #18211f;
  --muted: #5c6a66;
  --line: #dfe5e1;
  --primary: #0f766e;
  --primary-dark: #115e59;
  --accent: #d97706;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand {
  font-weight: 900;
  text-decoration: none;
  font-size: 1.1rem;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.nav-link {
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 750;
}
.nav-link:hover, .nav-link.active {
  background: #e7f5f2;
  color: var(--primary-dark);
}
.hero {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 56px) 42px;
  background: linear-gradient(120deg, #eefbf7 0%, #fff7e6 100%);
  border-bottom: 1px solid var(--line);
}
.hero > div {
  max-width: 980px;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(2.2rem, 7vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: 0;
}
.hero p {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
}
.destination-grid-wrap, .simple-page {
  width: min(1160px, calc(100% - 36px));
  margin: 34px auto 56px;
}
.section-heading {
  max-width: 720px;
  margin-bottom: 20px;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.12;
}
.section-heading p {
  color: var(--muted);
}
.destination-grid, .section-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.destination-card, .section-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  text-decoration: none;
}
.destination-card:hover, .section-card:hover {
  border-color: #9fd7cf;
  transform: translateY(-2px);
}
.destination-card h2, .section-card h2 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  line-height: 1.15;
}
.destination-card p, .section-card p {
  color: var(--muted);
}
.card-link {
  color: var(--primary-dark);
  font-weight: 900;
}
.editorial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  width: min(1160px, calc(100% - 36px));
  margin: 34px auto 56px;
}
.content, .sidebar-block, .country-sidebar .ad-slot {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.content {
  padding: clamp(20px, 4vw, 42px);
}
.content h2 {
  margin-top: 34px;
  font-size: 1.65rem;
  line-height: 1.2;
}
.content h2:first-child { margin-top: 0; }
.content p, .content li { color: #263645; }
.content table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
}
.content th, .content td {
  padding: 13px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.content th { background: #eefbf7; }
.country-sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
}
.sidebar-block {
  padding: 18px;
}
.side-link {
  display: block;
  padding: 11px 12px;
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
}
.side-link:hover, .side-link.active {
  background: #e7f5f2;
  color: var(--primary-dark);
}
.ad-slot {
  display: grid;
  place-items: center;
  min-height: 120px;
  margin: 28px 0 0;
  border: 1px dashed #9fb2c5;
  border-radius: 8px;
  background: #f3f7fa;
  color: #6b7b8f;
  font-size: .9rem;
  font-weight: 800;
  text-align: center;
}
.country-sidebar .ad-slot {
  margin: 0;
  padding: 18px;
}
.footer {
  padding: 34px clamp(18px, 4vw, 56px);
  background: #13201e;
  color: #eef5f3;
}
.footer p {
  max-width: 620px;
  color: #b8c8c4;
}
.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer a {
  color: #fff;
  font-weight: 800;
}
@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .destination-grid, .section-card-grid, .editorial-layout {
    grid-template-columns: 1fr;
  }
  .country-sidebar {
    order: -1;
  }
}
