
:root{
  --green:#405b36;
  --green-2:#22351e;
  --cream:#fff7ea;
  --paper:#fffdf7;
  --rose:#f1b9bd;
  --berry:#bb2431;
  --gold:#c9924d;
  --text:#25301f;
  --muted:#6f725f;
  --line:rgba(64,91,54,.16);
  --shadow:0 24px 70px rgba(34,53,30,.16);
  --radius:30px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 10% 5%, rgba(241,185,189,.35), transparent 26%),
    radial-gradient(circle at 90% 12%, rgba(187,36,49,.12), transparent 20%),
    linear-gradient(180deg,#fffaf0 0%,#f3eadc 100%);
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1200px,calc(100% - 32px));margin:0 auto}
.topbar{
  background:var(--green-2);
  color:#fff;
  font-weight:700;
  font-size:.92rem;
}
.topbar .container{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:10px 0;
  flex-wrap:wrap;
}
header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,247,234,.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
}
.nav{
  min-height:86px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:1.45rem;
  font-weight:950;
  color:var(--green-2);
}
.brand img{
  width:68px;height:68px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid var(--rose);
  background:var(--green);
}
.brand small{
  display:block;
  font-size:.75rem;
  color:var(--muted);
  font-weight:800;
  margin-top:3px;
}
.links{
  display:flex;
  align-items:center;
  gap:24px;
  font-weight:850;
  color:var(--green-2);
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border-radius:999px;
  font-weight:950;
  border:1px solid transparent;
  transition:.22s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  background:linear-gradient(135deg,var(--berry),#dc5962);
  color:#fff;
  box-shadow:0 16px 36px rgba(187,36,49,.25);
}
.btn-soft{
  background:#fff;
  color:var(--green-2);
  border-color:var(--line);
}
.hero{padding:44px 0 34px}
.hero-wrap{
  display:grid;
  grid-template-columns:1.03fr .97fr;
  min-height:690px;
  overflow:hidden;
  border-radius:42px;
  background:var(--paper);
  box-shadow:var(--shadow);
  border:1px solid var(--line);
}
.hero-copy{
  padding:64px 52px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  background:
    radial-gradient(circle at 20% 10%,rgba(241,185,189,.34),transparent 24%),
    linear-gradient(135deg,#fff8ed,#fff);
}
.eyebrow{
  width:max-content;
  max-width:100%;
  background:rgba(64,91,54,.10);
  color:var(--green);
  padding:10px 14px;
  border-radius:999px;
  font-size:.78rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:950;
}
h1{
  margin:18px 0 18px;
  font-size:clamp(3.1rem,6vw,6rem);
  line-height:.92;
  letter-spacing:-.06em;
  color:var(--green-2);
}
.hero-copy p{
  font-size:1.12rem;
  line-height:1.85;
  color:var(--muted);
  margin:0 0 26px;
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.trust{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:28px;
}
.trust div{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px;
  font-weight:850;
  color:var(--green-2);
}
.hero-img{position:relative;min-height:540px}
.hero-img img{width:100%;height:100%;object-fit:cover}
.floating-card{
  position:absolute;
  left:22px;right:22px;bottom:22px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.7);
  border-radius:24px;
  padding:18px;
  box-shadow:0 18px 44px rgba(0,0,0,.15);
}
.floating-card strong{display:block;font-size:1.2rem;color:var(--green-2)}
.floating-card span{display:block;color:var(--muted);line-height:1.65;margin-top:6px}
.section{padding:58px 0}
.section-head{
  margin-bottom:24px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:end;
}
.section-head h2{
  margin:0;
  font-size:clamp(2rem,4vw,3.5rem);
  line-height:1;
  letter-spacing:-.04em;
  color:var(--green-2);
}
.section-head p{
  max-width:650px;
  color:var(--muted);
  line-height:1.8;
  margin:8px 0 0;
}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
.card{
  background:rgba(255,255,255,.94);
  border:1px solid var(--line);
  border-radius:28px;
  padding:26px;
  box-shadow:0 18px 44px rgba(34,53,30,.08);
}
.card .icon{font-size:2.1rem;margin-bottom:14px}
.card h3{margin:0 0 10px;font-size:1.32rem;color:var(--green-2)}
.card p,.card li{color:var(--muted);line-height:1.75}
.card ul{margin:14px 0 0 18px;padding:0}
.gallery{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  grid-auto-rows:280px;
  gap:14px;
}
.gallery img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:24px;
  box-shadow:0 16px 34px rgba(34,53,30,.13);
}
.gallery img:first-child{grid-row:span 2}
.timeline{display:grid;gap:14px}
.time-item{
  display:grid;
  grid-template-columns:112px 1fr;
  gap:18px;
  align-items:start;
  padding:18px;
  border-radius:22px;
  background:#fff;
  border:1px solid var(--line);
}
.time{font-weight:950;color:var(--berry)}
.cta{
  border-radius:36px;
  padding:42px;
  background:
    radial-gradient(circle at 85% 15%, rgba(241,185,189,.22), transparent 22%),
    linear-gradient(135deg,var(--green-2),var(--green));
  color:#fff;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:24px;
  box-shadow:var(--shadow);
}
.cta h2{font-size:2.8rem;line-height:1;margin:0 0 14px}
.cta p{color:rgba(255,255,255,.82);line-height:1.85}
.info{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  border-radius:18px;
  padding:16px;
  margin:10px 0;
}
.form{
  display:grid;
  gap:12px;
  background:#fff;
  color:var(--text);
}
.input,.textarea{
  width:100%;
  padding:15px 16px;
  border-radius:16px;
  border:1px solid var(--line);
  font:inherit;
}
.textarea{min-height:120px;resize:vertical}
footer{
  margin-top:40px;
  background:var(--green-2);
  color:#fff;
  padding:34px 0;
}
footer .container{display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap}
footer p{color:rgba(255,255,255,.72)}
@media(max-width:900px){
  .hero-wrap,.grid-2,.grid-3,.cta{grid-template-columns:1fr}
  .links{display:none}
  .hero-copy{padding:36px 24px}
  .trust{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr;grid-auto-rows:260px}
  .gallery img:first-child{grid-row:auto}
  .time-item{grid-template-columns:1fr}
}
