:root {
  --bg: #fbf7ef;
  --paper: #fffdf8;
  --ink: #211b15;
  --muted: #6c6257;
  --line: #e5d9c8;
  --brand: #765234;
  --brand-dark: #3f2d21;
  --accent: #b7773c;
  --green: #596a45;
  --shadow: 0 20px 50px rgba(48, 35, 25, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.section { padding: 88px 0; }
.section-muted { background: #efe5d6; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 247, 239, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-dark);
  color: #fff7e8;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 26px;
}

.brand-text { line-height: 1.05; }
.brand-text small {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
}
.nav-links a:hover { color: var(--brand-dark); }

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  padding: 10px 14px;
  font-weight: 700;
}

.hero {
  min-height: 680px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(183, 119, 60, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(251, 247, 239, 0.96), rgba(239, 229, 214, 0.94)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=70") center/cover;
}

.hero-grid,
.two-columns,
.region-grid,
.footer-grid,
.cta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.1;
}

h1, h2 {
  font-family: "Source Serif 4", Georgia, serif;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 780px;
  font-size: clamp(48px, 8vw, 88px);
}

h2 { font-size: clamp(34px, 5vw, 58px); }
h3 { font-size: 22px; letter-spacing: -0.02em; }

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--brand-dark);
  color: #fff7e8;
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: rgba(255, 253, 248, 0.74);
  border-color: var(--line);
  color: var(--brand-dark);
}

.hero-card,
.card,
.news-item,
.region-box {
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(229, 217, 200, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card { padding: 30px; }
.card-label { color: var(--muted); font-weight: 800; margin-top: 0; }
.check-list { margin: 0; padding-left: 20px; }
.check-list li + li { margin-top: 10px; }

.content p:first-child { margin-top: 0; }
.content p { color: var(--muted); font-size: 18px; }

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}
.split-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.text-link { font-weight: 800; color: var(--brand); text-decoration: none; }

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card { padding: 26px; }
.card p, .news-item p, .region p, .cta p { color: var(--muted); }

.news-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.news-item { padding: 28px; }
.news-item time {
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}
.news-item h3 { margin-top: 10px; }

.region { background: var(--paper); }
.region-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 28px;
}
.region-box span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #efe5d6;
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 14px;
}

.cta {
  grid-template-columns: 1fr auto;
  align-items: center;
}
.cta p { max-width: 680px; }

.footer {
  padding: 58px 0 28px;
  background: var(--brand-dark);
  color: #fff7e8;
}
.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.6fr;
  align-items: start;
}
.footer h2 { font-size: 30px; }
.footer h3 { margin-bottom: 12px; font-size: 16px; }
.footer a { color: #fff7e8; }
.footer p, .footer li, .footer small { color: rgba(255, 247, 232, 0.78); }
.registry-list, .footer-links { list-style: none; margin: 0; padding: 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.16);
}

@media (max-width: 900px) {
  .section { padding: 64px 0; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    inset: 76px 20px auto 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { display: block; padding: 12px; }

  .hero-grid,
  .two-columns,
  .region-grid,
  .footer-grid,
  .cta,
  .news-list { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .cta { align-items: start; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1120px); }
  .hero { min-height: auto; padding-top: 56px; }
  h1 { font-size: 44px; }
  .lead { font-size: 18px; }
  .cards { grid-template-columns: 1fr; }
  .split-heading, .footer-bottom { flex-direction: column; align-items: start; }
}
