:root {
  --black: #050505;
  --panel: #101010;
  --panel-2: #171717;
  --gold: #d9a52a;
  --gold-light: #f3d06a;
  --gold-dark: #9d7116;
  --silver: #c8c8c8;
  --muted: #9a9a9a;
  --line: rgba(255, 255, 255, 0.14);
  --white: #ffffff;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

img {
  display: block;
  height: auto;
}

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

p {
  margin: 0 0 1rem;
  color: #dedede;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  color: var(--gold-light);
  font-size: clamp(2.45rem, 5.6vw, 4.75rem);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.58);
}

h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  color: var(--gold-light);
  font-size: 1.1rem;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 0.7rem 0.9rem;
  border-radius: 6px;
  background: var(--gold);
  color: #050505;
  font-weight: 800;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.42));
  border-bottom: 1px solid rgba(217, 165, 42, 0.24);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.96);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 152px;
}

.brand img {
  width: 190px;
  max-height: 74px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav > a,
.menu-trigger {
  color: #f2f2f2;
  transition: color 160ms ease;
}

.site-nav > a:hover,
.site-nav > a.active,
.menu-trigger:hover,
.menu-trigger.active {
  color: var(--gold-light);
}

.nav-phone {
  padding-left: 0.7rem;
  border-left: 1px solid var(--line);
}

.menu-group {
  position: relative;
}

.menu-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

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

.menu-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: -18px;
  width: 290px;
  padding: 0.55rem;
  border: 1px solid rgba(217, 165, 42, 0.38);
  border-radius: var(--radius);
  background: rgba(8, 8, 8, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.menu-group:hover .menu-dropdown,
.menu-group.open .menu-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-dropdown a {
  display: block;
  padding: 0.75rem 0.8rem;
  border-radius: 6px;
  color: #ededed;
}

.menu-dropdown a:hover {
  background: rgba(217, 165, 42, 0.16);
  color: var(--gold-light);
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(217, 165, 42, 0.38);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--gold-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.1rem;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
  white-space: nowrap;
}

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

.btn-sm {
  min-height: 42px;
  padding: 0.65rem 0.9rem;
}

.btn-solid {
  color: #050505;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  box-shadow: 0 12px 36px rgba(217, 165, 42, 0.25);
}

.btn-ghost,
.btn-outline,
.btn-band-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.05);
}

.btn-ghost:hover,
.btn-outline:hover,
.btn-band-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

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

.hero {
  position: relative;
  min-height: clamp(620px, 88vh, 680px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 112px 0 24px;
  background: var(--black);
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 0;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.54), rgba(5, 5, 5, 0.78)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.42), rgba(5, 5, 5, 0.88));
}

.hero-content {
  position: relative;
  z-index: 2;
}

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

.hero-left .hero-content {
  text-align: left;
}

.hero-content > p:not(.pill) {
  max-width: 790px;
  margin-top: 1.35rem;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: #f0f0f0;
}

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

.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  margin: 0 0 1rem;
  padding: 0.34rem 0.78rem;
  border: 1px solid rgba(217, 165, 42, 0.34);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(217, 165, 42, 0.12);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-pill {
  background: rgba(255, 255, 255, 0.08);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 1.5rem;
  color: #dedede;
  font-size: 0.95rem;
}

.breadcrumbs a:hover {
  color: var(--gold-light);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-top: 1.6rem;
}

.hero-actions.left {
  justify-content: flex-start;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin: 2.1rem auto 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.13);
}

.hero-left .hero-stats {
  margin-left: 0;
}

.hero-stat {
  padding: 1.1rem;
  background: rgba(5, 5, 5, 0.58);
}

.hero-stat strong {
  display: block;
  color: var(--gold-light);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  line-height: 1.05;
}

.hero-stat span {
  display: block;
  margin-top: 0.3rem;
  color: var(--silver);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-strip {
  border-top: 1px solid rgba(217, 165, 42, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #0a0a0a;
}

.contact-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.contact-strip-inner > * {
  padding: 1rem;
  background: #0a0a0a;
  color: var(--silver);
  font-weight: 800;
  text-align: center;
}

.contact-strip-inner a {
  color: var(--gold-light);
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--black);
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--panel);
}

.split,
.standards-grid,
.quote-grid,
.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-head > p {
  max-width: 420px;
}

.section-head.center {
  display: block;
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head.center .pill {
  margin-right: auto;
  margin-left: auto;
}

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

.feature-grid article,
.process-grid article,
.service-card,
.contact-cards > *,
.area-list-wrap,
.form-shell,
.map-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

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

.feature-grid p {
  margin: 0.55rem 0 0;
  color: #d4d4d4;
}

.lead-copy {
  color: #f2f2f2;
  font-size: 1.12rem;
}

.intro-panel,
.quote-info-panel {
  padding: 1.25rem;
  border: 1px solid rgba(217, 165, 42, 0.28);
  border-radius: var(--radius);
  background: rgba(217, 165, 42, 0.08);
}

.intro-panel h3,
.quote-info-panel h3 {
  margin-bottom: 0.9rem;
}

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

.credential-grid article {
  min-height: 150px;
  padding: 1.15rem;
  border: 1px solid rgba(217, 165, 42, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.credential-grid p {
  margin: 0.7rem 0 0;
  color: var(--silver);
}

.feature-image,
.photo-main,
.photo-secondary,
.photo-frame img,
.service-card img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  object-fit: cover;
}

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

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

.photo-main {
  aspect-ratio: 16 / 10;
}

.photo-secondary {
  position: absolute;
  right: -18px;
  bottom: 18px;
  width: 52%;
  aspect-ratio: 16 / 11;
  border: 3px solid var(--black);
}

.standards-grid {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
}

.photo-frame {
  position: relative;
}

.photo-frame img {
  aspect-ratio: 16 / 10;
}

.photo-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: min(320px, calc(100% - 36px));
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.86);
  border: 1px solid rgba(217, 165, 42, 0.42);
}

