:root {
  --black: #080a0c;
  --coal: #151918;
  --steel: #303936;
  --line: rgba(255, 255, 255, .12);
  --paper: #101714;
  --panel: #17201c;
  --panel-soft: #1d2823;
  --white: #ffffff;
  --red: #d7252f;
  --red-dark: #b71825;
  --chrome: #d7e1ea;
  --chrome-dark: #8f9da8;
  --green: var(--chrome);
  --green-dark: var(--chrome-dark);
  --ink: #20262b;
  --muted: #b2beb8;
  --shadow: 0 22px 60px rgba(0, 0, 0, .28);
  --shadow-soft: 0 14px 32px rgba(0, 0, 0, .2);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% -10%, rgba(215, 37, 47, .12), transparent 28rem),
    radial-gradient(circle at 86% 12%, rgba(215, 37, 47, .08), transparent 26rem),
    linear-gradient(180deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 86px),
    linear-gradient(180deg, #0b100e 0%, #111815 46%, #0d1210 100%);
  color: var(--white);
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(8, 10, 12, .92);
  backdrop-filter: blur(18px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: 68px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .4));
}

.brand span {
  max-width: 210px;
  white-space: normal;
  line-height: 1.02;
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

nav a,
.header-call,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .01em;
  white-space: nowrap;
}

.header-call,
.button,
.text-link {
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

nav a {
  color: rgba(255, 255, 255, .8);
}

nav a:hover,
nav a.active {
  color: var(--white);
  background: rgba(255, 255, 255, .1);
}

nav a.active {
  box-shadow: inset 0 -2px 0 var(--red);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(215, 37, 47, .9);
  outline-offset: 3px;
}

.header-call,
.button.primary {
  background: var(--red);
  color: var(--white);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .22), 0 10px 24px rgba(215, 37, 47, .22);
}

.header-call:hover,
.button.primary:hover {
  background: var(--red-dark);
}

.button.social {
  background: #1877f2;
  color: var(--white);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .22), 0 10px 24px rgba(24, 119, 242, .2);
}

.button.social:hover {
  background: #1264d9;
}

.header-call:hover,
.button:hover,
.text-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .3);
}

.button.secondary {
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .18);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.page-hero .button-row,
.contact-hero .button-row {
  margin-top: 24px;
}

.hero {
  position: relative;
  min-height: min(790px, calc(100vh - 64px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.88) contrast(1.08);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .62) 45%, rgba(0, 0, 0, .22)),
    linear-gradient(0deg, rgba(0, 0, 0, .86), rgba(0, 0, 0, .1) 54%, rgba(0, 0, 0, .32));
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
  margin: 0 auto;
  padding: 98px 0 60px;
  color: var(--white);
}

.hero-main {
  min-width: 0;
}

.hero-logo-mark {
  width: min(360px, 82vw);
  margin: 0 0 20px;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, .55));
}

.hero-proof {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02)),
    rgba(12, 17, 15, .86);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-proof img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 58%;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.hero-proof-body {
  padding: 22px;
}

.hero-proof h2 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  line-height: 1.05;
}

.hero-proof p {
  color: var(--muted);
}

.mini-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 18px 0;
  list-style: none;
}

.mini-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, .86);
  font-size: .96rem;
  font-weight: 750;
}

