
:root{
  --white:#ffffff;
  --text:#1e1a17;
  --muted:#6e6258;
  --gold:#b8742a;
  --gold-dark:#8d5418;
  --soft:#f8f3ee;
  --line:#eadfd4;
  --shadow:0 16px 40px rgba(79,49,20,.10);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:var(--white);
  color:var(--text);
  line-height:1.6;
}
img{max-width:100%;display:block}
.container{width:min(1120px, calc(100% - 32px));margin:0 auto}
.header{
  position:sticky;
  top:0;
  z-index:10;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid #eee;
  backdrop-filter:blur(8px);
}
.nav{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.logo-wrap{display:flex;align-items:center;gap:14px}
.logo{
  width:52px;height:52px;border-radius:50%;
  display:grid;place-items:center;
  color:#fff;font-weight:700;
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  box-shadow:var(--shadow);
}
h1{margin:0;font-size:1rem;letter-spacing:.06em}
.header p{margin:2px 0 0;color:var(--muted)}
.hero{
  padding:56px 0;
  background:linear-gradient(180deg,#fff 0%, #fcfaf8 100%);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:34px;
  align-items:center;
}
.tag{
  display:inline-block;
  color:var(--gold-dark);
  font-size:.78rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:12px;
}
h2{
  font-size:clamp(2rem,4vw,4rem);
  line-height:1.06;
  margin:0 0 18px;
}
.hero-text p{margin:0 0 22px;color:var(--muted);font-size:1.05rem}
.actions,.nav-actions,.cta-buttons{display:flex;gap:14px;flex-wrap:wrap}
.actions{margin-bottom:24px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:48px;padding:0 22px;border-radius:999px;
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  color:#fff;font-weight:700;text-decoration:none;border:none;
  box-shadow:var(--shadow);
}
.btn-light{
  background:#fff;color:var(--gold-dark);border:1px solid var(--line);box-shadow:none;
}
.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.card,.service,.panel,.cta,.hero-image{
  background:#fff;border:1px solid var(--line);border-radius:24px;
  box-shadow:var(--shadow);
}
.card{padding:18px}
.card strong{display:block;margin-bottom:6px}
.card span{color:var(--muted)}
.hero-image{padding:16px}
.hero-image img{border-radius:18px;width:100%;height:auto}
.section{padding:24px 0 72px}
.alt{background:var(--soft)}
.section-title{margin-bottom:22px}
h3{font-size:clamp(1.7rem,2.5vw,2.4rem);margin:0}
.panel{padding:28px}
.panel p{margin:0;font-size:1.05rem}
.services{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.service{padding:28px 24px;min-height:210px;display:flex;flex-direction:column;justify-content:center}
.num{
  width:58px;height:58px;border-radius:50%;
  display:grid;place-items:center;color:#fff;font-weight:700;
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  margin-bottom:18px;
}
.service h4{margin:0;font-size:1.25rem}
.cta{
  padding:32px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:24px;
  align-items:center;
}
.footer{
  border-top:1px solid #eee;
  padding:28px 0 38px;
  background:#fff;
}
.footer-grid{display:flex;justify-content:space-between;gap:16px}
.footer p{margin:6px 0 0;color:var(--muted)}
.footer-right{display:flex;flex-direction:column;gap:8px;text-align:right;color:var(--muted)}

.reveal{opacity:0;transform:translateY(18px);transition:all .6s ease}
.reveal.show{opacity:1;transform:none}

@media (max-width: 920px){
  .hero-grid,.services,.cta{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr}
  .footer-grid{flex-direction:column}
  .footer-right{text-align:left}
  .cta-buttons{justify-content:flex-start}
}
@media (max-width:640px){
  .nav{padding:14px 0;align-items:flex-start;flex-direction:column}
}
