:root {
  color-scheme: dark;
  --bg: #08090b;
  --panel: #111318;
  --panel-2: #181b22;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f6f7f8;
  --muted: #a9afb8;
  --soft: #d6d9de;
  --accent: #e23b2f;
  --accent-2: #f4b04b;
  --max: 1520px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: 12;
  top: 0;
  bottom: 0;
  width: clamp(22px, 2.6vw, 44px);
  pointer-events: none;
}

body::before {
  left: 0;
  background: linear-gradient(90deg, rgba(226, 59, 47, 0.085), rgba(244, 176, 75, 0.025), transparent);
}

body::after {
  right: 0;
  background: linear-gradient(270deg, rgba(226, 59, 47, 0.075), rgba(244, 176, 75, 0.02), transparent);
}

.scroll-glow {
  position: fixed;
  z-index: 13;
  top: calc((100svh - 220px) * var(--scroll-progress, 0));
  width: clamp(18px, 2.3vw, 38px);
  height: 190px;
  opacity: 0;
  pointer-events: none;
  transition: top 120ms linear, opacity 2s ease;
}

.scroll-glow::before {
  content: "";
  position: absolute;
  inset: -34px 0;
  filter: blur(14px);
}

.scroll-glow-left {
  left: 0;
}

.scroll-glow-left::before {
  background:
    radial-gradient(ellipse at left center, rgba(226, 59, 47, 0.24), rgba(244, 176, 75, 0.065) 42%, transparent 74%),
    linear-gradient(90deg, rgba(226, 59, 47, 0.08), transparent);
}

.scroll-glow-right {
  right: 0;
}

.scroll-glow-right::before {
  background:
    radial-gradient(ellipse at right center, rgba(226, 59, 47, 0.22), rgba(244, 176, 75, 0.06) 42%, transparent 74%),
    linear-gradient(270deg, rgba(226, 59, 47, 0.075), transparent);
}

body.is-scrolling .scroll-glow {
  opacity: 0.72;
  transition: top 120ms linear, opacity 160ms ease;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  width: min(calc(100% - 32px), var(--max));
  margin: 18px auto 0;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.045), rgba(226, 59, 47, 0.035)),
    rgba(8, 9, 11, 0.74);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(20px) saturate(130%);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.05), rgba(226, 59, 47, 0.045)),
    rgba(8, 9, 11, 0.92);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  text-align: center;
}

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

.brand strong {
  font-size: 1rem;
  font-weight: 800;
}

.brand-simple strong {
  max-width: none;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.74rem;
}

.site-nav {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--soft);
  font-size: 0.93rem;
}

.site-nav a {
  padding: 9px 12px;
  border-radius: 10px;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: white;
}

.site-footer a {
  transition: color 160ms ease;
}

.site-footer a:hover {
  color: white;
}

.header-phone {
  justify-self: end;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  color: white;
  font-weight: 700;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.header-phone:hover {
  border-color: rgba(226, 59, 47, 0.6);
  background: rgba(226, 59, 47, 0.12);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  color: white;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.92) 0%, rgba(8, 9, 11, 0.7) 36%, rgba(8, 9, 11, 0.12) 74%),
    linear-gradient(0deg, var(--bg) 0%, rgba(8, 9, 11, 0.1) 34%, rgba(8, 9, 11, 0.2) 100%);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 150px 0 120px;
}

.hero-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.hero-main .eyebrow {
  margin: 0;
}

.hero-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  align-self: stretch;
}

.hero-title {
  max-width: 18ch;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 8px 16px;
  border: 1px solid rgba(226, 59, 47, 0.45);
  border-radius: 999px;
  background: rgba(226, 59, 47, 0.16);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.4px;
}

.hero-badge::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2fd07a;
  animation: hero-live-pulse 1.8s ease-out infinite;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0 0;
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.hero-phone:hover {
  border-color: rgba(244, 176, 75, 0.5);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-1px);
}

.hero-phone::before {
  content: "";
  width: 20px;
  height: 20px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--soft);
  font-weight: 700;
  font-size: 0.86rem;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

