:root {
  --ink: #211d18;
  --muted: #6b6258;
  --line: #ded3c8;
  --paper: #f7f3ed;
  --white: #ffffff;
  --steel: #b65a1e;
  --steel-dark: #7c3a12;
  --gold: #c56a22;
  --green: #9b4a18;
  --charcoal: #171513;
  --warm: #f2e7dc;
  --shadow: 0 14px 32px rgba(33, 29, 24, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8f1e9 360px),
    var(--paper);
  letter-spacing: 0;
  padding-bottom: 0;
}

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

.top-service-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 38px;
  padding: 8px 18px;
  color: rgba(255, 255, 255, 0.86);
  background: var(--charcoal);
  font-size: 13px;
  font-weight: 700;
}

.top-service-bar a {
  color: #d77a2a;
  font-weight: 900;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 13px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 22px rgba(33, 29, 24, 0.06);
}

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

.brand-mark {
  display: block;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: contain;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(33, 29, 24, 0.12);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--steel-dark);
}

.nav-links .areas-menu {
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.nav-links .areas-menu summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  list-style: none;
}

.nav-links .areas-menu summary::-webkit-details-marker {
  display: none;
}

.nav-links .areas-menu summary::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.nav-links .areas-menu[open] summary,
.nav-links .areas-menu summary:hover {
  color: var(--steel-dark);
}

.nav-links .areas-menu[open] summary::after {
  margin-top: 2px;
  transform: rotate(225deg);
}

.areas-menu-panel {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 50;
  width: min(680px, calc(100vw - 36px));
  max-height: min(70vh, 560px);
  overflow: auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf5;
  box-shadow: 0 24px 54px rgba(33, 29, 24, 0.18);
  transform: translateX(-50%);
}

.areas-menu-all {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  border: 1px solid rgba(124, 58, 18, 0.24);
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--white);
  background: var(--steel-dark);
  font-size: 13px;
  font-weight: 900;
}

.areas-menu-all::after {
  content: "View all";
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}

.areas-menu-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.areas-menu-grid a {
  display: flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(124, 58, 18, 0.12);
  border-radius: 6px;
  padding: 9px 10px;
  color: var(--ink);
  background: #ffffff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.areas-menu-grid a:hover,
.areas-menu-grid a[aria-current="page"] {
  border-color: rgba(124, 58, 18, 0.36);
  color: var(--steel-dark);
  background: #fff0df;
}

.nav-links .areas-menu-all:hover,
.nav-links .areas-menu-all[aria-current="page"] {
  border-color: rgba(124, 58, 18, 0.42);
  color: var(--white);
  background: var(--steel-dark);
}

.header-call {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  align-items: center;
  isolation: isolate;
  padding: 11px 15px;
  border-radius: 6px;
  color: var(--white);
  background: var(--steel-dark);
  box-shadow:
    inset 0 -2px 0 rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 176, 88, 0.24),
    0 12px 24px rgba(124, 58, 18, 0.2);
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.ads-page .site-header {
  display: none;
}

.ads-hero {
  min-height: 620px;
}

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

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(23, 21, 19, 0.94) 0%, rgba(44, 34, 26, 0.82) 46%, rgba(44, 34, 26, 0.22) 100%),
    linear-gradient(0deg, rgba(23, 21, 19, 0.46), rgba(23, 21, 19, 0));
}

.hero-content {
  position: relative;
  width: min(790px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 86px);
  padding: 56px 0 88px;
  color: var(--white);
}

.hero-logo-lockup {
  position: relative;
  z-index: 0;
  width: min(470px, 94%);
  margin-bottom: 22px;
  padding: 4px 0;
}

.hero-logo-lockup::before {
  content: "";
  position: absolute;
  inset: 4% -8% 12%;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.42) 48%, rgba(255, 255, 255, 0) 74%);
  filter: blur(3px);
  pointer-events: none;
}

.hero-logo-lockup img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.24));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(42px, 6.5vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 14px 20px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--steel-dark);
  box-shadow: 0 10px 20px rgba(124, 58, 18, 0.2);
}

.header-call::before,
.btn-primary[href^="tel:"]::before,
.mobile-call-bar::before {
  content: "";
  position: absolute;
  inset: -70% -55%;
  z-index: 0;
  background:
    linear-gradient(
      115deg,
      transparent 38%,
      rgba(255, 219, 168, 0.2) 44%,
      rgba(255, 255, 255, 0.82) 50%,
      rgba(255, 219, 168, 0.22) 56%,
      transparent 62%
    );
  transform: translateX(-115%) rotate(7deg);
  animation: callShine 3.2s ease-in-out infinite;
  pointer-events: none;
}

