
:root {
  --bg: #f7faf7;
  --surface: #ffffff;
  --text: #18301f;
  --muted: #5f7264;
  --primary: #2f7d4a;
  --primary-dark: #1f5a34;
  --accent: #dff2e5;
  --border: #dce7df;
  --shadow: 0 16px 40px rgba(34, 67, 43, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(132, 206, 155, 0.18), transparent 30%),
    var(--bg);
  line-height: 1.65;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

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

header {
  border-bottom: 1px solid var(--border);
  background: rgba(247, 250, 247, 0.92);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 20;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
}

.brand:hover { text-decoration: none; }
.site-logo {
  width: 46px;
  height: 46px;
  display: block;
  border-radius: 12px;
  box-shadow: 0 5px 14px rgba(34, 67, 43, 0.12);
}


.logo {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  font-size: 20px;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.hero {
  padding: 96px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.03;
  margin: 0 0 22px;
  letter-spacing: -0.045em;
}

.hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 720px;
  margin: 0 0 28px;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}

.button.secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
}

.button:hover { text-decoration: none; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 30px;
}


.hero-logo-card {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-logo {
  width: min(78%, 320px);
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 28px rgba(34, 67, 43, 0.12));
}

.map-card {
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.map-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 7px rgba(47,125,74,0.13);
}

.map-dot.one { top: 23%; left: 31%; }
.map-dot.two { top: 42%; right: 27%; }
.map-dot.three { bottom: 24%; left: 49%; }

.map-line {
  position: absolute;
  inset: 25px;
  border: 2px dashed #cfe0d4;
  border-radius: 38% 62% 46% 54% / 54% 37% 63% 46%;
  transform: rotate(-8deg);
}

.map-label {
  position: absolute;
  left: 28px;
  bottom: 25px;
  right: 28px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
}

.map-label strong { display: block; margin-bottom: 4px; }
.map-label span { color: var(--muted); font-size: .93rem; }

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

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 12px;
}

.section-intro {
  color: var(--muted);
  max-width: 700px;
  margin-bottom: 28px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.feature h3 { margin-top: 0; margin-bottom: 8px; }
.feature p { margin: 0; color: var(--muted); }

.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 0 90px;
}

.legal .meta {
  color: var(--muted);
  margin-top: -8px;
  margin-bottom: 34px;
}

.legal h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
}

.legal h2 {
  margin-top: 36px;
  font-size: 1.45rem;
}

.legal h3 {
  margin-top: 24px;
  font-size: 1.08rem;
}

.legal p, .legal li { color: #38503f; }

.notice {
  padding: 18px 20px;
  border: 1px solid #cde2d3;
  background: #edf8f0;
  border-radius: 14px;
  margin: 24px 0;
}

footer {
  border-top: 1px solid var(--border);
  padding: 34px 0;
  color: var(--muted);
  font-size: .92rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 800px) {
  .hero { padding-top: 64px; }
  .hero-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; padding: 15px 0; flex-direction: column; gap: 8px; }
  header { position: static; }
}
