:root {
  --frame-max: 1440px;
  --content-max: 1240px;
  --reading-max: 760px;
  --page-gutter: clamp(20px, 4vw, 72px);
  --text-primary: #15191d;
  --text-secondary: #3f4953;
  --text-muted: #56616c;
  --surface-muted: #f4f6f7;
  --surface-hover: #e8f1fb;
  --border-accessible: #7b8793;
  --focus-ring: #ffbf47;
  --text-xs: 0.875rem;
  --text-sm: 0.9375rem;
  --text-base: 1.0625rem;
  --text-lg: 1.125rem;
  --heading-sm: clamp(1.25rem, 1.3vw, 1.5rem);
  --heading-md: clamp(1.875rem, 3vw, 2.75rem);
  --heading-lg: clamp(2.625rem, 5vw, 4.25rem);
}

html {
  font-size: 100%;
}

body {
  color: var(--text-primary);
  font-size: var(--text-base);
  line-height: 1.6;
}

.site-frame {
  width: min(100%, var(--frame-max));
  overflow: clip;
}

:where(a, button, summary, input, textarea, select):focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
  box-shadow: 0 0 0 1px #17202a;
}

.eyebrow,
.hero-kicker {
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.button,
.text-link {
  min-height: 44px;
  font-size: var(--text-sm);
  line-height: 1.2;
}

.button {
  padding-inline: 22px;
}

.desktop-nav {
  gap: clamp(14px, 1.25vw, 24px);
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.hub-navigation {
  gap: clamp(10px, 1vw, 18px);
}

.hub-nav-item {
  min-height: 44px;
  align-items: center;
  gap: 0;
}

.hub-nav-link {
  padding-inline: 5px;
}

.hub-menu-toggle {
  width: 32px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 7px;
  color: inherit;
  background: transparent;
  cursor: pointer;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.hub-nav-item:hover .hub-nav-link,
.hub-nav-item:focus-within .hub-nav-link,
.hub-menu-toggle:hover,
.hub-menu-toggle:focus-visible,
.hub-menu-toggle[aria-expanded="true"] {
  color: var(--blue);
}

.hub-menu-toggle:hover,
.hub-menu-toggle:focus-visible,
.hub-menu-toggle[aria-expanded="true"] {
  background: var(--surface-hover);
}

.hub-menu-toggle svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
  transition: transform 160ms ease;
}

.hub-menu-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.hub-dropdown {
  top: calc(100% - 4px);
  left: 50%;
  width: 320px;
  max-height: min(70vh, 620px);
  padding: 12px;
  gap: 4px;
  transform: translateX(-50%);
}

.hub-dropdown[hidden] {
  display: none;
}

.hub-dropdown a,
.hub-dropdown .hub-overview-link {
  padding: 11px 12px;
  font-size: var(--text-sm);
  line-height: 1.4;
}

.hub-nav-item--resources .hub-dropdown {
  left: 50%;
  width: min(650px, 72vw);
  transform: translateX(-42%);
}

.hub-nav-item--areas .hub-dropdown {
  right: 0;
  left: auto;
  width: 300px;
  transform: none;
}

.site-header,
.header-inner {
  height: 78px;
}

.header-inner {
  padding-right: var(--page-gutter);
  padding-left: 300px;
  gap: clamp(16px, 1.7vw, 28px);
}

.brand-panel {
  width: 292px;
  height: 154px;
}

.brand-panel img {
  width: 215px;
  height: 138px;
  margin-left: 22px;
}

.header-phone strong {
  font-size: 0.9375rem;
}

.header-phone small {
  color: var(--text-secondary);
  font-size: var(--text-xs);
}

.header-inner > .button {
  min-width: 150px;
  min-height: 44px;
  padding-inline: 18px;
  font-size: var(--text-xs);
}

.hero {
  min-height: 650px;
  height: min(72vw, 720px);
}

.hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(2, 12, 19, 0.78) 0%,
      rgba(2, 12, 19, 0.56) 32%,
      rgba(2, 12, 19, 0.13) 63%,
      transparent 80%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.16), transparent 58%);
}

.hero-content {
  top: clamp(120px, 14vw, 175px);
  left: var(--page-gutter);
  width: min(590px, 48vw);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.58);
}

.hero h1 {
  font-size: var(--heading-lg);
  letter-spacing: -0.035em;
  line-height: 1;
}

.hero h1 span {
  font-size: clamp(3.25rem, 5.6vw, 5rem);
}

.hero-copy {
  width: min(480px, 100%);
  margin-block: 28px 22px;
  font-size: var(--text-lg);
  line-height: 1.6;
}

.button-work {
  font-size: var(--text-sm);
}

