:root {
  --bg: #050505;
  --panel: #101010;
  --panel-soft: #141414;
  --panel-border: rgba(255, 255, 255, 0.08);
  --text: #f2f2f2;
  --text-dim: #b9b9b9;
  --text-soft: #8e8e8e;
  --red: #cf0f14;
  --red-bright: #ff2d31;
  --red-deep: #7b090c;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
  --radius: 26px;
  --radius-sm: 18px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Rajdhani", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(207, 15, 20, 0.24), transparent 22%),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.03), transparent 30%),
    linear-gradient(180deg, #020202 0%, #060606 45%, #030303 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(transparent 0 94%, rgba(255, 255, 255, 0.018) 94% 100%),
    linear-gradient(90deg, transparent 0 94%, rgba(255, 255, 255, 0.014) 94% 100%);
  background-size: 100% 10px, 10px 100%;
  mix-blend-mode: soft-light;
  opacity: 0.25;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.page-shell::before {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 31, 37, 0.16), transparent 18%),
    radial-gradient(circle at 12% 62%, rgba(255, 31, 37, 0.09), transparent 16%);
}

.page-shell::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 90%);
}

.site-header,
.section,
.site-footer {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 22px 0 14px;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.7));
}

.brand-mark {
  position: relative;
  display: block;
  width: 148px;
  transition: transform 180ms ease, filter 180ms ease;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.34));
}

.brand-mark:hover,
.brand-mark:focus-visible {
  transform: translateY(-2px);
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.38));
}

.brand-mark__image {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.site-nav a {
  position: relative;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--red), transparent);
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px 11px 12px;
  border: 1px solid rgba(207, 15, 20, 0.35);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(207, 15, 20, 0.22), rgba(207, 15, 20, 0.08));
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: #ffd6d6;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.header-call__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--red-bright), var(--red-deep));
  color: #fff;
}

.header-call__icon svg {
  width: 18px;
  height: 18px;
}

.section {
  position: relative;
  padding: 56px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 44px;
  padding-top: 36px;
  padding-bottom: 38px;
}

.hero-copy {
  animation: reveal-up 700ms ease both;
}

.eyebrow {
  margin: 0 0 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.hero h1,
.section-heading h2,
.feature-copy h2,
.contact-info h2,
.business-hours h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 0.94;
}

.hero h1 {
  font-size: clamp(3.9rem, 7vw, 5.8rem);
}

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

.hero-copy__lede {
  max-width: 32rem;
  margin: 24px 0 0;
  font-size: 1.32rem;
  line-height: 1.35;
  color: var(--text-dim);
}

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

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:disabled,
.button:disabled:hover,
.button:disabled:focus-visible {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.button--solid {
  color: #fff;
  background: linear-gradient(180deg, var(--red-bright), var(--red-deep));
  box-shadow: 0 16px 28px rgba(127, 6, 10, 0.32);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.button--compact {
  min-height: 46px;
  padding-inline: 22px;
}

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

.hero-points li {
  position: relative;
  padding-left: 24px;
  color: var(--text-dim);
  font-size: 1.05rem;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  background: linear-gradient(180deg, var(--red-bright), var(--red-deep));
  transform: rotate(45deg);
  box-shadow: 0 0 14px rgba(207, 15, 20, 0.35);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 650px;
  padding: 28px 0 12px;
  animation: reveal-up 860ms ease 80ms both;
}

.hero-visual__halo {
  position: absolute;
  inset: 70px 26px 74px;
  border-radius: 76px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(207, 15, 20, 0.08), rgba(207, 15, 20, 0));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 0 12px rgba(207, 15, 20, 0.12),
    0 0 72px rgba(207, 15, 20, 0.28);
  animation: pulse-ring 3.8s ease-in-out infinite;
}

.hero-visual__halo::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 92px;
  border: 1px solid rgba(207, 15, 20, 0.34);
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: min(100%, 690px);
  height: auto;
  filter: drop-shadow(0 26px 42px rgba(0, 0, 0, 0.45));
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2,
.feature-copy h2,
.contact-info h2,
.business-hours h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.section-heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.services {
  padding-top: 18px;
}

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

.service-card,
.review-card,
.contact-panel,
.build-card {
  border: 1px solid var(--panel-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    rgba(15, 15, 15, 0.92);
  box-shadow: var(--shadow);
}

.service-card {
  position: relative;
  padding: 24px 22px 22px;
  border-radius: 22px;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(207, 15, 20, 0.35);
  box-shadow: 0 28px 46px rgba(0, 0, 0, 0.42);
}

.service-card:hover::before,
.service-card:focus-within::before {
  opacity: 1;
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  color: var(--red);
  background: radial-gradient(circle at 30% 30%, rgba(255, 45, 49, 0.2), rgba(255, 45, 49, 0.04));
  box-shadow: inset 0 0 0 1px rgba(255, 45, 49, 0.18);
}

.service-card__icon svg {
  width: 42px;
  height: 42px;
}

.service-card h3 {
  margin: 18px 0 16px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  line-height: 0.95;
}

.service-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-dim);
  line-height: 1.38;
}

