@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Oswald:wght@400;500;600;700&display=swap");

:root {
  --background: #0a0a0a;
  --background-soft: #0f0f0f;
  --card: #141414;
  --card-strong: #181818;
  --border: #292929;
  --border-soft: rgba(255, 255, 255, 0.12);
  --text: #f5f5f5;
  --muted: rgba(255, 255, 255, 0.56);
  --muted-strong: rgba(255, 255, 255, 0.72);
  --gold: #ffd000;
  --gold-soft: rgba(255, 208, 0, 0.1);
  --gold-border: rgba(255, 208, 0, 0.28);
  --black: #050505;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.44);
  --heading: "Oswald", Impact, "Arial Narrow", sans-serif;
  --body: "Inter", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255, 208, 0, 0.08), transparent 26rem),
    linear-gradient(180deg, #050505 0%, var(--background) 42%, #080808 100%);
  font: 400 16px/1.6 var(--body);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 208, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 208, 0, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 70%, transparent);
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--black);
  background: var(--gold);
  border-radius: var(--radius-sm);
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.topbar {
  display: none;
}

.topbar .wrap,
.nav-wrap,
.section-inner {
  width: min(1216px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  color: var(--text);
  background: rgba(5, 5, 5, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.26);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  pointer-events: none;
  background: linear-gradient(90deg, #ffd000 0%, #fff05f 18%, #c99a00 42%, #ffd000 68%, #fff05f 100%);
  opacity: 1;
  transition: opacity 180ms ease;
}

.site-header[data-at-top="false"]::before {
  opacity: 0;
}

.nav-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 238px;
  min-width: 190px;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.7vw, 1.65rem);
}

.site-nav a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a[aria-current="page"] {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.78rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--black);
  font: 800 0.86rem/1 var(--heading);
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus {
  background: #ffe15b;
  transform: translateY(-1px);
}

.button.secondary,
.button.outline {
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.25);
}

.button.secondary:hover,
.button.secondary:focus,
.button.outline:hover,
.button.outline:focus {
  color: var(--text);
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--gold-border);
}

.button.dark {
  color: var(--black);
  background: var(--gold);
}

.button.text {
  min-height: auto;
  padding: 0 0 0.12rem;
  border: 0;
  border-bottom: 1px solid var(--gold-border);
  border-radius: 0;
  color: var(--gold);
  background: transparent;
  font-size: 0.84rem;
  text-decoration: none;
}

.button.text:hover,
.button.text:focus {
  color: #ffe15b;
  background: transparent;
  transform: none;
  border-color: var(--gold);
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--heading);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(4rem, 9vw, 8rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
}

h3 {
  margin-bottom: 0.8rem;
  font-size: 1.45rem;
}

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

.lead {
  max-width: 620px;
  color: var(--muted-strong);
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 300;
}

.gold-text {
  color: var(--gold);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.section-header .eyebrow::after,
.split .eyebrow::after,
.hero-content .eyebrow::after,
.page-hero .eyebrow::after,
.contact-card .eyebrow::after {
  display: none;
}

.hero,
.page-hero {
  position: relative;
  color: var(--text);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.hero {
  min-height: 100svh;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.38)),
    linear-gradient(0deg, var(--background), transparent 44%);
}

.hero-home {
  background-image: url("../img/base44-hero.png");
}

.hero .section-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: 100svh;
  padding: 9rem 0 8rem;
}

.hero-content {
  max-width: 760px;
}

.hero-content h1 {
  max-width: 820px;
  color: #fff;
  font-size: clamp(3.75rem, 7.6vw, 7.15rem);
  line-height: 0.95;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.42);
}

.hero-content h1 .hero-line {
  display: block;
}

