
:root{
  --black:#070707;
  --gold:#d4af37;
  --gold-deep:#b98f1d;
  --cream:#f5f0e4;
  --white:#ffffff;
  --text:#1d1d1f;
  --muted:#6c6c72;
  --panel:#111214;
  --line:rgba(212,175,55,.35);
  --shadow:0 20px 50px rgba(0,0,0,.18);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Montserrat', Arial, sans-serif;
  color:var(--text);
  background:#fbfbfb;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.wrap{width:min(1180px,92%);margin:0 auto}

.topbar{
  position:sticky; top:0; z-index:20;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid #ece8dc;
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:20px; min-height:78px;
}
.mini-brand{display:flex;align-items:center;gap:12px;font-weight:700}
.mini-brand img{width:44px;height:44px;border-radius:50%}
.topbar nav{display:flex;gap:26px;color:#444;font-size:14px}
.topbar nav a:hover{color:var(--gold-deep)}
.call-link{
  font-weight:800; color:var(--gold-deep); border:1px solid var(--line);
  padding:12px 18px; border-radius:999px; white-space:nowrap;
}

.hero{
  display:grid;
  grid-template-columns: 0.95fr 1.55fr;
  gap:0;
  margin-top:34px;
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:var(--white);
}
.hero-card{
  background:linear-gradient(180deg,#0b0b0d 0%, #121316 100%);
  color:var(--white);
  padding:42px 38px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:620px;
}
.hero-logo{
  width:132px;height:132px;object-fit:cover;border-radius:50%;
  margin-bottom:16px;
}
.gold-line{
  width:96px;height:4px;background:var(--gold);border-radius:999px;margin:8px 0 22px;
}
.hero-card h1{
  margin:0 0 10px;
  font-size:clamp(34px,4vw,58px);
  line-height:.98;
  font-weight:800;
  letter-spacing:.04em;
}
.hero-card h2{
  margin:0;
  font-size:clamp(18px,2vw,28px);
  line-height:1.25;
  font-weight:600;
  letter-spacing:.06em;
}
.tagline{
  margin:28px 0 10px;
  font-size:15px;
  color:#f3d98a;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.hero-copy{
  margin:8px 0 28px;
  color:#d9dbe1;
  font-size:17px;
  line-height:1.7;
  max-width:34ch;
}
.hero-actions{
  display:flex; flex-direction:column; gap:12px; align-items:flex-start;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:15px 24px; border-radius:999px;
  font-weight:800; letter-spacing:.02em;
}
.btn-gold{background:var(--gold); color:var(--black)}
.btn-dark{background:var(--black); color:var(--white)}
.hero-phone{
  font-size:30px; font-weight:800; letter-spacing:.01em;
}
.hero-photo img{
  width:100%; height:100%; object-fit:cover; min-height:620px;
}

.services{padding:72px 0 30px}
.section-heading{
  display:flex; flex-direction:column; gap:8px; margin-bottom:24px;
}
.section-heading span,
.eyebrow{
  color:var(--gold-deep);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.09em;
  font-size:12px;
}
.section-heading h3, .about h3, .cta h3{
  margin:0;
  font-size:clamp(28px,3vw,42px);
  line-height:1.12;
}
.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.service-card{
  padding:28px 24px 30px;
  min-height:250px;
  display:flex;
  flex-direction:column;
}
.service-number{
  font-family:'Playfair Display', serif;
  font-size:36px;
  margin-bottom:12px;
}
.service-card h4{
  margin:0 0 12px;
  font-size:24px;
  line-height:1.1;
}
.service-card p{
  margin:0;
  font-size:15px;
  line-height:1.65;
}
.service-card.dark{background:var(--black); color:var(--white)}
.service-card.dark .service-number{color:var(--gold)}
.service-card.light{background:#f2ece0}
.service-card.light .service-number{color:var(--gold-deep)}
.service-card.gold{background:var(--gold); color:#111}
.service-card.gold .service-number{color:#fff8de}
.service-card.cream{background:var(--cream)}
.service-card.cream .service-number{color:var(--gold-deep)}

.about{
  padding:48px 0 24px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:32px;
  align-items:start;
}
.about-text p{
  color:#444;
  line-height:1.8;
  font-size:17px;
}
.about-box{
  background:#fff;
  border:1px solid #eee8d5;
  border-radius:24px;
  padding:28px;
  box-shadow:var(--shadow);
}
.about-stat{
  padding:18px 0;
  border-bottom:1px solid #eee8d5;
}
.about-stat:last-child{border-bottom:none}
.about-stat strong{
  display:block;
  color:var(--gold-deep);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:8px;
}
.about-stat span{
  font-size:22px;
  line-height:1.35;
  font-weight:700;
}

.cta{
  padding:54px 0 80px;
}
.cta-inner{
  background:linear-gradient(135deg, #f1cc63 0%, #d4af37 55%, #b88a12 100%);
  border-radius:28px;
  padding:34px 38px;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:24px;
  align-items:center;
  box-shadow:var(--shadow);
}
.cta p{max-width:38ch}
.cta-card{
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.3);
  border-radius:24px;
  padding:28px;
  text-align:center;
}
.cta-phone{
  font-size:clamp(30px,4vw,52px);
  font-weight:800;
  line-height:1;
  margin-bottom:18px;
  color:#111;
}

footer{
  background:#090909;
  color:#fff;
  padding:18px 0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  font-size:13px;
  color:#d7d7d9;
}

@media (max-width: 980px){
  .hero{grid-template-columns:1fr}
  .hero-card{min-height:auto}
  .hero-photo img{min-height:360px}
  .service-grid{grid-template-columns:1fr 1fr}
  .about, .cta-inner{grid-template-columns:1fr}
}
@media (max-width: 700px){
  .topbar-inner{flex-wrap:wrap;padding:14px 0}
  .topbar nav{order:3;width:100%;justify-content:center}
  .call-link{margin-left:auto}
  .hero-card{padding:30px 24px}
  .hero-phone{font-size:26px}
  .service-grid{grid-template-columns:1fr}
  .footer-inner{flex-direction:column}
}


.request{padding:28px 0 10px}
.request-intro{margin:0;color:#444;max-width:60ch;line-height:1.7}
.steps-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:24px}
.step-card{background:#fff;border:1px solid #eee8d5;border-radius:22px;padding:24px;box-shadow:var(--shadow)}
.step-num{width:44px;height:44px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;background:#0d2f67;color:#fff;font-weight:800;font-size:22px;margin-bottom:14px}
.step-card h4{margin:0 0 10px;font-size:22px;line-height:1.2}
.step-card p{margin:0;color:#444;line-height:1.7;font-size:15px}
.contact-method{display:flex;flex-direction:column;gap:6px;padding:10px 0;color:#111}
.contact-method strong{font-size:12px;text-transform:uppercase;letter-spacing:.08em;color:var(--gold-deep)}
.contact-method a{font-size:28px;font-weight:800;word-break:break-word}
.cta-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px;justify-content:center}
.btn-outline-dark{background:#fff;color:#111;border:2px solid rgba(17,17,17,.18)}
@media (max-width: 980px){.steps-grid{grid-template-columns:1fr 1fr}}
@media (max-width: 700px){.steps-grid{grid-template-columns:1fr}.contact-method a{font-size:22px}}


.hero-badges{display:flex;flex-wrap:wrap;gap:10px;margin-top:20px}
.hero-badges span{display:inline-flex;align-items:center;padding:10px 14px;border-radius:999px;background:rgba(255,255,255,.08);border:1px solid rgba(212,175,55,.28);color:#f5f0e4;font-size:13px;font-weight:700;letter-spacing:.03em}
.benefits{padding:8px 0 28px}
.benefits-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px}
.benefit-card{background:linear-gradient(180deg,#0d0d0f 0%, #141519 100%);color:#fff;border-radius:26px;padding:30px 28px;box-shadow:var(--shadow)}
.benefit-card.alt{background:linear-gradient(135deg,#f5f0e4 0%, #f0deb0 100%);color:#111}
.benefit-card h3{margin:8px 0 10px;font-size:30px;line-height:1.1}
.benefit-card p{margin:0;line-height:1.75;font-size:16px;color:inherit;max-width:42ch}
@media (max-width: 980px){.benefits-grid{grid-template-columns:1fr}}


.partner-strip{
  margin-top:18px;
  padding:14px 16px;
  border-radius:14px;
  background:linear-gradient(135deg,rgba(212,175,55,.16),rgba(255,255,255,.06));
  border:1px solid rgba(212,175,55,.38);
  color:#fff;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  font-size:14px;
}
.partner-label{
  color:#f3d98a;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-right:4px;
}
.partner-dot{color:#d4af37}