h1 {
  max-width: 870px;
  font-size: clamp(2.5rem, 5.6vw, 4.7rem);
  font-weight: 800;
}

.hero-copy {
  max-width: 540px;
  margin: 0;
  color: var(--soft);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
}

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

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

.button-primary {
  background: var(--accent);
  color: white;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.tire-scroll-cue {
  --tire-cue-size: clamp(112px, 30vw, 132px);
  --tire-cue-hit-width: min(74vw, 240px);
  position: fixed;
  z-index: 32;
  left: 50%;
  bottom: calc((var(--tire-cue-size) / -2) - 4px);
  display: none;
  width: var(--tire-cue-hit-width);
  height: calc(var(--tire-cue-size) * 1.15);
  transform: translateX(-50%);
  transition: opacity 180ms ease;
  pointer-events: none;
}

.tire-scroll-cue::before,
.tire-scroll-cue::after {
  content: "";
  position: absolute;
  left: 50%;
  pointer-events: none;
  transform: translateX(-50%);
}

.tire-scroll-cue::before {
  z-index: 2;
  bottom: calc((var(--tire-cue-size) / 2) + 4px);
  width: min(44vw, 168px);
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 90, 54, 0.95), transparent);
  box-shadow:
    0 0 8px rgba(255, 90, 54, 0.7),
    0 0 18px rgba(255, 90, 54, 0.32);
}

.tire-scroll-cue::after {
  z-index: 1;
  bottom: calc((var(--tire-cue-size) / 2) - 52px);
  width: min(58vw, 196px);
  height: 96px;
  border-radius: 999px 999px 0 0;
  background:
    radial-gradient(ellipse at center top, rgba(255, 90, 54, 0.2), rgba(255, 90, 54, 0.065) 42%, transparent 76%),
    radial-gradient(ellipse at center top, rgba(255, 255, 255, 0.08), transparent 64%);
  filter: blur(12px);
  opacity: 0.82;
}

.tire-scroll-cue-lower {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: calc((var(--tire-cue-size) / 2) - (var(--tire-cue-size) * 0.68) + 8px);
  width: calc(var(--tire-cue-size) * 1.02);
  height: calc(var(--tire-cue-size) * 0.68);
  border-radius: 0 0 999px 999px;
  background:
    radial-gradient(circle at 50% 0%, transparent 0 18%, rgba(255, 90, 54, 0.32) 19%, transparent 21%),
    radial-gradient(circle at 50% 0%, transparent 0 43%, rgba(255, 90, 54, 0.26) 44%, transparent 47%),
    radial-gradient(circle at 50% 0%, transparent 0 72%, rgba(255, 90, 54, 0.36) 73%, transparent 76%),
    repeating-conic-gradient(
      from 92deg at 50% 0%,
      rgba(255, 90, 54, 0) 0deg 5deg,
      rgba(255, 90, 54, 0.42) 5deg 6.6deg,
      rgba(255, 90, 54, 0) 6.6deg 10deg
    ),
    radial-gradient(ellipse at 50% 0%, rgba(255, 90, 54, 0.18), rgba(255, 90, 54, 0.04) 58%, transparent 78%);
  filter: blur(4px);
  opacity: 0.78;
  transform: translateX(-50%);
  transition: opacity 600ms ease, transform 600ms ease;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5) 58%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5) 58%, transparent 100%);
}

.tire-scroll-cue-button,
.tire-scroll-cue-wave {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: var(--tire-cue-size);
  height: var(--tire-cue-size);
}

.tire-scroll-cue-wave {
  overflow: visible;
  pointer-events: none;
  transform: translateX(-50%);
}

.tire-scroll-cue-button {
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  pointer-events: auto;
  overflow: visible;
  opacity: 1;
  transform: translateX(-50%) scale(1);
  transition: opacity 600ms ease, transform 600ms ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.tire-scroll-cue-button::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 50%;
  width: var(--tire-cue-hit-width);
  height: calc(var(--tire-cue-size) * 0.72);
  border-radius: 999px;
  transform: translateX(-50%);
}

