/* =========================================================
   Base / visual tokens
   ========================================================= */
:root {
  --black: #030406;
  --near-black: #090d12;
  --panel: #111923;
  --white: #ffffff;
  --muted: #f4f4f1;
  --text: #15191f;
  --soft: #69717b;
  --gold: #d8b45d;
  --red: #c8232b;
  --blue: #286ea3;
  --line: rgba(255, 255, 255, 0.13);
  --dark-line: rgba(3, 4, 6, 0.12);
  --container: min(1180px, calc(100% - 42px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Montserrat, Arial, sans-serif;
  line-height: 1.55;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-dark {
  color: var(--white);
  background: var(--black);
}

.section-light {
  color: var(--text);
  background: var(--white);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.kicker::before {
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  content: "";
}

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

h1 {
  margin-bottom: 26px;
  font-size: clamp(4.1rem, 10vw, 9.1rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 5.4vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  line-height: 1.18;
}

p {
  color: inherit;
}

/* =========================================================
   Header / navigation
   ========================================================= */
.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  display: grid;
  align-items: center;
  width: 100%;
  grid-template-columns: 300px 1fr 260px;
  gap: 24px;
  min-height: 88px;
  padding: 0 clamp(28px, 8vw, 176px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.86)),
    rgba(0, 0, 0, 0.55);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(20, 20, 22, 0.34);
  border-bottom-color: rgba(255, 255, 255, 0.13);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  padding: 10px;
}

.site-logo img {
  display: block;
  width: 76px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 38px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.92);
}

.site-nav a:hover {
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 23px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  transition: color 160ms ease, background 160ms ease, border 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button:hover {
  color: var(--red);
  background: #d8ca86;
  border-color: #d8ca86;
  box-shadow: inset 0 -4px 0 var(--red), 0 14px 24px rgba(0, 0, 0, 0.24);
  transform: translateY(-1px);
}

.button-outline,
.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.07);
}

.site-header .button-outline {
  min-height: 42px;
  padding: 12px 20px;
  border: 0;
  color: var(--white);
  background: var(--red);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.phone-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--red);
  border: 0;
  line-height: 0;
}

.phone-button svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  transform: scaleX(-1) rotate(12deg);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

/* =========================================================
   Hero / YouTube background video
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 128px 0 70px;
}

.hero-video,
.hero-shade,
.hero-image-fallback {
  position: absolute;
  inset: 0;
}

.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120vw;
  height: 67.5vw;
  min-width: 177.78vh;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.hero-image-fallback {
  z-index: -1;
  background: url("../img/hero-event.webp") center / cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.52)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.18));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero h1 {
  margin-bottom: 84px;
  font-size: clamp(3.9rem, 7.5vw, 7.2rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 5px 6px 0 rgba(0, 0, 0, 0.58);
}

.hero h2 {
  max-width: 1280px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.85rem, 3.25vw, 3.25rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 4px 5px 0 rgba(0, 0, 0, 0.62);
}

.hero-subcopy {
  max-width: 1080px;
  margin: 0 auto 64px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.25rem, 2.25vw, 2.28rem);
  font-weight: 800;
  line-height: 1.18;
  text-shadow: 3px 4px 0 rgba(0, 0, 0, 0.56);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.hero .button {
  min-width: 185px;
  min-height: 54px;
  padding: 17px 20px;
  color: var(--white);
  background: var(--red);
  border: 0;
  box-shadow: 4px 5px 0 rgba(0, 0, 0, 0.44);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero .button:hover {
  color: var(--red);
  background: #d8ca86;
  box-shadow: inset 0 -4px 0 var(--red), 0 14px 24px rgba(0, 0, 0, 0.28);
}

/* =========================================================
   Trusted by / logo block
   ========================================================= */
.trusted {
  padding: 58px 0 38px;
  background: #000;
}

.trusted-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 62px;
  text-align: center;
}