.service-card li::marker {
  color: var(--red);
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.service-card a::after {
  content: "\2192";
  color: var(--red);
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
  gap: 42px;
  align-items: center;
}

.feature-art {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 340px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  border-radius: 26px;
  background:
    radial-gradient(circle at 76% 18%, rgba(207, 15, 20, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0)),
    #0b0b0b;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.feature-art::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 48%);
  pointer-events: none;
}

.feature-art::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 45, 49, 0.55), transparent);
  opacity: 0.6;
  pointer-events: none;
}

.feature-art__glow {
  position: absolute;
  inset: 8% 6% 18%;
  z-index: 0;
  background:
    radial-gradient(circle at 55% 50%, rgba(255, 33, 39, 0.4), transparent 35%),
    radial-gradient(circle at 26% 50%, rgba(255, 255, 255, 0.08), transparent 24%);
  filter: blur(20px);
}

.feature-art__image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  max-width: 100%;
  margin-inline: auto;
  filter: drop-shadow(0 26px 32px rgba(0, 0, 0, 0.34));
}

.feature-copy {
  padding: 18px 0;
}

.feature-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  font-size: 1.16rem;
  line-height: 1.45;
  color: var(--text-dim);
}

.builds {
  padding-top: 18px;
}

.gallery-preview-panel,
.gallery-cta__panel {
  border: 1px solid var(--panel-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    rgba(15, 15, 15, 0.92);
  box-shadow: var(--shadow);
}

.gallery-preview-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 22px;
  padding: 28px;
  border-radius: 28px;
  overflow: hidden;
}

.gallery-preview-carousel {
  position: relative;
  min-height: 460px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #070707;
}

.gallery-preview-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.62)),
    radial-gradient(circle at top right, rgba(207, 15, 20, 0.14), transparent 34%);
  pointer-events: none;
}

.gallery-preview-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.03);
  transition:
    opacity 360ms ease,
    transform 4200ms ease;
  pointer-events: none;
}

.gallery-preview-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.gallery-preview-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-preview-slide--portrait img {
  object-position: center 72%;
}

.gallery-preview-dots {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-preview-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.gallery-preview-dot:hover,
.gallery-preview-dot:focus-visible {
  transform: scale(1.15);
  background: rgba(255, 255, 255, 0.68);
}

.gallery-preview-dot.is-active {
  background: linear-gradient(180deg, var(--red-bright), var(--red-deep));
  box-shadow: 0 0 0 1px rgba(207, 15, 20, 0.18), 0 8px 18px rgba(127, 6, 10, 0.32);
}

.gallery-preview-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.gallery-preview-copy h3,
.gallery-cta__panel h2,
.gallery-video-card__meta h3,
.gallery-photo figcaption strong {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.gallery-preview-copy h3 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 0.96;
}

.gallery-preview-copy p:not(.eyebrow),
.gallery-preview-aside p,
.gallery-cta__panel p:not(.eyebrow),
.gallery-video-card__meta span {
  color: var(--text-dim);
  line-height: 1.5;
}

.gallery-preview-copy p:not(.eyebrow),
.gallery-cta__panel p:not(.eyebrow) {
  font-size: 1.08rem;
}

.gallery-preview-list,
.gallery-hero__stats {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.gallery-preview-list {
  display: grid;
  gap: 12px;
}

.gallery-preview-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text-dim);
}