.google-card {
  right: var(--page-gutter);
  bottom: 44px;
  width: 250px;
  height: auto;
  min-height: 146px;
  padding: 22px;
}

.rating-top strong {
  font-size: 1rem;
}

.google-card small {
  color: var(--text-secondary);
  font-size: var(--text-xs);
  line-height: 1.35;
}

.google-card > p {
  margin-top: 20px;
  font-size: 1.45rem;
}

.trust-bar {
  height: auto;
  min-height: 112px;
}

.trust-inner {
  max-width: var(--content-max);
  min-height: 112px;
  margin-inline: auto;
  padding: 18px var(--page-gutter);
}

.trust-item {
  min-height: 60px;
  padding-inline: clamp(12px, 1.7vw, 26px);
}

.trust-item span {
  font-size: var(--text-xs);
  line-height: 1.45;
}

.about-services,
.process,
.community,
.crew-showcase,
.final-cta {
  height: auto;
}

.about-services {
  max-width: var(--content-max);
  min-height: 580px;
  margin-inline: auto;
  padding: clamp(64px, 6vw, 92px) var(--page-gutter);
  grid-template-columns: minmax(460px, 1.05fr) minmax(520px, 1.2fr);
  gap: clamp(42px, 5vw, 76px);
}

.about-block {
  grid-template-columns: minmax(260px, 1fr) minmax(220px, 280px);
  gap: 24px;
}

.about-copy h2 {
  margin-block: 18px 22px;
  font-size: clamp(2rem, 3vw, 2.75rem);
}

.about-copy h2 em {
  font-size: 1.18em;
}

.body-copy,
.check-list li {
  color: var(--text-secondary);
  font-size: 1rem;
}

.check-list li {
  align-items: flex-start;
  white-space: normal;
}

.check-list {
  gap: 16px;
}

.about-photo {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.services-grid {
  margin-top: 22px;
  gap: 18px;
}

.service-card {
  height: 190px;
}

.service-card > img {
  height: 144px;
}

.service-card strong {
  right: 10px;
  bottom: 12px;
  left: 10px;
  font-size: var(--text-xs);
}

.service-icon {
  bottom: 28px;
  width: 38px;
  height: 38px;
}

.content-section {
  padding: clamp(64px, 6vw, 96px) var(--page-gutter);
}

.content-section > :where(header, div, aside, nav),
.process > :where(h2, div),
.community > :where(div, article),
.crew-showcase > :where(article, figure) {
  max-width: var(--content-max);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading h2,
.story-section h2,
.local-roots h2,
.contact-card h2 {
  font-size: var(--heading-md);
  line-height: 1.15;
}

.section-heading > p:not(.eyebrow),
.lead-copy {
  color: var(--text-secondary);
  font-size: var(--text-lg);
  line-height: 1.7;
}

.inner-hero-content > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.94);
  font-size: var(--text-lg);
  line-height: 1.7;
}

.depth-card-grid {
  gap: 24px;
}

.depth-card-grid article {
  padding: 30px;
}

.depth-card-grid h3 {
  font-size: var(--heading-sm);
}

.depth-card-grid p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.process {
  min-height: 260px;
  padding: 54px var(--page-gutter);
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: 48px;
}

.process > h2 {
  margin-top: 12px;
  font-size: 2rem;
}

.process > h2 span {
  font-size: 1.25rem;
}

.process-steps {
  gap: clamp(28px, 4vw, 54px);
}

.step-number {
  width: 36px;
  height: 36px;
  font-size: 1rem;
}

.process-step h3 {
  margin: 10px 0 8px;
  font-size: 1rem;
}

.process-step p {
  margin: 0;
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.process-step:not(:last-child)::after {
  color: var(--border-accessible);
}

.community {
  min-height: 460px;
  padding: 72px var(--page-gutter);
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: clamp(36px, 5vw, 72px);
}

.review-grid {
  gap: 18px;
}

.review-card {
  height: auto;
  min-height: 230px;
  padding: 22px;
}

.review-card > p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.review-card footer {
  font-size: var(--text-xs);
}

.google-link {
  min-height: 44px;
  padding-inline: 16px;
  font-size: var(--text-xs);
}

.service-area-card,
.service-area-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.crew-showcase {
  min-height: 330px;
  padding: 32px var(--page-gutter) 76px;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
}

.crew-card,
.van-card {
  width: 100%;
  height: 260px;
}

.crew-card {
  grid-template-columns: minmax(250px, 0.9fr) minmax(300px, 1.1fr);
}

.crew-copy {
  padding: 36px;
}

.crew-copy > p:not(.eyebrow) {
  font-size: var(--text-sm);
  line-height: 1.65;
}

.crew-copy a {
  min-height: 42px;
  padding-inline: 15px;
  font-size: var(--text-xs);
  white-space: nowrap;
}

.crew-card img,
.van-card img {
  width: 100%;
  height: 260px;
}

.final-cta {
  min-height: 190px;
  padding: 36px var(--page-gutter);
  grid-template-columns: 150px 1fr minmax(210px, 260px);
  gap: clamp(32px, 5vw, 72px);
}

.footer-message h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
}

