:root {
  --navy: #111827;
  --navy-2: #0b1220;
  --slate: #334155;
  --muted: #64748b;
  --line: #dbe3ee;
  --panel: #f8fafc;
  --white: #ffffff;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --amber: #f97316;
  --amber-dark: #ea580c;
  --green: #16a34a;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: white;
  color: var(--navy);
  transform: translateY(-160%);
  transition: transform .2s ease;
  box-shadow: var(--shadow);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 32px), var(--max)); margin-inline: auto; }
.section { padding: 88px 0; }
.section-dark { background: var(--navy); color: white; }
.section-muted { background: var(--panel); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(148,163,184,.18);
  background: rgba(17,24,39,.94);
  color: white;
  backdrop-filter: blur(16px);
}
.nav { min-height: 76px; display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--amber), #fb923c);
  color: #111827;
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 800;
  letter-spacing: -.04em;
  box-shadow: 0 8px 20px rgba(249,115,22,.24);
}
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-size: .98rem; letter-spacing: -.02em; }
.brand-copy small { margin-top: 4px; color: #94a3b8; font-size: .72rem; }

.nav-menu { margin-left: auto; display: flex; align-items: center; gap: 24px; }
.nav-menu a { color: #cbd5e1; font-size: .9rem; font-weight: 600; }
.nav-menu a:hover, .nav-menu a:focus-visible { color: white; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 0; background: transparent; border-radius: 9px; }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: white; border-radius: 99px; transition: transform .2s, opacity .2s; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 11px;
  border: 2px solid transparent;
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid #fbbf24;
  outline-offset: 3px;
}
.btn-primary { background: var(--amber); color: #111827; box-shadow: 0 10px 24px rgba(249,115,22,.24); }
.btn-primary:hover { background: #fb8b36; box-shadow: 0 13px 28px rgba(249,115,22,.32); }
.btn-ghost { color: white; border-color: #475569; background: rgba(255,255,255,.03); }
.btn-ghost:hover { background: rgba(255,255,255,.08); }
.btn-outline { color: white; border-color: #64748b; background: transparent; }
.btn-outline:hover { border-color: #94a3b8; background: rgba(255,255,255,.05); }
.btn-outline-dark { color: var(--navy); border-color: #cbd5e1; background: white; }
.btn-outline-dark:hover { border-color: #94a3b8; background: #f8fafc; }
.btn-large { min-height: 54px; padding-inline: 23px; font-size: .98rem; }
.btn-full { width: 100%; }

.hero { position: relative; overflow: hidden; padding: 74px 0 76px; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black 20%, transparent 95%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 560px;
  height: 560px;
  right: -180px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.33), transparent 64%);
  filter: blur(20px);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 64px; }
.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: .78rem;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .12em;
}
.eyebrow { color: #93c5fd; }
.eyebrow span { width: 28px; height: 2px; background: var(--amber); }
.hero h1, .section-heading h2, .why-copy h2, .location-copy h2, .reviews h2, .contact-copy h2, .final-cta h2 {
  font-family: Montserrat, Inter, sans-serif;
  letter-spacing: -.045em;
  line-height: 1.07;
  margin: 0;
}
.hero h1 { max-width: 760px; margin-top: 18px; font-size: clamp(2.7rem, 5.5vw, 5.2rem); }
.hero-subtitle { max-width: 650px; margin: 22px 0 0; color: #cbd5e1; font-size: clamp(1.04rem, 1.5vw, 1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.trust-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 38px; }
.trust-item { display: flex; align-items: flex-start; gap: 10px; min-width: 0; }
.trust-item svg { width: 23px; height: 23px; fill: #60a5fa; flex: 0 0 auto; }
.trust-item span { display: grid; line-height: 1.25; }
.trust-item strong { font-size: .83rem; }
.trust-item small { margin-top: 4px; color: #94a3b8; font-size: .72rem; }

.hero-media { position: relative; min-height: 580px; }
.hero-photo-wrap { position: absolute; inset: 0 36px 0 34px; border-radius: 28px; overflow: hidden; background: #1e293b; box-shadow: 0 30px 90px rgba(0,0,0,.36); }
.hero-photo-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(2,6,23,.72), transparent 48%); pointer-events: none; }
.hero-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 53%; }
.photo-badge {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 15px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: rgba(15,23,42,.8);
  backdrop-filter: blur(12px);
}
.photo-badge .pulse { width: 11px; height: 11px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 6px rgba(34,197,94,.15); }
.photo-badge div { display: grid; line-height: 1.3; }
.photo-badge strong { font-size: .86rem; }
.photo-badge small { color: #a5b4fc; font-size: .72rem; margin-top: 2px; }
.stat-card { position: absolute; z-index: 3; display: grid; gap: 1px; min-width: 170px; padding: 14px 16px; border-radius: 14px; background: white; color: var(--navy); box-shadow: 0 20px 48px rgba(0,0,0,.24); }
.stat-card strong { font-size: .9rem; }
.stat-card span, .stat-card a { font-size: .74rem; color: var(--muted); }
.stat-card a { color: var(--blue); font-weight: 800; }
.stat-card-top { top: 44px; right: 0; }
.stat-card-bottom { bottom: 72px; left: 0; }

.proof-strip { background: #0b1220; color: white; border-top: 1px solid rgba(148,163,184,.12); }
.proof-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.proof-grid > div { padding: 24px 28px; border-right: 1px solid rgba(148,163,184,.13); }
.proof-grid > div:first-child { padding-left: 0; }
.proof-grid > div:last-child { border-right: 0; padding-right: 0; }
.proof-grid strong, .proof-grid span { display: block; }
.proof-grid strong { font-size: .93rem; }
.proof-grid span { margin-top: 3px; color: #94a3b8; font-size: .78rem; }

.section-heading { display: grid; grid-template-columns: 1fr .72fr; gap: 48px; align-items: end; margin-bottom: 38px; }
.section-heading.compact { margin-bottom: 28px; }
.section-heading h2, .why-copy h2, .location-copy h2, .reviews h2, .contact-copy h2 { margin-top: 12px; font-size: clamp(2rem, 4vw, 3.45rem); }
.section-heading p { margin: 0 0 4px; color: var(--muted); max-width: 620px; }

.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.service-card { min-height: 230px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: white; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-card:hover { transform: translateY(-3px); border-color: #bfdbfe; box-shadow: 0 18px 38px rgba(15,23,42,.08); }
.service-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; background: #eff6ff; color: var(--blue); font-weight: 800; font-size: .78rem; }
.service-card h3 { margin: 22px 0 8px; font-size: 1.05rem; letter-spacing: -.02em; }
.service-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.section-cta { margin-top: 22px; padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-radius: 14px; background: #eff6ff; border: 1px solid #dbeafe; }
.section-cta p { margin: 0; color: #334155; }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.why-media > img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); }
.mini-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.mini-gallery img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 14px; }
.why-copy .lead { margin: 18px 0 0; color: var(--muted); font-size: 1.02rem; }
.benefit-list { display: grid; gap: 22px; margin-top: 30px; }
.benefit { display: grid; grid-template-columns: 40px 1fr; gap: 14px; }
.check { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 10px; background: #dcfce7; color: #15803d; font-weight: 900; }
.benefit h3 { margin: 1px 0 4px; font-size: .98rem; }
.benefit p { margin: 0; color: var(--muted); font-size: .88rem; }
.why-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 30px; }
.text-link { color: var(--blue); font-weight: 800; font-size: .9rem; }

.work-gallery { padding-top: 74px; }
.gallery-grid { display: grid; grid-template-columns: 1.05fr .75fr 1.2fr; grid-template-rows: 390px; gap: 12px; }
.gallery-grid figure { margin: 0; overflow: hidden; border-radius: 18px; background: #e2e8f0; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
.gallery-large img { object-position: center 58%; }

.location-section { background: #fff; }
.location-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; }
.address-line { margin: 22px 0 0; font-weight: 800; font-size: 1.08rem; line-height: 1.5; }
.plus-code { margin: 6px 0 0; color: var(--muted); font-size: .83rem; }
.location-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.hours-card { margin-top: 28px; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.hours-card table { width: 100%; border-collapse: collapse; }
.hours-card caption { padding: 15px 18px; text-align: left; font-weight: 800; border-bottom: 1px solid var(--line); background: #f8fafc; }
.hours-card th, .hours-card td { padding: 11px 18px; border-bottom: 1px solid #edf2f7; font-size: .88rem; }
.hours-card tr:last-child th, .hours-card tr:last-child td { border-bottom: 0; }
.hours-card th { text-align: left; font-weight: 600; }
.hours-card td { text-align: right; color: var(--slate); }
.hours-card tr.is-today { background: #eff6ff; }
.hours-card tr.is-today th::after { content: "Today"; display: inline-block; margin-left: 8px; padding: 2px 6px; border-radius: 99px; background: var(--blue); color: white; font-size: .62rem; vertical-align: 1px; }
.map-card { border-radius: 22px; overflow: hidden; border: 1px solid var(--line); background: white; box-shadow: var(--shadow); }
.map-card iframe { width: 100%; height: 500px; display: block; filter: saturate(.9) contrast(1.03); }
.map-footer { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 16px 18px; }
.map-footer div { display: grid; }
.map-footer strong { font-size: .9rem; }
.map-footer span { color: var(--muted); font-size: .75rem; margin-top: 2px; }
.map-footer a { color: var(--blue); font-weight: 800; white-space: nowrap; }

.reviews { position: relative; overflow: hidden; }
.reviews::before { content: ""; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(37,99,235,.22), transparent 65%); right: -260px; top: -260px; }
.reviews .container { position: relative; }
.reviews-top { display: flex; align-items: end; justify-content: space-between; gap: 32px; }
.kicker-light { color: #93c5fd; }
.reviews-top p { max-width: 620px; margin: 14px 0 0; color: #aab6c8; }
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 36px; }
.review-card { padding: 26px; border-radius: 18px; border: 1px solid rgba(148,163,184,.18); background: rgba(255,255,255,.055); }
.stars { color: #fbbf24; letter-spacing: .12em; font-size: 1rem; }
.review-card blockquote { margin: 18px 0 20px; color: #e2e8f0; font-size: .92rem; }
.reviewer { margin: 0; font-size: .75rem; font-weight: 800; }
.reviewer span { color: #94a3b8; font-weight: 500; }
.review-disclaimer { margin: 14px 0 0; color: #7f8ca1; font-size: .72rem; }

.contact-section { background: #f8fafc; }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 74px; align-items: start; }
.contact-copy > p { color: var(--muted); }
.callout { margin-top: 28px; display: flex; align-items: center; gap: 12px; padding: 16px; border-radius: 14px; background: white; border: 1px solid var(--line); }
.callout-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 11px; background: #fff7ed; color: var(--amber-dark); font-size: 1.1rem; }
.callout div { display: grid; }
.callout small { color: var(--muted); }
.callout a { color: var(--blue); font-weight: 800; font-size: 1.02rem; }
.contact-points { margin: 24px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; color: var(--slate); }
.contact-points li { position: relative; padding-left: 28px; font-size: .9rem; }
.contact-points li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }

.contact-form { padding: 28px; border-radius: 20px; background: white; border: 1px solid var(--line); box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 7px; margin-bottom: 15px; }
.field label { font-weight: 800; font-size: .82rem; }
.field input, .field textarea { width: 100%; border: 1px solid #cbd5e1; border-radius: 10px; background: #fff; color: var(--navy); padding: 12px 13px; transition: border .15s ease, box-shadow .15s ease; }
.field input { min-height: 48px; }
.field textarea { resize: vertical; min-height: 112px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(37,99,235,.11); }
.field .invalid { border-color: #dc2626; box-shadow: 0 0 0 4px rgba(220,38,38,.1); }
.form-note { margin: 10px 0 0; text-align: center; color: var(--muted); font-size: .75rem; }
.form-status { display: none; margin-top: 14px; padding: 13px 14px; border-radius: 10px; font-size: .82rem; }
.form-status.success { display: block; color: #14532d; background: #dcfce7; border: 1px solid #bbf7d0; }
.form-status.error { display: block; color: #7f1d1d; background: #fee2e2; border: 1px solid #fecaca; }

.final-cta { padding: 60px 0; border-top: 1px solid rgba(148,163,184,.12); }
.final-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 36px; }
.final-cta h2 { margin-top: 10px; max-width: 750px; font-size: clamp(1.9rem, 3vw, 3rem); }
.final-cta-actions { display: flex; gap: 10px; flex: 0 0 auto; }

.site-footer { padding: 50px 0 22px; background: #070c15; color: #94a3b8; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, .8fr); gap: 36px; }
.footer-brand { color: white; }
.footer-grid > div:first-child p { max-width: 340px; font-size: .82rem; }
.footer-heading { margin: 3px 0 12px; color: white; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.site-footer address, .site-footer p { margin: 0; font-style: normal; font-size: .8rem; }
.site-footer a { display: block; width: fit-content; margin-top: 7px; font-size: .8rem; }
.site-footer a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 38px; padding-top: 18px; border-top: 1px solid rgba(148,163,184,.13); font-size: .74rem; }
.footer-bottom a { margin: 0; }
.mobile-call-bar { display: none; }

@media (max-width: 1040px) {
  .nav-menu { gap: 16px; }
  .nav-menu a { font-size: .82rem; }
  .nav-actions .btn-ghost { display: none; }
  .hero-grid { gap: 42px; }
  .hero-media { min-height: 520px; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid, .location-grid, .contact-grid { gap: 44px; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 74px; }
  body { padding-bottom: 66px; }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 68px 0; }
  .nav { min-height: 68px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-copy strong { font-size: .9rem; }
  .nav-actions { display: none; }
  .menu-toggle { display: block; }
  .nav-menu {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 76px;
    display: none;
    margin: 0;
    padding: 12px;
    border: 1px solid #334155;
    border-radius: 14px;
    background: #111827;
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
  }
  .nav-menu.is-open { display: grid; }
  .nav-menu a { padding: 11px 12px; border-radius: 9px; color: #e2e8f0; }
  .nav-menu a:hover { background: #1e293b; }
  .hero { padding: 54px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.55rem, 12vw, 4.4rem); }
  .hero-subtitle { font-size: 1rem; }
  .hero-media { min-height: 470px; margin-top: 8px; }
  .hero-photo-wrap { inset: 0 20px; }
  .stat-card-top { right: 0; top: 28px; }
  .stat-card-bottom { left: 0; bottom: 50px; }
  .trust-row { gap: 16px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid > div, .proof-grid > div:first-child, .proof-grid > div:last-child { padding: 18px 0; border-right: 0; border-bottom: 1px solid rgba(148,163,184,.13); }
  .proof-grid > div:last-child { border-bottom: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 14px; }
  .why-grid, .location-grid, .contact-grid { grid-template-columns: 1fr; }
  .why-media { order: 2; }
  .why-copy { order: 1; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 330px 240px; }
  .gallery-grid figure:last-child { grid-column: 1 / -1; }
  .review-grid { grid-template-columns: 1fr; }
  .reviews-top { align-items: flex-start; flex-direction: column; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
  .final-cta-actions { flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mobile-call-bar {
    position: fixed;
    z-index: 1200;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    min-height: 62px;
    border-top: 1px solid #334155;
    background: #0b1220;
    box-shadow: 0 -10px 30px rgba(0,0,0,.24);
  }
  .mobile-call-bar a { display: grid; place-items: center; min-height: 62px; font-size: .88rem; font-weight: 800; }
  .mobile-directions { color: white; }
  .mobile-call { background: var(--amber); color: #111827; }
}

@media (max-width: 560px) {
  .section { padding: 58px 0; }
  .hero { padding-top: 44px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .btn-large { width: 100%; }
  .trust-row { grid-template-columns: 1fr; }
  .trust-item { padding: 10px 0; border-bottom: 1px solid rgba(148,163,184,.12); }
  .trust-item:last-child { border-bottom: 0; }
  .hero-media { min-height: 430px; }
  .hero-photo-wrap { inset: 0; border-radius: 20px; }
  .stat-card { min-width: 148px; padding: 12px 13px; }
  .stat-card-top { right: -2px; }
  .stat-card-bottom { left: -2px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .section-cta { align-items: stretch; flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 340px 300px 230px; }
  .gallery-grid figure:last-child { grid-column: auto; }
  .map-card iframe { height: 400px; }
  .map-footer { align-items: flex-start; flex-direction: column; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .final-cta-actions { width: 100%; display: grid; grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