.gallery-preview-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  height: 10px;
  background: linear-gradient(180deg, var(--red-bright), var(--red-deep));
  transform: rotate(45deg);
}

.gallery-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.gallery-preview-aside {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(207, 15, 20, 0.22);
  background:
    radial-gradient(circle at top right, rgba(207, 15, 20, 0.14), transparent 32%),
    rgba(10, 10, 10, 0.85);
}

.gallery-preview-chip,
.gallery-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-preview-chip {
  justify-self: start;
  color: #ffe6e6;
  border: 1px solid rgba(207, 15, 20, 0.35);
  background: linear-gradient(180deg, rgba(207, 15, 20, 0.24), rgba(207, 15, 20, 0.1));
}

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

.gallery-preview-stats article {
  padding: 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

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

.gallery-preview-stats strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  font-style: italic;
  color: var(--text);
}

.gallery-preview-stats span,
.gallery-photo figcaption span,
.gallery-video-card__meta p {
  margin-top: 6px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d4b5b5;
}

.gallery-page .section {
  padding-top: 46px;
}

.gallery-media--simple {
  padding-top: 36px;
}

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

.gallery-simple-heading h1,
.gallery-simple-heading h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 0.94;
}

.gallery-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 34px;
  padding-top: 34px;
}

.gallery-hero__copy {
  animation: reveal-up 700ms ease both;
}

.gallery-hero__copy h1 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3.8rem, 7vw, 5.6rem);
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 0.94;
}

.gallery-hero__lede {
  max-width: 34rem;
  margin: 24px 0 0;
  font-size: 1.24rem;
  line-height: 1.4;
  color: var(--text-dim);
}

.gallery-hero__visual {
  position: relative;
  min-height: 520px;
  padding: 26px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(207, 15, 20, 0.18), transparent 30%),
    rgba(10, 10, 10, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.gallery-hero__visual::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 28px;
  border: 1px solid rgba(207, 15, 20, 0.2);
}

.gallery-hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 468px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.34);
}

.gallery-hero__badge {
  position: absolute;
  z-index: 2;
  top: 34px;
  right: 34px;
  color: #fff;
  background: linear-gradient(180deg, var(--red-bright), var(--red-deep));
  box-shadow: 0 14px 28px rgba(127, 6, 10, 0.28);
}

.gallery-hero__badge--alt {
  top: auto;
  right: auto;
  bottom: 34px;
  left: 34px;
  background: rgba(10, 10, 10, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
}

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

.gallery-photo,
.gallery-video-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--panel-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    rgba(15, 15, 15, 0.92);
  box-shadow: var(--shadow);
}

.gallery-photo {
  grid-column: span 4;
  min-height: 300px;
  margin: 0;
}

.gallery-media-grid .gallery-video-card {
  grid-column: span 6;
}

.gallery-photo--wide {
  grid-column: span 8;
  min-height: 360px;
}

.gallery-photo--tall {
  grid-row: span 2;
  min-height: 638px;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.78));
}

.gallery-photo:hover img,
.gallery-photo:focus-within img {
  transform: scale(1.03);
}

.gallery-photo--plain::after,
.gallery-photo--plain figcaption {
  display: none;
}

.gallery-photo--plain img {
  transition: none;
}

.gallery-photo--plain:hover img,
.gallery-photo--plain:focus-within img {
  transform: none;
}

.gallery-photo figcaption {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 22px 22px 20px;
}