.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.eyebrow,
.label {
  margin: 0 0 10px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: .92;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

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

.button.ghost {
  border: 1px solid rgba(255, 255, 255, .55);
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(8px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  padding: 0;
  margin: clamp(34px, 5vw, 54px) 0 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-stats div {
  padding: 16px 18px;
  background: rgba(12, 17, 15, .72);
  backdrop-filter: blur(12px);
}

.hero-stats dt {
  margin: 0 0 2px;
  color: var(--green);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, .8);
  font-weight: 700;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--black);
  color: var(--white);
}

.quick-strip div {
  padding: 24px clamp(18px, 4vw, 46px);
  background: var(--coal);
}

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

.quick-strip strong {
  color: var(--green);
  font-size: 1.3rem;
  text-transform: uppercase;
}

.quick-strip span {
  color: rgba(255, 255, 255, .74);
}

.shop-strip {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1px;
  align-items: stretch;
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  border-block: 1px solid rgba(255, 255, 255, .08);
}

.shop-strip div {
  padding: 22px clamp(18px, 4vw, 46px);
  background: var(--panel);
}

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

.shop-strip strong {
  color: var(--green);
  font-size: 1.08rem;
  text-transform: uppercase;
}

.shop-strip span {
  color: rgba(255, 255, 255, .74);
}

.shop-strip .button {
  min-height: 100%;
  border-radius: 0;
  padding-inline: clamp(22px, 4vw, 54px);
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0;
}

.financing-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .54fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  margin-top: clamp(46px, 7vw, 86px);
  margin-bottom: clamp(8px, 2vw, 24px);
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(215, 37, 47, .12), transparent 36%),
    linear-gradient(135deg, #121a16, #171717);
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.financing-panel.compact {
  margin-top: 0;
  margin-bottom: 72px;
}

.financing-copy p {
  color: rgba(255, 255, 255, .78);
  font-size: 1.08rem;
}

.financing-copy .eyebrow {
  color: var(--green);
}

.financing-copy h2 {
  color: var(--white);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 800;
  color: var(--white);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .18em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, .82);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 0;
}

.proof-band article {
  min-height: 190px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .055), transparent 46%),
    #111715;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.proof-band span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.proof-band h2 {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.proof-band p {
  margin: 0;
  color: var(--muted);
}

.pricing-flyer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .52fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: stretch;
  margin-top: clamp(40px, 7vw, 82px);
  padding: clamp(30px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(215, 37, 47, .14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .045), transparent),
    #111715;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.pricing-copy {
  min-width: 0;
}

.pricing-copy h2 {
  max-width: 760px;
}

.pricing-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.pricing-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 18px;
}

.pricing-tab {
  min-height: 42px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.pricing-tab:hover,
.pricing-tab.active {
  background: var(--red);
  color: var(--white);
  border-color: rgba(255, 255, 255, .22);
}

.pricing-panels {
  min-height: 242px;
}

.pricing-panel {
  animation: priceFade .18s ease;
}

@keyframes priceFade {
  from {
    opacity: .65;
    transform: translateY(4px);
  }

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

.price-list {
  display: grid;
  gap: 10px;
}

.price-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  background: rgba(0, 0, 0, .26);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
}

.price-list span,
.price-list strong {
  font-weight: 900;
}

.price-list span {
  color: rgba(255, 255, 255, .88);
}

.price-list strong {
  color: var(--white);
  font-size: 1.35rem;
}

.pricing-note,
.payment-note {
  margin: 16px 0 0;
  color: var(--chrome);
  font-weight: 800;
}

.service-chip-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-chip-list li {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 11px 14px;
  background: rgba(0, 0, 0, .26);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  color: rgba(255, 255, 255, .9);
  font-weight: 900;
}

.service-menu-panel {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 60px);
  align-items: center;
  margin-top: clamp(20px, 4vw, 44px);
  padding: clamp(28px, 5vw, 52px);
  background:
    linear-gradient(135deg, rgba(215, 37, 47, .11), transparent 36%),
    #111715;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.service-menu-panel p {
  color: var(--muted);
  font-size: 1.05rem;
}

.service-menu-panel .button {
  margin-top: 8px;
}

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.pricing-flyer-preview {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px;
  background:
    radial-gradient(circle at 50% 20%, rgba(215, 37, 47, .1), transparent 40%),
    #080a0c;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
}

.pricing-flyer-preview img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  padding: 0;
  background: #ffffff;
  border-radius: 6px;
}

.pricing-flyer-preview span {
  display: block;
  padding-top: 12px;
  color: var(--chrome);
  font-weight: 900;
  text-align: center;
}

.poster-link {
  display: block;
  color: inherit;
}

.poster-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(8, 10, 12, .32);
}

.poster-image,
.promo-image,
.promo-panel img,
.financing-gallery img,
.contact-hero img,
.services-hero-image {
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.poster-link:hover .poster-image,
.promo-image:hover,
.promo-panel img:hover,
.financing-gallery img:hover,
.contact-hero img:hover,
.services-hero-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .34);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .7fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.split p,
.section-heading p,
.page-hero p,
.contact-hero p,
.services-list p,
.promo-panel p,
.contact-card p,
.note-panel p {
  color: var(--muted);
  font-size: 1.05rem;
}