.footer-message p {
  font-size: 1rem;
}

.footer-contact strong {
  font-size: 1rem;
}

.footer-contact small {
  font-size: var(--text-xs);
}

.breadcrumbs ol {
  font-size: var(--text-xs);
}

.inner-trust span,
.card-body > p,
.inner-process-grid p,
.inner-review-card blockquote,
.inner-review-card footer strong,
.inner-review-card footer span,
.inner-review-card footer small,
.faq-list summary,
.faq-list details > p,
.feature-checks li,
.story-section > div > p:not(.eyebrow),
.story-quote p,
.value-grid p,
.proof-grid p,
.local-roots p,
.resource-cta p,
.area-contact-band p,
.answer-cta p,
.contact-form label,
.contact-form .consent-row,
.form-success p,
.contact-card small,
.contact-card strong,
.service-card-plain p,
.privacy-note,
.service-intro > div > p,
.service-secondary-image figcaption,
.service-area-chips a,
.warranty-card span,
.warranty-card p,
.related-links > div a,
.category-nav a,
.post-meta,
.article-meta,
.article-content,
.article-callout strong,
.article-callout p,
.article-service-cta p:not(.eyebrow),
.article-sidebar nav a,
.sidebar-contact strong,
.sidebar-contact p,
.faq-category-list span,
.area-link-list strong,
.area-link-list small,
.service-radius-card > strong,
.service-radius-card p,
.location-label,
.location-intro > div > p,
.local-detail-card li,
.local-detail-card small,
.local-service-links a,
.quote-band p:not(.eyebrow),
.quote-phone,
.not-found-page > p:not(.eyebrow),
.footer-brand p,
.footer-brand a,
.footer-grid nav h2,
.footer-grid nav a,
.footer-hours,
.footer-legal,
.section-navigation > div > small,
.section-navigation a,
.section-navigation a span,
.content-depth-list li,
.content-table-wrap table,
.content-table-wrap caption,
.content-callout strong,
.content-callout p,
.context-links a,
.editorial-note p,
.section-index {
  font-size: var(--text-sm);
  line-height: 1.65;
}

.inner-hero-actions .button,
.local-roots .eyebrow,
.article-sidebar .section-navigation a,
.process-number {
  font-size: var(--text-xs);
}

.inner-process-grid h3 {
  font-size: 1rem;
}

.article-content,
.article-callout p,
.content-depth-list li,
.editorial-note p,
.location-intro > div > p,
.service-intro > div > p {
  font-size: 1rem;
}

.article-content {
  max-width: var(--reading-max);
  line-height: 1.75;
}

.footer-brand p,
.footer-grid nav a,
.footer-hours,
.footer-legal {
  color: rgba(255, 255, 255, 0.86);
}

.privacy-note,
.local-detail-card small {
  color: var(--text-muted);
}

.home-gallery-heading > div > p:last-child,
.home-gallery-card-copy p,
.home-gallery-count,
.gallery-page-hero-copy > p:not(.eyebrow),
.gallery-filter-bar button,
.gallery-project-image > span,
.gallery-project-caption > p,
.gallery-project-caption small,
.gallery-project-caption a,
.gallery-planning-section > div > p:not(.eyebrow),
.gallery-planning-section li,
.gallery-lightbox-topbar > span,
.gallery-lightbox-footer p,
.home-gallery-card-copy > span,
.gallery-project-caption > span,
.gallery-lightbox-footer > div:first-child > span {
  font-size: var(--text-sm);
  line-height: 1.55;
}

.home-gallery-heading > div > p:last-child,
.gallery-project-caption > p,
.gallery-project-caption small,
.gallery-planning-section > div > p:not(.eyebrow) {
  color: var(--text-secondary);
}

.home-gallery-heading > div > p:last-child,
.gallery-page-hero-copy > p:not(.eyebrow),
.gallery-lightbox-footer p {
  color: rgba(255, 255, 255, 0.9);
}

.inner-hero-content,
.content-section > :where(header, div, aside, nav),
.quote-band,
.footer-grid,
.footer-legal,
.home-gallery-heading,
.home-gallery-carousel,
.gallery-page-hero-copy,
.gallery-filter-bar,
.gallery-project-grid,
.gallery-planning-section {
  margin-inline: auto;
}