.header-call:hover,
.btn-primary[href^="tel:"]:hover,
.mobile-call-bar:hover {
  background: #9a4614;
  box-shadow:
    0 0 0 1px rgba(255, 176, 88, 0.34),
    0 14px 28px rgba(124, 58, 18, 0.28);
}

@keyframes callShine {
  0%,
  38% {
    transform: translateX(-115%) rotate(7deg);
  }

  62%,
  100% {
    transform: translateX(115%) rotate(7deg);
  }
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span,
.area-tags span,
.proof-list span {
  border-radius: 6px;
  padding: 9px 11px;
  font-size: 13px;
  font-weight: 800;
}

.trust-row span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 660px;
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-panel div {
  padding: 18px;
  background: rgba(17, 24, 39, 0.26);
}

.hero-panel-brand {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 13px;
}

.hero-panel-brand .secondary-logo-seal {
  width: 48px;
  height: 48px;
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 15px;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.55;
}

.hero-panel small {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.secondary-logo-seal {
  display: block;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: contain;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(33, 29, 24, 0.14);
}

.credibility-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.credibility-strip div {
  min-height: 128px;
  padding: 24px clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.credibility-strip strong,
.credibility-strip span {
  display: block;
}

.credibility-strip strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 16px;
}

.credibility-strip span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.quick-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: none;
}

.quick-contact a {
  padding: 26px clamp(18px, 4vw, 48px);
  border-right: 1px solid var(--line);
}

.quick-contact span,
.quick-contact strong {
  display: block;
}

.quick-contact span {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.quick-contact strong {
  color: var(--steel-dark);
  font-size: 20px;
}

.section,
.contact-section {
  padding: 92px clamp(18px, 6vw, 76px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
}

.section p,
.contact-section p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.service-card {
  min-height: 185px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 58, 18, 0.32);
  box-shadow: 0 16px 34px rgba(33, 29, 24, 0.1);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.service-card p {
  margin-bottom: 0;
  font-size: 15px;
}

.opener-brands-section {
  overflow: hidden;
  border-top: 0;
  border-bottom: 0;
  background: #ffffff;
}

.opener-brands-section .section-heading {
  max-width: min(1400px, 100%);
  margin: 0 auto;
  text-align: center;
}

.opener-brands-section .brand-kicker {
  display: block;
  margin: 0 0 24px;
  color: #2c9b8b;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.opener-brands-section h2 {
  max-width: 1400px;
  margin: 0 auto;
  color: #07394d;
  font-size: clamp(34px, 4.35vw, 58px);
  font-weight: 800;
  line-height: 1.08;
}

.brand-marquee {
  position: relative;
  margin-top: 72px;
  overflow: hidden;
}

.brand-marquee::before,
.brand-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(120px, 18vw);
  pointer-events: none;
}

.brand-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
}

.brand-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff, rgba(255, 255, 255, 0));
}

.brand-marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: openerBrandsScroll 36s linear infinite;
  will-change: transform;
}

.brand-marquee-set {
  display: flex;
  align-items: center;
  gap: clamp(52px, 5.8vw, 92px);
  padding-right: clamp(52px, 5.8vw, 92px);
}

.brand-marquee:hover .brand-marquee-track {
  animation-play-state: paused;
}

.opener-brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: auto;
  min-width: 150px;
  min-height: 104px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.opener-brand-card::before {
  display: none;
}

.opener-brand-card img {
  display: block;
  width: auto;
  max-width: 190px;
  max-height: 78px;
  object-fit: contain;
}

.opener-brand-windsor-door img {
  max-width: 180px;
  max-height: 44px;
}

.opener-brand-clopay img {
  max-width: 178px;
  max-height: 104px;
}

.opener-brand-liftmaster img {
  max-width: 245px;
  max-height: 48px;
}

@keyframes openerBrandsScroll {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.real-work-section {
  background: #f8f1e9;
}

.real-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.real-work-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.85fr);
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(66, 38, 20, 0.1);
}

.real-work-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  background: #eaded1;
}

.real-work-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.real-work-card span {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--steel-dark);
  background: #fff0df;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.real-work-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.real-work-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.real-work-card a {
  margin-top: 18px;
  color: var(--steel-dark);
  font-size: 13px;
  font-weight: 900;
}

.offers-section {
  background: #ffffff;
}

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

