:root {
  --red: #e31b23;
  --red-dark: #a80f17;
  --green: #1f4d2f;
  --green-soft: #e9f1eb;
  --black: #090909;
  --charcoal: #171717;
  --dark-grey: #2b2d2f;
  --muted: #66706c;
  --line: #dfe3df;
  --surface: #f5f6f2;
  --surface-strong: #eceee8;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 18px 46px rgba(9, 9, 9, 0.16);
  --shadow-soft: 0 12px 28px rgba(9, 9, 9, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video,
iframe {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.narrow {
  width: min(860px, 92vw);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10001;
  transform: translateY(-180%);
  background: var(--red);
  color: var(--white);
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--charcoal);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.85rem, 4vw, 3.25rem);
  font-weight: 880;
}

h3 {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 850;
}

p {
  margin: 0;
  color: var(--muted);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(31, 77, 47, 0.16);
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pill-dark {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.78rem 1.25rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.1;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.btn::after {
  content: "->";
  margin-left: 0.55rem;
}

.btn[href^="tel:"]::after {
  content: "";
  margin-left: 0;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  min-height: 42px;
  padding: 0.56rem 0.95rem;
  font-size: 0.94rem;
}

.btn-solid {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(227, 27, 35, 0.26);
}

.btn-solid:hover {
  background: var(--red-dark);
}

.btn-outline {
  color: var(--charcoal);
  border-color: rgba(9, 9, 9, 0.22);
  background: var(--white);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red-dark);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--charcoal);
}

.btn-light {
  color: var(--red-dark);
  background: var(--white);
}

.site-header {
  position: fixed;
  z-index: 9999;
  inset: 0 0 auto;
  color: var(--white);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.site-header.scrolled,
.site-header.menu-open {
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: rgba(9, 9, 9, 0.08);
  box-shadow: 0 12px 28px rgba(9, 9, 9, 0.08);
  backdrop-filter: blur(12px);
}

.nav-row {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand img {
  width: 76px;
  height: 50px;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--black);
}

.brand span {
  color: currentColor;
  font-size: 1.05rem;
  font-weight: 900;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.site-nav > a,
.menu-trigger {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.58rem;
  border: 0;
  background: transparent;
  color: currentColor;
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 760;
  cursor: pointer;
}

.site-nav > a:hover,
.site-nav > a.active,
.menu-trigger:hover {
  background: rgba(227, 27, 35, 0.12);
  color: var(--red);
}

.nav-phone {
  white-space: nowrap;
}

.menu-group {
  position: relative;
}

.menu-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 0.5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.menu-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 330px;
  max-height: min(74vh, 560px);
  overflow: auto;
  display: grid;
  gap: 0.25rem;
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.menu-group:hover .menu-dropdown,
.menu-group:focus-within .menu-dropdown,
.menu-group.open .menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-dropdown a {
  padding: 0.7rem 0.78rem;
  border-radius: var(--radius);
  color: var(--dark-grey);
  font-weight: 820;
}

.menu-dropdown a:hover,
.menu-dropdown a.active {
  background: var(--surface);
  color: var(--red-dark);
}

.mobile-toggle {
  display: none;
  min-height: 42px;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius);
  background: transparent;
  color: currentColor;
  font-weight: 900;
}

.site-header.scrolled .mobile-toggle,
.site-header.menu-open .mobile-toggle {
  border-color: rgba(9, 9, 9, 0.18);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero {
  min-height: 86vh;
  display: flex;
  align-items: center;
}

.page-hero {
  min-height: 540px;
  display: flex;
  align-items: center;
  padding-top: 78px;
}

.hero-bg {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.86), rgba(23, 23, 23, 0.58) 50%, rgba(31, 77, 47, 0.74)),
    rgba(9, 9, 9, 0.24);
}

.hero-content,
.page-hero-content {
  position: relative;
  padding: 7rem 0 3.2rem;
  color: var(--white);
}

.hero-content {
  max-width: 1020px;
  margin: 0 auto;
  text-align: center;
}

.page-hero-content {
  max-width: 900px;
}

.hero h1,
.page-hero h1,
.hero p,
.page-hero p,
.hero .pill,
.page-hero .pill {
  color: var(--white);
}

.hero .pill,
.page-hero .pill {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.17);
}