.content-section > :where(header, div, aside, nav),
.footer-grid,
.footer-legal {
  width: min(100%, var(--content-max));
}

@media (min-width: 1101px) and (max-width: 1320px) {
  .header-inner {
    padding-right: 22px;
    padding-left: 250px;
    gap: 12px;
  }

  .brand-panel {
    width: 244px;
    height: 138px;
  }

  .brand-panel img {
    width: 184px;
    height: 120px;
    margin-left: 16px;
  }

  .desktop-nav,
  .hub-navigation {
    gap: 8px;
  }

  .hub-nav-link {
    padding-inline: 2px;
  }

  .header-phone {
    display: none;
  }

  .header-inner > .button {
    min-width: 132px;
    padding-inline: 12px;
  }
}

@media (max-width: 1100px) {
  .site-header,
  .header-inner {
    height: 82px;
  }

  .header-inner {
    padding: 0 24px 0 190px;
    justify-content: flex-end;
  }

  .brand-panel {
    width: 205px;
    height: 116px;
  }

  .brand-panel img {
    width: 158px;
    height: 102px;
    margin-left: 14px;
  }

  .desktop-nav,
  .header-inner > .button {
    display: none;
  }

  .mobile-menu-button {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: var(--blue);
    cursor: pointer;
  }

  .site-header > .mobile-nav {
    position: absolute;
    top: 82px;
    right: 16px;
    left: 16px;
    z-index: 70;
    max-height: min(75vh, 720px);
    padding: 16px;
    display: grid;
    gap: 4px;
    overflow-y: auto;
    border: 1px solid #cbd4dd;
    border-radius: 12px;
    color: var(--text-primary);
    background: #fff;
    box-shadow: 0 18px 38px rgba(8, 34, 68, 0.22);
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu > summary {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    cursor: pointer;
    border-radius: 8px;
    color: #fff;
    background: var(--blue);
    list-style: none;
  }

  .mobile-menu .mobile-nav {
    top: 52px;
    right: 0;
    left: auto;
    width: min(430px, calc(100vw - 32px));
  }

  .mobile-nav a,
  .mobile-hub-menu > summary {
    font-size: 1rem;
  }

  .mobile-nav > .mobile-direct-link {
    display: block;
    border-bottom: 1px solid #e7ecf2;
  }

  .mobile-nav .mobile-hub-links a {
    font-size: var(--text-sm);
  }

  .mobile-nav .mobile-hub-links .mobile-hub-overview {
    font-size: var(--text-xs);
  }

  .hero {
    height: auto;
    min-height: 680px;
  }

  .hero-content {
    width: min(560px, calc(100% - 14vw));
  }

  .about-services {
    grid-template-columns: 1fr;
  }

  .about-block {
    grid-template-columns: minmax(280px, 1fr) minmax(240px, 320px);
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .community {
    grid-template-columns: 1fr;
  }

  .review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .crew-showcase {
    grid-template-columns: 1fr;
  }

  .final-cta {
    grid-template-columns: 130px 1fr minmax(190px, 230px);
  }
}

@media (max-width: 680px) {
  body {
    font-size: 1rem;
  }

  .header-inner {
    padding-right: 18px;
    padding-left: 170px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-content {
    top: 130px;
    width: calc(100% - 14vw);
  }

  .hero h1 {
    font-size: clamp(2.5rem, 11vw, 3.35rem);
  }

  .hero h1 span {
    font-size: clamp(3rem, 13vw, 4rem);
    white-space: normal;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .google-card {
    width: min(250px, calc(100% - 14vw));
  }

  .trust-inner,
  .review-grid,
  .process-steps,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-block,
  .crew-card,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .about-photo {
    min-height: 360px;
  }

  .service-card {
    height: 230px;
  }

  .service-card > img {
    height: 180px;
  }

  .process,
  .community,
  .crew-showcase,
  .final-cta {
    padding-inline: var(--page-gutter);
  }

  .crew-card,
  .van-card,
  .crew-card img,
  .van-card img {
    height: auto;
  }

  .final-cta {
    justify-items: center;
    text-align: center;
  }
}

/* The static package keeps native details/summary markup for the desktop hubs. */
.desktop-nav .hub-menu {
  width: 32px;
  height: 44px;
}

.desktop-nav .hub-menu > summary {
  width: 32px;
  height: 44px;
  border-radius: 7px;
}

.desktop-nav .hub-menu > summary svg {
  width: 14px;
  height: 14px;
}

.desktop-nav .hub-menu[open] > summary {
  color: var(--blue);
  background: var(--surface-hover);
}

@media (prefers-reduced-motion: reduce) {
  .hub-menu-toggle svg {
    transition: none;
  }
}
