:root {
  --black: #050505;
  --ink: #f7f7f7;
  --muted: #d6d6d6;
  --line: rgba(255, 209, 0, 0.3);
  --soft: #0d0d0d;
  --card: #121212;
  --card-strong: #1a1a1a;
  --yellow: #ffd100;
  --yellow-dark: #e5b800;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--black);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

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

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

h1 {
  font-size: 2.45rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.15rem;
}

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

.narrow {
  max-width: 860px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 99999;
  background: var(--yellow);
  color: var(--black);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

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

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

.header-inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid rgba(255, 209, 0, 0.45);
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  font-size: 1rem;
  color: var(--white);
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

.desktop-nav,
.header-actions {
  display: none;
}

.desktop-nav {
  align-items: center;
  gap: 4px;
}

.desktop-nav a,
.nav-dropdown > button,
.phone-link {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: var(--radius);
}

.desktop-nav a:hover,
.desktop-nav a.active,
.nav-dropdown > button:hover,
.phone-link:hover {
  color: var(--yellow);
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 270px;
  padding: 8px;
  background: var(--black);
  color: var(--ink);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.18s ease;
}

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

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

.dropdown-panel a:hover {
  background: rgba(255, 209, 0, 0.12);
  color: var(--yellow);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-content: center;
  gap: 5px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--yellow);
}

.mobile-nav {
  display: none;
  padding: 0 16px 18px;
  background: rgba(5, 5, 5, 0.98);
}

.mobile-nav.open {
  display: grid;
  gap: 6px;
}

.mobile-nav a {
  color: var(--white);
  text-decoration: none;
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 800;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
  max-width: 100%;
  text-align: center;
}

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

.btn-small {
  min-height: 42px;
  padding: 9px 14px;
  font-size: 0.92rem;
}

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

.btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
}

.btn-outline-white {
  color: var(--yellow);
  border-color: var(--yellow);
}

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

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

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

.btn-dark:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 128px 0 72px;
}

.hero-sub {
  min-height: 430px;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.48));
}

.hero-home .hero-overlay {
  background: rgba(5, 5, 5, 0.58);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-content-center {
  text-align: center;
  margin: 0 auto;
}

.hero h1 {
  color: var(--white);
  margin: 14px 0 18px;
}

.hero p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.hero-actions,
.button-row,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-content-center .hero-actions {
  justify-content: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--yellow);
}

.eyebrow.dark {
  color: var(--black);
  background: var(--yellow);
  padding: 6px 10px;
  border-radius: 999px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 38px auto 0;
  max-width: 760px;
}

.hero-stats div {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  padding: 14px;
}

.hero-stats strong {
  display: block;
  color: var(--yellow);
  font-size: 1.2rem;
}

.hero-stats span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.info-strip {
  background: var(--yellow);
  color: var(--black);
}

.info-grid {
  display: grid;
  gap: 14px;
  padding: 18px 0;
}

.info-grid p {
  margin: 0;
  color: var(--black);
}

.info-grid strong,
.info-grid span {
  display: block;
}

.info-grid span {
  font-size: 0.9rem;
  opacity: 0.8;
}

.section {
  padding: 76px 0;
  background: var(--black);
}