.offer-card {
  display: grid;
  min-height: 250px;
  align-content: start;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f9fbfd;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.05);
}

.offer-card span {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--steel-dark);
  background: #fff0df;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-card h3 {
  margin: 0;
  font-size: 26px;
}

.offer-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.offer-card a {
  margin-top: 14px;
  color: var(--steel-dark);
  font-weight: 900;
}

.featured-offer {
  color: var(--white);
  background: linear-gradient(135deg, var(--charcoal), #3a281d 62%, #7c3a12);
}

.featured-offer span {
  color: #6f4f13;
  background: #fbefd4;
}

.featured-offer p,
.featured-offer a {
  color: rgba(255, 255, 255, 0.82);
}

.usa-parts-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, #ffffff 0%, #fff8f0 56%, #f1e4d7 100%);
}

.usa-parts-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.usa-parts-copy {
  max-width: 650px;
}

.usa-parts-copy h2 {
  max-width: 620px;
}

.usa-parts-copy p {
  max-width: 620px;
}

.usa-parts-seal {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  border: 1px solid rgba(124, 58, 18, 0.24);
  border-radius: 999px;
  padding: 9px 13px 9px 9px;
  color: var(--steel-dark);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(33, 29, 24, 0.08);
  font-weight: 900;
}

.usa-parts-seal strong {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--charcoal);
  box-shadow: inset 0 0 0 3px var(--steel);
  font-size: 13px;
}

.usa-parts-seal span {
  color: var(--ink);
  font-size: 13px;
}

.usa-parts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.usa-parts-grid article {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.05);
}

.usa-parts-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--steel-dark);
  background: #fff0df;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.usa-parts-grid h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.usa-parts-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 34px;
  align-items: center;
  padding: 70px clamp(18px, 6vw, 76px);
  color: var(--white);
  background: linear-gradient(135deg, var(--charcoal), #30241c 68%, #7c3a12);
}

.band h2 {
  margin: 0;
  max-width: 780px;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.proof-list span {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
}

.process-section {
  background: #ffffff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--line);
}

.process-grid article {
  min-height: 250px;
  padding: 28px;
  background: #ffffff;
}

.process-grid span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--white);
  background: var(--steel-dark);
  font-weight: 900;
}

.process-grid h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

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

.problems-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.problem-list span {
  min-height: 58px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 40px;
  align-items: center;
  background: var(--white);
}

.ad-ready {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 48px clamp(18px, 6vw, 76px);
  color: var(--white);
  background: #1e1a16;
}

.ad-ready h2 {
  max-width: 860px;
  margin-bottom: 10px;
  font-size: clamp(28px, 4vw, 42px);
}

.ad-ready p {
  max-width: 900px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.7;
}

.reviews-section {
  background: var(--warm);
}

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

.review-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.review-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.review-topline .review-head {
  margin-bottom: 0;
}

.review-avatar {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 9px 20px rgba(60, 64, 67, 0.16);
}

.review-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-head strong,
.review-head span {
  display: block;
}

.review-head span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.review-card p {
  color: var(--ink);
  font-size: 16px;
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.review-source,
.review-note {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--steel-dark) !important;
  background: #fff0df;
  font-size: 12px !important;
  font-weight: 900;
}

.review-source {
  margin-top: 12px !important;
}

.review-note {
  margin-top: 10px;
}

.review-grid-compact .review-card {
  min-height: 225px;
}

.ads-reviews {
  padding-top: 72px;
}

.stars {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 7px 10px;
  color: #6f4f13;
  background: #fbefd4;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.area-tags a,
.area-tags span {
  color: var(--steel-dark);
  background: #fff0df;
}

.area-tags a,
.city-link-cloud a,
.metro-links a,
.service-area-directory-link {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.area-tags a:hover,
.city-link-cloud a:hover,
.metro-links a:hover,
.service-area-directory-link:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 58, 18, 0.36);
  background: #f5dfc8;
}