.hero-content h1 .gold-text {
  color: var(--gold);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-actions .button {
  min-height: 54px;
  padding: 1rem 1.35rem;
  border-radius: 10px;
  font-size: 0.96rem;
}

.hero-stats {
  display: flex;
  align-items: end;
  gap: clamp(2rem, 4vw, 3.4rem);
  margin-top: 2.45rem;
}

.hero-stat strong {
  display: block;
  color: var(--gold);
  font-family: var(--heading);
  font-size: clamp(2.05rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-stat span {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-strip {
  color: var(--text);
  background: var(--background);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transform: translateY(-50%);
}

.trust-item {
  min-height: 112px;
  padding: 1.3rem 1.15rem;
  background: var(--card);
}

.trust-item strong {
  display: block;
  color: var(--gold);
  font-family: var(--heading);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1;
  text-transform: uppercase;
}

.trust-item span {
  display: block;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

section {
  scroll-margin-top: 96px;
}

.section {
  position: relative;
  padding: 7rem 0;
}

.section.white,
.section.dark,
.section.green {
  color: var(--text);
  background: transparent;
}

.section.white {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0)),
    var(--background);
}

.section.dark {
  background: var(--background-soft);
}

.section.green {
  background: var(--gold);
  color: var(--black);
}

.section.green p,
.section.green .muted {
  color: rgba(0, 0, 0, 0.72);
}

.section.green .eyebrow::before,
.section.green .eyebrow::after {
  background: rgba(0, 0, 0, 0.62);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.section-header p {
  max-width: 560px;
  color: var(--muted);
}

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

.section-header.text-center .eyebrow {
  justify-content: center;
}

.section-header.text-center .eyebrow::after {
  display: block;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1fr);
}

.media-frame {
  position: relative;
  overflow: visible;
  border-radius: var(--radius);
}

.media-frame::after {
  content: "";
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  z-index: -1;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold-border);
  border-radius: var(--radius);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.metric-card {
  position: absolute;
  left: -1.25rem;
  bottom: -1.25rem;
  padding: 1rem 1.4rem;
  border-radius: var(--radius);
  color: var(--black);
  background: var(--gold);
  box-shadow: 0 24px 55px rgba(255, 208, 0, 0.18);
}

.metric-card strong {
  display: block;
  font-family: var(--heading);
  font-size: 2rem;
  line-height: 1;
}

.metric-card span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-grid,
.review-grid,
.value-grid,
.contact-grid,
.gallery-grid,
.area-grid,
.policy-grid,
.credential-grid {
  display: grid;
  gap: 1.25rem;
}

.service-grid,
.review-grid,
.value-grid,
.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-grid,
.policy-grid {
  grid-template-columns: 1.08fr 0.92fr;
}

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

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

.card,
.review,
.contact-panel,
.policy-card,
.service-detail,
.value-card,
.credential-card,
.contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)), var(--card);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.card,
.value-card,
.review,
.service-detail {
  position: relative;
  overflow: hidden;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.card::before,
.value-card::before,
.service-detail::before,
.review::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 208, 0, 0), transparent);
  transition: background 220ms ease;
}

.card:hover,
.value-card:hover,
.service-detail:hover,
.review:hover {
  border-color: var(--gold-border);
  background: var(--card-strong);
  transform: translateY(-3px);
}

.card:hover::before,
.value-card:hover::before,
.service-detail:hover::before,
.review:hover::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.card-body,
.review,
.contact-panel,
.policy-card,
.service-detail,
.value-card,
.contact-card {
  padding: 1.5rem;
}

.review {
  display: flex;
  min-height: 206px;
  flex-direction: column;
  justify-content: space-between;
}

.card-body p,
.review p,
.service-detail p,
.policy-card p,
.contact-panel p,
.value-card p,
.contact-card p {
  color: var(--muted);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 208, 0, 0.42);
  border-radius: var(--radius-sm);
  color: #ffd000;
  background: rgba(255, 208, 0, 0.12);
  box-shadow:
    inset 0 0 18px rgba(255, 208, 0, 0.08),
    0 0 0 rgba(255, 208, 0, 0);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.icon-box svg {
  width: 29px;
  height: 29px;
  transition: transform 220ms ease, filter 220ms ease;
}