.section-soft {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-header h2 {
  margin: 12px 0 14px;
  color: var(--white);
}

.section-header p {
  font-size: 1.05rem;
}

.split-grid,
.quote-grid,
.contact-layout {
  display: grid;
  gap: 34px;
  align-items: center;
}

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

.media-stack {
  position: relative;
}

.feature-image,
.card-image,
.gallery-image {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.feature-image {
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.media-note {
  margin-top: -42px;
  margin-left: 18px;
  margin-right: 18px;
  position: relative;
  z-index: 2;
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  padding: 18px;
}

.media-note strong,
.media-note span {
  display: block;
}

.media-note span {
  color: rgba(255, 255, 255, 0.74);
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--white);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.38em;
  width: 16px;
  height: 16px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px var(--black);
}

.service-grid,
.feature-grid,
.process-grid,
.gallery-grid,
.contact-cards {
  display: grid;
  gap: 18px;
}

.service-card,
.feature-grid article,
.process-step,
.contact-panel,
.contact-cards article,
.faq-list,
.map-card,
.gallery-grid figure {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  overflow: hidden;
}

.service-card {
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(255, 209, 0, 0.12);
}

.card-image {
  aspect-ratio: 16 / 10;
}

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

.service-card h3,
.feature-grid h3,
.process-step h3,
.contact-panel h3,
.contact-cards h3 {
  margin-bottom: 10px;
}

.service-card span {
  display: inline-block;
  margin-top: 8px;
  color: var(--yellow);
  font-weight: 900;
  border-bottom: 3px solid var(--yellow);
}

.dark-section {
  background: var(--black);
  color: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.dark-section .section-header p,
.dark-section .feature-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.dark-section .feature-grid article {
  background: var(--card);
  border-color: rgba(255, 209, 0, 0.28);
}

.feature-grid article,
.process-step,
.contact-cards article {
  padding: 22px;
}

.feature-grid.light article {
  background: var(--card);
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 16px;
}

.gallery-grid figure {
  margin: 0;
}

.gallery-image {
  aspect-ratio: 16 / 10;
}

.gallery-grid figcaption {
  padding: 10px 12px;
  color: var(--muted);
  background: var(--card-strong);
  font-size: 0.9rem;
}

.faq-list {
  padding: 10px 22px;
  box-shadow: 0 12px 36px rgba(255, 209, 0, 0.08);
}

.faq-item + .faq-item {
  border-top: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  font: inherit;
  font-weight: 900;
  color: var(--ink);
}

.faq-question b {
  color: var(--yellow);
  font-size: 1.4rem;
}

.faq-answer {
  padding: 0 0 18px;
}

.cta-section {
  background: var(--black);
  color: var(--white);
  padding: 54px 0;
  border-top: 3px solid var(--yellow);
  border-bottom: 3px solid var(--yellow);
}

.cta-inner {
  display: grid;
  gap: 24px;
  align-items: center;
}

.cta-inner p {
  color: var(--muted);
  margin-bottom: 0;
}

.quote-grid {
  align-items: stretch;
}

.quote-embed {
  min-height: 1800px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: visible;
  box-shadow: 0 12px 36px rgba(255, 209, 0, 0.08);
}

.quote-widget-frame {
  display: block !important;
  width: 100%;
  height: 1800px;
  min-height: 1800px;
  border: 0;
  background: var(--white);
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  position: relative !important;
  left: auto !important;
}

.contact-panel {
  padding: 24px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 22px 0 0;
}

.contact-list div {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.contact-list dt {
  font-weight: 900;
  color: var(--ink);
}

.contact-list dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.contact-list a,
.contact-cards a {
  color: var(--yellow);
  font-weight: 900;
}

.area-box {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.area-box h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.map-card {
  min-height: 360px;
}

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

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

.site-footer {
  background: var(--black);
  color: var(--white);
}

.footer-grid {
  display: grid;
  gap: 30px;
  padding: 54px 0;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  border-radius: 6px;
  border: 1px solid rgba(255, 209, 0, 0.45);
}

.footer-brand span {
  font-weight: 900;
}

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

.site-footer h3 {
  color: var(--yellow);
  font-size: 1rem;
  margin-bottom: 14px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

@media (min-width: 640px) {
  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-stats,
  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-grid,
  .feature-grid,
  .process-grid,
  .gallery-grid,
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  h1 {
    font-size: 4.15rem;
  }

  .desktop-nav,
  .header-actions {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .split-grid {
    grid-template-columns: 1fr 1fr;
    gap: 58px;
  }

  .quote-grid,
  .contact-layout {
    grid-template-columns: 1.45fr 0.8fr;
    gap: 36px;
  }

  .cta-inner {
    grid-template-columns: 1fr auto;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1.25fr 1fr 1fr 1fr;
  }
}

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

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .hero {
    padding-top: 112px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions,
  .button-row,
  .cta-actions {
    width: 100%;
  }

  .quote-embed {
    min-height: 2200px;
  }

  .quote-widget-frame {
    height: 2200px;
    min-height: 2200px;
  }
}
