:root {
  --green: #0c3a1a;
  --green-2: #1a6635;
  --soft: #eef7f0;
  --orange: #d97706;
  --ink: #173523;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #f7faf8;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -70px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--green);
}
.skip-link:focus { top: 12px; }

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
  padding: 16px 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--green);
  font-size: .75rem;
  font-weight: 800;
  text-decoration: none;
}
.brand img { width: 70px; height: auto; }
.phone {
  padding: 10px 14px;
  border-radius: 22px;
  background: var(--green);
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  text-decoration: none;
}

main { overflow: hidden; }
.hero {
  padding: 66px 20px 72px;
  background:
    radial-gradient(circle at 15% 10%, rgba(255,255,255,.16), transparent 30%),
    linear-gradient(140deg, #082c14, #1a6635);
  color: #fff;
  text-align: center;
}
.hero > * { max-width: 800px; margin-left: auto; margin-right: auto; }
.eyebrow, .section-label {
  color: #f3b45e;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: .02em;
}
h1 {
  margin-top: 10px;
  margin-bottom: 14px;
  font-size: clamp(2.4rem, 8vw, 4.8rem);
  line-height: .98;
}
.hero p {
  margin-top: 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(.9rem, 2.5vw, 1.06rem);
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}
.hero-actions a, .notice a {
  min-height: 46px;
  padding: 13px 19px;
  border-radius: 24px;
  font-size: .82rem;
  font-weight: 900;
  text-decoration: none;
}
.hero-actions .primary { background: #fff; color: var(--green); }
.hero-actions .secondary { border: 1px solid rgba(255,255,255,.45); color: #fff; }

.area, .services, .notice {
  max-width: 980px;
  margin: 0 auto;
  padding: 58px 20px;
}
h2 {
  margin: 7px 0 12px;
  color: var(--green);
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.05;
}
.intro {
  max-width: 680px;
  margin: 0 0 24px;
  color: #557060;
  line-height: 1.7;
}
.place-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}
.place-grid article {
  padding: 20px;
  border: 1px solid rgba(12,58,26,.1);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(12,58,26,.06);
}
.place-grid h3 { margin: 0 0 8px; color: var(--green); font-size: .96rem; }
.place-grid p { margin: 0; color: #607568; font-size: .78rem; line-height: 1.6; }

.services { max-width: none; background: var(--soft); }
.services > * { max-width: 940px; margin-left: auto; margin-right: auto; }
.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.service-list div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 17px 18px;
  border-radius: 15px;
  background: rgba(255,255,255,.82);
}
.service-list strong { color: var(--green); font-size: .86rem; }
.service-list span { color: #5f7567; font-size: .75rem; line-height: 1.5; }

.notice {
  max-width: 780px;
  text-align: center;
}
.notice p { color: #587062; line-height: 1.7; }
.notice a { display: inline-block; margin-top: 10px; background: var(--green); color: #fff; }

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  padding: 30px 20px;
  background: #082c14;
  color: rgba(255,255,255,.72);
  font-size: .72rem;
}
footer strong { color: #fff; }
footer a { color: rgba(255,255,255,.82); }

@media (max-width: 720px) {
  .brand span { display: none; }
  .hero { padding-top: 50px; }
  .place-grid { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  header { padding: 12px 15px; }
  .phone { padding: 9px 11px; font-size: .72rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { width: 100%; }
}