.icon-box svg,
.icon-box svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card:hover .icon-box {
  border-color: rgba(255, 208, 0, 0.82);
  color: #ffe15b;
  background: rgba(255, 208, 0, 0.18);
  box-shadow:
    inset 0 0 22px rgba(255, 208, 0, 0.12),
    0 0 24px rgba(255, 208, 0, 0.16);
}

.value-card:hover .icon-box svg {
  transform: scale(1.05);
  filter: drop-shadow(0 0 7px rgba(255, 208, 0, 0.42));
}

.check-list,
.plain-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 1.65rem;
  color: var(--muted-strong);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-soft);
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 0.8rem;
  height: 2px;
  background: var(--gold);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  color: var(--gold);
  background: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.repair-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(2.4rem, 4vw, 3.25rem);
  padding: clamp(1.65rem, 3.2vw, 2.35rem);
  border: 1px solid rgba(255, 208, 0, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 208, 0, 0.13), rgba(255, 255, 255, 0.02)),
    var(--card);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.repair-callout h3 {
  margin-bottom: 0.35rem;
}

.repair-callout p {
  max-width: 620px;
  margin-bottom: 0;
}

.repair-callout .cta-row {
  flex: 0 0 auto;
  margin-top: 0;
}

.credential-grid {
  grid-template-columns: repeat(6, 1fr);
  margin-top: 2rem;
}

.credential-card {
  display: grid;
  place-items: center;
  min-height: 116px;
  padding: 1rem;
  background: #f7f7f7;
}

.credential-card img {
  width: auto;
  max-width: 100%;
  max-height: 74px;
  height: auto;
  object-fit: contain;
}

.credential-card.wide img {
  max-height: 54px;
}

.review cite {
  display: block;
  margin-top: 0.95rem;
  color: var(--text);
  font-family: var(--heading);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review p {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.52;
}

.stars,
.review-stars {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--gold);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 450ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item.tall img {
  aspect-ratio: 3 / 4;
}

.gallery-item figcaption {
  padding: 0.9rem 1rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.page-hero {
  min-height: 58svh;
}

.hero-services {
  background-image: url("../img/asphalt-cabin-roof.webp");
}

.hero-gallery {
  background-image: url("../img/asphalt-roof-overview.webp");
}

.hero-service-areas,
.hero-contact {
  background-image: url("../img/work-truck.webp");
}

.hero-privacy {
  background-image: url("../img/metal-roof.webp");
}

.page-hero .section-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: 58svh;
  padding: 9rem 0 5rem;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.breadcrumb {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

.form {
  display: grid;
  gap: 1.25rem;
}

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

.form-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-step[data-active="true"] {
  display: grid;
  gap: 1.25rem;
}

.stepper {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.stepper-items {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

.stepper-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stepper-item span:first-child {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  font-family: var(--heading);
  font-size: 0.9rem;
}

.stepper-item[data-active="true"],
.stepper-item[data-complete="true"] {
  color: var(--gold);
}

.stepper-item[data-active="true"] span:first-child,
.stepper-item[data-complete="true"] span:first-child {
  color: var(--black);
  background: var(--gold);
  box-shadow: 0 0 0 5px var(--gold-soft);
}

.stepper-track {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.stepper-progress {
  display: block;
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: var(--gold);
  transition: width 220ms ease;
}

.form-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

label,
.form-label {
  display: grid;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 54px;
  padding: 0.82rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  background: var(--background);
  font: 400 1rem/1.4 var(--body);
}

textarea {
  min-height: 138px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.24);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(255, 208, 0, 0.18);
  border-color: var(--gold);
}

option {
  color: var(--text);
  background: var(--card);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 1.5rem;
  color: var(--gold);
  font-weight: 700;
}

.form-helper {
  margin: -0.35rem 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.9rem;
}

.contact-panel a,
.policy-card a {
  color: var(--gold);
  font-weight: 800;
}

.map-list {
  columns: 2;
  padding-left: 1.2rem;
  color: var(--muted-strong);
}

.contact-shell {
  max-width: 680px;
  margin: 0 auto;
}

.contact-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
}

.form-note-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.choice-grid {
  display: grid;
  gap: 0.75rem;
}

.choice-grid label {
  display: block;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  background: var(--card);
  cursor: pointer;
}

.choice-card strong {
  font-family: var(--heading);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
}

.choice-card span {
  color: var(--muted);
  font-size: 0.86rem;
  text-transform: none;
  letter-spacing: 0;
}

.choice-card::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.choice-grid input:checked + .choice-card {
  border-color: var(--gold);
  background: var(--gold-soft);
}

.choice-grid input:checked + .choice-card::after {
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-soft);
}

.review-rating {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.star-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  color: rgba(255, 255, 255, 0.18);
  background: transparent;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 160ms ease, transform 160ms ease;
}

.star-button:hover,
.star-button:focus,
.star-button[data-active="true"] {
  color: var(--gold);
  transform: scale(1.08);
}

.review-result {
  display: none;
  padding: 1.2rem;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  background: var(--gold-soft);
}

.review-result[data-active="true"] {
  display: block;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--black);
  background:
    repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.07) 0 1px, transparent 1px 6px),
    var(--gold);
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 30%, rgba(0, 0, 0, 0.06));
}