.gallery-photo figcaption strong {
  display: block;
  margin-top: 8px;
  font-size: 1.9rem;
  color: var(--text);
}

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

.gallery-video-card__poster,
.gallery-video-card__preview {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

.gallery-video-card--plain {
  min-height: auto;
}

.gallery-video-card__play {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 7, 7, 0.78);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.gallery-popup-trigger {
  cursor: pointer;
  user-select: none;
  isolation: isolate;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.gallery-popup-trigger::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.68)),
    radial-gradient(circle at center, rgba(255, 45, 49, 0.14), transparent 55%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.gallery-popup-trigger::after {
  content: attr(data-popup-label);
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 9, 9, 0.86);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
  pointer-events: none;
}

.gallery-popup-trigger img,
.gallery-popup-trigger video {
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.gallery-popup-trigger video {
  pointer-events: none;
}

.gallery-popup-trigger:hover,
.gallery-popup-trigger:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 45, 49, 0.38);
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.42);
}

.gallery-popup-trigger:hover::before,
.gallery-popup-trigger:hover::after,
.gallery-popup-trigger:focus-visible::before,
.gallery-popup-trigger:focus-visible::after {
  opacity: 1;
}

.gallery-popup-trigger:hover::after,
.gallery-popup-trigger:focus-visible::after {
  transform: translateY(0);
}

.gallery-popup-trigger:hover img,
.gallery-popup-trigger:hover video,
.gallery-popup-trigger:focus-visible img,
.gallery-popup-trigger:focus-visible video {
  transform: scale(1.03);
  filter: saturate(1.04);
}

.gallery-popup-trigger:focus-visible {
  outline: 3px solid rgba(255, 45, 49, 0.34);
  outline-offset: 3px;
}

.gallery-popup-trigger--video::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.66)),
    radial-gradient(circle at center, rgba(255, 45, 49, 0.24), transparent 46%);
}

.gallery-popup-trigger--video::after {
  left: 50%;
  bottom: auto;
  top: 50%;
  transform: translate(-50%, calc(-50% + 10px));
  min-height: 52px;
  padding: 0 20px;
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(207, 15, 20, 0.92), rgba(123, 9, 12, 0.92));
}

.gallery-popup-trigger--video:hover::after,
.gallery-popup-trigger--video:focus-visible::after {
  transform: translate(-50%, -50%);
}

body.lightbox-open {
  overflow: hidden;
}

.media-lightbox[hidden] {
  display: none;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.media-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(12px);
}

.media-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(96vw, 1180px);
  max-height: calc(100vh - 48px);
  padding: 34px 34px 28px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top right, rgba(207, 15, 20, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(8, 8, 8, 0.96);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.56);
}

.media-lightbox__dialog::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.media-lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(12, 12, 12, 0.86);
  color: #fff;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.media-lightbox__close:hover,
.media-lightbox__close:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 45, 49, 0.4);
  background: rgba(207, 15, 20, 0.24);
  outline: none;
}

.media-lightbox__close span {
  font-size: 2rem;
  line-height: 1;
}

.media-lightbox__content {
  width: 100%;
  display: grid;
  place-items: center;
}

.media-lightbox__content img,
.media-lightbox__content video {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 140px);
  border-radius: 22px;
  object-fit: contain;
  background: #000;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.45);
}

.media-lightbox__content video {
  width: min(100%, 1080px);
}

.gallery-video-card__meta {
  padding: 20px 20px 22px;
}

.gallery-video-card__meta p,
.gallery-video-card__meta h3,
.gallery-video-card__meta span {
  margin: 0;
}

.gallery-video-card__meta h3 {
  margin-top: 8px;
  font-size: 1.9rem;
}

.gallery-video-card__meta span {
  display: block;
  margin-top: 12px;
  font-size: 1rem;
  letter-spacing: normal;
  text-transform: none;
  color: var(--text-dim);
}

.gallery-cta__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-radius: 30px;
}

.gallery-cta__panel h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.96;
}

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