.split h2,
.section-heading h2,
.page-hero h1,
.contact-hero h1,
.note-panel h2 {
  color: var(--white);
}

.promo-image,
.promo-panel img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.text-link {
  display: inline-flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  margin-top: auto;
  background: var(--red);
  color: var(--white);
  border-radius: 6px;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .24), 0 10px 24px rgba(215, 37, 47, .16);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.text-link:hover {
  background: var(--red-dark);
}

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

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

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

.service-photo-grid {
  margin-top: 24px;
}

.service-photo-grid figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #101513;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.service-photo-grid img,
.service-image-band img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .22s ease, filter .22s ease;
}

.service-photo-grid figcaption {
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(0, 0, 0, .08));
  color: rgba(255, 255, 255, .82);
  font-size: .95rem;
  font-weight: 800;
}

.service-photo-grid figure:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 37, 47, .38);
  box-shadow: var(--shadow);
}

.service-photo-grid figure:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.025);
}

.service-image-band img:hover {
  filter: saturate(1.08) contrast(1.03);
  transform: translateY(-3px);
}

.service-card,
.contact-card {
  min-height: 250px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .035), transparent),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.service-card {
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--red), var(--green));
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(215, 37, 47, .44);
  box-shadow: var(--shadow);
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 37, 47, .42);
  box-shadow: var(--shadow);
}

.service-card h3,
.contact-card h2 {
  color: var(--white);
}

.service-card p,
.contact-card p {
  margin-bottom: 0;
}

.icon,
.service-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  background: rgba(215, 37, 47, .12);
  color: var(--green);
  border-radius: 50%;
  border: 1px solid rgba(215, 37, 47, .4);
  font-weight: 900;
}

.photo-band {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 1.4fr .8fr .8fr;
  gap: 1px;
  background: rgba(255, 255, 255, .12);
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.gallery-trigger {
  width: 100%;
  padding: 0;
  margin: 0;
  appearance: none;
  background:
    radial-gradient(circle at 50% 40%, rgba(215, 37, 47, .12), transparent 46%),
    #090c0b;
  border: 0;
  cursor: zoom-in;
}

.gallery-trigger:focus-visible {
  position: relative;
  z-index: 1;
  outline: 3px solid var(--red);
  outline-offset: -3px;
}

.gallery-trigger img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: contain;
  padding: clamp(10px, 2vw, 18px);
  transition: transform .18s ease, opacity .18s ease;
}

.gallery-trigger:hover img {
  opacity: .9;
  transform: scale(1.02);
}

.lightbox {
  width: min(920px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  padding: 48px 18px 18px;
  background: #080a0c;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .72);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, .78);
}

.lightbox-image {
  width: 100%;
  max-height: calc(100vh - 110px);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  background: var(--red);
  color: var(--white);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 800;
}

.lightbox-close:hover {
  background: var(--red-dark);
}

.page-hero,
.contact-hero {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0 clamp(36px, 6vw, 68px);
}

.page-hero {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .48fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.page-hero h1,
.contact-hero h1 {
  max-width: 920px;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5.4vw, 5.3rem);
}

.services-hero-image {
  width: 100%;
  max-height: 430px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .14);
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, .38));
}

.finance-hero-image {
  object-fit: contain;
  padding: 12px;
  background: #101513;
}

.services-list {
  display: grid;
  gap: 18px;
}

.services-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .035), transparent),
    var(--panel);
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.services-list article:hover {
  transform: translateY(-4px);
  border-left-color: var(--red);
  box-shadow: var(--shadow);
}

