:root{
  --green:#2f4a36;
  --green-soft:#5b7a63;
  --gold:#c9a24b;
  --gold-dark:#b08d3a;
  --cream:#f5f0e6;
  --text:#2b2b2b;
}
*{margin:0;padding:0;box-sizing:border-box}
body{font-family:'Segoe UI',Tahoma,sans-serif;color:var(--text);line-height:1.6;background:#fff}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

/* ===== HEADER / NAV ===== */
header{background:var(--green);position:sticky;top:0;z-index:100;box-shadow:0 2px 14px rgba(0,0,0,.15)}
.nav{max-width:1180px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:14px 24px}
.logo{display:flex;align-items:center;gap:14px;color:#fff}
.logo img{width:68px;height:68px;border-radius:50%;object-fit:cover;background:var(--cream);border:2px solid var(--gold)}
.logo span{font-size:18px;line-height:1.15;display:flex;flex-direction:column}
.logo b{color:var(--gold);font-weight:700}
.menu{display:flex;gap:30px;list-style:none}
.menu a{color:#e8e3d6;font-size:16px;transition:.2s;padding-bottom:3px}
.menu a:hover{color:var(--gold)}
.menu a.active{color:var(--gold);border-bottom:2px solid var(--gold)}
.nav-cta{background:var(--gold);color:#1f3a28;padding:12px 26px;border-radius:30px;font-weight:800;transition:.2s;white-space:nowrap}
.nav-cta:hover{background:var(--gold-dark);color:#fff}
.burger{display:none;flex-direction:column;gap:5px;cursor:pointer}
.burger span{width:26px;height:3px;background:#fff;border-radius:2px}

/* ===== HERO ===== */
.hero{background:linear-gradient(rgba(47,74,54,.82),rgba(47,74,54,.82)),url('../img/hero.jpg') center/cover no-repeat,var(--green);color:#fff;text-align:center;padding:130px 24px}
.hero h1{font-size:42px;margin-bottom:18px;line-height:1.2}
.hero p{font-size:19px;max-width:680px;margin:0 auto 32px;color:#eee}

/* ===== BUTTONS ===== */
.btn{display:inline-block;background:var(--gold);color:#fff!important;padding:15px 34px;border-radius:30px;font-weight:600;font-size:16px;transition:.2s}
.btn:hover{background:var(--gold-dark);color:#fff!important;transform:translateY(-2px)}
.btn-outline{background:transparent;border:2px solid var(--gold);color:var(--gold)}
.btn-outline:hover{background:var(--gold);color:#fff}

/* ===== TRUST ===== */
.trust{background:var(--cream);padding:42px 24px}
.trust-row{max-width:900px;margin:0 auto;display:flex;justify-content:space-around;flex-wrap:wrap;gap:20px;text-align:center}
.trust-row div{display:flex;flex-direction:column}
.trust-row b{font-size:32px;color:var(--green);font-weight:800}
.trust-row span{color:var(--green-soft);font-size:15px}

/* ===== CONTAINER / SECTIONS ===== */
.container{max-width:1180px;margin:0 auto;padding:110px 24px}
.section-title{text-align:center;margin-bottom:50px}
.section-title h2{font-size:34px;color:var(--green);margin-bottom:12px}
.section-title p{color:var(--green-soft);font-size:17px}

/* ===== CARDS ===== */
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;max-width:980px;margin:0 auto}
.cards .card:nth-child(4){grid-column:1 / 2;justify-self:end}
.cards .card:nth-child(5){grid-column:3 / 4;justify-self:start}
.cards .card:nth-child(4),.cards .card:nth-child(5){width:100%;max-width:308px}
.card{background:#fff;border:1px solid #ece6d8;border-radius:16px;padding:32px 26px;text-align:center;box-shadow:0 6px 22px rgba(47,74,54,.06);transition:.25s}
.card:hover{transform:translateY(-6px);box-shadow:0 14px 34px rgba(47,74,54,.13)}
.card .ico{font-size:46px;margin-bottom:14px}
.card h3{color:var(--green);font-size:21px;margin-bottom:10px}
.card p{color:#666;font-size:15px;margin-bottom:16px}
.card .price{color:var(--gold-dark);font-weight:700;font-size:17px}

/* ===== PRICE BLOCKS ===== */
.price-block{background:#fff;border:1px solid #ece6d8;border-radius:16px;padding:30px;margin-bottom:24px;max-width:780px;box-shadow:0 6px 22px rgba(47,74,54,.06)}
.price-block h3{color:var(--green);font-size:23px;margin-bottom:18px}
.price-row{display:flex;justify-content:space-between;align-items:center;padding:12px 0;border-bottom:1px dashed #e3ddcf}
.price-row:last-child{border-bottom:none}
.price-row span{color:#555}
.price-row b{color:var(--gold-dark);font-size:17px;white-space:nowrap;padding-left:16px}
.price-row.note{justify-content:flex-start;color:var(--green-soft);font-style:italic}
.price-row.note span{color:var(--green-soft)}

/* ===== CTA BAND ===== */
.cta-band{background:var(--green);color:#fff;text-align:center;padding:80px 0}
.cta-band h2{font-size:30px;margin-bottom:12px}
.cta-band p{color:#dfe6e0;margin-bottom:26px;font-size:17px}

/* ===== REVIEWS ===== */
.reviews-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:26px}
.review{background:#fff;border:1px solid #ece6d8;border-radius:16px;padding:30px;box-shadow:0 6px 22px rgba(47,74,54,.06)}
.review .stars{color:var(--gold);font-size:20px;margin-bottom:14px}
.review p{color:#555;font-style:italic;margin-bottom:18px}
.review .author{color:var(--green);font-weight:700}
.review .date{color:#aaa;font-size:14px}

/* ===== ABOUT ===== */
.about-flex{max-width:820px;margin:0 auto}
.about-flex .txt h2{color:var(--green)}
.about-flex .txt p{margin-bottom:16px;color:#555;font-size:17px}
.team{display:flex;justify-content:center;gap:50px;flex-wrap:wrap;margin-top:60px}
.member{text-align:center}
.member .avatar{width:120px;height:120px;border-radius:50%;background:var(--cream);border:3px solid var(--gold);display:flex;align-items:center;justify-content:center;font-size:54px;margin:0 auto 16px}
.member .photo{width:160px;height:160px;border-radius:50%;object-fit:cover;object-position:center top;margin:0 auto 16px;display:block;border:4px solid var(--gold);box-shadow:0 6px 18px rgba(0,0,0,.15)}
.member h3{color:var(--green);font-size:20px}
.member span{color:var(--green-soft);font-size:15px}

/* ===== CONTACTS ===== */
.contacts-wrap{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start;padding-top:70px;padding-bottom:70px}
.contact-item{display:flex;gap:16px;align-items:flex-start;padding:18px 0;border-bottom:1px solid rgba(0,0,0,.08)}
.contact-item:last-of-type{border-bottom:none}
.contact-item .ic{font-size:24px;line-height:1;flex-shrink:0}
.contact-item h4{margin:0 0 6px;font-size:18px}
.contact-item p,.contact-item a{margin:0;font-size:16px}
.contacts-map{border-radius:18px;overflow:hidden;box-shadow:0 10px 30px rgba(0,0,0,.12);height:100%;min-height:450px}
.contacts-map iframe{display:block;width:100%;height:100%;min-height:450px;border:0}

/* ===== FOOTER ===== */
footer{background:#243a2b;color:#cdd6cf;padding:60px 24px 24px}
.footer-grid{max-width:1180px;margin:0 auto;display:grid;grid-template-columns:repeat(3,1fr);gap:30px}
.footer-grid h4{color:#fff;margin-bottom:16px;font-size:18px}
.footer-grid a{display:block;color:#cdd6cf;margin-bottom:8px;transition:.2s}
.footer-grid a:hover{color:var(--gold)}
.footer-grid p{margin-bottom:8px}
/* навигация в подвале — в строку через разделитель */
.footer-grid .foot-nav{margin-bottom:10px}
.footer-grid .foot-nav a{display:inline}
.copyright{text-align:center;margin-top:40px;padding-top:20px;border-top:1px solid #34503c;color:#8ea295;font-size:14px}

/* ===== FLOAT CALL ===== */
.float-call{position:fixed;right:24px;bottom:24px;z-index:200;width:60px;height:60px;border-radius:50%;background:var(--gold);color:#fff;font-size:26px;display:flex;align-items:center;justify-content:center;box-shadow:0 6px 18px rgba(0,0,0,.25);transition:.2s}
.float-call:hover{background:var(--gold-dark);transform:scale(1.08)}

/* ===== ADAPTIVE ===== */
@media(max-width:900px){
  .menu{display:none;position:absolute;top:100%;left:0;right:0;background:var(--green);flex-direction:column;gap:0;padding:10px 0}
  .menu.open{display:flex}
  .menu li{text-align:center}
  .menu a{display:block;padding:14px}
  .burger{display:flex}
  .nav-cta{display:none}
  .cards{grid-template-columns:repeat(2,1fr);max-width:640px}
  .cards .card:nth-child(4),.cards .card:nth-child(5){grid-column:auto;justify-self:stretch;max-width:none;width:auto}
  .contacts-wrap{grid-template-columns:1fr;gap:32px}
  .contacts-map{min-height:340px}
  .contacts-map iframe{min-height:340px}
  .footer-grid{grid-template-columns:1fr;text-align:center}
  .hero h1{font-size:32px}
}
@media(max-width:600px){
  .cards{grid-template-columns:1fr;max-width:360px}
  .container{padding:45px 20px}
  .cta-band{padding:50px 0}
  .hero{padding:70px 20px}
  .trust{padding:30px 20px}
  .cta-band h2{font-size:26px}
  .hero h1{font-size:28px}
  .section-title h2{font-size:28px}
  .trust-row b{font-size:26px}

  /* КНОПКИ HERO: отступ между ними + на всю ширину */
  .hero .btn{display:block;width:100%;text-align:center;margin:0 auto 14px}
  .hero .btn:last-child{margin-bottom:0}
}