.map-panel {
  min-height: 410px;
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-panel iframe {
  width: 100%;
  height: 410px;
  border: 0;
}

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

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

details {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: 42px;
  align-items: start;
  background: linear-gradient(180deg, #fafafa, #f5eee6);
}

.phone-large {
  display: inline-block;
  margin-top: 12px;
  color: var(--steel-dark);
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 15px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c7d2df;
  border-radius: 6px;
  padding: 13px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 13px !important;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 76px);
  color: rgba(255, 255, 255, 0.8);
  background: var(--charcoal);
}

.site-footer p {
  margin: 0;
}

.footer-business {
  display: grid;
  gap: 6px;
}

.footer-business address {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  line-height: 1.5;
}

.site-footer a {
  color: var(--gold);
  font-weight: 800;
}

.mobile-call-bar {
  position: relative;
  display: none;
  overflow: hidden;
  isolation: isolate;
}

.city-page {
  background: var(--paper);
}

.city-topbar {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 9px 18px;
  color: #f8fafc;
  background: var(--charcoal);
  font-size: 13px;
  font-weight: 800;
}

.city-topbar a:last-child {
  color: #d77a2a;
}

.city-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid #ead7c6;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.city-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: 690px;
  padding: 86px clamp(18px, 6vw, 76px);
  background:
    linear-gradient(120deg, rgba(247, 243, 237, 0.98) 0%, rgba(247, 243, 237, 0.92) 46%, rgba(247, 243, 237, 0.2) 100%),
    url("assets/garage-hero.png") center right / cover no-repeat;
}

.city-logo-lockup {
  display: block;
  width: min(390px, 92%);
  height: auto;
  margin-bottom: 22px;
  border-radius: 0;
  filter: drop-shadow(0 10px 14px rgba(33, 29, 24, 0.13));
}

.city-kicker {
  margin: 0 0 12px;
  color: var(--steel-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.city-hero h1 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.98;
}

.city-hero-copy p {
  max-width: 660px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.city-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn-city-outline {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(124, 58, 18, 0.24);
}

.city-hero-card {
  padding: 30px;
  border: 1px solid rgba(124, 58, 18, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 40px rgba(33, 29, 24, 0.12);
}

.city-card-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.city-card-brand .secondary-logo-seal {
  width: 46px;
  height: 46px;
  box-shadow: 0 8px 18px rgba(33, 29, 24, 0.12);
}

.city-hero-card span {
  display: inline-block;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--steel-dark);
  background: #fff0df;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.city-card-brand span {
  margin-bottom: 0;
}

.city-hero-card h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 31px;
}

.city-hero-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding-left: 19px;
  color: var(--muted);
  line-height: 1.55;
}

.city-hero-card a {
  display: block;
  color: var(--steel-dark);
  font-size: 30px;
  font-weight: 900;
}

.city-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f6eee6;
}

.city-proof div {
  min-height: 128px;
  padding: 25px clamp(18px, 4vw, 44px);
  border-right: 1px solid var(--line);
}

.city-proof strong,
.city-proof span {
  display: block;
}

.city-proof strong {
  margin-bottom: 8px;
  color: var(--ink);
}

.city-proof span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.city-section,
.city-contact {
  padding: 90px clamp(18px, 6vw, 76px);
}

.city-section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.city-section h2,
.city-contact h2 {
  color: var(--ink);
}

.city-service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.city-service-list article {
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.city-service-list span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--steel-dark);
  font-weight: 900;
}

.city-service-list p,
.city-two-col p,
.city-contact p {
  color: var(--muted);
  line-height: 1.7;
}

.city-band {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: 58px clamp(18px, 6vw, 76px);
  color: #fffaf1;
  background: linear-gradient(135deg, var(--charcoal), #30241c 68%, #7c3a12);
}

.city-band h2 {
  max-width: 860px;
  margin: 0;
  color: #fffaf1;
}

.city-two-col,
.city-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: center;
}

.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.city-tags span {
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--steel-dark);
  background: #fff0df;
  font-size: 13px;
  font-weight: 900;
}

.city-map-box {
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(33, 29, 24, 0.11);
}

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

.city-faq {
  background: #f6eee6;
}

.city-contact {
  background: linear-gradient(180deg, #ffffff, #f5eee6);
}

.directory-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: 650px;
  padding: 86px clamp(18px, 6vw, 76px);
  background:
    linear-gradient(120deg, rgba(247, 243, 237, 0.98) 0%, rgba(247, 243, 237, 0.92) 46%, rgba(247, 243, 237, 0.12) 100%),
    url("assets/garage-hero.png") center right / cover no-repeat;
}

.directory-hero h1 {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.98;
}

.directory-hero p {
  max-width: 700px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.directory-summary {
  display: grid;
  gap: 14px;
  padding: 30px;
  border: 1px solid rgba(124, 58, 18, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 40px rgba(33, 29, 24, 0.12);
}

.directory-summary span {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--steel-dark);
  background: #fff0df;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.directory-summary .city-card-brand span {
  margin-bottom: 0;
}

.directory-summary strong {
  color: var(--ink);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.directory-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.metro-directory {
  background: #ffffff;
}

.metro-group-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.metro-group {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.05);
}

.metro-group h3 {
  margin: 0;
  font-size: 21px;
}

.metro-links,
.city-link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.metro-links a,
.city-link-cloud a {
  border: 1px solid rgba(124, 58, 18, 0.18);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--steel-dark);
  background: #fff0df;
  font-size: 13px;
  font-weight: 900;
}

