:root {
  --ink: #17130f;
  --muted: #6d675f;
  --paper: #ffffff;
  --cream: #f6f3ee;
  --line: #ded8ce;
  --navy: #071525;
  --navy-2: #0e2034;
  --blue: #0b63f6;
  --aqua: #42d9ff;
  --gold: #c78b44;
  --shadow: 0 24px 70px rgba(7, 21, 37, .18);
  --radius: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

img, video, iframe { max-width: 100%; }
img { display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0; color: var(--muted); }
h1, h2, h3 { margin: 0; line-height: 1.02; letter-spacing: 0; }

.container { width: min(1180px, calc(100% - 44px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(222,216,206,.82);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 44px));
  min-height: 114px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand img { width: 78px; height: 78px; object-fit: contain; }
.nav-links { display: flex; justify-content: center; gap: 2.2rem; font-weight: 800; }
.nav-links a:hover, .phone:hover, .text-link:hover { color: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.phone { color: var(--gold); font-weight: 900; white-space: nowrap; font-size: 1.08rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .9rem 1.4rem;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.btn-dark { color: #fff; background: var(--navy); }
.btn-light { color: var(--navy); background: #fff; }
.btn-outline { color: #fff; border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.05); box-shadow: none; }

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,13,18,.86), rgba(6,13,18,.62) 48%, rgba(6,13,18,.36)), radial-gradient(circle at 20% 25%, rgba(11,99,246,.34), transparent 36%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 7rem 0;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  max-width: 100%;
  padding: .65rem .9rem;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 4px;
  color: #fff;
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: rgba(255,255,255,.08);
}

.trust-badge span {
  width: .65rem;
  height: .65rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 22px rgba(199,139,68,.8);
}

.hero h1 {
  max-width: 760px;
  margin-top: 1.6rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 8px 34px rgba(0,0,0,.45);
}

.accent-line {
  width: 68px;
  height: 4px;
  margin: 1.7rem 0 1.8rem;
  background: linear-gradient(90deg, var(--gold), var(--aqua));
}

.hero-copy {
  max-width: 780px;
  color: rgba(255,255,255,.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-note { margin-top: 1rem; color: rgba(255,255,255,.78); font-size: .95rem; }

.proof-strip { background: var(--navy); color: #fff; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.proof-grid div { padding: 1.4rem 1rem; border-right: 1px solid rgba(255,255,255,.14); }
.proof-grid div:last-child { border-right: 0; }
.proof-grid strong { display: block; color: #fff; font-size: 1.04rem; }
.proof-grid span { display: block; color: rgba(255,255,255,.68); font-size: .88rem; }

.section { padding: clamp(4rem, 7vw, 7rem) 0; }
.section-head { max-width: 780px; margin-bottom: 2.4rem; }
.section-head span, .about-copy > span, .service-area span, .reviews span, .contact span {
  display: block;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  margin-bottom: .75rem;
}

h2 {
  max-width: 760px;
  font-size: clamp(2.1rem, 4vw, 3.65rem);
  font-weight: 850;
}

.section-head p { margin-top: 1rem; font-size: 1.08rem; }

.services, .process, .service-area, .faqs { background: var(--cream); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 18px 44px rgba(7,21,37,.08); }
.service-card img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; }
.service-card div { padding: 1.25rem; }
.service-card span { color: var(--gold); font-weight: 900; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.service-card h3 { margin-top: .4rem; font-size: 1.32rem; line-height: 1.15; }
.service-card p { margin-top: .75rem; }

.process-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.sticky-head { position: sticky; top: 140px; }
.steps { display: grid; gap: 1rem; }
.steps article { display: grid; grid-template-columns: 76px 1fr; gap: 1rem; padding: 1.4rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.steps span { color: var(--gold); font-family: Georgia, "Times New Roman", serif; font-size: 2.3rem; font-weight: 800; line-height: 1; }
.steps h3 { font-size: 1.25rem; }
.steps p { grid-column: 2; }

.about-grid, .area-grid, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-copy p { margin-top: 1rem; font-size: 1.08rem; }
.about-copy ul { display: grid; gap: .75rem; margin: 1.6rem 0 0; padding: 0; list-style: none; }
.about-copy li { position: relative; padding-left: 1.5rem; font-weight: 800; }
.about-copy li::before { content: ""; position: absolute; left: 0; top: .65rem; width: .55rem; height: .55rem; border-radius: 50%; background: var(--blue); box-shadow: 0 0 18px rgba(11,99,246,.45); }

.area-pills { display: flex; flex-wrap: wrap; gap: .65rem; margin: 1.4rem 0; }
.area-pills a { padding: .58rem .8rem; background: #fff; border: 1px solid var(--line); border-radius: 999px; font-weight: 800; font-size: .92rem; }
.small-copy { font-size: .95rem; margin-bottom: .9rem; }
.text-link { display: inline-flex; color: var(--blue); font-weight: 900; }
.map-shell { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.map-shell iframe { display: block; width: 100%; height: 450px; border: 0; }

.reviews { background: #fff; }
.reviews h2 { margin-bottom: 1.4rem; }
.lc_reviews_widget { display: block; min-height: 420px; }

.contact { background: var(--navy); color: #fff; }
.contact h2, .contact p { color: #fff; }
.contact p { color: rgba(255,255,255,.76); }
.contact-list { display: grid; gap: .75rem; margin-top: 1.4rem; }
.contact-list a { color: #fff; font-weight: 800; }
.form-card { padding: 1rem; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }

.faq-list { display: grid; gap: .8rem; max-width: 900px; }
.faq-list details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-list summary { padding: 1.2rem; cursor: pointer; font-weight: 900; }
.faq-list p { padding: 0 1.2rem 1.2rem; }

.footer { padding: 2.2rem 0; background: #fff; border-top: 1px solid var(--line); }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; }
.footer img { width: 64px; height: 64px; object-fit: contain; }
.footer p { color: var(--ink); font-weight: 900; margin-right: auto; }
.footer a:not(.btn) { color: var(--muted); font-weight: 800; }

@media (max-width: 980px) {
  .nav { grid-template-columns: auto 1fr; min-height: 92px; }
  .nav-links { grid-column: 1 / -1; order: 3; justify-content: flex-start; overflow-x: auto; gap: 1.2rem; padding-bottom: .6rem; }
  .nav-actions { justify-content: flex-end; }
  .hero { min-height: 680px; }
  .proof-grid, .card-grid, .process-layout, .about-grid, .area-grid, .contact-grid { grid-template-columns: 1fr; }
  .sticky-head { position: static; }
  .proof-grid div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
}

@media (max-width: 620px) {
  .container, .nav { width: min(100% - 28px, 1180px); }
  .brand img { width: 58px; height: 58px; }
  .nav-actions { display: none; }
  .nav-links { font-size: .9rem; }
  .hero { min-height: 720px; }
  .hero-inner { padding: 4.6rem 0; }
  .hero h1 { font-size: clamp(2.6rem, 13vw, 4rem); }
  .hero-actions .btn { width: 100%; }
  .steps article { grid-template-columns: 1fr; }
  .steps p { grid-column: auto; }
  .map-shell iframe { height: 340px; }
  .form-card { padding: .65rem; }
}