.cta-band .section-inner {
  position: relative;
  z-index: 1;
  padding: clamp(2.25rem, 5vw, 3.5rem) 0;
}

.cta-band .eyebrow {
  color: rgba(0, 0, 0, 0.68);
}

.cta-band h2 {
  margin-bottom: 0;
  color: var(--black);
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 0.96;
}

.cta-band .cta-row {
  margin-top: 1.35rem;
}

.cta-band .button,
.cta-band .button.secondary,
.cta-band .button.outline {
  color: var(--gold);
  background: var(--black);
  border-color: var(--black);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
}

.cta-band .button:hover,
.cta-band .button:focus,
.cta-band .button.secondary:hover,
.cta-band .button.secondary:focus,
.cta-band .button.outline:hover,
.cta-band .button.outline:focus {
  color: #fff2a3;
  background: var(--black);
  border-color: var(--black);
}

.community-layout {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(250px, 360px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 6vw, 4rem);
  padding: 3.4rem 0 1.05rem;
}

.community-copy p {
  color: rgba(0, 0, 0, 0.82);
}

.community-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.65rem;
  color: rgba(0, 0, 0, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.community-kicker svg,
.community-phone svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.community-band h2 {
  max-width: 460px;
  margin-bottom: 0.65rem;
  color: var(--black);
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 0.94;
}

.community-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.9rem 0 0;
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.82rem;
  font-weight: 700;
}