.services-list h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.promo-panel {
  display: grid;
  grid-template-columns: minmax(230px, .55fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  padding: clamp(30px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(215, 37, 47, .12), transparent 36%),
    var(--panel);
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.service-image-band {
  padding-top: 0;
}

.service-image-band img {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.promo-panel p {
  color: rgba(255, 255, 255, .74);
}

.financing-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.financing-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 12px;
  background: #101513;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.financing-disclaimer {
  padding: 14px 16px;
  background: rgba(0, 0, 0, .22);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  color: var(--chrome);
  font-size: .98rem;
  font-weight: 750;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.contact-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}

.contact-card h2 {
  min-height: 1.7em;
  font-size: 1.55rem;
  line-height: 1.08;
  text-transform: none;
}

.blank-field {
  color: transparent;
}

.note-panel {
  padding: 42px;
  margin-bottom: 72px;
  background:
    linear-gradient(135deg, rgba(215, 37, 47, .09), transparent 38%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.note-panel h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.map-panel {
  padding-top: 0;
  margin-bottom: 72px;
}

.map-panel iframe {
  width: 100%;
  min-height: 430px;
  display: block;
  background: #101513;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-button {
  margin-top: 18px;
}

.site-footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 54px);
  background: #080a0c;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  display: flex;
  gap: 12px;
  align-items: center;
}

.site-footer strong img {
  width: 96px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .42));
}

.site-footer span {
  color: rgba(255, 255, 255, .68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.footer-links a {
  color: var(--white);
  font-weight: 800;
}

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

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  nav {
    overflow-x: auto;
  }

  .header-call {
    justify-self: start;
  }

  .split,
  .promo-panel,
  .financing-panel,
  .pricing-flyer,
  .hero-content,
  .service-menu-panel,
  .page-hero,
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    max-width: 620px;
  }

  .service-grid,
  .service-photo-grid,
  .service-image-band,
  .financing-gallery,
  .contact-grid,
  .proof-band,
  .service-chip-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .shop-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-strip .button {
    grid-column: 1 / -1;
    min-height: 54px;
  }

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

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

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 12px;
  }

  .brand img {
    width: 62px;
    height: 48px;
  }

  .brand span {
    display: none;
    font-size: .95rem;
  }

  nav a,
  .header-call,
  .button {
    padding-inline: 12px;
  }

  nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
  }

  nav a {
    flex: 1 0 auto;
  }

  .header-call {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .hero {
    min-height: auto;
  }

  .hero-logo-mark {
    width: min(240px, 78vw);
    margin-bottom: 14px;
  }

  .hero-content {
    padding: 58px 0 44px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.2rem);
  }

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

  .hero-stats div {
    padding: 12px 8px;
  }

  .hero-stats dt {
    font-size: .98rem;
  }

  .hero-stats dd {
    font-size: .78rem;
  }

  .quick-strip,
  .shop-strip,
  .check-list,
  .service-grid,
  .service-photo-grid,
  .service-image-band,
  .financing-gallery,
  .contact-grid,
  .proof-band,
  .service-chip-list,
  .services-list article {
    grid-template-columns: 1fr;
  }

  .pricing-flyer {
    padding: 24px 18px;
  }

  .service-menu-panel,
  .note-panel,
  .financing-panel {
    padding: 24px 18px;
  }

  .pricing-tab {
    flex: 1 1 100%;
  }

  .pricing-panels {
    min-height: 0;
  }

  .price-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-footer {
    display: grid;
  }

  .photo-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-action-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .46);
  }

  .mobile-action-bar a {
    min-height: 50px;
    display: grid;
    place-items: center;
    padding: 8px 6px;
    background: rgba(8, 10, 12, .94);
    color: var(--white);
    font-size: .82rem;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
  }

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

@media (prefers-reduced-motion: reduce) {
  .header-call,
  .button,
  .text-link,
  .service-card,
  .service-photo-grid figure,
  .service-photo-grid img,
  .service-image-band img,
  .contact-card,
  .services-list article,
  .gallery-trigger img,
  .poster-image,
  .promo-image,
  .promo-panel img,
  .financing-gallery img,
  .contact-hero img,
  .services-hero-image {
    transition: none;
  }

  .pricing-panel {
    animation: none;
  }

  .header-call:hover,
  .button:hover,
  .text-link:hover,
  .service-card:hover,
  .service-photo-grid figure:hover,
  .service-photo-grid figure:hover img,
  .service-image-band img:hover,
  .contact-card:hover,
  .services-list article:hover,
  .gallery-trigger:hover img,
  .poster-link:hover .poster-image,
  .promo-image:hover,
  .promo-panel img:hover,
  .financing-gallery img:hover,
  .contact-hero img:hover,
  .services-hero-image:hover {
    transform: none;
  }
}
