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

:root {
  --charcoal: #17191b;
  --charcoal-soft: #202326;
  --charcoal-light: #2a2e31;
  --burgundy: #7f0f29;
  --burgundy-dark: #5d0a1d;
  --gold: #e7a81b;
  --gold-light: #f2bd43;
  --cream: #f6f1e8;
  --white: #ffffff;
  --steel: #8d969c;
  --muted: #5f676d;
  --border: #d8d4cc;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  --font-display: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  --font-heading: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  background: var(--gold);
  color: var(--charcoal);
  padding: 10px 16px;
  font-weight: 800;
  transition: top 180ms ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 112px;
  background: linear-gradient(135deg, #121416, #1c1f21);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.24);
}

.header-inner {
  width: min(1420px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 46px);
}

.brand {
  align-self: flex-start;
  width: 220px;
  height: 166px;
  padding: 4px 10px 14px;
  background: #0f1112;
  clip-path: polygon(0 0, 100% 0, 100% 82%, 50% 100%, 0 82%);
  filter: drop-shadow(0 9px 10px rgba(0, 0, 0, 0.36));
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.primary-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0;
}

.primary-nav a {
  position: relative;
  padding: 12px 22px;
  color: #f4f2ed;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.primary-nav a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25%;
  width: 1px;
  height: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 7px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.header-phone .phone-icon {
  width: 46px;
  height: 46px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 23px;
}

.header-phone span:last-child {
  display: grid;
}

.header-phone small {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.header-phone strong {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-toggle,
.nav-toggle-label {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  padding-top: 88px;
  background:
    linear-gradient(90deg, rgba(16, 18, 19, 0.98) 0%, rgba(16, 18, 19, 0.92) 31%, rgba(16, 18, 19, 0.42) 57%, rgba(16, 18, 19, 0.08) 100%),
    linear-gradient(0deg, rgba(16, 18, 19, 0.24), rgba(16, 18, 19, 0.24)),
    url("/assets/appalachian-hvac-service-vans.webp") center / cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 104px;
  height: 56px;
  background: var(--charcoal);
  clip-path: polygon(0 86%, 7% 58%, 14% 71%, 21% 33%, 29% 76%, 35% 48%, 43% 74%, 51% 27%, 59% 72%, 66% 43%, 73% 79%, 81% 55%, 90% 71%, 100% 36%, 100% 100%, 0 100%);
  border-top: 2px solid var(--gold);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1420px, calc(100% - 64px));
  margin: 0 auto;
}

.hero-content > * {
  max-width: 690px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold-light);
}

.hero h1 {
  margin: 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(58px, 6.3vw, 92px);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: 0.012em;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.hero h1 span {
  display: block;
  color: var(--gold);
}

.mountain-rule {
  display: flex;
  align-items: flex-end;
  height: 34px;
  margin: 18px 0 16px;
  border-bottom: 2px solid var(--gold);
}

.mountain-rule span {
  width: 116px;
  height: 31px;
  margin-left: 38%;
  background: var(--gold);
  clip-path: polygon(0 100%, 20% 55%, 32% 74%, 51% 12%, 72% 74%, 81% 51%, 100% 100%, 76% 84%, 53% 40%, 34% 93%, 18% 72%);
}

.hero-lead {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(23px, 2.2vw, 32px);
  letter-spacing: 0.01em;
}

.hero-copy {
  margin: 8px 0 0;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 25px;
  border: 0;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.1;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
}

.button-burgundy {
  min-width: 276px;
  background: linear-gradient(135deg, #a10f31, var(--burgundy));
  color: var(--white);
}

.button-burgundy > span:first-child {
  font-size: 28px;
}

.button-burgundy > span:last-child {
  display: grid;
  text-align: left;
}

.button-burgundy small {
  font-size: 12px;
  letter-spacing: 0.09em;
}

.button-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #17191b;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 34px;
  margin-top: 26px;
  font-family: var(--font-heading);
  font-size: 18px;
}

.hero-contact span,
.hero-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-contact b {
  color: var(--gold);
}

.trust-strip {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  background: linear-gradient(135deg, #17191b, #24282b);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-strip > div {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 34px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.8vw, 25px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.trust-strip > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.38);
}

.trust-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 28px;
}

.dealer-trust img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  background: var(--white);
  border-radius: 50%;
}

.section {
  padding: 96px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 38px;
}

.section h2,
.contact-section h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.section-heading p,
.split-copy > p,
.dealer-grid > div > p,
.area-grid > div > p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.service-card {
  background: var(--white);
  border-bottom: 4px solid var(--gold);
  box-shadow: 0 16px 38px rgba(30, 32, 33, 0.1);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card > img {
  width: 100%;
  height: 235px;
  object-fit: cover;
}

.service-card > div {
  position: relative;
  padding: 28px;
}

.card-number {
  position: absolute;
  right: 20px;
  top: 10px;
  margin: 0;
  color: rgba(127, 15, 41, 0.1);
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
}

.service-card h3 {
  position: relative;
  max-width: 82%;
  margin: 0;
  font-family: var(--font-heading);
  font-size: 25px;
  line-height: 1.15;
  text-transform: uppercase;
}

.service-card p:not(.card-number) {
  position: relative;
  color: var(--muted);
}

.service-card a,
.text-link {
  color: var(--burgundy);
  font-weight: 800;
}

.service-card a:hover,
.text-link:hover {
  color: var(--burgundy-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.split-section {
  background: #e9e5de;
}

.split-grid,
.dealer-grid,
.area-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.split-photo {
  position: relative;
}

.split-photo::before {
  content: "";
  position: absolute;
  left: -22px;
  top: -22px;
  width: 72%;
  height: 72%;
  background: var(--burgundy);
}

.split-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.photo-tag {
  position: absolute;
  z-index: 2;
  right: -18px;
  bottom: -18px;
  background: var(--gold);
  color: var(--charcoal);
  padding: 14px 24px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.split-copy h2,
.dealer-grid h2,
.area-grid h2 {
  margin-bottom: 22px;
}

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

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--charcoal);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.commercial-section {
  position: relative;
  background:
    linear-gradient(115deg, rgba(23, 25, 27, 0.98), rgba(35, 39, 42, 0.96)),
    url("/assets/commercial-refrigeration-rooftop-unit.webp") center / cover fixed;
  color: var(--white);
}

.commercial-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(50px, 7vw, 96px);
}

.commercial-copy > p:not(.section-kicker) {
  color: #c9ccce;
  font-size: 17px;
}

.section-kicker.light {
  color: var(--gold);
}

.commercial-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 30px 0;
  background: rgba(255, 255, 255, 0.2);
}

.commercial-services div {
  display: grid;
  padding: 18px;
  background: var(--charcoal);
}

.commercial-services strong {
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 18px;
  text-transform: uppercase;
}

.commercial-services span {
  color: #c9ccce;
  font-size: 14px;
}

.commercial-gallery {
  position: relative;
  min-height: 560px;
}

.commercial-gallery img {
  object-fit: cover;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.34);
}

.gallery-main {
  width: 84%;
  height: 490px;
}

.gallery-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 38%;
  height: 300px;
  border: 8px solid var(--charcoal);
}

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

.dealer-logos {
  min-height: 420px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 22px;
  padding: 42px;
  background: #f3f3f1;
  border: 1px solid #dededb;
}

.dealer-logos img {
  width: 100%;
  mix-blend-mode: multiply;
}

.dealer-grid > div > p + p {
  margin-top: 16px;
}

.area-section {
  background: linear-gradient(135deg, #eeeae2, #ddd7cc);
  border-top: 1px solid #d3cdc2;
  border-bottom: 1px solid #d3cdc2;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-list span {
  padding: 13px 18px;
  background: var(--white);
  border-left: 4px solid var(--burgundy);
  box-shadow: 0 8px 20px rgba(35, 38, 40, 0.08);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(48px, 8vw, 100px);
}

.faq-grid > div:first-child > p:not(.section-kicker) {
  color: var(--muted);
}

.faq-grid a {
  color: var(--burgundy);
  font-weight: 800;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  color: var(--burgundy);
  font-size: 30px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -6px 48px 24px 0;
  color: var(--muted);
}

.contact-section {
  padding: 92px 0;
  background:
    linear-gradient(100deg, rgba(82, 8, 28, 0.98), rgba(127, 15, 41, 0.92)),
    url("/assets/appalachian-hvac-service-vans.webp") center / cover;
  color: var(--white);
}

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

.contact-copy > p {
  margin: 18px 0 26px;
  color: #ead9dd;
}

.contact-copy > a,
.contact-copy > span {
  display: block;
  margin-top: 9px;
}

.contact-phone {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
}

.call-panel {
  display: grid;
  gap: 18px;
  padding: 38px;
  background: var(--white);
  color: var(--charcoal);
  box-shadow: var(--shadow);
}

.call-panel h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.call-panel > p {
  margin: 0;
  color: var(--muted);
}

.call-panel .button {
  width: 100%;
  text-align: center;
}

.site-footer {
  background: #111315;
  color: #c7cbcd;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 54px;
  padding-top: 68px;
  padding-bottom: 54px;
}

.footer-brand img {
  width: 190px;
  margin-top: -25px;
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 18px;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 6px 0;
  font-size: 14px;
}

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

.footer-bottom {
  padding: 20px 0;
  background: #090a0b;
  font-size: 12px;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.mobile-call {
  display: none;
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  padding: 40px 24px;
  background:
    radial-gradient(circle at 50% 30%, rgba(127, 15, 41, 0.42), transparent 38%),
    var(--charcoal);
  color: var(--white);
  text-align: center;
}

.not-found img {
  width: 240px;
}

.not-found h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(44px, 7vw, 74px);
  line-height: 1;
  text-transform: uppercase;
}

.not-found > p:not(.section-kicker) {
  max-width: 640px;
  margin: 0;
  color: #c9ccce;
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .site-header {
    height: 94px;
  }

  .header-inner {
    width: min(100% - 32px, 1100px);
  }

  .brand {
    width: 175px;
    height: 137px;
  }

  .primary-nav a {
    padding-inline: 12px;
    font-size: 15px;
  }

  .primary-nav a::after {
    left: 12px;
    right: 12px;
  }

  .header-phone {
    padding-left: 14px;
  }

  .header-phone .phone-icon,
  .header-phone small {
    display: none;
  }

  .header-phone strong {
    font-size: 22px;
  }

  .hero {
    padding-top: 72px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 82px;
  }

  .site-header {
    height: 82px;
  }

  .brand {
    width: 142px;
    height: 113px;
  }

  .header-phone {
    margin-left: auto;
    border-left: 0;
  }

  .nav-toggle-label {
    position: relative;
    z-index: 102;
    width: 42px;
    height: 42px;
    display: grid;
    align-content: center;
    gap: 6px;
    cursor: pointer;
  }

  .nav-toggle-label span {
    display: block;
    height: 3px;
    background: var(--white);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .primary-nav {
    position: fixed;
    inset: 82px 0 auto;
    display: grid;
    padding: 20px 24px 28px;
    background: #111315;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-140%);
    opacity: 0;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .primary-nav a {
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 18px;
  }

  .primary-nav a + a::before,
  .primary-nav a::after {
    display: none;
  }

  .nav-toggle:checked ~ .primary-nav {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .hero {
    min-height: 810px;
    padding-top: 88px;
    background:
      linear-gradient(90deg, rgba(16, 18, 19, 0.96), rgba(16, 18, 19, 0.55)),
      url("/assets/appalachian-hvac-service-vans.webp") 60% center / cover no-repeat;
  }

  .hero h1 {
    font-size: clamp(52px, 10vw, 78px);
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .trust-strip > div {
    padding: 0 12px;
    gap: 9px;
    font-size: 16px;
    text-align: center;
  }

  .trust-icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .dealer-trust img {
    width: 58px;
    height: 58px;
  }

  .section-heading,
  .split-grid,
  .commercial-grid,
  .dealer-grid,
  .area-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
  }

  .commercial-gallery {
    min-height: 470px;
  }

  .gallery-main {
    height: 410px;
  }

  .gallery-small {
    height: 245px;
  }

  .dealer-logos {
    max-width: 620px;
  }

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

@media (max-width: 620px) {
  .container,
  .hero-content {
    width: min(100% - 32px, 560px);
  }

  .header-inner {
    width: calc(100% - 24px);
  }

  .header-phone {
    display: none;
  }

  .site-header {
    height: 74px;
  }

  .brand {
    width: 126px;
    height: 101px;
  }

  .primary-nav {
    inset-block-start: 74px;
  }

  .hero {
    min-height: 850px;
    padding-top: 72px;
    background-position: 66% center;
  }

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

  .hero-content > * {
    margin-inline: auto;
  }

  .hero h1 {
    font-size: clamp(47px, 15vw, 68px);
  }

  .mountain-rule span {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-contact {
    display: grid;
    justify-items: center;
    font-size: 16px;
  }

  .trust-strip {
    height: 118px;
  }

  .trust-strip > div {
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 4px;
    padding: 5px;
    font-size: 12px;
    line-height: 1.15;
  }

  .trust-icon {
    width: 34px;
    height: 34px;
  }

  .dealer-trust img {
    width: 45px;
    height: 45px;
  }

  .hero::after {
    bottom: 112px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    gap: 18px;
  }

  .service-grid,
  .commercial-services,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card:last-child {
    grid-column: auto;
  }

  .split-photo::before {
    left: -12px;
    top: -12px;
  }

  .photo-tag {
    right: -7px;
    bottom: -12px;
  }

  .commercial-gallery {
    min-height: 380px;
  }

  .gallery-main {
    width: 90%;
    height: 335px;
  }

  .gallery-small {
    width: 42%;
    height: 195px;
    border-width: 5px;
  }

  .dealer-logos {
    min-height: 0;
    grid-template-columns: 1fr 0.7fr;
    padding: 22px;
  }

  .call-panel {
    padding: 22px;
  }

  .footer-grid {
    gap: 32px;
  }

  .footer-bottom .container {
    display: grid;
    text-align: center;
  }

  .mobile-call {
    position: fixed;
    z-index: 90;
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold-light);
    border-radius: 4px;
    background: var(--burgundy);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.035em;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  }

  .site-footer {
    padding-bottom: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .call-panel,
  .mobile-call {
    display: none !important;
  }

  .hero {
    min-height: 0;
    padding: 40px;
    background: var(--charcoal);
  }

  .section,
  .contact-section {
    padding: 40px 0;
  }
}