.community-rating span {
  color: var(--black);
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.community-call {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
}

.community-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-width: 260px;
  min-height: 64px;
  padding: 0.9rem 1.35rem;
  border-radius: 8px;
  color: var(--gold);
  background: var(--black);
  font-family: var(--heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.community-call > span {
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.slogan-band {
  background: var(--black);
}

.community-slogan-row {
  padding: 1.65rem 0 1.9rem;
}

.community-slogan {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.9rem;
  padding: 1.2rem 1.45rem;
  color: var(--text);
  background: var(--black);
}

.slogan-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 5px;
  color: var(--black);
  background: var(--gold);
  font-family: var(--heading);
  font-size: 1.1rem;
  font-weight: 800;
}

.slogan-copy strong {
  display: block;
  color: #fff;
  font-family: var(--heading);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.slogan-copy strong span,
.slogan-copy em {
  color: var(--gold);
}

.slogan-copy em {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.92rem;
  font-weight: 800;
}

.site-footer {
  color: rgba(255, 255, 255, 0.42);
  background: rgba(20, 20, 20, 0.76);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2.5rem;
  padding: 4rem 0;
}

.footer-logo {
  max-width: 250px;
  margin-bottom: 1rem;
}

.site-footer h2,
.site-footer h3 {
  color: var(--text);
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.footer-links a:hover,
.footer-links a:focus {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 5.5rem;
  border-top: 1px solid var(--border);
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.82rem;
}

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

.footer-bottom a:hover,
.footer-bottom a:focus {
  color: var(--gold);
}

.mobile-action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  grid-template-columns: 1fr 1fr;
  background: var(--black);
  border-top: 1px solid var(--gold-border);
}

.mobile-action-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  color: var(--text);
  font-family: var(--heading);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-action-bar a + a {
  color: var(--gold);
  border-left: 1px solid var(--gold-border);
}

.mobile-action-bar a:first-child {
  color: var(--black);
  background: var(--gold);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1100px) {
  .header-actions .button.secondary {
    display: none;
  }

  .brand {
    width: 218px;
    min-width: 190px;
  }

  .site-nav {
    gap: 0.85rem;
  }

  .site-nav a {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-block;
    order: 3;
    margin-left: 0;
  }

  .header-actions {
    order: 2;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 0 1rem;
    background: rgba(5, 5, 5, 0.98);
    border-top: 1px solid var(--border);
  }

  .site-header[data-menu-open="true"] .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .split,
  .split.reverse,
  .contact-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .review-grid,
  .value-grid,
  .gallery-grid,
  .area-grid,
  .credential-grid,
  .repair-grid,
  #values .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    transform: translateY(-2rem);
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .nav-wrap {
    width: 100%;
    min-height: 72px;
    padding: 0 1rem;
  }

  .brand {
    width: 210px;
    min-width: 0;
  }

  .header-actions .button {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .nav-toggle {
    margin-left: auto;
  }

  .hero,
  .hero .section-inner {
    min-height: 92svh;
  }

  .hero .section-inner {
    padding: 7rem 0 6rem;
  }

  .hero-content h1 {
    font-size: clamp(3rem, 13.6vw, 4.45rem);
  }

  .section {
    padding: 5rem 0;
  }

  .section-header {
    display: block;
  }

  .hero-actions,
  .cta-row,
  .repair-callout,
  .form-nav {
    align-items: stretch;
    flex-direction: column;
  }

  .repair-callout {
    margin-top: 2rem;
  }

  .hero-actions .button,
  .cta-row .button:not(.text),
  .form-nav .button {
    width: 100%;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
  }

  .hero-stat strong {
    font-size: clamp(1.65rem, 8vw, 2.45rem);
  }

  .hero-stat span {
    font-size: 0.62rem;
  }

  .trust-grid,
  .service-grid,
  .review-grid,
  .value-grid,
  .gallery-grid,
  .area-grid,
  .credential-grid,
  .repair-grid,
  #values .value-grid {
    grid-template-columns: 1fr;
  }

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

  .stepper-item span:last-child {
    display: none;
  }

  .map-list {
    columns: 1;
  }

  .media-frame img {
    min-height: 300px;
  }

  .metric-card {
    left: 1rem;
    bottom: 1rem;
  }

  .cta-band .section-inner,
  .footer-grid {
    display: block;
  }

  .cta-band .button,
  .cta-band .button.dark,
  .cta-band .button.secondary,
  .cta-band .button.outline {
    color: var(--gold);
    background: var(--black);
    border-color: var(--black);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
  }

  .cta-band .button:hover,
  .cta-band .button:focus,
  .cta-band .button.secondary:hover,
  .cta-band .button.secondary:focus,
  .cta-band .button.outline:hover,
  .cta-band .button.outline:focus {
    color: var(--gold);
    background: var(--black);
    border-color: var(--black);
  }

  .community-layout {
    padding: 3rem 0 1.2rem;
  }

  .community-call {
    justify-items: stretch;
    margin-top: 2rem;
  }

  .community-phone {
    width: 100%;
  }

  .community-slogan-row {
    padding: 1.4rem 0 1.65rem;
  }

  .community-slogan {
    width: 100%;
  }

  .footer-grid > * + * {
    margin-top: 2rem;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom > * + * {
    display: block;
    margin-top: 0.65rem;
  }

  .mobile-action-bar {
    display: grid;
  }
}