.photo-badge strong,
.photo-badge span {
  display: block;
}

.photo-badge strong {
  color: var(--gold-light);
  line-height: 1.1;
}

.photo-badge span {
  color: var(--silver);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

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

.service-card {
  overflow: hidden;
  background: #0c0c0c;
}

.service-card img {
  height: 230px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.service-body {
  padding: 1.25rem;
}

.service-body p {
  min-height: 124px;
  margin-top: 0.8rem;
  color: #d2d2d2;
}

.service-link {
  display: inline-flex;
  color: var(--gold-light);
  font-weight: 900;
}

.service-link::after {
  content: ">";
  margin-left: 0.45rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.service-tags li {
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(217, 165, 42, 0.32);
  border-radius: 999px;
  color: var(--silver);
  background: rgba(217, 165, 42, 0.08);
  font-size: 0.86rem;
  font-weight: 800;
}

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

.process-grid article {
  padding: 1.2rem;
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: #050505;
  background: var(--gold-light);
  font-weight: 900;
}

.process-grid p {
  margin: 0.7rem 0 0;
}

.area-stack {
  display: grid;
  gap: 1rem;
}

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

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

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.area-list-wrap {
  padding: 1.2rem;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.area-list button {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  color: #ededed;
  background: rgba(255, 255, 255, 0.05);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
}

.area-list button:hover,
.area-list button.active {
  color: #050505;
  background: var(--gold-light);
}

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

.faq-list details {
  padding: 1rem 1.2rem;
}

.faq-list summary {
  color: var(--gold-light);
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin-top: 0.75rem;
  margin-bottom: 0;
}

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

.cta-band {
  padding: 3.5rem 0;
  color: #050505;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
}

.cta-band .pill {
  color: #050505;
  border-color: rgba(5, 5, 5, 0.24);
  background: rgba(255, 255, 255, 0.24);
}

.cta-band h2,
.cta-band p {
  color: #050505;
}

.cta-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-end;
}

.btn-band-outline {
  border-color: rgba(5, 5, 5, 0.5);
  color: #050505;
  background: rgba(5, 5, 5, 0.05);
}

.quote-section {
  background: #080808;
}

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

.form-shell {
  min-height: 1040px;
  overflow: hidden;
  background: #ffffff;
}

.form-shell iframe {
  display: block;
  min-height: 1040px;
}

.contact-stack,
.contact-cards {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.contact-stack > *,
.contact-cards > * {
  display: block;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.contact-stack span,
.contact-cards span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-stack strong,
.contact-cards strong {
  display: block;
  margin-top: 0.22rem;
  color: var(--gold-light);
  font-size: 1.05rem;
  line-height: 1.35;
}

.urgent-note {
  margin-top: 1.2rem;
  color: var(--gold-light);
  font-weight: 900;
}

.contact-page-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  align-items: stretch;
}

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

.contact-cards h3 {
  margin-bottom: 0.55rem;
}

.check-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  color: #e5e5e5;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 5px rgba(217, 165, 42, 0.14);
}

.site-footer {
  padding: 4rem 0 1.5rem;
  border-top: 1px solid rgba(217, 165, 42, 0.25);
  background: #030303;
}

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

.footer-grid img {
  width: 210px;
  margin-bottom: 1rem;
}

.footer-grid ul {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.footer-grid a,
.footer-grid li {
  color: #d5d5d5;
}

.footer-grid a:hover {
  color: var(--gold-light);
}

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

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 1020px) {
  .mobile-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid rgba(217, 165, 42, 0.32);
    border-radius: var(--radius);
    background: rgba(5, 5, 5, 0.98);
    box-shadow: var(--shadow);
    flex-direction: column;
  }

  .site-nav.open {
    display: flex;
  }

  .menu-dropdown {
    position: static;
    width: 100%;
    margin-top: 0.5rem;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
  }

  .menu-group.open .menu-dropdown {
    display: block;
  }

  .nav-phone {
    padding-left: 0;
    border-left: 0;
  }

  .contact-strip-inner,
  .services-grid,
  .process-grid,
  .footer-grid,
  .credential-grid,
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .standards-grid,
  .quote-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

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

  .photo-secondary {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

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

  .band-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .container,
  .narrow {
    width: min(100% - 28px, var(--max));
  }

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

  .brand img {
    width: 154px;
    max-height: 62px;
  }

  .hero {
    min-height: 670px;
    padding-top: 112px;
  }

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

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.55rem);
  }

  .hero-actions,
  .hero-actions.left,
  .band-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

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

  .hero-stats {
    margin-top: 2rem;
  }

  .section-head {
    display: block;
  }

  .service-body p {
    min-height: 0;
  }

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

  .form-shell,
  .form-shell iframe {
    min-height: 780px;
  }

  .footer-bottom {
    display: grid;
  }
}
