:root {
  --black: #050505;
  --ink: #111111;
  --charcoal: #1f1f1f;
  --gray-900: #262626;
  --gray-800: #333333;
  --gray-700: #4b4b4b;
  --gray-200: #e6e6e6;
  --gray-100: #f5f5f5;
  --white: #ffffff;
  --accent: #b91c1c;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 96px;
}

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;
}

svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(860px, calc(100% - 32px));
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 10000;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 6px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(5, 5, 5, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 72px;
  height: 48px;
  object-fit: contain;
  background: var(--white);
  border-radius: 6px;
  padding: 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.site-nav a,
.site-nav button,
.phone-link,
.nav-quote {
  color: var(--white);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a,
.site-nav button {
  padding: 10px 12px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.site-nav a:hover,
.site-nav button:hover,
.phone-link:hover {
  color: #e7e7e7;
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-panel a {
  display: block;
  color: var(--ink);
  border-radius: 6px;
}

.dropdown-panel a:hover {
  background: var(--gray-100);
  color: var(--black);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-quote {
  background: var(--white);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 8px;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-page {
  min-height: 430px;
  padding-top: 78px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  background: var(--black);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.55) 48%, rgba(0, 0, 0, 0.35));
}

.hero-content {
  padding: 132px 0 72px;
}

.hero-page .hero-content {
  padding: 76px 0 64px;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-size: 0.74rem;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-kicker {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 9px 13px;
}

.eyebrow {
  color: var(--accent);
  background: rgba(185, 28, 28, 0.08);
  padding: 8px 12px;
}

.on-dark .eyebrow,
.cta-section .eyebrow {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.hero h1 {
  max-width: 900px;
  margin: 18px 0 20px;
  font-size: 3.7rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-page h1 {
  font-size: 3rem;
  max-width: 820px;
}

.hero p {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.22rem;
  margin: 0;
}

.hero-actions,
.inline-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  border: 2px solid transparent;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease, border-color 150ms ease;
}

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

.btn-primary {
  background: var(--white);
  color: var(--black);
}

.btn-secondary {
  background: var(--black);
  color: var(--white);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

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

.btn-dark-outline {
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--white);
}

.btn-dark-outline:hover {
  background: var(--white);
  color: var(--black);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
}

.breadcrumbs a {
  text-decoration: none;
}

.trust-strip {
  background: var(--black);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid div {
  padding: 26px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1.1;
}

.trust-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 4px;
  font-weight: 700;
}

.section {
  padding: 86px 0;
}

.section-muted,
.quote-section,
.faq-section {
  background: var(--gray-100);
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2,
.cta-section h2 {
  font-size: 2.45rem;
  line-height: 1.1;
  margin: 14px 0 14px;
  letter-spacing: 0;
}

.section-heading p,
.split p,
.cta-section p {
  color: var(--gray-700);
  font-size: 1.05rem;
  margin: 0 0 16px;
}

.on-dark p,
.section-dark .section-heading p,
.cta-section p {
  color: rgba(255, 255, 255, 0.76);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.reverse > div:first-child {
  order: 2;
}

.media-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.media-main,
.media-small {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-small {
  border: 0;
}

.media-logo-focus {
  object-position: center 23%;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.check-grid span,
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.check-grid svg,
.feature-list svg {
  color: var(--accent);
  flex: 0 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.07);
}

.service-card a {
  text-decoration: none;
  display: block;
  height: 100%;
}

.card-image {
  width: 100%;
  height: 260px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  background: var(--gray-100);
}

.service-card-body {
  padding: 22px;
}

.service-card-body span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-card h3,
.values-grid h3,
.process-grid h3,
.contact-panel h3 {
  line-height: 1.16;
  margin: 8px 0 10px;
  letter-spacing: 0;
}

.service-card p,
.values-grid p,
.process-grid p,
.contact-panel p {
  color: var(--gray-700);
}

.service-card strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.video-frame {
  background: var(--black);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  margin-top: 34px;
}

.schedule-card {
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.schedule-card h3 {
  margin: 0;
  padding: 14px 16px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0;
}

.schedule-card ul {
  list-style: none;
  margin: 0;
  padding: 6px 16px 16px;
}

.schedule-card li {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
}

.schedule-card li:last-child {
  border-bottom: 0;
}

.schedule-card time {
  display: block;
  color: var(--accent);
  font-weight: 900;
  white-space: nowrap;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.schedule-card strong,
.schedule-card small {
  display: block;
}

.schedule-card small {
  margin-top: 2px;
  color: var(--gray-700);
  font-weight: 700;
  font-size: 0.8rem;
}

.schedule-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.schedule-panel {
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.schedule-panel.compact {
  padding: 22px;
}

.service-schedule-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.service-schedule-list li {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 14px 16px;
  font-weight: 800;
}

.process-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

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

.process-grid article,
.values-grid article {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
}

.process-grid span {
  display: inline-flex;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 12px;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 40px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.feature-list li {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 14px 16px;
}

.faq-list {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
  list-style: none;
}

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

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--gray-700);
}

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

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-inner > div:first-child {
  max-width: 760px;
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 28px;
  align-items: start;
}

.form-shell {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  background: var(--white);
  color: var(--black);
  font: inherit;
  font-weight: 700;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(167, 22, 35, 0.12);
}

.quote-form .btn {
  border: 0;
  cursor: pointer;
  justify-content: center;
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px !important;
  color: var(--gray-700) !important;
  font-size: 0.88rem !important;
  line-height: 1.5;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
}

.hidden-field {
  display: none;
}

.form-fallback {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px 16px;
  background: var(--white);
  color: var(--gray-700);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-fallback a {
  color: var(--accent);
  font-weight: 900;
}

.map-section {
  background: var(--white);
}

.map-frame {
  border-radius: 8px;
  overflow: hidden;
  min-height: 450px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 450px;
}

.contact-panel {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.07);
}

.contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-decoration: none;
  padding: 14px 0;
  border-top: 1px solid var(--gray-200);
}

.contact-row svg {
  margin-top: 4px;
  color: var(--accent);
  flex: 0 0 auto;
}

.contact-row strong,
.contact-row small {
  display: block;
}

.contact-row small {
  color: var(--gray-700);
}

.note {
  margin-top: 18px;
  background: var(--black);
  color: var(--white);
  padding: 14px;
  border-radius: 8px;
  font-weight: 800;
}

.gallery-grid {
  columns: 4 220px;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin: 0 0 16px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--gray-100);
}

.gallery-item img {
  width: 100%;
  height: auto;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 58px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 38px;
}

.footer-brand {
  font-size: 1.3rem;
  font-weight: 900;
  text-decoration: none;
}

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

.site-footer h3 {
  margin: 0 0 14px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.site-footer li + li {
  margin-top: 9px;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 42px;
  padding-top: 20px;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav,
  .nav-actions {
    display: none;
  }

  .site-header.menu-open .site-nav {
    display: grid;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 12px;
  }

  .site-header.menu-open .site-nav a,
  .site-header.menu-open .site-nav button {
    padding: 12px;
    text-align: left;
  }

  .dropdown-panel {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: grid;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
  }

  .dropdown-panel a {
    color: var(--white);
  }

  .hero h1,
  .hero-page h1 {
    font-size: 2.6rem;
  }

  .split,
  .feature-layout,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .process-grid,
  .values-grid,
  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .brand span {
    display: none;
  }

  .hero,
  .hero-page {
    min-height: 620px;
  }

  .hero-content,
  .hero-page .hero-content {
    padding: 116px 0 54px;
  }

  .hero h1,
  .hero-page h1 {
    font-size: 2.05rem;
    line-height: 1.08;
  }

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

  .section {
    padding: 62px 0;
  }

  .section-heading h2,
  .cta-section h2 {
    font-size: 1.85rem;
  }

  .hero-actions,
  .inline-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-grid,
  .services-grid,
  .process-grid,
  .values-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .trust-grid div:last-child {
    border-bottom: 0;
  }

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

  .quote-form {
    padding: 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .media-stack {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}
