:root {
  --bg: #0f1013;
  --bg-alt: #14151a;
  --surface: #1a1c21;
  --surface-2: #212329;
  --ink: #ecedf0;
  --muted: #9a9fa8;
  --border: #2b2d34;
  --primary: #fbbf24;
  --primary-dark: #f59e0b;
  --accent: #fbbf24;
  --accent-dark: #f59e0b;
  --radius: 8px;
  --radius-sm: 5px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .3), 0 2px 6px rgba(0, 0, 0, .25);
  --shadow-md: 0 16px 40px rgba(0, 0, 0, .45);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, .6);
  --maxw: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Skip link (accessibility) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--accent);
  color: #17130a;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 0 0 6px 0;
}
.skip-link:focus {
  left: 0;
  outline: 2px solid #17130a;
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #1a1205; box-shadow: 0 8px 22px rgba(251, 191, 36, .28); }
.btn-primary:hover { box-shadow: 0 12px 30px rgba(251, 191, 36, .4); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-light { background: #17181c; color: var(--accent); border: 1px solid rgba(251, 191, 36, .4); }
.btn-light:hover { background: #101114; box-shadow: var(--shadow-md); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 16, 19, .82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 8px;
  color: #17130a;
  background: linear-gradient(135deg, #3a3d45, var(--accent));
  box-shadow: 0 6px 18px rgba(251, 191, 36, .28);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 20px; letter-spacing: .5px; }
.brand-text small { color: var(--muted); font-size: 12px; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-weight: 600; color: #cbd5e1; font-size: 15px; transition: color .2s ease; }
.nav a:hover { color: var(--primary); }
.nav a.btn { color: #1a1205; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1000px 520px at 82% -10%, rgba(251, 191, 36, .14), transparent 60%),
    radial-gradient(900px 520px at 8% 8%, rgba(148, 163, 184, .10), transparent 58%),
    var(--bg);
  padding: 84px 0 72px;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, .05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(700px 400px at 50% 0%, #000, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(251, 191, 36, .12);
  border: 1px solid rgba(251, 191, 36, .25);
  padding: 7px 14px;
  border-radius: 5px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  line-height: 1.08;
  margin: 0 0 18px;
  letter-spacing: -.5px;
  background: linear-gradient(180deg, #ffffff, #c7cad1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead { font-size: 18px; color: #b3b7c0; margin: 0 0 28px; max-width: 44ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 20px; list-style: none; padding: 0; margin: 0; }
.hero-badges li { position: relative; padding-left: 24px; font-weight: 600; color: #cfd2d9; font-size: 15px; }
.hero-badges li::before {
  content: "";
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(251, 191, 36, .18);
}

.hero-visual { display: grid; place-items: center; }
.hero-card {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  max-width: 360px;
}
.hero-card-icon {
  display: grid; place-items: center;
  width: 64px; height: 64px;
  border-radius: 10px;
  color: var(--accent);
  background: rgba(251, 191, 36, .12);
  margin-bottom: 18px;
}
.hero-card h3 { margin: 0 0 8px; font-size: 20px; }
.hero-card p { margin: 0; color: var(--muted); }

/* Stats */
.stats { background: linear-gradient(135deg, #33363d, #1c1e23); color: #fff; border-block: 1px solid var(--border); }
.stats-grid {
  display: grid;
   grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 34px 24px;
  text-align: center;
}
.stat strong { display: block; font-size: 30px; font-weight: 800; color: #fff; }
.stat span { color: rgba(255, 255, 255, .75); font-size: 14px; }

/* Sections */
.section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-kicker {
  display: inline-block;
  font-size: 13px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 0 0 12px; letter-spacing: -.4px; }
.section-sub { color: var(--muted); font-size: 17px; margin: 0; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.about-grid p { color: #aeb9cf; font-size: 16.5px; }
.about-grid .btn { margin-top: 10px; }
.about-highlights { display: grid; gap: 16px; }
.highlight {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.highlight h4 { margin: 0 0 6px; font-size: 17px; }
.highlight p { margin: 0; color: var(--muted); font-size: 15px; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(251, 191, 36, .45); }
.service-icon {
  display: grid; place-items: center;
  width: 56px; height: 56px;
  border-radius: 8px;
  color: var(--accent);
  background: linear-gradient(135deg, #33363d, #23252b);
  margin-bottom: 18px;
}
.service-card h3 { margin: 0 0 14px; font-size: 20px; }
.service-card ul { margin: 0; padding: 0; list-style: none; }
.service-card li {
  position: relative;
  padding: 8px 0 8px 26px;
  color: #b7c1d6;
  border-top: 1px solid var(--border);
}
.service-card li:first-child { border-top: 0; }
.service-card li::before {
  content: "";
  position: absolute; left: 0; top: 15px;
  width: 8px; height: 8px; border-radius: 2px;
  background: var(--accent);
}

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.why-grid li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px 18px 52px;
  position: relative;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.why-grid li::before {
  content: "✓";
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 800;
  color: #0b1120; background: var(--accent);
}

/* CTA */
.cta {
  background:
    radial-gradient(600px 300px at 80% 0%, rgba(251, 191, 36, .22), transparent 60%),
    linear-gradient(135deg, #2a2c33, #17181c);
  color: #fff;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 54px 24px;
  flex-wrap: wrap;
}
.cta h2 { margin: 0 0 6px; font-size: clamp(1.5rem, 2.6vw, 2rem); }
.cta p { margin: 0; color: rgba(255, 255, 255, .88); }

/* Contacts */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-icon {
  display: grid; place-items: center;
  width: 52px; height: 52px;
  margin: 0 auto 14px;
  border-radius: 8px;
  color: var(--accent);
  background: rgba(251, 191, 36, .12);
}
.contact-card h3 { margin: 0 0 8px; font-size: 17px; }
.contact-card p { margin: 0; color: #b7c1d6; }
.contact-value { color: var(--primary); font-weight: 600; word-break: break-word; }
a.contact-card { display: block; color: inherit; text-decoration: none; }
a.contact-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.muted { color: var(--muted); font-size: 14px; }

/* Map */
.map-wrap {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  line-height: 0;
}
.map {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
  filter: grayscale(.2) contrast(1.05) brightness(.92);
}

/* Reviews */
.reviews-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
}
.reviews-badge {
  display: grid; place-items: center;
  width: 62px; height: 62px;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.reviews-stars { color: var(--accent); font-size: 20px; letter-spacing: 3px; line-height: 1; margin-bottom: 10px; }
.reviews-body h2 { margin: 0 0 8px; font-size: 22px; }
.reviews-body p { margin: 0; color: var(--muted); max-width: 60ch; }
.reviews-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

@media (max-width: 860px) {
  .reviews-card { grid-template-columns: auto 1fr; }
  .reviews-actions { grid-column: 1 / -1; justify-content: flex-start; }
}
@media (max-width: 560px) {
  .reviews-card { grid-template-columns: 1fr; }
  .reviews-actions { flex-direction: column; }
  .reviews-actions .btn { justify-content: center; }
}

/* Individual Google review cards */
.reviews-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.review-top { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  flex: none;
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(251, 191, 36, .15);
  color: var(--accent);
  font-weight: 700;
}
.review-meta { display: flex; flex-direction: column; line-height: 1.25; }
.review-name { font-weight: 700; font-size: 15px; }
.review-date { color: var(--muted); font-size: 13px; }
.review-g { margin-left: auto; flex: none; }
.review-stars { color: var(--accent); font-size: 16px; letter-spacing: 2px; line-height: 1; }
.review blockquote { margin: 0; color: var(--ink); }

@media (max-width: 860px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* Footer */
.site-footer { background: #070c17; color: #94a3b8; padding: 40px 0; border-top: 1px solid var(--border); }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.brand-footer .brand-text strong { color: #fff; }
.footer-nav { display: flex; gap: 24px; }
.footer-nav a { color: #94a3b8; font-weight: 600; }
.footer-nav a:hover { color: var(--primary); }
.copyright { width: 100%; margin: 8px 0 0; color: #5b6b86; font-size: 13px; border-top: 1px solid var(--border); padding-top: 18px; }

/* Responsive */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { justify-self: start; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contacts-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 20px 12px; }
}

@media (max-width: 680px) {
  .nav {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px 24px 24px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-140%);
    transition: transform .28s ease;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 12px 4px; border-bottom: 1px solid var(--border); }
  .nav a.btn { margin-top: 8px; border-bottom: 0; justify-content: center; }
  .nav-toggle { display: flex; }
  .services-grid, .why-grid, .contacts-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .hero { padding: 56px 0 48px; }
  .cta-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .map { height: 300px; }
}
