:root {
  --green: #15803d;
  --green-deep: #08361c;
  --green-mid: #166534;
  --accent: #34d399;
  --accent-soft: #6ee7b7;
  --bg: #f3f8f4;
  --paper: #ffffff;
  --ink: #15241b;
  --muted: #5f7268;
  --line: rgba(21, 128, 61, 0.14);
  --radius: 18px;
  --maxw: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
h1, h2, h3 { font-family: "Fraunces", Georgia, serif; font-weight: 600; line-height: 1.1; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(243, 248, 244, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  display: grid; place-items: center; width: 38px; height: 38px;
  background: var(--green); border-radius: 11px; font-size: 20px;
}
.brand-text { font-family: "Fraunces", serif; font-size: 21px; font-weight: 600; color: var(--green); }
.nav { display: flex; gap: 26px; align-items: center; }
.nav a { font-size: 15px; font-weight: 500; color: var(--green-mid); opacity: 0.9; transition: opacity 0.2s; }
.nav a:hover { opacity: 1; }
.nav a:last-child {
  background: var(--green); color: #fff; padding: 9px 18px; border-radius: 999px; opacity: 1;
}
.nav a:last-child:hover { background: var(--green-mid); }

/* Hero */
.hero {
  background:
    radial-gradient(900px 500px at 92% 0%, rgba(52, 211, 153, 0.22), transparent 55%),
    linear-gradient(165deg, #ffffff 0%, var(--bg) 100%);
  padding: 84px 0 90px;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: 3px; font-size: 12px; font-weight: 600; color: var(--green); margin-bottom: 20px; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); color: var(--green-deep); margin-bottom: 22px; }
.hero h1 .accent { color: var(--green); }
.lede { font-size: clamp(1rem, 2vw, 1.15rem); color: var(--muted); margin-bottom: 32px; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; padding: 13px 26px; border-radius: 999px; font-weight: 600; font-size: 15px; transition: transform 0.15s, background 0.2s, box-shadow 0.2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 10px 28px rgba(21, 128, 61, 0.3); }
.btn-primary:hover { background: var(--green-mid); }
.btn-ghost { border: 1px solid var(--line); color: var(--green-mid); background: #fff; }
.btn-ghost:hover { background: rgba(21, 128, 61, 0.06); }

.hero-visual { position: relative; }
.hero-map { width: 100%; border-radius: 16px; border: 1px solid var(--line); box-shadow: 0 26px 60px rgba(8, 54, 28, 0.22); }
.hero-phone {
  position: absolute; bottom: -26px; right: -14px; width: 30%;
  border-radius: 18px; box-shadow: 0 20px 44px rgba(8, 54, 28, 0.32);
  border: 3px solid #fff;
}

/* Strip */
.strip { background: var(--green-deep); color: #fff; }
.strip-inner { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 18px; padding: 22px 0; }
.strip-inner div { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.98rem; }
.strip-inner span { font-size: 1.2rem; }

/* Features */
.features { padding: 30px 0 20px; }
.feature {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center;
  padding: 64px 0; border-bottom: 1px solid var(--line);
}
.feature.reverse .feature-media { order: -1; }
.ftag { display: inline-block; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--green); background: rgba(52, 211, 153, 0.16); padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; }
.feature-text h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); color: var(--green-deep); margin-bottom: 14px; }
.feature-text p { color: var(--muted); margin-bottom: 18px; }
.ticks { list-style: none; display: grid; gap: 10px; }
.ticks li { position: relative; padding-left: 28px; color: var(--ink); font-weight: 500; }
.ticks li::before {
  content: "\2713"; position: absolute; left: 0; top: 0;
  width: 19px; height: 19px; border-radius: 50%; background: var(--green);
  color: #fff; font-size: 12px; display: grid; place-items: center; margin-top: 3px;
}

/* feature media: wide (map) and phones */
.feature-media.wide { position: relative; }
.feature-media.wide > img:first-child { width: 100%; border-radius: 14px; border: 1px solid var(--line); box-shadow: 0 22px 50px rgba(8, 54, 28, 0.2); }
.feature-media.wide .inset {
  position: absolute; right: -12px; bottom: -20px; width: 46%;
  border-radius: 12px; border: 3px solid #fff; box-shadow: 0 16px 36px rgba(8, 54, 28, 0.28);
}
.feature-media.phones { display: flex; gap: 16px; justify-content: center; }
.feature-media.phones img {
  width: 47%; max-width: 230px; border-radius: 20px; border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(8, 54, 28, 0.18); background: #fff;
}
.feature-media.phones img:nth-child(2) { transform: translateY(22px); }

/* Sections shared */
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--green-deep); text-align: center; margin-bottom: 8px; }
.section-sub { color: var(--muted); text-align: center; font-size: 1.05rem; margin-bottom: 42px; }

/* Gallery */
.gallery { padding: 80px 0; background: var(--paper); }
.shots { display: grid; grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); gap: 18px; }
.shots figure { background: var(--bg); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: transform 0.2s, box-shadow 0.25s; }
.shots figure:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(8, 54, 28, 0.16); }
.shots img { width: 100%; height: 300px; object-fit: cover; object-position: top; }
.shots figcaption { padding: 10px 12px; font-size: 13px; font-weight: 600; color: var(--green-mid); text-align: center; }

/* Maps */
.maps { padding: 80px 0; }
.map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.map-grid img { width: 100%; border-radius: 14px; border: 1px solid var(--line); box-shadow: 0 18px 44px rgba(8, 54, 28, 0.18); }

/* CTA */
.cta { background: linear-gradient(160deg, var(--green) 0%, var(--green-deep) 100%); color: #fff; padding: 84px 0; }
.cta-inner { text-align: center; max-width: 680px; margin: 0 auto; }
.cta h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: #fff; margin-bottom: 14px; }
.cta p { color: rgba(255, 255, 255, 0.85); font-size: 1.1rem; }
.cta-detail { margin-top: 12px; }
.cta-detail a { color: var(--accent-soft); font-weight: 600; font-size: 1.2rem; }

/* Footer */
.site-footer { background: #06240f; color: rgba(255, 255, 255, 0.72); padding: 26px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; font-size: 14px; flex-wrap: wrap; gap: 10px; }
.site-footer a { color: var(--accent-soft); }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 520px; }
  .feature { grid-template-columns: 1fr; gap: 32px; padding: 52px 0; }
  .feature.reverse .feature-media { order: 0; }
  .map-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .header-inner { height: 60px; }
  .nav { gap: 14px; }
  .nav a { font-size: 13.5px; }
  .nav a:last-child { padding: 8px 14px; }
  .hero { padding: 60px 0 76px; }
  .shots { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 14px; }
  .shots img { height: 250px; }
  .feature-media.phones img { max-width: 46%; }
}
