:root {
  --bg-main: #eef3ef;
  --bg-soft: #f7faf8;
  --surface: #ffffff;
  --text: #25332b;
  --muted: #5a6c63;
  --accent: #6f9782;
  --accent-dark: #4f7662;
  --accent-soft: #dcebe3;
  --border: #d9e6df;
  --shadow: rgba(40, 65, 52, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, #e6f2eb 0%, transparent 32%),
    radial-gradient(circle at 100% 6%, #f5efe5 0%, transparent 30%),
    linear-gradient(180deg, var(--bg-main) 0%, var(--bg-soft) 100%);
}

.container {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 0 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 250, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1rem;
}

.lang-switch {
  display: inline-flex;
  background: #f1f7f3;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px;
}

.lang-btn {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-dark);
  cursor: pointer;
}

.lang-btn.is-active {
  background: var(--accent);
  color: #fff;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 0 12px;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav-link.active,
.nav-link:hover {
  color: var(--accent-dark);
  background: #ecf5ef;
  border-color: #d4e4db;
}

.hero {
  padding: 24px 0 8px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.78rem;
}

h1,
.page-title {
  margin: 0 0 12px;
  line-height: 1.1;
  font-size: clamp(1.8rem, 8vw, 2.8rem);
}

.lead {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
}

.status-pill {
  display: inline-block;
  margin: 0;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-dark);
  border: 1px solid #b7d1c3;
  background: linear-gradient(90deg, #e7f3ec 0%, #f2eee5 100%);
}

.hero-image,
.card-image {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px var(--shadow);
}

.hero-image {
  height: 220px;
}

.card-image {
  height: 170px;
  margin-bottom: 12px;
}

.section {
  padding: 16px 0 24px;
}

.cards-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfa 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 24px var(--shadow);
}

.card h2 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
}

.cta-link {
  display: inline-block;
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 700;
}

.cta-link:hover {
  text-decoration: underline;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.map-card .address-line {
  margin: 2px 0 10px;
  font-weight: 600;
}

.map-card .map-embed {
  width: 100%;
  min-height: 220px;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 18px var(--shadow);
}

.site-footer {
  margin-top: 10px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #edf5f0 0%, #e6efe9 100%);
}

.footer-inner {
  min-height: 68px;
  padding: 12px 0;
  display: grid;
  gap: 4px;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (min-width: 760px) {
  .hero-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    align-items: center;
  }

  .hero-image {
    height: 310px;
  }

  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