.build-card {
  position: relative;
  min-height: 250px;
  border-radius: 18px;
  overflow: hidden;
}

.build-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 30%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.78));
}

.build-card--truck {
  background:
    radial-gradient(circle at 62% 28%, rgba(255, 255, 255, 0.09), transparent 18%),
    linear-gradient(150deg, #46352e, #111 46%),
    linear-gradient(180deg, rgba(255, 45, 49, 0.1), transparent 70%);
}

.build-card--truck::after {
  content: "";
  position: absolute;
  inset: 30% 8% 18% 10%;
  background:
    radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.65) 0 12%, transparent 13%),
    radial-gradient(circle at 81% 80%, rgba(0, 0, 0, 0.65) 0 12%, transparent 13%),
    linear-gradient(180deg, #0e0e0e 0%, #050505 100%);
  clip-path: polygon(3% 54%, 20% 41%, 56% 38%, 70% 24%, 82% 24%, 91% 41%, 96% 54%, 100% 54%, 100% 70%, 0 70%);
  opacity: 0.95;
}

.build-card--gear {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 45, 49, 0.25), transparent 28%),
    linear-gradient(135deg, #65554b, #1d1d1d 52%);
}

.build-card--gear::after,
.build-card--internals::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background:
    radial-gradient(circle, #0e0e0e 0 18%, #4f4f4f 18% 32%, #171717 32% 45%, #8d8d8d 45% 55%, #161616 55% 65%, transparent 66%),
    repeating-radial-gradient(circle, transparent 0 11px, rgba(255, 255, 255, 0.08) 11px 12px);
  box-shadow: inset 0 0 0 12px rgba(0, 0, 0, 0.3);
}

.build-card--truck-alt {
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(135deg, #3f464d, #0e0e0e 52%),
    linear-gradient(180deg, rgba(255, 45, 49, 0.08), transparent 70%);
}

.build-card--truck-alt::after {
  content: "";
  position: absolute;
  inset: 34% 6% 18% 9%;
  background:
    radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.65) 0 12%, transparent 13%),
    radial-gradient(circle at 81% 80%, rgba(0, 0, 0, 0.65) 0 12%, transparent 13%),
    linear-gradient(180deg, #111 0%, #070707 100%);
  clip-path: polygon(2% 56%, 18% 40%, 54% 38%, 68% 24%, 82% 24%, 92% 44%, 99% 56%, 100% 56%, 100% 70%, 0 70%);
  opacity: 0.98;
}

.build-card--internals {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(135deg, #665a53, #101010 54%);
}

.build-card--white {
  background:
    linear-gradient(135deg, #9e9b98, #111 54%),
    linear-gradient(180deg, rgba(255, 45, 49, 0.08), transparent 70%);
}

.build-card--white::after {
  content: "";
  position: absolute;
  inset: 30% 8% 18% 10%;
  background:
    radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.55) 0 12%, transparent 13%),
    radial-gradient(circle at 81% 80%, rgba(0, 0, 0, 0.55) 0 12%, transparent 13%),
    linear-gradient(180deg, #efefef 0%, #c7c7c7 100%);
  clip-path: polygon(3% 54%, 20% 41%, 56% 38%, 70% 24%, 82% 24%, 91% 41%, 96% 54%, 100% 54%, 100% 70%, 0 70%);
}

.build-card__overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 18px 18px 16px;
}

.build-card__overlay p,
.build-card__overlay h3 {
  margin: 0;
}

.build-card__overlay p {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d4b5b5;
}

.build-card__overlay h3 {
  margin-top: 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
}

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

.review-heading {
  align-items: center;
}

.reviews__status {
  min-height: 1.4rem;
  margin: 0 0 16px;
  color: var(--text-soft);
}

.review-card {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  padding: 24px 22px;
}

