:root {
  --orange: #f37021;
  --orange-dark: #c94f12;
  --orange-soft: #fff1e8;
  --ink: #111315;
  --ink-2: #25292d;
  --muted: #66707a;
  --line: #e7e1dc;
  --surface: #f7f4ef;
  --surface-2: #eee8df;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(17, 19, 21, .12);
  --radius: 8px;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { margin: 0; color: var(--ink); background: var(--white); overflow-x: hidden; }
img, video, iframe, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.7; margin: 0 0 1rem; }
h1, h2, h3 { margin: 0; color: var(--ink); line-height: 1.12; letter-spacing: 0; font-family: "Trebuchet MS", "Plus Jakarta Sans", "Inter", system-ui, sans-serif; font-weight: 950; }
h1 { font-size: clamp(2.15rem, 4.7vw, 4.65rem); max-width: 890px; color: var(--orange); }
h2 { font-size: clamp(1.7rem, 3vw, 2.85rem); }
h3 { font-size: clamp(1.02rem, 1.55vw, 1.22rem); }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.narrow { max-width: 820px; }
.center { text-align: center; }
.skip-link { position: absolute; left: -999px; top: 8px; z-index: 10000; background: var(--orange); color: white; padding: .75rem 1rem; border-radius: var(--radius); }
.skip-link:focus { left: 8px; }
.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; transition: background .25s ease, box-shadow .25s ease; }
.site-header.is-scrolled, .site-header.menu-open { background: rgba(17,19,21,.96); box-shadow: 0 10px 30px rgba(0,0,0,.16); backdrop-filter: blur(12px); }
.nav-wrap { height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand, .footer-brand { display: inline-flex; align-items: center; gap: .75rem; font-weight: 900; color: white; letter-spacing: 0; }
.brand img, .footer-brand img { width: 62px; height: 62px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: .35rem; color: rgba(255,255,255,.88); font-size: .94rem; font-weight: 800; }
.desktop-nav a, .nav-dropdown > button { padding: .8rem .9rem; border: 0; background: transparent; color: inherit; cursor: pointer; font-weight: 800; display: inline-flex; align-items: center; gap: .3rem; }
.desktop-nav a:hover, .nav-dropdown > button:hover, .nav-phone:hover { color: var(--orange); }
.nav-dropdown { position: relative; }
.dropdown-menu { position: absolute; top: calc(100% + 8px); left: 0; min-width: 250px; padding: .55rem; background: var(--white); color: var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: .2s ease; }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown-link { display: block; padding: .75rem .85rem; border-radius: 6px; color: var(--ink-2); }
.dropdown-link:hover { background: var(--orange-soft); color: var(--orange-dark); }
.nav-actions { display: flex; align-items: center; gap: 1rem; color: white; }
.nav-phone { display: inline-flex; align-items: center; gap: .45rem; font-weight: 900; font-size: .92rem; color: rgba(255,255,255,.9); }
.nav-google { font-weight: 900; font-size: .88rem; color: rgba(255,255,255,.82); }
.icon { width: 1.1rem; height: 1.1rem; flex: 0 0 auto; }
.tiny { width: .85rem; height: .85rem; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.25); border-radius: var(--radius); background: rgba(255,255,255,.08); color: white; place-items: center; }
.menu-close { display: none; }
.mobile-panel { display: none; background: rgba(17,19,21,.98); padding: 0 1rem 1rem; }
.mobile-panel a { display: block; color: white; padding: 1rem; border-top: 1px solid rgba(255,255,255,.1); font-weight: 800; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; border-radius: var(--radius); min-height: 50px; padding: .95rem 1.25rem; font-weight: 900; border: 2px solid transparent; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: var(--orange); border-color: var(--orange); box-shadow: 0 16px 35px rgba(243,112,33,.28); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.btn-outline { color: white; border-color: white; background: transparent; }
.btn-outline:hover { background: white; color: var(--ink); }
.btn-outline-dark { color: var(--ink); border-color: var(--ink); background: transparent; }
.btn-outline-dark:hover, .btn-dark { background: var(--ink); color: white; border-color: var(--ink); }
.btn-small { min-height: 42px; padding: .65rem .95rem; font-size: .9rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero, .sub-hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.sub-hero { min-height: 460px; padding-top: 86px; }
.media-bg { position: absolute; inset: 0; overflow: hidden; background: var(--ink); }
.media-bg video, .media-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-fallback { animation: slowPan 16s ease-in-out infinite alternate; }
.media-bg video + .hero-fallback { display: none; }
.overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,19,21,.78), rgba(17,19,21,.54) 48%, rgba(17,19,21,.45)); }
.hero-content, .sub-hero-content { position: relative; z-index: 1; padding: 10rem 0 6rem; color: white; }
.sub-hero-content { padding: 5rem 0; }
.hero-content h1, .sub-hero-content h1 { color: var(--orange); text-shadow: 0 4px 22px rgba(0,0,0,.34); }
.hero-content > p:not(.hero-eyebrow), .sub-hero-content > p:not(.hero-eyebrow) { color: rgba(255,255,255,.86); max-width: 720px; font-size: clamp(1.05rem, 2vw, 1.32rem); margin: 1.45rem 0 2rem; }
.hero-eyebrow, .eyebrow { display: inline-flex; width: fit-content; border-radius: 999px; padding: .48rem .8rem; margin: 0 0 1rem; background: rgba(243,112,33,.13); color: var(--orange); text-transform: uppercase; letter-spacing: .1em; font-weight: 950; font-size: .76rem; }
.hero-eyebrow { background: rgba(255,255,255,.12); color: white; backdrop-filter: blur(8px); }
.hero-stats { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 4rem; }
.hero-stats div { min-width: 145px; padding: 1rem 1.2rem; border-left: 3px solid var(--orange); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); border-radius: var(--radius); }
.hero-stats strong { color: white; font-size: 1.65rem; display: block; }
.hero-stats span { color: rgba(255,255,255,.72); font-weight: 800; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.info-bar { background: var(--orange); color: white; font-weight: 900; }
.info-grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .75rem 2rem; min-height: 58px; }
.info-grid > * { display: inline-flex; align-items: center; gap: .45rem; color: white; }
.section { padding: clamp(4.2rem, 8vw, 7rem) 0; }
.surface { background: var(--surface); }
.section-heading { margin-bottom: 2.2rem; }
.section-heading.center { max-width: 790px; margin-inline: auto; }
.section-heading p:last-child { font-size: 1.08rem; margin-top: 1rem; }
.split { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); align-items: center; gap: clamp(2rem, 6vw, 5rem); }
.split > * { min-width: 0; }
.reverse > :first-child { order: 2; }
.feature-image, .service-card img, .image-stack img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.feature-image { aspect-ratio: 1.28 / 1; }
.image-stack { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 1rem; align-items: center; min-width: 0; }
.image-stack img { min-width: 0; height: clamp(310px, 33vw, 490px); }
.image-stack img:first-child { object-position: 62% center; }
.image-stack img:last-child { object-position: center 62%; transform: none; }
.check-list { display: grid; gap: .85rem; margin: 1.5rem 0 2rem; }
.check-list.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.check-list div { display: flex; align-items: flex-start; gap: .75rem; color: var(--ink-2); font-weight: 850; }
.check-list .icon { color: var(--orange); margin-top: .2rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.service-grid.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 35px rgba(17,19,21,.08); }
.service-card img { height: 245px; border-radius: 0; box-shadow: none; }
.service-card div { padding: 1.45rem; }
.service-card p { margin: .85rem 0 1.1rem; }
.text-link { display: inline-flex; align-items: center; gap: .45rem; color: var(--orange-dark); font-weight: 950; }
.feature-list, .value-grid, .mini-grid, .testimonial-grid, .process-grid { display: grid; gap: 1.1rem; }
.feature-list article, .value-grid article, .mini-grid article, .testimonial-grid article, .process-grid article, .contact-card, .faq-list { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.35rem; box-shadow: 0 12px 35px rgba(17,19,21,.07); }
.feature-list article { display: grid; grid-template-columns: auto 1fr; gap: .25rem 1rem; }
.feature-list .icon, .value-grid .icon { color: var(--orange); width: 1.4rem; height: 1.4rem; }
.feature-list p { grid-column: 2; }
.value-grid, .testimonial-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.testimonial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.testimonial-grid article > div { display: flex; gap: .2rem; color: var(--orange); margin-bottom: 1rem; }
.process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); counter-reset: step; }
.process-grid span { color: var(--orange); font-weight: 950; font-size: .85rem; letter-spacing: .12em; }
.process-grid h3, .value-grid h3, .mini-grid h3, .testimonial-grid h3 { margin: .7rem 0 .65rem; }
.pill-grid { display: flex; flex-wrap: wrap; gap: .75rem; }
.pill-grid span { display: inline-flex; padding: .72rem .95rem; border-radius: 999px; background: var(--orange-soft); color: var(--orange-dark); font-weight: 900; border: 1px solid rgba(243,112,33,.2); }
.mini-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.google-review-header { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 2rem; align-items: start; margin-bottom: 1.25rem; }
.google-review-summary { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.35rem; box-shadow: var(--shadow); display: grid; gap: 1rem; }
.google-logo, .google-g { display: grid; place-items: center; font-family: Arial, sans-serif; font-weight: 900; color: #4285f4; background: white; border: 1px solid #dadce0; }
.google-logo { width: 52px; height: 52px; border-radius: 50%; font-size: 1.65rem; }
.google-review-summary strong { display: block; font-size: 2.6rem; line-height: 1; color: var(--ink); }
.review-stars { display: flex; gap: .2rem; color: #fbbc04; margin: .35rem 0; }
.review-stars .icon { fill: currentColor; stroke: currentColor; width: 1rem; height: 1rem; }
.google-review-summary p { margin: 0; font-weight: 800; color: var(--muted); }
.google-review-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.google-review-card { background: white; border: 1px solid #dadce0; border-radius: var(--radius); padding: 1.15rem; box-shadow: 0 8px 24px rgba(60,64,67,.12); }
.review-card-top { display: grid; grid-template-columns: auto 1fr auto; gap: .75rem; align-items: center; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: white; background: var(--orange); font-weight: 900; }
.review-card-top h3 { font-size: .98rem; line-height: 1.2; }
.review-card-top p { margin: .1rem 0 0; font-size: .8rem; line-height: 1.35; color: #5f6368; }
.google-g { width: 26px; height: 26px; border-radius: 50%; font-size: .95rem; }
.google-review-card > p { margin: .7rem 0 0; color: #3c4043; font-size: .95rem; }
.area-map-grid { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); gap: 1.25rem; align-items: stretch; }
.area-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; align-content: start; }
.area-button { text-align: left; display: grid; gap: .2rem; padding: .95rem; border-radius: var(--radius); border: 1px solid var(--line); background: var(--white); color: var(--ink); cursor: pointer; box-shadow: 0 8px 22px rgba(17,19,21,.06); transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease; }
.area-button:hover { transform: translateY(-2px); border-color: rgba(243,112,33,.38); box-shadow: 0 14px 30px rgba(17,19,21,.1); }
.area-button.is-active { border-color: var(--orange); background: var(--orange-soft); box-shadow: 0 16px 35px rgba(243,112,33,.16); }
.area-button strong { font-size: .95rem; line-height: 1.2; }
.area-button span { color: var(--muted); font-weight: 800; font-size: .82rem; line-height: 1.3; }
.area-map-panel { display: grid; grid-template-rows: auto 1fr; gap: 1rem; min-width: 0; }
.area-map-copy { background: var(--ink); color: white; border-radius: var(--radius); padding: 1.25rem; border-left: 5px solid var(--orange); }
.area-map-copy h3 { color: var(--orange); }
.area-map-copy p { color: rgba(255,255,255,.78); margin: .55rem 0 0; }
.map-frame { width: 100%; min-height: 440px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); background: var(--surface-2); }
.faq-list { padding: .35rem 1.35rem; }
.faq-list details { border-bottom: 1px solid var(--line); padding: 1rem 0; }
.faq-list details:last-child { border-bottom: 0; }
.faq-list summary { cursor: pointer; font-weight: 950; color: var(--ink); }
.faq-list p { margin-top: .7rem; }
.cta-band { background: var(--orange); color: white; }
.cta-band h2, .cta-band p { color: white; }
.cta-band p { max-width: 680px; margin: 1rem auto 1.5rem; color: rgba(255,255,255,.92); }
.cta-band .button-row { justify-content: center; }
.quote-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr); gap: 1.25rem; align-items: start; }
.form-frame { min-height: 735px; background: white; border-radius: var(--radius); box-shadow: var(--shadow); overflow: visible; border: 1px solid var(--line); }
.form-frame iframe { width: 100%; min-height: 735px; }
.contact-card { position: sticky; top: 108px; display: grid; gap: 1rem; }
.contact-card h3 { margin-bottom: .2rem; }
.contact-card > a, .contact-card > div { display: flex; align-items: flex-start; gap: .85rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.contact-card .icon { color: var(--orange); width: 1.35rem; height: 1.35rem; margin-top: .15rem; }
.contact-card strong, .contact-card small { display: block; }
.contact-card small { color: var(--muted); margin-top: .15rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .45rem; align-items: center; color: rgba(255,255,255,.72); font-weight: 800; margin-bottom: 1rem; }
.breadcrumbs a:hover { color: white; }
.site-footer { background: var(--ink); color: white; }
.footer-grid { display: grid; grid-template-columns: 1.15fr .9fr .9fr 1.1fr; gap: 2rem; padding: 4rem 0; }
.footer-grid p, .footer-grid a, .footer-grid li { color: rgba(255,255,255,.72); }
.footer-grid h3 { color: white; font-size: .98rem; margin-bottom: 1rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.footer-grid a:hover { color: white; }
.footer-contact li, .footer-contact a { display: flex; gap: .5rem; align-items: flex-start; }
.copyright { border-top: 1px solid rgba(255,255,255,.1); padding: 1.25rem 0; text-align: center; }
.copyright p { margin: 0; color: rgba(255,255,255,.62); font-size: .9rem; }
@keyframes slowPan { from { transform: scale(1.02) translateX(0); } to { transform: scale(1.08) translateX(-2%); } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .media-bg video { display: none; }
  .media-bg video + .hero-fallback { display: block; }
}
@media (max-width: 1040px) {
  .desktop-nav, .nav-actions { display: none; }
  .menu-toggle { display: grid; }
  .site-header.menu-open .mobile-panel { display: block; }
  .site-header.menu-open .menu-open { display: none; }
  .site-header.menu-open .menu-close { display: block; }
  .split, .quote-grid { grid-template-columns: 1fr; }
  .reverse > :first-child { order: 0; }
  .service-grid, .value-grid, .testimonial-grid, .process-grid, .mini-grid, .google-review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .area-map-grid { grid-template-columns: 1fr; }
  .google-review-header { grid-template-columns: 1fr; }
  .contact-card { position: static; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 24px, 1180px); }
  .brand span { max-width: 160px; line-height: 1.05; }
  .brand img { width: 54px; height: 54px; }
  .nav-wrap { height: 78px; }
  .hero { min-height: 760px; }
  .hero-content { padding-top: 8rem; }
  .sub-hero { min-height: 540px; }
  .button-row, .button-row .btn { width: 100%; }
  .service-grid, .value-grid, .testimonial-grid, .process-grid, .mini-grid, .google-review-grid, .area-list, .check-list.two-col { grid-template-columns: 1fr; }
  .info-grid { justify-content: flex-start; padding: .8rem 0; }
  .image-stack { grid-template-columns: 1fr; }
  .image-stack img:last-child { transform: none; }
  .feature-list article { grid-template-columns: 1fr; }
  .feature-list p { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .map-frame { min-height: 360px; }
  .form-frame { min-height: 735px; }
}