.trusted h2 {
  margin: 0;
  max-width: 1180px;
  color: var(--white);
  font-size: clamp(2rem, 3.1vw, 3rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trusted p {
  margin: 0;
  max-width: 940px;
  color: var(--white);
  font-size: clamp(0.95rem, 1.45vw, 1.32rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-grid {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 70px 82px;
  max-width: 1220px;
  margin: 0 auto;
}

.logo-grid img {
  width: 100%;
  max-width: 250px;
  max-height: 120px;
  margin: 0 auto;
  aspect-ratio: 16 / 7;
  object-fit: contain;
  padding: 0;
  background: transparent;
  border: 0;
  filter: sepia(1) saturate(0.7) hue-rotate(358deg) brightness(0.88);
  opacity: 0.96;
}

/* =========================================================
   Shared section layouts
   ========================================================= */
.services,
.case-studies {
  padding: 104px 0;
}

.services {
  padding: 118px 0 128px;
  color: var(--white);
  background: #050607;
}

.services .section-center {
  margin-bottom: 78px;
}

.services .kicker {
  margin-bottom: 24px;
  color: #cdbf7f;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.services .kicker::before {
  width: 18px;
  height: 18px;
  border-color: var(--red);
  border-top-color: transparent;
}

.services h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.45rem, 3.4vw, 3.65rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.what-we-do {
  padding: 96px 0 108px;
  color: var(--white);
  background: #030406;
}

.two-column {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 7vw, 86px);
  align-items: center;
}

.content-copy p {
  color: var(--soft);
  font-size: 1.04rem;
}

.what-we-do .two-column {
  grid-template-columns: 0.87fr 1.13fr;
  gap: clamp(56px, 6.6vw, 104px);
  align-items: center;
}

.what-we-do .content-copy {
  max-width: 598px;
}

.what-we-do .kicker {
  margin-bottom: 50px;
  color: #cdbf7f;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.what-we-do .kicker::before {
  width: 18px;
  height: 18px;
  border-color: var(--red);
  border-top-color: transparent;
}

.what-we-do h2 {
  max-width: 575px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2.4rem, 3.4vw, 3.35rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.what-we-do .content-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.03rem;
  line-height: 1.55;
}

.content-subtitle {
  margin: 48px 0 0;
  color: #d8c985;
  font-size: clamp(1.35rem, 1.85vw, 1.85rem);
  font-weight: 900;
  line-height: 1.15;
}

.section-center {
  max-width: 810px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-center p {
  color: inherit;
}

.section-light .section-center p {
  color: var(--soft);
}

.what-we-do .feature-photo {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 810px;
  padding: 0;
}

.photo-frame {
  position: relative;
  width: min(728px, 100%);
  min-height: 835px;
  background: #781017;
  overflow: visible;
}

.photo-frame img {
  position: absolute;
  top: 34px;
  left: -24px;
  width: calc(100% + 58px);
  height: 730px;
  object-fit: cover;
  object-position: center;
  clip-path: polygon(17% 5%, 71% 0, 100% 40%, 85% 86%, 23% 94%, 0 53%);
  box-shadow: none;
  transform: rotate(var(--photo-rotate, -5deg));
  transform-origin: center;
  transition: transform 80ms linear;
  will-change: transform;
}

.counter-card {
  position: absolute;
  left: -22px;
  bottom: 70px;
  display: grid;
  place-items: center;
  width: 275px;
  min-height: 110px;
  padding: 20px;
  color: var(--white);
  text-align: center;
  background: #111;
  border: 1px solid var(--red);
}

.counter-card span,
.metrics-grid span {
  display: block;
  margin-bottom: 0;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.counter-card strong,
.metrics-grid strong {
  color: #d8c985;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1;
}

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

.icon-list li,
.check-list li {
  position: relative;
  min-height: 38px;
  display: flex;
  align-items: center;
  padding-left: 58px;
  color: #d3c47d;
  font-weight: 800;
  line-height: 1.34;
}

.icon-list li {
  display: block;
  font-size: clamp(1rem, 1.18vw, 1.12rem);
}

.icon-list li strong {
  color: #d8c985;
  font-weight: 900;
}

.icon-list li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  top: 50%;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #f3dd89;
  background: var(--red);
  border-radius: 50%;
  content: "◎";
  font-size: 1rem;
  transform: translateY(-50%);
}

/* =========================================================
   How we work / process icons
   ========================================================= */
.how-we-work {
  position: relative;
  padding: 22px 0 86px;
  background:
    linear-gradient(rgba(60, 12, 12, 0.28), rgba(20, 4, 8, 0.42)),
    url("../img/porsche001-bg.webp") center / cover;
}

.process-intro {
  max-width: 100%;
  margin: 0 auto 62px;
  padding: 32px clamp(24px, 5vw, 70px) 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(40, 20, 20, 0.2) 42%, rgba(10, 8, 10, 0.58)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.process-intro .kicker {
  margin-bottom: 10px;
  color: #cdbf7f;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.process-intro .kicker::before {
  width: 18px;
  height: 18px;
  border-color: var(--red);
  border-top-color: transparent;
}

.process-intro h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(2.1rem, 4.4vw, 4.15rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.process-intro p {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.45;
}

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

.process-line article {
  min-height: 310px;
  padding: 30px 24px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(40, 20, 20, 0.2) 42%, rgba(10, 8, 10, 0.58)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.process-line img {
  width: 76px;
  margin: 0 auto 18px;
}

.process-line span {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.process-line p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

/* =========================================================
   Services / three cards
   ========================================================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  max-width: 1190px;
  margin: 0 auto;
}

.service-grid article {
  text-align: center;
  background: transparent;
  border: 0;
}

.service-grid img {
  width: 100%;
  aspect-ratio: 1.34 / 1;
  object-fit: cover;
  border-radius: 18px;
}

.service-grid h3,
.service-grid p {
  padding: 0 12px;
}

.service-grid h3 {
  margin-top: 26px;
  margin-bottom: 18px;
  color: #d3c47d;
  font-size: 1.32rem;
  font-weight: 900;
}

.service-grid p {
  max-width: 360px;
  margin: 0 auto;
  padding-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.32;
}

/* =========================================================
   Equipment / category cards
   ========================================================= */
.equipment {
  padding: 92px 0 120px;
  background: #050607;
}

.equipment .section-center {
  margin-bottom: 82px;
}

.equipment .kicker {
  margin-bottom: 34px;
  color: #cdbf7f;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.equipment .kicker::before {
  width: 18px;
  height: 18px;
  border-color: var(--red);
  border-top-color: transparent;
}

.equipment h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.5rem, 3.5vw, 3.75rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px 30px;
  max-width: 1280px;
  margin: 0 auto;
}

.equipment-grid a {
  display: grid;
  gap: 26px;
  color: #d3c47d;
  text-align: center;
  background: transparent;
}

.equipment-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 2.08 / 1;
  object-fit: cover;
  object-position: center;
  border: 3px solid #d3c47d;
  border-radius: 18px;
  opacity: 1;
  transition: transform 260ms ease, filter 260ms ease;
}

.equipment-grid img.equipment-img-stage {
  object-position: center 34%;
}

.equipment-grid h3 {
  margin: 0;
  padding: 0 12px;
  color: #d3c47d;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 900;
  line-height: 1.1;
}

.equipment-grid a:hover img {
  filter: brightness(1.08);
  transform: translateY(-4px);
}

/* =========================================================
   Why us / counters
   ========================================================= */
.why-us {
  min-height: 820px;
  padding: 15px 0 44px;
  background:
    linear-gradient(90deg, rgba(3, 4, 6, 0.55) 0%, rgba(3, 4, 6, 0.42) 42%, rgba(3, 4, 6, 0.2) 72%, rgba(3, 4, 6, 0.62) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.14) 48%, rgba(0, 0, 0, 0.34)),
    url("../img/lighting.webp") center / cover;
  background-attachment: fixed;
}

.why-us .two-column {
  min-height: 760px;
  grid-template-columns: minmax(500px, 520px) 1fr;
  gap: clamp(48px, 8vw, 132px);
  align-items: end;
}

.why-us .content-copy {
  align-self: start;
  width: min(100%, 512px);
  max-width: 512px;
  min-height: 804px;
  padding: 74px 60px 62px;
  background: rgba(13, 13, 13, 0.88);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.why-us .kicker {
  margin-bottom: 54px;
  color: #cdbf7f;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.why-us .kicker::before {
  width: 18px;
  height: 18px;
  border-color: var(--red);
  border-top-color: transparent;
}

.why-us h2 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2.28rem, 2.85vw, 2.78rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.why-us .content-copy p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.01rem;
  line-height: 1.5;
}

.why-us .check-list {
  gap: 0;
  margin-top: 30px;
}

.why-us .check-list li {
  min-height: 48px;
  padding: 13px 0 13px 36px;
  color: #d3c47d;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.38;
}

.why-us .check-list li::before {
  top: 21px;
  width: auto;
  height: auto;
  color: var(--red);
  background: transparent;
  border-radius: 0;
  content: "✓";
  font-size: 1.2rem;
  font-weight: 900;
  transform: none;
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-self: end;
  gap: 60px;
  max-width: 620px;
  margin-left: auto;
}

.metrics-grid div {
  display: grid;
  min-height: 96px;
  place-items: center;
  padding: 18px 30px;
  color: var(--white);
  text-align: center;
  background: rgba(13, 13, 13, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.why-us .metrics-grid strong {
  order: -1;
  color: #d8c985;
  font-size: clamp(2.1rem, 3.1vw, 2.85rem);
  font-weight: 900;
}

.why-us .metrics-grid span {
  margin-top: 2px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

/* =========================================================
   Case studies / automatic carousel
   ========================================================= */
.case-studies {
  padding: 92px 0 118px;
  color: var(--white);
  background: #020303;
}

.case-studies .section-center {
  max-width: 1160px;
  margin-bottom: 44px;
}

.case-studies .kicker {
  margin-bottom: 48px;
  color: #cdbf7f;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.case-studies .kicker::before {
  width: 18px;
  height: 18px;
  border-color: var(--red);
  border-top-color: transparent;
}

.case-studies h2 {
  margin-bottom: 34px;
  color: var(--white);
  font-size: clamp(2.45rem, 3.4vw, 3.7rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.case-studies .section-center p:last-child {
  max-width: 1060px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.02rem;
}

.case-carousel {
  position: relative;
  max-width: 1290px;
  margin: 0 auto;
}

.case-viewport {
  overflow: hidden;
}

.case-track {
  display: flex;
  gap: 20px;
  transition: transform 650ms ease;
  will-change: transform;
}

.case-slide {
  position: relative;
  flex: 0 0 calc((100% - 40px) / 3);
  min-height: 600px;
  overflow: hidden;
  display: grid;
  align-items: end;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.34);
  background: #111;
}

.case-slide::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0);
  content: "";
  transition: background 220ms ease;
}

.case-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.case-slide span {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 86%;
  margin: 0 auto;
  padding: 0;
  color: #d3c47d;
  text-align: left;
  font-size: clamp(1.85rem, 2.5vw, 2.75rem);
  font-weight: 900;
  line-height: 1.08;
  background: transparent;
  opacity: 0;
  transition: opacity 220ms ease;
}

.case-slide:hover::before {
  background: rgba(0, 0, 0, 0.68);
}

.case-slide:hover span {
  opacity: 1;
}

.case-dots {
  position: absolute;
  right: 0;
  bottom: 12px;
  left: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 12px;
  pointer-events: none;
}

.case-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
}

.case-dots button.is-active {
  background: var(--red);
}

/* =========================================================
   Testimonials / local replica of Google widget area
   ========================================================= */
.testimonials {
  position: relative;
  overflow: hidden;
  padding: 78px 0 190px;
  background:
    radial-gradient(ellipse at center, rgba(7, 8, 8, 0.99) 0%, rgba(7, 8, 8, 0.98) 34%, rgba(7, 8, 8, 0.9) 50%, rgba(7, 8, 8, 0.46) 72%, rgba(7, 8, 8, 0.18) 100%),
    linear-gradient(90deg, rgba(7, 8, 8, 0.06), rgba(7, 8, 8, 0.82) 38%, rgba(7, 8, 8, 0.98) 50%, rgba(7, 8, 8, 0.82) 62%, rgba(7, 8, 8, 0.06)),
    repeating-linear-gradient(0deg, transparent 0 255px, rgba(211, 196, 125, 0.13) 256px 257px),
    repeating-linear-gradient(60deg, rgba(211, 196, 125, 0.18) 0 1px, transparent 1px 164px),
    repeating-linear-gradient(120deg, rgba(211, 196, 125, 0.14) 0 1px, transparent 1px 164px),
    #070808;
  background-blend-mode: normal, normal, normal, screen, screen, normal;
}

.testimonials .section-center {
  max-width: 1120px;
  margin-bottom: 74px;
}

.testimonials .kicker {
  margin-bottom: 58px;
  color: #cdbf7f;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.testimonials .kicker::before {
  width: 18px;
  height: 18px;
  border-color: var(--red);
  border-top-color: transparent;
}

.testimonials h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(2.45rem, 3.4vw, 3.7rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.testimonials .section-center p:last-child {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.03rem;
}

.google-reviews {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 44px;
  width: min(1680px, calc(100vw - 80px));
  margin: 0 auto;
}

.reviews-summary {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--white);
  text-align: center;
}

.reviews-summary strong {
  font-size: 1.5rem;
  font-weight: 900;
}

.summary-stars {
  color: #ffc400;
  font-size: 2.25rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.reviews-summary span {
  color: var(--white);
  font-size: 1rem;
}

.google-wordmark {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.google-wordmark span:nth-child(1),
.google-wordmark span:nth-child(4) {
  color: #4285f4;
}

.google-wordmark span:nth-child(2),
.google-wordmark span:nth-child(6) {
  color: #db4437;
}

.google-wordmark span:nth-child(3) {
  color: #f4b400;
}

.google-wordmark span:nth-child(5) {
  color: #0f9d58;
}

.review-viewport {
  overflow: hidden;
}

.review-track {
  display: flex;
  gap: 18px;
  transition: transform 520ms ease;
  will-change: transform;
}

.review-card {
  position: relative;
  flex: 0 0 282px;
  min-height: 232px;
  padding: 20px 20px 18px;
  color: var(--white);
  background: #222;
  border: 2px solid #c6aa5b;
  border-radius: 22px;
}

.review-head {
  display: grid;
  align-items: center;
  grid-template-columns: 42px 1fr 22px;
  gap: 14px;
  margin-bottom: 18px;
}

.review-avatar {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--white);
  background: #3f51b5;
  border-radius: 50%;
  font-weight: 900;
}

.review-name {
  overflow: hidden;
  font-weight: 900;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.review-google {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
}

.review-google svg {
  width: 18px;
  height: 18px;
}

.review-stars {
  display: flex;
  gap: 1px;
  margin-bottom: 8px;
  color: #ffc400;
  font-size: 1.25rem;
  line-height: 1;
}

.review-stars::after {
  margin-left: 7px;
  color: #4285f4;
  content: "✓";
  font-size: 0.86rem;
}

.review-card p {
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.98rem;
  line-height: 1.34;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.review-more {
  display: inline-block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}

.review-quote {
  position: absolute;
  right: 16px;
  bottom: 9px;
  color: #c6aa5b;
  font-size: 2.15rem;
  font-weight: 900;
  line-height: 1;
}

.review-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  background: #252525;
  border: 2px solid #c6aa5b;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.review-prev {
  left: 200px;
}

.review-next {
  right: -18px;
}

/* =========================================================
   Location map / black and white Google map
   ========================================================= */
.nationwide {
  padding: 0;
  background: #f6f6f6;
}

.map-shell {
  position: relative;
  width: 100%;
  height: min(62vh, 620px);
  min-height: 430px;
  overflow: hidden;
  background: #d8d8d8;
}

.map-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.08) brightness(1.02);
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 22px;
  height: 22px;
  background: var(--red);
  border: 4px solid var(--white);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.36);
  transform: translate(-50%, -100%) rotate(-45deg);
  pointer-events: none;
}

.map-pin::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  background: var(--white);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.final-cta {
  padding: 108px 0 112px;
  background:
    linear-gradient(rgba(5, 6, 7, 0.86), rgba(5, 6, 7, 0.88)),
    url("../img/final-cta-bg.webp") center / cover,
    linear-gradient(45deg, rgba(255, 255, 255, 0.045) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.045) 75%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.045) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.045) 75%),
    #090a0b;
  background-position: center, center, 0 0, 48px 48px, center;
  background-size: auto, cover, 96px 96px, 96px 96px, auto;
}

.final-cta .two-column {
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(70px, 9vw, 130px);
  max-width: 1080px;
}

.final-cta .content-copy {
  max-width: 410px;
}

.final-cta h2 {
  margin-bottom: 34px;
  color: #d3c47d;
  font-size: clamp(2.05rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1.18;
}

.final-cta h2 span {
  color: var(--red);
}

.final-cta p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
  line-height: 1.45;
}

.contact-cards {
  display: grid;
  align-content: start;
  grid-template-columns: 1fr 1fr;
  gap: 42px 30px;
  padding-top: 16px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-icon {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #d3c47d;
  background: var(--red);
  border-radius: 50%;
}

.contact-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.contact-method:first-child .contact-icon svg {
  transform: scaleX(-1) rotate(12deg);
}

.contact-text {
  display: grid;
  gap: 6px;
}

.contact-cards strong {
  color: #d3c47d;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.contact-cards small {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
}

.final-cta .button {
  grid-column: 1 / -1;
  width: min(100%, 560px);
  min-height: 54px;
  margin-top: 4px;
  border: 0;
  color: #d3c47d;
  background: var(--red);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.site-footer {
  padding: 50px 0 36px;
  color: var(--white);
  background: #000;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(60px, 11vw, 180px);
}

.footer-left {
  display: grid;
  gap: 48px;
}

.footer-logo img {
  width: 112px;
}

.footer-link-groups {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 80px;
}

.footer-link-groups nav {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-link-groups a {
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
}

.footer-right h2 {
  margin: 0 0 30px;
  color: var(--white);
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.footer-form {
  display: grid;
  grid-template-columns: 1fr 100px;
  width: 100%;
  margin-bottom: 30px;
}

.footer-form input {
  min-height: 42px;
  padding: 0 16px;
  color: var(--white);
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-right: 0;
}

.footer-form button {
  color: #d3c47d;
  background: var(--red);
  border: 0;
}

.footer-right address {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-style: normal;
}

.footer-right address a,
.footer-right address > span {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  align-items: center;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.06rem;
}

.footer-right address span span,
.footer-right address a span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.22rem;
  font-weight: 900;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  background: #111;
  font-size: 1.1rem;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.social-links a:hover {
  background: #171717;
  transform: translateY(-2px);
}

.social-youtube {
  color: #ff0000;
}

.social-instagram {
  color: #e4405f;
}

.social-facebook {
  color: #1877f2;
}

.social-tiktok {
  color: #ffffff;
}

.footer-divider {
  height: 1px;
  margin-top: 40px;
  margin-bottom: 50px;
  background: #d3c47d;
}

.footer-legal {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
}

.footer-legal p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
}

.footer-legal img {
  width: 58px;
}

.footer-legal nav {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.footer-legal nav a {
  color: rgba(255, 255, 255, 0.86);
}

.footer-legal nav a + a {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.6);
}

.screen-reader {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* =========================================================
   Responsive / tablet and mobile
   ========================================================= */
@media (max-width: 1024px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    padding: 22px;
    background: rgba(0, 0, 0, 0.96);
    border: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: grid;
  }

  .header-actions {
    display: none;
  }

  .trusted-heading,
  .two-column,
  .what-we-do .two-column,
  .final-cta .two-column,
  .footer-main,
  .footer-legal {
    grid-template-columns: 1fr;
  }

  .footer-right {
    max-width: 430px;
  }

  .footer-legal {
    justify-items: start;
  }

  .footer-legal nav {
    justify-content: flex-start;
  }

  .what-we-do .content-copy {
    max-width: none;
  }

  .what-we-do .feature-photo {
    min-height: 650px;
    justify-items: center;
  }

  .why-us {
    background-attachment: scroll;
  }

  .why-us .two-column {
    min-height: auto;
    gap: 34px;
  }

  .why-us .content-copy {
    width: min(100%, 512px);
    max-width: 512px;
    min-height: auto;
    padding: 64px 50px 58px;
  }

  .google-reviews {
    grid-template-columns: 190px minmax(0, 1fr);
    width: min(100% - 32px, 980px);
    gap: 30px;
  }

  .review-card {
    flex-basis: 300px;
  }

  .review-prev {
    left: 176px;
  }

  .metrics-grid {
    margin-left: 0;
  }

  .photo-frame {
    width: min(610px, 100%);
    min-height: 690px;
  }

  .photo-frame img {
    top: 32px;
    left: -18px;
    width: calc(100% + 42px);
    height: 600px;
  }

  .equipment-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 22px;
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 46px 42px;
  }

  .process-line,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-slide {
    flex-basis: calc((100% - 20px) / 2);
    min-height: 520px;
  }

  .footer-form {
    margin-left: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 5.6rem);
  }

  .site-logo img {
    width: 76px;
  }

  .hero {
    min-height: 88vh;
    padding: 130px 0 54px;
  }

  .hero-video {
    display: none;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .logo-grid,
  .process-line,
  .service-grid,
  .equipment-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .equipment .section-center {
    margin-bottom: 48px;
  }

  .case-slide {
    flex-basis: 100%;
    min-height: 470px;
  }

  .trusted,
  .how-we-work,
  .services,
  .equipment,
  .why-us,
  .case-studies,
  .testimonials,
  .final-cta {
    padding: 72px 0;
  }

  .nationwide {
    padding: 0;
  }

  .map-shell {
    min-height: 360px;
    height: 52vh;
  }

  .what-we-do {
    padding: 82px 0 88px;
  }

  .why-us {
    min-height: auto;
    background-position: center;
  }

  .why-us .check-list li {
    padding-right: 0;
  }

  .why-us .content-copy {
    width: min(100%, 430px);
    max-width: 430px;
    margin: 0 auto;
    padding: 50px 34px 46px;
  }

  .why-us h2 {
    font-size: clamp(2.25rem, 11vw, 3.15rem);
  }

  .why-us .metrics-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    width: min(100%, 430px);
    margin: 36px auto 0;
  }

  .final-cta .content-copy,
  .final-cta p {
    max-width: none;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 0;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-link-groups {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-logo img {
    width: 112px;
  }

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

  .testimonials {
    padding: 72px 0 120px;
  }

  .google-reviews {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 430px);
    gap: 28px;
  }

  .review-card {
    flex-basis: 100%;
  }

  .review-prev {
    left: -12px;
  }

  .review-next {
    right: -12px;
  }

  .counter-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .what-we-do .feature-photo {
    min-height: auto;
    padding: 10px 0 0;
  }

  .photo-frame {
    width: 100%;
    min-height: 420px;
  }

  .photo-frame img {
    top: 24px;
    left: 18px;
    width: calc(100% - 8px);
    height: 360px;
    transform: none;
  }

  .case-studies .section-center {
    margin-bottom: 34px;
  }
}