.tire-scroll-cue-wheel {
  width: 100%;
  height: 100%;
  animation: tire-cue-spin 6s linear infinite;
  transform-origin: center;
  filter: drop-shadow(0 -10px 22px rgba(0, 0, 0, 0.42));
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 54%,
    rgba(0, 0, 0, 0.74) 68%,
    rgba(0, 0, 0, 0.18) 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 54%,
    rgba(0, 0, 0, 0.74) 68%,
    rgba(0, 0, 0, 0.18) 100%
  );
}

.tire-scroll-cue.is-gone {
  pointer-events: none;
}

.tire-scroll-cue.is-gone .tire-scroll-cue-button {
  opacity: 0;
  transform: translateX(-50%) scale(0.85);
}

.tire-scroll-cue.is-gone .tire-scroll-cue-lower {
  opacity: 0;
  transform: translateX(-50%) scale(0.85);
}

.tire-scroll-cue-wave-circle-active {
  animation: tire-cue-wave-out 900ms ease-out forwards;
}

@keyframes tire-cue-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes tire-cue-wave-out {
  from {
    r: 14;
    stroke-width: 1.5;
    opacity: 0.9;
  }

  to {
    r: 100;
    stroke-width: 0.25;
    opacity: 0;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(720px, 100%);
  margin-top: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.hero-stats div {
  padding: 18px;
  background: rgba(12, 14, 18, 0.82);
}

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

.hero-stats strong {
  font-size: 1.55rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 88px 0;
  scroll-margin-top: 128px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 48px;
  align-items: end;
}

.intro h2,
.section-heading h2,
.contact h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
}

.intro p:last-child,
.contact p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading h2 {
  max-width: 720px;
}

.services {
  position: relative;
  padding-bottom: 128px;
}

.services .section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.48fr) minmax(0, 1fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 30px;
}

.services .section-heading .eyebrow {
  margin-bottom: 10px;
}

.services .section-heading h2 {
  justify-self: end;
  max-width: 780px;
  text-align: right;
  font-size: clamp(2.3rem, 4.8vw, 4.4rem);
}

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

.service-grid-short {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
  padding-bottom: 84px;
}

.service-card {
  --service-y: 0px;
  --service-lift: 0px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(226, 59, 47, 0.022) 62%, rgba(244, 176, 75, 0.035)),
    rgba(17, 19, 24, 0.78);
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transform: translateY(calc(var(--service-y) - var(--service-lift)));
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-2), rgba(226, 59, 47, 0.72), transparent 68%);
  opacity: 0.64;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}

.service-card:hover,
.service-card.is-selected {
  --service-lift: 4px;
  border-color: rgba(244, 176, 75, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(226, 59, 47, 0.032) 62%, rgba(244, 176, 75, 0.046)),
    rgba(17, 19, 24, 0.82);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.26);
}

.service-card.is-selected {
  border-color: rgba(244, 176, 75, 0.54);
}

.service-card:focus-visible {
  --service-lift: 4px;
  outline: 2px solid rgba(244, 176, 75, 0.5);
  outline-offset: 4px;
}

.service-card.featured {
  grid-column: span 2;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.75;
  object-fit: cover;
}

.service-card div,
.service-card.compact {
  display: flex;
  min-height: 194px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px 28px 72px;
}

.service-card span {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0;
  border: 1px solid rgba(244, 176, 75, 0.28);
  border-radius: 50%;
  background: rgba(244, 176, 75, 0.055);
  color: var(--accent-2);
  font-weight: 800;
  font-size: 0.76rem;
}

.service-card h3 {
  max-width: 86%;
  font-size: 1.28rem;
}

.service-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.97rem;
}

.service-grid-short .service-card:nth-child(2) {
  --service-y: 44px;
}

.service-grid-short .service-card:nth-child(3) {
  --service-y: 88px;
}

.gallery-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: start;
}

.gallery-intro {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 10px;
}

.gallery-intro h2 {
  max-width: 760px;
  font-size: clamp(2.45rem, 4.2vw, 4.6rem);
}