.review-card--user {
  border-color: rgba(255, 45, 49, 0.22);
  background:
    radial-gradient(circle at top right, rgba(207, 15, 20, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(15, 15, 15, 0.94);
}

.review-card--empty {
  display: none !important;
}

.review-card--empty .review-card__stars {
  margin-bottom: 18px;
}

.review-card--empty p:not(.review-card__stars) {
  max-width: 34rem;
}

.review-card__photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.review-card__stars {
  margin: 0 0 14px;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--red);
}

.review-card__services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.review-card__services li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 45, 49, 0.24);
  border-radius: 999px;
  background: rgba(255, 45, 49, 0.08);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffd6d6;
}

.review-card p:not(.review-card__stars) {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.45;
  color: var(--text-dim);
}

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

.review-card strong {
  margin-top: 18px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
}

.review-card span {
  margin-top: 4px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

body.review-modal-open {
  overflow: hidden;
}

.review-modal[hidden] {
  display: none;
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 24px;
}

.review-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
}

.review-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(96vw, 920px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(207, 15, 20, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(8, 8, 8, 0.96);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.56);
}

.review-modal__dialog::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.review-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(12, 12, 12, 0.86);
  color: #fff;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.review-modal__close:hover,
.review-modal__close:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 45, 49, 0.4);
  background: rgba(207, 15, 20, 0.24);
  outline: none;
}

.review-modal__close span {
  font-size: 2rem;
  line-height: 1;
}

.review-modal__intro {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  padding-right: 56px;
}

.review-modal__intro h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 0.96;
}

.review-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.review-form__group {
  display: grid;
  gap: 10px;
}

.review-form__full {
  grid-column: 1 / -1;
}

.review-form__label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}

.review-form input[type="text"],
.review-form input[type="file"],
.review-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.review-form input[type="file"] {
  padding: 12px 14px;
}

.review-form textarea {
  min-height: 170px;
  resize: vertical;
}

.review-form input[type="text"]:focus,
.review-form input[type="file"]:focus,
.review-form textarea:focus {
  outline: none;
  border-color: rgba(207, 15, 20, 0.5);
  box-shadow: 0 0 0 4px rgba(207, 15, 20, 0.14);
}

.review-stars {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.review-stars__button {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.42);
  font-size: 1.8rem;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.review-stars__button:hover,
.review-stars__button:focus-visible,
.review-stars__button.is-active {
  transform: translateY(-2px);
  border-color: rgba(255, 45, 49, 0.38);
  background: linear-gradient(180deg, rgba(255, 45, 49, 0.26), rgba(123, 9, 12, 0.28));
  color: #fff3b0;
  box-shadow: 0 14px 24px rgba(127, 6, 10, 0.22);
  outline: none;
}

.review-stars__value {
  min-height: 24px;
  color: var(--text-dim);
  font-size: 1rem;
}

.review-services {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.review-services__option {
  position: relative;
}

.review-services__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.review-services__option span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-dim);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
  cursor: pointer;
}

.review-services__option input:focus-visible + span,
.review-services__option input:checked + span,
.review-services__option span:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 45, 49, 0.38);
  background: rgba(255, 45, 49, 0.12);
  color: #ffe3e3;
  box-shadow: 0 12px 20px rgba(127, 6, 10, 0.16);
}

.review-photo-preview {
  width: min(100%, 320px);
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.review-photo-preview__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  object-fit: cover;
}

.review-form__status {
  grid-column: 1 / -1;
  min-height: 1.4rem;
  margin: 0;
  color: var(--text-dim);
}

.review-form__status.is-error {
  color: #ffb7b7;
}

.review-form__status.is-success {
  color: #cbf8d7;
}

.review-form__actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: 22px;
  padding: 26px;
  border-radius: 28px;
}

.contact-info ul,
.business-hours ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.contact-info li,
.business-hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.contact-info strong,
.business-hours strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.06rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.contact-info li,
.business-hours li span {
  color: var(--text-dim);
  font-size: 1.06rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

.contact-form label {
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-soft);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(207, 15, 20, 0.5);
  box-shadow: 0 0 0 4px rgba(207, 15, 20, 0.14);
}