.hero-content > p:not(.pill),
.page-hero-content > p:not(.pill) {
  margin-top: 0.95rem;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-content > p:not(.pill) {
  margin-right: auto;
  margin-left: auto;
}

.hero-actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-content .hero-actions,
.cta-inner .hero-actions {
  justify-content: center;
}

.hero-stats {
  width: min(760px, 100%);
  margin: 1.8rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-stat {
  padding: 0 1rem;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-stat:first-child {
  border-left: 0;
}

.hero-stat strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.75rem, 3.4vw, 2.7rem);
  line-height: 1;
}

.hero-stat span {
  display: block;
  margin-top: 0.42rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.crumbs a:hover {
  color: var(--white);
}

.contact-strip {
  background: var(--green);
  color: var(--white);
}

.contact-strip-inner {
  min-height: 58px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  font-weight: 850;
}

.contact-strip-inner > * + * {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.section {
  padding: clamp(4rem, 8vw, 6.8rem) 0;
}

.section-alt {
  background: var(--surface);
}

.section-dark {
  background: var(--charcoal);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.75);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.split p + p,
.standards-grid p + p,
.contact-layout p + p {
  margin-top: 1rem;
}

.section-head {
  max-width: 860px;
  margin: 0 auto 2.3rem;
  text-align: center;
}

.section-head p:not(.pill) {
  margin: 0.8rem auto 0;
  max-width: 760px;
  font-size: 1.08rem;
}

.photo-stack {
  position: relative;
  min-height: 500px;
}

.photo-main,
.photo-secondary,
.photo-frame img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.photo-main {
  height: 380px;
}

.photo-secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 56%;
  height: 230px;
  border: 10px solid var(--white);
}

.photo-frame {
  position: relative;
}

.photo-frame img {
  aspect-ratio: 1.18 / 1;
}

.photo-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: min(280px, calc(100% - 2rem));
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.photo-badge strong {
  display: block;
  color: var(--red-dark);
  font-size: 1.05rem;
  line-height: 1.15;
}

.photo-badge span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.feature-grid,
.services-grid,
.process-grid {
  display: grid;
  gap: 1.35rem;
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.6rem;
}

.feature-grid article,
.process-card,
.service-card,
.contact-card,
.faq-item,
.dark-list,
.embed-shell,
.review-embed,
.map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.feature-grid article {
  padding: 1.35rem;
}

.feature-grid article h3 + p {
  margin-top: 0.55rem;
}

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

.service-card {
  overflow: hidden;
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
}

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.service-body p {
  margin-top: 0.65rem;
}

.service-link {
  margin-top: auto;
  padding-top: 1rem;
  color: var(--red-dark);
  font-weight: 900;
}

.service-link::after {
  content: " ->";
}

.standards-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

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

.process-card {
  padding: 1.5rem;
}

.process-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.process-card h3 + p {
  margin-top: 0.6rem;
}

.section-dark .process-card,
.section-dark .feature-grid article,
.section-dark .dark-list {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.35rem 0 0;
}

.check-list p {
  position: relative;
  padding: 0.85rem 0.95rem 0.85rem 2.2rem;
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--dark-grey);
  font-weight: 720;
}

.check-list p::before {
  content: "";
  position: absolute;
  top: 1.32rem;
  left: 0.9rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.review-embed {
  min-height: 360px;
  overflow: hidden;
  padding: 1rem;
}

.review-embed iframe {
  min-height: 330px;
}

.section-dark .review-embed {
  background: var(--white);
}

.area-section {
  background: linear-gradient(180deg, var(--white), var(--surface));
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.4rem 0;
}

.area-chips button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(31, 77, 47, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--green);
  font-weight: 850;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.area-chips button:hover,
.area-chips button.is-active {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.map-card {
  overflow: hidden;
  min-height: 420px;
}

.map-card iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1.15rem 1.25rem;
  color: var(--charcoal);
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--red);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding: 0 1.25rem 1.2rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.75fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.embed-shell {
  margin-top: 1.5rem;
  overflow: hidden;
}

.quote-embed {
  height: 720px;
}

.quote-embed iframe {
  height: 100%;
}

.contact-card {
  padding: 1.4rem;
}

.contact-card h3 + p {
  margin-top: 0.6rem;
}

.contact-points {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.contact-points li {
  display: grid;
  gap: 0.15rem;
  color: var(--muted);
}

.contact-points strong {
  color: var(--charcoal);
}

.contact-points a {
  color: var(--red-dark);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.contact-card .map-card {
  min-height: 300px;
  margin-top: 1.2rem;
  box-shadow: none;
}

.contact-card .map-card iframe {
  height: 300px;
}

.dark-list {
  display: grid;
  gap: 0.8rem;
  padding: 1.3rem;
}

.dark-list p {
  padding: 0.85rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.cta-band {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background:
    linear-gradient(90deg, rgba(227, 27, 35, 0.94), rgba(31, 77, 47, 0.92)),
    var(--red);
  color: var(--white);
  text-align: center;
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-band p {
  max-width: 680px;
  margin: 0.8rem auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.site-footer {
  padding: 3.5rem 0 1.4rem;
  background: var(--black);
  color: var(--white);
}

.site-footer h3,
.site-footer p {
  color: var(--white);
}

.site-footer p,
.footer-list li,
.footer-bottom {
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo img {
  background: var(--black);
}

.footer-map-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--white);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.45);
}

.footer-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.footer-list a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

@media (max-width: 1120px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 920px) {
  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 78px);
    overflow: auto;
    padding: 1rem 4vw 1.5rem;
    background: var(--white);
    color: var(--charcoal);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-header.menu-open .site-nav {
    display: grid;
    align-items: stretch;
  }

  .site-nav > a,
  .menu-trigger,
  .site-nav .btn {
    justify-content: flex-start;
    width: 100%;
  }

  .menu-group {
    display: grid;
  }

  .menu-dropdown {
    position: static;
    width: 100%;
    max-height: none;
    margin-top: 0.4rem;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .hero {
    min-height: 760px;
  }

  .split,
  .standards-grid,
  .reviews-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .photo-stack {
    min-height: auto;
  }

  .photo-main {
    height: auto;
    aspect-ratio: 1.35 / 1;
  }

  .photo-secondary {
    position: static;
    width: 78%;
    height: auto;
    margin: -4rem 0 0 auto;
  }

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

@media (max-width: 680px) {
  .container,
  .narrow {
    width: min(100% - 1.5rem, 1180px);
  }

  .nav-row {
    min-height: 70px;
  }

  .brand img {
    width: 62px;
    height: 40px;
  }

  .brand span {
    font-size: 0.98rem;
  }

  .site-nav {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .hero {
    min-height: 720px;
  }

  .page-hero {
    min-height: 520px;
  }

  .hero-content,
  .page-hero-content {
    padding-top: 6.2rem;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-stats,
  .contact-strip-inner,
  .feature-grid,
  .services-grid,
  .process-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stat {
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 0;
  }

  .hero-stat:first-child {
    border-top: 0;
  }

  .contact-strip-inner {
    padding: 0.8rem 0;
  }

  .contact-strip-inner > * + * {
    padding-top: 0.7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 0;
  }

  .photo-secondary {
    width: 92%;
    margin-top: 0.8rem;
    border-width: 0;
  }

  .map-card,
  .map-card iframe {
    min-height: 320px;
    height: 320px;
  }

  .quote-embed {
    height: 740px;
  }

  .footer-bottom {
    display: grid;
  }
}
