
:root{
  --bg:#f1ebe4;
  --panel:#ffffff;
  --text:#4b3721;
  --muted:#7c6b5c;
  --line:rgba(89,67,48,.12);
  --gold:#c8ab7e;
  --gold-deep:#9d7f56;
  --shadow:0 20px 44px rgba(79,57,36,.08);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:linear-gradient(180deg,#f6f2ed 0%, #f3ece3 45%, #efe7dd 100%);
  color:var(--text);
}
a{color:inherit;text-decoration:none}
.container{
  width:min(1180px, calc(100% - 28px));
  margin:0 auto;
}
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter:blur(10px);
  background:rgba(251,247,241,.9);
  border-bottom:1px solid var(--line);
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:18px 0;
  flex-wrap:wrap;
}
.brand-logo{
  width:min(500px, 78vw);
  max-height:150px;
  object-fit:contain;
  display:block;
}
.nav-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:15px;
}
.nav-links a:hover{color:var(--text)}
.lang-toggle{
  border:1px solid rgba(184,144,84,.35);
  background:#fff9f0;
  color:var(--text);
  border-radius:999px;
  padding:11px 16px;
  font-weight:700;
  cursor:pointer;
}
.hero{
  padding:56px 0 36px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:28px;
  align-items:center;
}
.eyebrow,.section-kicker{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(200,171,126,.12);
  color:var(--gold-deep);
  border:1px solid rgba(200,171,126,.2);
  font-weight:700;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.hero h1{
  margin:18px 0 14px;
  font-size:clamp(40px,6vw,72px);
  letter-spacing:-.06em;
  line-height:.96;
}
.hero-text{
  font-size:18px;
  line-height:1.75;
  color:var(--muted);
  max-width:700px;
}
.hero-actions{
  margin-top:26px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.btn{
  display:inline-block;
  padding:15px 20px;
  border-radius:16px;
  font-weight:800;
  border:1px solid transparent;
}
.btn-primary{
  background:linear-gradient(180deg,#cfb183,#b38d60);
  color:white;
  box-shadow:0 14px 28px rgba(171,131,72,.18);
}
.btn-secondary{
  background:rgba(255,250,242,.8);
  border-color:var(--line);
}
.hero-contact{
  margin-top:28px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
.hero-contact div,.contact-card,.logo-panel,.card,.price-card,.about-box{
  background:rgba(255,255,255,.84);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.hero-contact div{
  border-radius:18px;
  padding:16px 18px;
}
.label,.contact-label{
  display:block;
  color:var(--muted);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.09em;
  margin-bottom:8px;
}
.logo-panel{
  border-radius:30px;
  padding:34px;
  min-height:430px;
  display:grid;
  place-items:center;
}
.hero-logo{
  width:min(100%, 760px);
  max-width:100%;
  object-fit:contain;
  display:block;
}
.section{
  padding:38px 0 24px;
}
.alt{
  background:linear-gradient(180deg,rgba(255,248,236,.72),rgba(255,246,232,.42));
  border-top:1px solid rgba(89,67,48,.07);
  border-bottom:1px solid rgba(89,67,48,.07);
}
.section-head{
  text-align:center;
  max-width:800px;
  margin:0 auto 28px;
}
.section-head h2,.contact-grid h2,.about-grid h2{
  margin:16px 0 10px;
  font-size:clamp(30px,4vw,48px);
  line-height:1.02;
  letter-spacing:-.05em;
}
.section-head p,.contact-grid p,.about-grid p,.footer-wrap p{
  color:var(--muted);
  line-height:1.7;
}
.cards{
  display:grid;
  gap:18px;
}
.cards.three{
  grid-template-columns:repeat(3,1fr);
}
.card,.price-card{
  border-radius:24px;
  padding:24px;
}
.card h3,.price-card .price-name{
  margin:0 0 10px;
  font-size:22px;
  letter-spacing:-.03em;
}
.card p,.price-card li{
  color:var(--muted);
  line-height:1.7;
}
.price-card{
  position:relative;
}
.featured{
  background:linear-gradient(180deg,#fff9ef,#f9efde);
  transform:translateY(-4px);
}
.badge{
  position:absolute;
  top:16px;
  right:16px;
  background:linear-gradient(180deg,#cfb183,#b38d60);
  color:white;
  font-size:12px;
  font-weight:800;
  padding:8px 10px;
  border-radius:999px;
}
.price-amount{
  font-size:34px;
  font-weight:800;
  margin-bottom:16px;
}
.price-amount span{
  font-size:16px;
  font-weight:600;
  color:var(--muted);
}
.price-card ul{
  padding-left:18px;
  margin:0;
}
.about-grid,.contact-grid{
  display:grid;
  grid-template-columns:1fr .9fr;
  gap:24px;
  align-items:center;
}
.about-box{
  border-radius:28px;
  padding:34px;
  min-height:220px;
  display:grid;
  place-items:center;
}
.quote{
  font-size:32px;
  line-height:1.15;
  letter-spacing:-.04em;
  text-align:center;
  color:var(--gold-deep);
  font-weight:800;
}
.contact-section{
  padding-bottom:56px;
}
.contact-card{
  border-radius:28px;
  padding:28px;
}
.contact-item + .contact-item{
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid var(--line);
}
.site-footer{
  border-top:1px solid var(--line);
  background:rgba(250,241,228,.82);
}
.footer-wrap{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  padding:22px 0 36px;
  flex-wrap:wrap;
}
.footer-contact{
  display:flex;
  flex-direction:column;
  gap:10px;
}
@media (max-width: 980px){
  .hero-grid,.about-grid,.contact-grid,.cards.three{
    grid-template-columns:1fr;
  }
  .hero-contact{
    grid-template-columns:1fr;
  }
}
@media (max-width: 700px){
  .brand-logo{width:min(350px, 84vw); max-height:105px;}
  .hero{padding-top:42px}
  .hero-actions{flex-direction:column}
  .btn{text-align:center;width:100%}
  .quote{font-size:26px}
  .logo-panel{min-height:300px}
}
