:root {
  --bg: #070707;
  --panel: #111111;
  --panel-2: #171717;
  --text: #f5f5f5;
  --muted: #bdbdbd;
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.16);
  --line: rgba(255,255,255,0.09);
  --shadow: 0 18px 45px rgba(0,0,0,0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(212,175,55,0.12), transparent 28%),
    linear-gradient(180deg, #0b0b0b 0%, #050505 100%);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(7,7,7,0.85);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.83rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-weight: 600;
}

.nav-links a:hover { color: var(--text); }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0c85d, var(--gold));
  color: #111;
  font-weight: 800;
  padding: 14px 22px;
  box-shadow: 0 10px 26px rgba(212,175,55,0.25);
}

.btn:hover { transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(212,175,55,0.4);
  box-shadow: none;
}
.btn-small { padding: 12px 18px; }

.hero { padding: 64px 0 36px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  color: #efd487;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.76rem;
}

.hero h1, .section-head h2, .about-grid h2, .quote-box h2, .contact-grid h2 {
  line-height: 1.02;
  margin: 0 0 14px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  max-width: 10ch;
}
.hero h1 span { color: var(--gold); }
.hero-text, .section-head p, .about-grid p, .contact-grid p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0;
}
.hero-points {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
  color: #e5e5e5;
}
.hero-points li::before,
.check-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 800;
  margin-right: 10px;
}
.social-proof-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.social-proof-bar span,
.review-bullets div {
  border: 1px solid rgba(212,175,55,0.18);
  background: var(--gold-soft);
  color: #f3df9d;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
}

.hero-card, .service-card, .testimonial-card, .contact-form, .review-summary {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.hero-card { padding: 18px; overflow: hidden; }
.card-glow {
  position: absolute;
  inset: -30% auto auto -10%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.22), transparent 62%);
  pointer-events: none;
}
.quote-box { padding: 24px; background: rgba(14,14,14,0.9); border-radius: 22px; }
.mini-label {
  color: #f1d277;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 22px 0;
}
.stats div {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 12px;
}
.stats strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 4px;
}
.stats span {
  color: var(--muted);
  font-size: 0.88rem;
}
.hero-card-btn { width: 100%; }

.section { padding: 80px 0; }
.section-dark {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.promo-strip { padding: 0 0 20px; }
.promo-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(212,175,55,0.2);
  background: linear-gradient(90deg, rgba(212,175,55,0.12), rgba(255,255,255,0.03));
  border-radius: 22px;
  padding: 18px 22px;
}
.promo-strip-inner p { margin: 0; color: #f1f1f1; }
.section-head {
  max-width: 720px;
  margin-bottom: 30px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card, .testimonial-card { padding: 24px; }
.service-card h3, .testimonial-card p { margin-top: 0; }
.service-card p, .reviewer { color: var(--muted); }
.about-grid, .contact-grid, .review-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.checklist {
  display: grid;
  gap: 14px;
}
.check-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px 20px;
  color: #efefef;
  font-weight: 600;
}

.reviews-section { background: linear-gradient(180deg, rgba(212,175,55,0.03), transparent 25%); }
.review-summary {
  padding: 24px;
  margin-bottom: 22px;
}
.review-score {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}
.big-score {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
}
.stars {
  color: #f0c85d;
  letter-spacing: 0.1em;
  font-size: 1.1rem;
}
.score-note { color: var(--muted); }
.review-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.review-card .stars { margin-bottom: 14px; }
.reviewer { display: inline-block; margin-top: 12px; font-weight: 700; }

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.contact-list a {
  color: #f3df9d;
  font-weight: 700;
  word-break: break-word;
}
.contact-form {
  padding: 24px;
  display: grid;
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: #efefef;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  background: #101010;
  color: #fff;
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid rgba(212,175,55,0.45);
  border-color: rgba(212,175,55,0.45);
}
.form-message {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 36px;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

@media (max-width: 920px) {
  .nav-links { display: none; }
  .hero-grid,
  .cards,
  .about-grid,
  .contact-grid,
  .review-summary {
    grid-template-columns: 1fr;
  }
  .stats,
  .review-bullets {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-wrap { min-height: 74px; }
  .brand-logo { width: 50px; height: 50px; }
  .brand-tag { display: none; }
  .hero { padding-top: 34px; }
  .section { padding: 64px 0; }
  .promo-strip-inner,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn, .btn-secondary, .btn-small { width: 100%; }
  .hero-actions { display: grid; }
}