.contact-form__message {
  grid-column: 1 / -1;
}

.contact-form__status {
  grid-column: 1 / -1;
  min-height: 1.4rem;
  margin: 0;
  color: var(--text-dim);
}

.contact-form__status.is-error,
.reviews__status.is-error {
  color: #ffb7b7;
}

.contact-form__status.is-success,
.reviews__status.is-success {
  color: #cbf8d7;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form .button {
  justify-self: start;
}

.business-hours li strong {
  text-align: right;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0 34px;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}

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

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes pulse-ring {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.018);
  }
}

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

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

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

  .gallery-preview-panel,
  .gallery-hero,
  .gallery-cta__panel {
    grid-template-columns: 1fr;
  }

  .hero-copy__lede {
    max-width: 40rem;
  }

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

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

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

  .gallery-photo,
  .gallery-photo--wide,
  .gallery-photo--tall {
    grid-column: span 1;
    grid-row: auto;
    min-height: 320px;
  }

  .gallery-media-grid .gallery-video-card {
    grid-column: span 2;
  }

  .feature,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

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

  .gallery-video-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header,
  .section,
  .site-footer {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    position: static;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
  }

  .brand-mark {
    width: 132px;
  }

  .site-nav {
    gap: 14px 18px;
  }

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

  .hero {
    gap: 18px;
    padding-top: 8px;
  }

  .gallery-preview-panel,
  .gallery-cta__panel {
    padding: 22px;
  }

  .gallery-preview-carousel {
    min-height: 360px;
  }

  .review-modal {
    padding: 14px;
  }

  .review-modal__dialog {
    width: 100%;
    max-height: calc(100vh - 28px);
    padding: 56px 14px 16px;
    border-radius: 22px;
  }

  .review-modal__dialog::before {
    inset: 10px;
    border-radius: 16px;
  }

  .review-modal__close {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
  }

  .review-stars__button {
    width: 48px;
    height: 48px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .gallery-hero__copy h1,
  .gallery-preview-copy h3 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .hero-visual {
    min-height: 470px;
    padding-inline: 0;
  }

  .gallery-hero__visual {
    min-height: 360px;
    padding: 16px;
  }

  .gallery-hero__image {
    min-height: 320px;
  }

  .hero-visual__halo {
    inset: 36px 10px 46px;
    border-radius: 44px;
  }

  .hero-logo {
    width: min(100%, 420px);
  }

  .feature-art {
    min-height: 250px;
    padding: 12px;
  }

  .gallery-preview-stats,
  .gallery-photo-grid,
  .gallery-media-grid {
    grid-template-columns: 1fr;
  }

  .gallery-photo,
  .gallery-photo--wide,
  .gallery-photo--tall {
    min-height: 280px;
  }

  .gallery-media-grid .gallery-video-card {
    grid-column: span 1;
  }

  .gallery-hero__badge {
    top: 22px;
    right: 22px;
  }

  .gallery-hero__badge--alt {
    left: 22px;
    bottom: 22px;
  }

  .gallery-popup-trigger::after {
    left: 14px;
    bottom: 14px;
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .gallery-preview-dots {
    left: 16px;
    bottom: 16px;
  }

  .gallery-popup-trigger--video::after {
    left: 50%;
    bottom: auto;
    top: 50%;
  }

  .feature-art::after {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .media-lightbox {
    padding: 14px;
  }

  .media-lightbox__dialog {
    width: 100%;
    max-height: calc(100vh - 28px);
    padding: 56px 14px 14px;
    border-radius: 22px;
  }

  .media-lightbox__dialog::before {
    inset: 10px;
    border-radius: 16px;
  }

  .media-lightbox__close {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
  }

  .media-lightbox__content img,
  .media-lightbox__content video {
    max-height: calc(100vh - 120px);
    border-radius: 16px;
  }

  .service-grid,
  .build-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .section-heading--split,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .build-card {
    min-height: 220px;
  }
}
