
:root {
  --black: #100a18;
  --ink: #18131f;
  --muted: #625b6d;
  --line: #e4ddec;
  --surface: #f7f5fa;
  --surface-2: #eef8eb;
  --green: #39d42a;
  --green-dark: #15911d;
  --purple: #6f2dbd;
  --purple-dark: #2a123d;
  --purple-soft: #f0e8fb;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(38, 18, 59, 0.13);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 18px; color: var(--muted); }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: 0; color: var(--ink); }
h1 { font-size: 52px; max-width: 980px; }
h2 { font-size: 40px; }
h3 { font-size: 22px; }
ul { margin: 0; padding: 0; list-style: none; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(860px, calc(100% - 40px)); }
.section { padding: 86px 0; }
.muted { background: var(--surface); }
.skip-link { position: fixed; left: 16px; top: 12px; z-index: 10000; transform: translateY(-140%); background: var(--purple); color: #fff; padding: 10px 14px; border-radius: 6px; }
.skip-link:focus { transform: translateY(0); }
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  transition: background .25s ease, box-shadow .25s ease;
  color: #fff;
}
.site-header.scrolled, .site-header.menu-open { background: rgba(16, 10, 24, .95); box-shadow: 0 10px 30px rgba(0,0,0,.22); }
.nav-wrap { width: min(1240px, calc(100% - 32px)); margin: 0 auto; height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand img { width: 126px; height: auto; max-height: 66px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 4px; }
.desktop-nav > a, .nav-dropdown > button { color: rgba(255,255,255,.9); font-size: 14px; font-weight: 700; padding: 12px 12px; border: 0; background: transparent; display: flex; align-items: center; gap: 6px; cursor: pointer; font-family: inherit; }
.desktop-nav a:hover, .nav-dropdown button:hover, .desktop-nav a.active { color: var(--green); }
.nav-dropdown { position: relative; }
.nav-dropdown svg { width: 15px; height: 15px; }
.dropdown-menu { position: absolute; top: 100%; left: 0; width: 260px; background: #fff; color: var(--ink); border-radius: 8px; padding: 8px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s ease; }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 12px 12px; border-radius: 6px; color: var(--ink); font-weight: 700; font-size: 14px; }
.dropdown-menu a:hover { background: var(--purple-soft); color: var(--purple); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.phone-link { display: flex; align-items: center; gap: 7px; color: #fff; font-size: 14px; font-weight: 800; white-space: nowrap; }
.phone-link svg, .btn svg, .info-bar svg, .contact-panel svg, .check-list svg, .text-link svg, .contact-cards svg, .yelp-link svg { width: 18px; height: 18px; flex: 0 0 auto; }
.menu-toggle { display: none; color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.35); border-radius: 8px; width: 44px; height: 44px; align-items: center; justify-content: center; }
.menu-toggle svg { width: 24px; height: 24px; }
.mobile-nav { display: none; background: rgba(16, 10, 24, .98); padding: 8px 20px 22px; border-top: 1px solid rgba(255,255,255,.14); }
.mobile-nav a { display: block; padding: 12px 0; color: #fff; font-weight: 800; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 13px 20px;
  border-radius: 8px;
  border: 2px solid transparent;
  font-weight: 900;
  font-size: 15px;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: #071006; }
.btn-primary:hover { background: #58ea49; color: #071006; }
.btn-secondary { background: var(--purple); color: #fff; }
.btn-secondary:hover { background: var(--purple-dark); }
.btn-outline-light { color: #fff; border-color: rgba(255,255,255,.76); }
.btn-outline-light:hover { background: #fff; color: var(--ink); }
.btn-light { background: #fff; color: var(--green-dark); }
.full { width: 100%; }
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; padding: 116px 0 58px; }
.short-hero { min-height: 440px; padding-top: 116px; }
.hero-media { position: absolute; inset: 0; z-index: -2; background: var(--purple-dark); }
.hero-video, .hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,10,24,.72), rgba(16,10,24,.58)); z-index: 1; }
.hero-content { position: relative; z-index: 2; color: #fff; }
.hero-centered { text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero h1 { color: #fff; }
.hero p { max-width: 760px; color: rgba(255,255,255,.88); font-size: 18px; margin-top: 18px; }
.hero-buttons, .button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.hero-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; margin-top: 42px; }
.hero-stats div { min-width: 142px; padding: 0 26px; border-right: 1px solid rgba(255,255,255,.24); }
.hero-stats div:last-child { border-right: 0; }
.hero-stats strong { display: block; font-size: 30px; line-height: 1; color: var(--green); }
.hero-stats span { display: block; color: rgba(255,255,255,.8); font-weight: 800; font-size: 13px; text-transform: uppercase; margin-top: 6px; }
.page-hero-content p { max-width: 720px; }
.breadcrumbs { display: flex; gap: 8px; align-items: center; color: rgba(255,255,255,.72); margin-bottom: 18px; font-size: 14px; font-weight: 800; }
.breadcrumbs a:hover { color: var(--green); }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--purple); font-size: 12px; font-weight: 900; text-transform: uppercase; margin-bottom: 14px; }
.eyebrow:before { content: ""; width: 28px; height: 3px; background: var(--green); display: inline-block; }
.hero-eyebrow { color: var(--green); }
.hero-pill { display: inline-block; border-radius: 999px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); padding: 9px 18px; color: #fff; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 0; margin-bottom: 18px; backdrop-filter: blur(8px); }
.info-bar { background: var(--purple); color: #fff; }
.info-grid { min-height: 62px; display: grid; grid-template-columns: 1.2fr 1fr .8fr; align-items: center; gap: 16px; }
.info-grid div, .info-grid a { display: flex; align-items: center; gap: 9px; font-weight: 900; font-size: 14px; }
.info-grid svg { color: var(--green); }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr); gap: 56px; align-items: center; }
.split p { font-size: 17px; }
.image-panel { margin: 0; position: relative; }
.image-panel img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); }
.image-panel figcaption { margin-top: 10px; color: var(--muted); font-size: 13px; font-weight: 800; }
.check-list { display: grid; gap: 12px; margin: 24px 0; }
.check-list li, .service-card li { display: flex; align-items: flex-start; gap: 10px; font-weight: 800; color: var(--ink); }
.check-list svg, .service-card li svg { color: var(--green-dark); margin-top: 3px; }
.section-heading { margin-bottom: 42px; max-width: 850px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading p { font-size: 18px; margin-top: 16px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; box-shadow: 0 10px 26px rgba(38,18,59,.08); }
.service-image img { width: 100%; height: 260px; object-fit: cover; object-position: center; }
.service-card-body { padding: 24px; }
.card-icon, .feature-grid article > div { width: 46px; height: 46px; border-radius: 8px; background: var(--purple-soft); color: var(--purple); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.card-icon svg, .feature-grid article svg { width: 24px; height: 24px; }
.service-card h3 { min-height: 72px; }
.service-card p { margin-top: 12px; }
.service-card ul { display: grid; gap: 9px; margin: 18px 0 20px; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--purple); font-weight: 900; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-grid article { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 24px; }
.why-section .feature-grid article { background: var(--surface); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.gallery-item img { width: 100%; height: 230px; object-fit: cover; object-position: center; }
.gallery-item figcaption { padding: 12px; font-size: 13px; font-weight: 800; color: var(--ink); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-grid.three { grid-template-columns: repeat(3, 1fr); }
.process-grid article { border-top: 4px solid var(--green); padding: 24px; background: var(--surface); border-radius: 8px; }
.process-grid span { display: block; color: var(--purple); font-size: 32px; font-weight: 900; margin-bottom: 10px; }
.dark-band { background: var(--black); color: #fff; }
.dark-band h2, .dark-band p { color: #fff; }
.service-area-section { background: var(--purple-dark); color: #fff; }
.service-area-section h2, .service-area-section p { color: #fff; }
.service-area-section .eyebrow { color: var(--green); }
.service-area-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr); gap: 42px; align-items: center; }
.map-helper { margin-top: 16px; font-weight: 900; color: rgba(255,255,255,.86); }
.map-tabs { display: grid; gap: 14px; }
.map-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.map-button { min-height: 38px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.28); border-radius: 8px; background: rgba(255,255,255,.1); color: #fff; font-family: inherit; font-weight: 900; cursor: pointer; transition: background .2s ease, border-color .2s ease, color .2s ease; }
.map-button:hover, .map-button:focus-visible { border-color: var(--green); outline: none; }
.map-button.active { background: var(--green); border-color: var(--green); color: #071006; }
.map-panel { overflow: hidden; border-radius: 8px; border: 1px solid rgba(255,255,255,.18); box-shadow: var(--shadow); background: #fff; min-height: 390px; }
.map-panel iframe { width: 100%; height: 390px; border: 0; display: block; }
.map-open-link { display: inline-flex; justify-content: center; align-items: center; min-height: 42px; padding: 10px 14px; border-radius: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; font-weight: 900; }
.map-open-link:hover { background: var(--green); border-color: var(--green); color: #071006; }
.compact-map-tabs { margin-top: 18px; }
.compact-map-tabs .map-button { color: var(--ink); background: var(--surface); border-color: var(--line); }
.compact-map-tabs .map-button.active { color: #071006; background: var(--green); border-color: var(--green); }
.compact-map-tabs .map-panel { min-height: 255px; border-color: var(--line); box-shadow: none; }
.compact-map-tabs .map-panel iframe { height: 255px; }
.compact-map-tabs .map-open-link { color: var(--ink); background: var(--surface); border-color: var(--line); }
.compact-map-tabs .map-open-link:hover { color: #071006; background: var(--green); border-color: var(--green); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; background: transparent; border: 0; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 18px; text-align: left; cursor: pointer; font-family: inherit; font-weight: 900; font-size: 18px; color: var(--ink); }
.faq-item button svg { width: 20px; height: 20px; transition: transform .2s ease; }
.faq-item button[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-answer { display: none; padding-bottom: 22px; }
.faq-item button[aria-expanded="true"] + .faq-answer { display: block; }
.quote-section { background: var(--surface); }
.quote-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr); gap: 28px; align-items: start; }
.form-column { display: grid; gap: 10px; }
.form-frame { height: 980px; background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }
.form-frame iframe { width: 100%; height: 980px; min-height: 980px; border: 0; display: block; }
.form-fallback { margin: 0; font-size: 14px; font-weight: 800; color: var(--muted); }
.form-fallback a { color: var(--purple); text-decoration: underline; text-underline-offset: 3px; }
.contact-panel, .contact-side { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 26px; box-shadow: 0 10px 26px rgba(38,18,59,.08); }
.contact-panel h3, .contact-side h3 { margin-bottom: 18px; }
.contact-panel a, .contact-panel p { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 16px; color: var(--ink); font-weight: 900; }
.contact-panel svg { color: var(--purple); margin-top: 3px; }
.cta-band { background: var(--purple); color: #fff; text-align: center; }
.cta-band h2, .cta-band p { color: #fff; }
.cta-inner { max-width: 780px; }
.centered-buttons { justify-content: center; }
.stacked-images { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stacked-images img { width: 100%; height: 360px; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); }
.service-list-large { display: grid; gap: 12px; }
.service-list-large li { display: flex; gap: 10px; align-items: center; background: var(--surface); padding: 13px 14px; border-radius: 8px; font-weight: 900; }
.service-list-large svg { color: var(--purple); width: 18px; height: 18px; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 36px; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.contact-cards a, .contact-cards p { display: flex; gap: 14px; margin: 0; color: var(--ink); background: var(--surface); padding: 18px; border-radius: 8px; border: 1px solid var(--line); }
.contact-cards svg { color: var(--purple); margin-top: 4px; }
.contact-cards small { display: block; color: var(--muted); font-weight: 700; margin-top: 2px; }
.site-footer { background: var(--black); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr 1fr; gap: 34px; padding: 62px 0; }
.footer-brand img { width: 210px; height: auto; margin-bottom: 18px; }
.site-footer p, .site-footer li, .site-footer a { color: rgba(255,255,255,.78); }
.site-footer h3 { color: #fff; font-size: 16px; margin-bottom: 18px; }
.site-footer ul { display: grid; gap: 11px; }
.site-footer a:hover { color: var(--green); }
.yelp-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; font-weight: 900; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); text-align: center; padding: 20px; color: rgba(255,255,255,.65); font-size: 13px; }
@media (max-width: 1040px) {
  h1 { font-size: 42px; }
  h2 { font-size: 34px; }
  .desktop-nav, .phone-link, .nav-quote { display: none; }
  .menu-toggle { display: inline-flex; }
  .site-header.menu-open .mobile-nav { display: block; }
  .split, .quote-grid, .contact-grid, .service-area-layout { grid-template-columns: 1fr; }
  .services-grid, .feature-grid, .gallery-grid, .process-grid, .process-grid.three, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; padding: 14px 0; }
}
@media (max-height: 760px) and (min-width: 721px) {
  .home-hero { min-height: 82vh; padding-bottom: 24px; }
  .home-hero .hero-stats { display: none; }
}
@media (max-width: 720px) {
  .container, .narrow { width: min(100% - 28px, 1180px); }
  .section { padding: 62px 0; }
  h1 { font-size: 34px; }
  h2 { font-size: 29px; }
  h3 { font-size: 20px; }
  .nav-wrap { width: calc(100% - 24px); height: 72px; }
  .brand img { width: 124px; }
  .hero { min-height: 88vh; padding: 92px 0 38px; }
  .short-hero { min-height: 440px; }
  .hero p { font-size: 17px; }
  .hero-buttons, .button-row { flex-direction: column; align-items: stretch; }
  .hero-stats { gap: 12px; }
  .home-hero .hero-stats { display: none; }
  .hero-stats div { min-width: calc(50% - 8px); }
  .services-grid, .feature-grid, .gallery-grid, .process-grid, .process-grid.three, .footer-grid, .contact-cards, .stacked-images { grid-template-columns: 1fr; }
  .service-card h3 { min-height: 0; }
  .service-image img, .gallery-item img { height: 220px; }
  .map-panel, .map-panel iframe { min-height: 320px; height: 320px; }
  .compact-map-tabs .map-panel, .compact-map-tabs .map-panel iframe { min-height: 260px; height: 260px; }
  .form-frame { height: 1080px; }
  .form-frame iframe { height: 1080px; min-height: 1080px; }
}