.gallery-intro p:last-child {
  max-width: 560px;
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.gallery-intro p:last-child,
.gallery-check-card p,
.gallery-callout p:last-child {
  color: var(--muted);
}

.gallery-feature {
  position: relative;
  grid-column: 1;
  margin: 0;
  height: 100%;
  min-height: 782px;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--panel);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.gallery-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 9, 11, 0.72), transparent 46%);
  pointer-events: none;
}

.gallery-feature img {
  width: 100%;
  height: 100%;
  min-height: 782px;
  object-fit: cover;
}

.gallery-feature figcaption {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 6px;
}

.gallery-feature figcaption span,
.gallery-check-card span {
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 800;
}

.gallery-feature figcaption strong {
  color: white;
  font-size: clamp(1.6rem, 2.8vw, 2.7rem);
  line-height: 1;
}

.gallery-feature figcaption small {
  max-width: 420px;
  color: var(--soft);
  font-size: 0.98rem;
}

.gallery-side {
  grid-column: 2;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 24px;
  min-height: 782px;
  margin-top: 0;
}

.gallery-check-card {
  display: grid;
  gap: 18px;
  margin-top: 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(226, 59, 47, 0.08)),
    rgba(17, 19, 24, 0.92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.gallery-check-card h3,
.gallery-callout h3 {
  margin: 0;
}

.gallery-check-card h3 {
  font-size: 1.55rem;
}

.gallery-check-card p {
  margin: 8px 0 0;
}

.gallery-check-card img {
  width: 100%;
  aspect-ratio: 1.58;
  object-fit: cover;
  border-radius: 12px;
}

.gallery-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  align-items: center;
  gap: 22px;
  margin-top: 0;
  padding: 24px;
  border: 1px solid rgba(226, 59, 47, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 16%, rgba(226, 59, 47, 0.2), transparent 32%),
    linear-gradient(118deg, rgba(226, 59, 47, 0.14), rgba(255, 255, 255, 0.04) 56%),
    var(--panel);
  overflow: hidden;
}

.gallery-callout h3 {
  max-width: 640px;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.gallery-callout p:last-child {
  max-width: 680px;
  font-size: 0.94rem;
}

.gallery-callout-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.gallery-callout-points span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--soft);
  font-weight: 700;
  font-size: 0.84rem;
}

.gallery-callout img {
  justify-self: end;
  width: min(100%, 112px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.pricing {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 34px;
  align-items: start;
}

.pricing .section-heading {
  display: block;
  margin: 0;
}

.price-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.price-row:nth-child(even) {
  background: var(--panel-2);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row span {
  color: var(--soft);
}

.price-row strong {
  white-space: nowrap;
  color: white;
}

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

figure {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

blockquote {
  margin: 0;
  color: var(--soft);
  font-size: 1.02rem;
}

figcaption {
  margin-top: 18px;
  color: var(--accent-2);
  font-weight: 800;
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(30px, 3.4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(226, 59, 47, 0.085), rgba(255, 255, 255, 0.035) 45%, rgba(244, 176, 75, 0.035)),
    rgba(17, 19, 24, 0.86);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(244, 176, 75, 0.64), transparent 68%);
}

.contact-copy,
.contact-action {
  position: relative;
  z-index: 1;
}

.contact-copy {
  display: grid;
  align-content: center;
}

.contact-copy h2 {
  max-width: 720px;
  font-size: clamp(2rem, 3.7vw, 3.7rem);
}

.contact-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--soft);
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
}

.contact-action {
  position: relative;
  display: grid;
  align-items: start;
  align-content: center;
  gap: 14px;
  justify-self: end;
  min-width: min(100%, 390px);
  padding-left: clamp(24px, 3vw, 44px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--soft);
}

.contact-phone-main {
  color: white;
  font-size: clamp(1.8rem, 2.5vw, 2.7rem);
  font-weight: 800;
  line-height: 1;
}

.contact-call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 280px);
  min-height: 52px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--accent);
  color: white;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(226, 59, 47, 0.18);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.contact-call-button:hover {
  background: #f04438;
  box-shadow: 0 14px 32px rgba(226, 59, 47, 0.24);
  transform: translateY(-2px);
}

