
:root{
  --bg:#f6f3ed;
  --paper:#fffaf2;
  --ink:#1f2523;
  --muted:#66706b;
  --accent:#9a6a3a;
  --accent-dark:#4d3320;
  --line:rgba(31,37,35,.12);
  --shadow:0 24px 70px rgba(34,28,21,.12);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:Inter, Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.75;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit}
.header{
  position:fixed;
  top:0;left:0;width:100%;
  z-index:1000;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px clamp(18px,4vw,56px);
  background:rgba(246,243,237,.84);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
}
.logo{
  font-weight:900;
  letter-spacing:-.04em;
  font-size:1.15rem;
}
.nav{
  display:flex;
  gap:22px;
  align-items:center;
}
.nav a{
  text-decoration:none;
  font-weight:700;
  font-size:.94rem;
  color:var(--muted);
}
.nav a:hover{color:var(--accent-dark)}
.burger{
  display:none;
  border:0;
  background:var(--ink);
  color:#fff;
  width:44px;
  height:44px;
  border-radius:14px;
  font-size:24px;
}
.hero{
  min-height:100vh;
  background:
    linear-gradient(120deg, rgba(0,0,0,.62), rgba(0,0,0,.18)),
    url('https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  display:flex;
  align-items:center;
  padding:120px clamp(20px,6vw,90px) 70px;
  color:#fff;
}
.hero-inner{max-width:980px}
.eyebrow{
  display:inline-flex;
  padding:8px 14px;
  border:1px solid rgba(255,255,255,.35);
  border-radius:999px;
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(8px);
  font-weight:800;
  margin-bottom:24px;
}
.hero h1{
  font-size:clamp(2.45rem,6vw,6.6rem);
  line-height:.94;
  letter-spacing:-.075em;
  max-width:1050px;
}
.hero p{
  max-width:760px;
  margin-top:24px;
  font-size:clamp(1.05rem,2vw,1.35rem);
  color:rgba(255,255,255,.88);
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:34px}
.btn{
  display:inline-flex;
  text-decoration:none;
  padding:14px 22px;
  border-radius:999px;
  background:#fff;
  color:#151515;
  font-weight:900;
}
.btn.alt{
  background:rgba(255,255,255,.16);
  color:#fff;
  border:1px solid rgba(255,255,255,.35);
}
.section{
  padding:86px clamp(20px,5vw,72px);
}
.wrap{max-width:1180px;margin:0 auto}
.grid-2{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:44px;
  align-items:center;
}
h2{
  font-size:clamp(2rem,4vw,3.7rem);
  line-height:1.03;
  letter-spacing:-.055em;
  margin-bottom:22px;
}
h3{font-size:1.35rem;margin-bottom:8px}
.lead{font-size:1.15rem;color:var(--muted);max-width:820px}
.panel{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:34px;
  padding:34px;
  box-shadow:var(--shadow);
}
.list{
  display:grid;
  gap:16px;
  margin-top:24px;
}
.item{
  border-left:4px solid var(--accent);
  padding-left:18px;
}
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:34px;
}
.card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 14px 38px rgba(31,37,35,.08);
}
.card img{height:220px;width:100%;object-fit:cover}
.card-body{padding:24px}
.band{
  background:var(--ink);
  color:#fff;
}
.band .lead{color:rgba(255,255,255,.72)}
.stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:34px;
}
.stat{
  padding:24px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:24px;
  background:rgba(255,255,255,.06);
}
.stat strong{display:block;font-size:2.2rem;line-height:1}
.article{
  max-width:940px;
  margin:0 auto;
  background:var(--paper);
  padding:clamp(24px,5vw,56px);
  border-radius:34px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.article h1{
  font-size:clamp(2.2rem,5vw,4.2rem);
  line-height:1;
  letter-spacing:-.06em;
  margin-bottom:20px;
}
.article h2{font-size:2rem;margin-top:34px}
.article p,.article li{color:#4d5651;margin-top:12px}
.article ul{padding-left:22px}
.form{
  display:grid;
  gap:14px;
  margin-top:20px;
}
input,textarea{
  width:100%;
  padding:15px 16px;
  border-radius:16px;
  border:1px solid var(--line);
  background:#fff;
  font:inherit;
}
textarea{min-height:130px;resize:vertical}
button.submit{
  border:0;
  padding:15px 20px;
  border-radius:999px;
  background:var(--ink);
  color:#fff;
  font-weight:900;
}
.footer{
  padding:50px clamp(20px,5vw,72px);
  background:#141817;
  color:#fff;
}
.footer-grid{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:30px;
}
.footer a{display:inline-block;color:rgba(255,255,255,.75);margin-right:16px;text-decoration:none}
.small{color:var(--muted);font-size:.94rem}
.footer .small{color:rgba(255,255,255,.62)}
@media(max-width:860px){
  .burger{display:block}
  .nav{
    display:none;
    position:absolute;
    top:77px;
    left:14px;
    right:14px;
    flex-direction:column;
    align-items:flex-start;
    background:var(--paper);
    padding:20px;
    border-radius:22px;
    box-shadow:var(--shadow);
  }
  .nav.open{display:flex}
  .grid-2,.cards,.stats,.footer-grid{grid-template-columns:1fr}
  .section{padding:64px 18px}
  .panel{padding:24px;border-radius:26px}
  .hero{padding-left:20px;padding-right:20px}
}

.cookie-banner{position:fixed;left:20px;right:20px;bottom:20px;z-index:9999;background:#fff;border:1px solid rgba(0,0,0,.15);box-shadow:0 10px 30px rgba(0,0,0,.15);padding:16px;border-radius:14px;max-width:520px}
.cookie-inner p{margin:8px 0}
.cookie-actions{display:flex;gap:10px}
.cookie-actions button{cursor:pointer}
@media(max-width:600px){.cookie-banner{left:12px;right:12px;max-width:none}}
