:root{
  --bg: #F7F6F2;
  --card: #FFFFFF;
  --text: #132018;
  --muted: #4B5A50;
  --brand: #1F6B45;
  --brand-2: #8CC07C;
  --line: rgba(19,32,24,.12);
  --shadow: 0 10px 30px rgba(19,32,24,.10);
  --radius: 18px;
}
*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(900px 600px at 15% 0%, rgba(140,192,124,.18), transparent 60%),
              radial-gradient(900px 600px at 85% 20%, rgba(31,107,69,.16), transparent 60%),
              var(--bg);
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
.container{ width:min(1100px, 92vw); margin:0 auto; }
.skip{ position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden; }
.skip:focus{ left:16px; top:16px; width:auto; height:auto; padding:10px 12px; background:#fff; border-radius:10px; box-shadow: var(--shadow); z-index:1000; }

.header{
  position: sticky; top:0;
  backdrop-filter: blur(10px);
  background: rgba(247,246,242,.75);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.nav{ display:flex; align-items:center; justify-content:space-between; padding: 14px 0; gap: 14px; }
.brand{ display:flex; align-items:center; gap: 10px; }
.brand__logo{ width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); background:#fff; }
.brand__text{ display:flex; flex-direction:column; line-height:1.1; }
.brand__name{ font-weight:800; letter-spacing:.08em; font-size: 14px; }
.brand__tag{ font-size: 12px; color: var(--muted); }

.menu{ display:flex; gap: 18px; align-items:center; }
.menu a{ padding: 10px 10px; border-radius: 12px; color: var(--muted); font-weight: 600; font-size: 14px; }
.menu a:hover{ background: rgba(31,107,69,.08); color: var(--text); }

.nav__cta{ display:flex; gap: 10px; align-items:center; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 10px 14px;
  border-radius: 14px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  border: 1px solid rgba(0,0,0,0);
  box-shadow: 0 8px 18px rgba(31,107,69,.18);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 12px 24px rgba(31,107,69,.22); }
.btn--ghost{
  background: rgba(255,255,255,.6);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn--ghost:hover{ background: #fff; }

.burger{
  display:none;
  width: 42px; height: 42px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.6);
  align-items:center; justify-content:center;
  gap: 4px; padding: 10px;
}
.burger span{ display:block; height:2px; background: var(--text); border-radius:999px; }
.burger span:nth-child(1){ width: 18px; }
.burger span:nth-child(2){ width: 14px; opacity:.75; }
.burger span:nth-child(3){ width: 10px; opacity:.6; }

.mobile{ border-top: 1px solid var(--line); background: rgba(247,246,242,.92); }
.mobile__links{ padding: 12px 0 18px; display:grid; gap: 10px; }
.mobile__links a{
  padding: 12px 12px; border-radius: 14px;
  background: rgba(255,255,255,.55);
  border: 1px solid var(--line);
  font-weight: 700;
}
.mobile__cta{ display:flex; gap: 10px; padding-top: 6px; }

.hero{ padding: 44px 0 18px; }
.hero__grid{ display:grid; grid-template-columns: 1.05fr .95fr; gap: 26px; align-items:center; }
.pill{
  display:inline-flex; padding: 8px 12px; border-radius: 999px;
  background: rgba(140,192,124,.22);
  border: 1px solid rgba(31,107,69,.18);
  font-weight: 700; color: var(--brand);
  margin: 0 0 12px;
}
h1{ font-size: clamp(32px, 4vw, 46px); line-height: 1.08; margin: 0 0 10px; }
.lead{ margin: 0 0 18px; color: var(--muted); font-size: 16px; line-height: 1.6; }
.hero__actions{ display:flex; gap: 10px; flex-wrap:wrap; margin-bottom: 18px; }
.hero__badges{ display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.badge{ padding: 12px 12px; border-radius: var(--radius); background: rgba(255,255,255,.65); border: 1px solid var(--line); }
.badge__title{ font-weight: 800; display:block; }
.badge__text{ color: var(--muted); font-size: 13px; }

.hero__media .mosaic{ display:grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 68px; gap: 10px; }
.shot{
  margin:0; border-radius: 20px; overflow:hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow); background:#fff;
}
.shot img{ width:100%; height:100%; object-fit: cover; }
.shot--1{ grid-column: 1 / 7; grid-row: 1 / 5; }
.shot--2{ grid-column: 1 / 4; grid-row: 5 / 8; }
.shot--3{ grid-column: 4 / 7; grid-row: 5 / 8; }
.shot--4{ grid-column: 2 / 6; grid-row: 8 / 11; }

.section{ padding: 46px 0; }
.section--alt{
  background: rgba(255,255,255,.55);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head{ display:flex; align-items:flex-end; justify-content:space-between; gap: 18px; flex-wrap:wrap; margin-bottom: 18px; }
.section__head h2{ margin:0; font-size: 28px; }
.section__head p{ margin:0; color: var(--muted); max-width: 58ch; }

.grid{ display:grid; gap: 14px; }
.cards{ grid-template-columns: repeat(3, minmax(0,1fr)); }
.card{
  padding: 16px 16px; border-radius: var(--radius);
  background: rgba(255,255,255,.75);
  border: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(19,32,24,.06);
}
.card h3{ margin:0 0 6px; font-size: 16px; }
.card p{ margin:0; color: var(--muted); line-height:1.55; font-size: 14px; }
.card--cta{ background: linear-gradient(135deg, rgba(31,107,69,.12), rgba(140,192,124,.14)); }

.gallery{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 12px;
}
.gallery__item{
  margin:0; border-radius: 18px; overflow:hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.75);
}
.gallery__item img{ width:100%; height: 170px; object-fit: cover; }
.gallery__item figcaption{ padding: 10px 12px; font-weight: 800; font-size: 13px; color: var(--text); }
.gallery__item:nth-child(1){ grid-column: 1 / 3; }
.gallery__item:nth-child(2){ grid-column: 3 / 5; }
.gallery__item:nth-child(3){ grid-column: 5 / 7; }
.gallery__item:nth-child(4){ grid-column: 1 / 3; }
.gallery__item:nth-child(5){ grid-column: 3 / 5; }
.gallery__item:nth-child(6){ grid-column: 5 / 7; }

.locations{ grid-template-columns: repeat(3, minmax(0,1fr)); }
.location{ padding: 16px; border-radius: var(--radius); background: rgba(255,255,255,.75); border: 1px solid var(--line); }
.location h3{ margin:0 0 6px; }
.location p{ margin:0; color: var(--muted); }

.steps{
  list-style:none; padding:0; margin: 0;
  display:grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.steps li{
  display:flex; gap: 12px; padding: 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.75);
  border: 1px solid var(--line);
}
.step__num{
  width: 34px; height: 34px; border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(31,107,69,.12);
  border: 1px solid rgba(31,107,69,.18);
  color: var(--brand); font-weight: 900;
}
.step__body h3{ margin:0 0 6px; font-size: 15px; }
.step__body p{ margin:0; color: var(--muted); font-size: 14px; line-height:1.55; }

.cta-strip{
  margin-top: 18px; padding: 16px 16px; border-radius: 22px;
  background: linear-gradient(135deg, rgba(31,107,69,.14), rgba(140,192,124,.18));
  border: 1px solid rgba(31,107,69,.16);
  display:flex; align-items:center; justify-content:space-between;
  gap: 12px; flex-wrap:wrap;
}
.cta-strip h3{ margin:0 0 2px; }
.cta-strip p{ margin:0; color: var(--muted); }

.contact{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items:stretch; }
.contact__card{
  padding: 20px; border-radius: 22px;
  background: rgba(255,255,255,.80);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact__card h2{ margin:0 0 8px; }
.contact__card p{ margin:0 0 14px; color: var(--muted); }
.contact__buttons{ display:flex; gap: 10px; flex-wrap:wrap; margin-bottom: 12px; }
.contact__meta p{ margin: 0 0 6px; color: var(--muted); }
.contact__aside{ padding: 20px; border-radius: 22px; background: rgba(255,255,255,.65); border: 1px solid var(--line); }
.quote{ margin-bottom: 14px; }
.quote__text{ margin:0 0 6px; font-weight: 900; font-size: 18px; }
.quote__sub{ margin:0; color: var(--muted); }
.mini-gallery{ display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.mini-gallery img{
  border-radius: 18px; height: 150px; object-fit: cover;
  border: 1px solid var(--line); background:#fff;
}

.footer{ padding: 26px 0 16px; }
.footer__grid{
  display:grid; grid-template-columns: 1.2fr .8fr 1fr;
  gap: 12px; align-items:center; padding-top: 8px;
}
.footer__brand{ display:flex; gap: 10px; align-items:center; }
.footer__logo{ width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); background:#fff; }
.footer__links{ display:flex; gap: 14px; justify-content:center; flex-wrap:wrap; }
.footer__links a{ color: var(--muted); font-weight: 700; }
.footer__links a:hover{ color: var(--text); }
.footer__cta{ display:flex; gap: 10px; justify-content:flex-end; flex-wrap:wrap; }
.footer__bottom{
  padding-top: 12px; border-top: 1px solid var(--line);
  margin-top: 14px; color: var(--muted); font-size: 13px;
}
.muted{ color: var(--muted); }

@media (max-width: 920px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__media{ order: -1; }
  .cards{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .locations{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .steps{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; text-align:center; }
  .footer__links{ justify-content:center; }
  .footer__cta{ justify-content:center; }
}
@media (max-width: 720px){
  .menu, .nav__cta{ display:none; }
  .burger{ display:inline-flex; }
  .gallery{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery__item:nth-child(n){ grid-column: auto; }
  .cards{ grid-template-columns: 1fr; }
  .locations{ grid-template-columns: 1fr; }
  .hero__badges{ grid-template-columns: 1fr; }
}