.contact-meta {
  max-width: 320px;
  margin-top: 2px;
  color: var(--soft);
  font-weight: 700;
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 840px) {
  .tire-scroll-cue {
    display: block;
  }

  body.nav-open .tire-scroll-cue {
    opacity: 0;
    pointer-events: none;
  }

  .site-header {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    justify-content: center;
    gap: 10px;
    width: calc(100% - 24px);
    margin-top: 10px;
    padding: 10px;
    border-radius: 12px;
    background:
      linear-gradient(120deg, rgba(255, 255, 255, 0.045), rgba(226, 59, 47, 0.04)),
      rgba(8, 9, 11, 0.94);
  }

  .site-header::after {
    content: "";
    width: 40px;
    aspect-ratio: 1;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 40px;
    transition: border-color 160ms ease, background 160ms ease;
  }

  body.nav-open .nav-toggle {
    border-color: rgba(244, 176, 75, 0.78);
    background: rgba(244, 176, 75, 0.08);
  }

  body.nav-open .nav-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .brand {
    justify-self: center;
    min-width: 0;
  }

  .brand-simple strong {
    max-width: 250px;
    font-size: 0.94rem;
    white-space: nowrap;
  }

  .site-nav,
  .header-phone {
    display: none;
  }

  .site-nav.is-open {
    position: fixed;
    z-index: 19;
    top: 62px;
    left: 23px;
    right: auto;
    justify-self: auto;
    width: 142px;
    display: grid;
    justify-items: stretch;
    gap: 2px;
    padding: 18px 10px 12px;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 14px 14px;
    background: rgba(8, 9, 11, 0.98);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.46);
    animation: mobile-menu-reveal 170ms ease-out both;
    transform-origin: top center;
  }

  .site-nav.is-open a {
    width: 100%;
    padding: 12px 10px;
    text-align: center;
    border-radius: 9px;
    font-weight: 700;
  }

  .hero-content {
    padding-top: 120px;
  }

  .hero>img {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 9, 11, 0.96), rgba(8, 9, 11, 0.5) 62%, rgba(8, 9, 11, 0.2)),
      linear-gradient(0deg, var(--bg) 0%, rgba(8, 9, 11, 0.08) 45%);
  }

  .hero-stats,
  .intro,
  .pricing,
  .review-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .intro {
    gap: 22px;
    align-items: start;
  }

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

  .contact-panel {
    gap: 28px;
  }

  .contact-action {
    justify-self: stretch;
    min-width: 0;
    width: 100%;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
  }

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

  .service-grid-short,
  .gallery-showcase,
  .gallery-callout {
    grid-template-columns: 1fr;
  }

  .services {
    padding-bottom: 66px;
  }

  .services .section-heading {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }

  .services .section-heading h2 {
    justify-self: start;
    max-width: 720px;
    text-align: left;
  }

  .service-grid-short {
    gap: 0;
    overflow: visible;
    padding: 8px 0 92px;
  }

  .service-card div,
  .service-card.compact {
    min-height: 164px;
    padding: 22px 22px 56px;
  }

  .service-grid-short .service-card.compact {
    -webkit-tap-highlight-color: transparent;
    width: 88%;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(226, 59, 47, 0.03) 64%, rgba(244, 176, 75, 0.038)),
      rgb(17, 18, 22);
  }

  .service-grid-short .service-card.compact:hover,
  .service-grid-short .service-card.compact.is-selected {
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.058), rgba(226, 59, 47, 0.04) 64%, rgba(244, 176, 75, 0.052)),
      rgb(19, 20, 24);
  }

  .service-card span {
    right: 18px;
    bottom: 18px;
    width: 34px;
    height: 34px;
  }

  .service-card h3 {
    max-width: calc(100% - 54px);
    font-size: clamp(1.08rem, 4.9vw, 1.36rem);
  }

  .service-card p {
    max-width: calc(100% - 38px);
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .service-grid-short .service-card:nth-child(1) {
    --service-y: 0px;
    z-index: 1;
    justify-self: start;
  }

  .service-grid-short .service-card:nth-child(2) {
    --service-y: 28px;
    z-index: 2;
    justify-self: center;
    margin-top: -42px;
  }

  .service-grid-short .service-card:nth-child(3) {
    --service-y: 56px;
    z-index: 3;
    justify-self: end;
    margin-top: -42px;
  }

  .service-grid-short .service-card.is-selected {
    --service-lift: 8px;
    z-index: 4;
  }

  .gallery-intro,
  .gallery-feature,
  .gallery-side,
  .gallery-check-card,
  .gallery-callout {
    grid-column: auto;
  }

  .gallery-intro {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 2px;
  }

  .gallery-feature {
    height: auto;
  }

  .gallery-feature,
  .gallery-feature img {
    min-height: 380px;
  }

  .gallery-side,
  .gallery-check-card {
    min-height: 0;
    margin-top: 0;
  }

  .gallery-callout img {
    justify-self: end;
    width: min(100%, 150px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tire-scroll-cue-wheel {
    animation: none;
  }

  .tire-scroll-cue-button {
    transition-duration: 180ms;
  }

  .tire-scroll-cue-wave-circle-active {
    animation-duration: 220ms;
  }

  .gallery-slider .gal-card {
    transition-duration: 200ms;
  }

  .hero-badge::before {
    animation: none;
  }
}

@keyframes mobile-menu-reveal {
  from {
    opacity: 0;
    transform: translateY(-10px) scaleY(0.92);
  }

  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

@keyframes hero-live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(47, 208, 122, 0.55);
  }

  70% {
    box-shadow: 0 0 0 7px rgba(47, 208, 122, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(47, 208, 122, 0);
  }
}

@media (max-width: 560px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 8px 10px;
  }

  .brand small {
    display: none;
  }

  .brand-simple strong {
    max-width: 220px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 100svh;
    align-items: stretch;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 9, 11, 0.86) 0%,
      rgba(8, 9, 11, 0.52) 38%,
      rgba(8, 9, 11, 0.5) 60%,
      rgba(8, 9, 11, 0.93) 100%
    );
  }

  .hero-content {
    align-items: center;
    width: calc(100% - 36px);
    min-height: 100svh;
    padding: 104px 0 124px;
    text-align: center;
  }

  .hero-main {
    align-items: center;
    gap: 13px;
    margin: auto 0;
  }

  .hero-head {
    display: contents;
  }

  .hero-title-break {
    display: none;
  }

  .hero-content .eyebrow {
    align-self: flex-start;
    margin-left: 4px;
    font-size: 0.72rem;
    letter-spacing: 0.6px;
  }

  .hero-title {
    max-width: 14ch;
    font-size: clamp(2.1rem, 9vw, 2.7rem);
    line-height: 1.06;
  }

  .hero-copy {
    display: none;
  }

  .hero-badge {
    align-self: flex-end;
    margin: 0 4px 2px 0;
    padding: 7px 15px;
    font-size: 0.84rem;
  }

  .hero-phone {
    margin-top: 4px;
    padding: 13px 26px;
    font-size: 1.62rem;
  }

  .hero-tags {
    justify-content: center;
    margin-top: 2px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    transform: none;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
  }

  .hero-actions .button-primary {
    order: 2;
  }

  .hero-actions .button-secondary {
    order: 1;
  }

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

  .section {
    width: calc(100% - 24px);
    padding: 48px 0;
  }

  .intro h2,
  .section-heading h2,
  .contact h2 {
    font-size: clamp(1.82rem, 8vw, 2.34rem);
  }

  .intro p:last-child,
  .contact p {
    font-size: 0.98rem;
  }

  .service-card.featured {
    grid-column: auto;
  }

  .section-heading {
    display: block;
  }

  .price-row {
    display: grid;
  }

  .contact-panel {
    padding: 32px 24px;
    text-align: center;
    background:
      radial-gradient(circle at 50% -8%, rgba(226, 59, 47, 0.13), transparent 56%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
      rgba(17, 19, 24, 0.86);
  }

  .contact-copy {
    justify-items: center;
  }

  .contact-copy h2 {
    font-size: clamp(2rem, 9vw, 2.45rem);
  }

  .contact-copy p:not(.eyebrow) {
    max-width: 34ch;
    margin: 14px auto 0;
    font-size: 0.96rem;
  }

  .contact-action {
    justify-items: center;
    gap: 14px;
    margin-top: 6px;
    padding-top: 26px;
    border-top-color: rgba(255, 255, 255, 0.08);
  }

  .contact-call-button {
    width: 100%;
    box-shadow: 0 10px 24px rgba(226, 59, 47, 0.16);
  }

  .contact-meta {
    max-width: none;
    margin-inline: auto;
    text-align: center;
  }

  .gallery-callout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 32px 24px;
    text-align: center;
    border-color: rgba(226, 59, 47, 0.16);
    background:
      radial-gradient(circle at 50% -10%, rgba(226, 59, 47, 0.18), transparent 58%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
      var(--panel);
  }

  .gallery-callout>div {
    display: grid;
    justify-items: center;
    gap: 8px;
    min-width: 0;
  }

  .gallery-check-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 6px;
    min-height: 300px;
    padding: 22px;
    overflow: hidden;
  }

  .gallery-check-card img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 0;
  }

  .gallery-check-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      0deg,
      rgba(8, 9, 11, 0.94) 6%,
      rgba(8, 9, 11, 0.32) 46%,
      rgba(8, 9, 11, 0.66)
    );
  }

  .gallery-check-card > div {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 6px;
  }

  .gallery-check-card p {
    color: var(--soft);
  }

  .gallery-feature,
  .gallery-feature img {
    min-height: 420px;
  }

  .gallery-feature figcaption {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .gallery-feature figcaption strong {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .gallery-feature figcaption small {
    font-size: 0.9rem;
  }

  .gallery-intro h2 {
    font-size: clamp(2rem, 9.2vw, 2.75rem);
  }

  .gallery-intro p:last-child,
  .gallery-check-card p,
  .gallery-callout p:last-child {
    font-size: 0.96rem;
  }

  .gallery-check-card h3,
  .gallery-callout h3 {
    font-size: 1.55rem;
  }

  .gallery-callout img {
    order: -1;
    align-self: center;
    width: 92px;
    height: 92px;
    margin: 0 0 2px;
    border-color: rgba(226, 59, 47, 0.32);
  }

  .gallery-callout p:last-child {
    max-width: 34ch;
    margin-inline: auto;
  }

  .gallery-callout-points {
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }

  .gallery-callout-points span {
    flex: 1 1 0;
    text-align: center;
    padding: 11px 12px;
  }

  .gallery-side {
    display: block;
  }

  .gallery-slider {
    --gal-card-h: 300px;
    position: relative;
    width: 100%;
    height: calc(var(--gal-card-h) + 96px);
    margin-bottom: 6px;
    touch-action: manipulation;
  }

  .gallery-slider .gal-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 86%;
    height: var(--gal-card-h);
    min-height: 0;
    margin: 0 auto;
    transition:
      transform 640ms cubic-bezier(0.22, 0.61, 0.36, 1),
      filter 640ms ease,
      opacity 640ms ease,
      box-shadow 640ms ease;
    will-change: transform, filter;
    -webkit-tap-highlight-color: transparent;
  }

  .gallery-slider .gal-card.gallery-feature {
    min-height: 0;
    height: var(--gal-card-h);
  }

  .gallery-slider .gal-card.gallery-feature img {
    min-height: 0;
    height: 100%;
  }

  .gallery-slider .gal-front {
    z-index: 2;
    transform: translate(-7%, 0) scale(1);
    filter: none;
    opacity: 1;
    cursor: default;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.5);
  }

  .gallery-slider .gal-back {
    z-index: 1;
    transform: translate(7%, 88px) scale(0.94);
    filter: grayscale(0.9) brightness(0.46);
    opacity: 1;
    cursor: pointer;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.42);
  }

  .contact-phone-main {
    font-size: 1.85rem;
  }

  .site-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-bottom: 28px;
    text-align: center;
  }
}