.city-directory-inline {
  background: #ffffff;
}

.city-link-cloud-featured a {
  border-radius: 6px;
  padding: 12px 14px;
}

.service-area-directory-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 24px;
  border: 1px solid rgba(124, 58, 18, 0.24);
  border-radius: 6px;
  padding: 13px 16px;
  color: var(--steel-dark);
  background: #fff0df;
  font-weight: 900;
}

@media (max-width: 1120px) {
  .site-header,
  .city-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    gap: 14px 18px;
    justify-content: space-between;
  }

  .nav-links .areas-menu {
    width: 100%;
  }

  .areas-menu-panel {
    position: static;
    width: 100%;
    max-height: 360px;
    margin-top: 12px;
    transform: none;
  }

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

  .quick-contact,
  .credibility-strip,
  .service-grid,
  .real-work-grid,
  .offer-grid,
  .usa-parts-layout,
  .usa-parts-grid,
  .process-grid,
  .problem-list,
  .review-grid,
  .ad-ready,
  .band,
  .split,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .real-work-card {
    grid-template-columns: 1fr;
  }

  .real-work-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .city-hero,
  .directory-hero,
  .city-proof,
  .city-service-list,
  .city-two-col,
  .city-contact {
    grid-template-columns: 1fr;
  }

  .city-band,
  .city-topbar,
  .city-header {
    flex-wrap: wrap;
  }

  .quick-contact a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 640px;
  }

  .credibility-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-grid {
    gap: 0;
  }

  .process-grid article {
    min-height: auto;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    padding: 12px 14px;
  }

  .top-service-bar {
    flex-wrap: wrap;
    gap: 8px 14px;
    justify-content: flex-start;
    font-size: 12px;
  }

  .areas-menu-grid {
    grid-template-columns: 1fr;
  }

  .areas-menu-panel {
    max-height: 330px;
    padding: 12px;
  }

  .review-topline {
    flex-direction: column;
  }

  .brand-marquee::before,
  .brand-marquee::after {
    width: 36px;
  }

  .opener-brands-section .brand-kicker {
    font-size: 16px;
  }

  .opener-brands-section h2 {
    font-size: clamp(30px, 10vw, 40px);
  }

  .brand-marquee {
    margin-top: 46px;
  }

  .brand-marquee-set {
    gap: 38px;
    padding-right: 38px;
  }

  .opener-brand-card {
    min-width: 138px;
    min-height: 86px;
  }

  .opener-brand-card img {
    max-width: 152px;
    max-height: 68px;
  }

  .opener-brand-windsor-door img {
    max-width: 152px;
    max-height: 36px;
  }

  .opener-brand-liftmaster img {
    max-width: 192px;
    max-height: 38px;
  }

  .city-hero {
    min-height: auto;
    padding-top: 62px;
    background:
      linear-gradient(180deg, rgba(247, 243, 237, 0.98), rgba(247, 243, 237, 0.92)),
      url("assets/garage-hero.png") center / cover no-repeat;
  }

  .directory-hero {
    min-height: auto;
    padding-top: 62px;
    background:
      linear-gradient(180deg, rgba(247, 243, 237, 0.98), rgba(247, 243, 237, 0.92)),
      url("assets/garage-hero.png") center / cover no-repeat;
  }

  .city-hero h1,
  .directory-hero h1 {
    font-size: 40px;
  }

  .city-actions .btn,
  .city-actions a {
    width: 100%;
  }

  .city-hero-card a {
    font-size: 25px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .header-call {
    display: none;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 38px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .btn,
  .hero-actions a {
    width: 100%;
  }

  .proof-list {
    grid-template-columns: 1fr;
  }

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

  .mobile-call-bar {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 30;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    color: var(--white);
    background: var(--steel-dark);
    box-shadow: 0 16px 30px rgba(33, 29, 24, 0.24);
    font-weight: 900;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-call::before,
  .btn-primary[href^="tel:"]::before,
  .mobile-call-bar::before {
    animation: none;
    display: none;
  }

  .brand-marquee-track {
    animation: none;
    transform: none;
  }
}
