:root {
  --red: #C12429;
  --red-deep: #942429;
  --pink: #EFCACC;
  --grey: #5B5B5B;
  --bg: #FFFFFF;
  --bg-soft: #F4F4F4;
  --ink: #111111;
  --ink-2: #2C2C2C;
  --ink-3: #5E5E5E;
  --line: #E6E6E6;
  --footer-bg: #111111;
  --f-head: "Montserrat", "Arial Black", sans-serif;
  --f-body: "Red Hat Display", system-ui, sans-serif;
  --container: 1280px;
  --section-gap: clamp(80px, 10vw, 140px);
  --r-card: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  overflow-x: hidden;
  opacity: 0;
  animation: pageIn 0.32s ease forwards;
  transition: opacity 0.32s ease;
}

@keyframes pageIn {
  to {
    opacity: 1;
  }
}

body.page-ready {
  opacity: 1;
}

body.page-leaving {
  opacity: 0;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 108px;
  display: grid;
  grid-template-columns: minmax(190px, auto) minmax(0, 1fr) minmax(0, auto);
  align-items: center;
  gap: clamp(18px, 2.8vw, 48px);
  padding: 0 clamp(28px, 7.2vw, 9.4vw);
  background: var(--bg);
  backdrop-filter: blur(10px);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled,
.site-header.open {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.brand {
  position: relative;
  z-index: 2;
}

.brand img {
  height: clamp(44px, 4.15vw, 54px);
  width: auto;
}

.desktop-nav {
  position: static;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3.1vw, 62px);
  min-width: 0;
}

.desktop-nav a,
.contact-link,
.mobile-drawer a {
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
  transition: color 0.25s ease;
}

.desktop-nav a:hover,
.contact-link:hover,
.mobile-drawer a:hover {
  color: var(--red);
}

.partner-badge {
  position: static;
  justify-self: end;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(150px, 12vw, 220px);
}

.partner-badge img {
  display: block;
  width: 100%;
  height: auto;
}

.contact-link {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 4px;
  background: var(--red);
  color: var(--bg);
  margin-left: auto;
}

.contact-link:hover {
  color: var(--bg);
  background: var(--red-deep);
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 2;
  isolation: isolate;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, transform 0.28s ease;
}

.hamburger::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 999px;
  border: 1px solid rgba(201, 32, 39, 0.36);
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
}

.hamburger span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--ink);
  transform-origin: center;
  transition: width 0.28s ease, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease, background 0.28s ease;
}

.hamburger span:nth-child(2) {
  width: 17px;
  transform: translateX(3px);
  background: var(--red);
}

.hamburger span + span {
  margin-top: 5px;
}

.hamburger:hover,
.hamburger:focus-visible,
.hamburger.open {
  border-color: rgba(201, 32, 39, 0.46);
  box-shadow: 0 12px 28px rgba(15, 15, 16, 0.14), 0 0 0 4px rgba(201, 32, 39, 0.08);
}

.hamburger:hover::before,
.hamburger:focus-visible::before,
.hamburger.open::before {
  opacity: 1;
  transform: scale(1);
}

.hamburger.open span:nth-child(1) {
  background: var(--red);
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(10px) scaleX(0.25);
}

.hamburger.open span:nth-child(3) {
  background: var(--red);
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer {
  position: absolute;
  left: 0;
  right: 0;
  top: 80px;
  display: grid;
  gap: 20px;
  padding: 0 32px;
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.08);
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.mobile-drawer.open {
  max-height: 320px;
  padding: 24px 32px 30px;
}

.hero {
  min-height: calc(100vh - 108px);
  position: relative;
  overflow: hidden;
  margin-bottom: clamp(120px, 12vw, 180px);
}

.hero__media-clip {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 45%;
  z-index: 0;
  overflow: hidden;
  clip-path: none;
}

.hero__media-clip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 34%;
  z-index: 2;
  background: linear-gradient(
    to right,
    var(--bg) 0%,
    rgba(255, 255, 255, 0.72) 42%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  will-change: opacity;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  max-width: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
}

.hero-slide video {
  max-width: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  transform: translateX(18%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 108px);
  padding-top: 0;
}

.hero-left {
  box-sizing: content-box;
  width: 52%;
  padding-left: 10.2%;
  transform: translateY(34px);
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--f-head);
  font-size: clamp(44px, 4.5vw, 72px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.012em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.red-word {
  color: var(--red);
}

.hero p {
  max-width: 590px;
  margin: 26px 0 34px;
  color: var(--ink-3);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.75;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-red {
  background: var(--red);
  color: var(--bg);
}

.btn-red:hover {
  background: var(--red-deep);
}

.btn-outline {
  border: 1px solid var(--ink);
  color: var(--ink);
}

.btn-white {
  background: var(--bg);
  color: var(--red);
}

.about {
  position: relative;
  display: block;
  width: min(1500px, calc(100% - 56px));
  min-height: 660px;
  overflow: visible;
  margin: 0 auto var(--section-gap);
}

.about-photo {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 3;
  width: 46%;
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
}

.about-photo img,
.about-photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-reel {
  background: var(--ink);
}

.about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: aboutReel 30s infinite;
  transition: opacity 1.2s ease;
}

.about-slide:nth-child(2) {
  animation-delay: 5s;
}

.about-slide:nth-child(3) {
  animation-delay: 10s;
}

.about-slide:nth-child(4) {
  animation-delay: 15s;
}

.about-slide:nth-child(5) {
  animation-delay: 20s;
}

.about-slide:nth-child(6) {
  animation-delay: 25s;
}

@keyframes aboutReel {
  0%,
  16% {
    opacity: 1;
  }

  21%,
  100% {
    opacity: 0;
  }
}

.about-panel {
  position: absolute;
  top: 5%;
  right: 0;
  bottom: 5%;
  z-index: 1;
  display: block;
  width: 74%;
  margin: 0;
  padding: 0;
  color: var(--bg);
  background: var(--red);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.about-shadow {
  position: absolute;
  left: 5%;
  bottom: 0;
  width: 22%;
  height: 44%;
  background: var(--red-deep);
  opacity: 0.55;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.about-copy {
  position: relative;
  z-index: 4;
  width: min(52%, 640px);
  max-width: 640px;
  margin: 0 clamp(46px, 5.4vw, 84px) 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--bg);
}

.about-panel h2,
.stats h2,
.mv-row h2,
.cta-contact h2 {
  font-family: var(--f-head);
  font-weight: 800;
  text-transform: uppercase;
}

.about-panel h2 {
  max-width: 640px;
  margin: 0 0 28px;
  font-size: clamp(44px, 4.4vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.about-panel p {
  margin: 0;
  max-width: 600px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.62;
}

.stats {
  position: relative;
  background-color: var(--bg);
  background-image: url("../img/stats-map.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 82px 0 72px;
  overflow: hidden;
  margin-bottom: var(--section-gap);
}

.stats-grid {
  position: relative;
  z-index: 1;
  width: min(1500px, calc(100% - 56px));
}

.stats-copy {
  max-width: 690px;
}

.stats h2 {
  margin: 0 0 34px;
  font-size: clamp(48px, 5.2vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.stats p {
  margin: 0 0 46px;
  color: var(--ink-3);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.eyebrow,
.service-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stat-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(58px, 8vw, 148px);
  justify-content: space-between;
  margin-top: 54px;
}

.stat-block {
  min-width: 0;
  padding-right: 10px;
}

.stat-number {
  display: block;
  color: var(--red);
  font-family: var(--f-head);
  font-size: clamp(54px, 5.8vw, 86px);
  font-weight: 800;
  line-height: 1;
}

.stat-block span {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.clients {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  margin-bottom: var(--section-gap);
}

.clients__rail {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 118px;
  animation: logoRail 42s linear infinite;
  will-change: transform;
  transform: translateZ(0);
}

.clients__logo {
  flex: 0 0 255px;
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 28px;
  border-left: 1px solid var(--line);
  color: var(--grey);
  font-weight: 900;
}

.clients__logo img {
  max-width: 178px;
  max-height: 62px;
  object-fit: contain;
}

@keyframes logoRail {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.services-wrap {
  padding: 72px 0 98px;
  background: var(--bg);
  color: var(--bg);
  margin-bottom: var(--section-gap);
}

.services-panel {
  border-radius: 0;
  padding: clamp(44px, 5vw, 72px) clamp(42px, 5vw, 78px) clamp(42px, 5vw, 64px);
  color: var(--bg);
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  overflow: hidden;
}

.services-wrap > .container {
  width: min(1500px, calc(100% - 56px));
}

.service-eyebrow {
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: none;
}

.services-intro {
  max-width: 780px;
  margin: 48px 0 78px;
  color: var(--bg);
  font-size: clamp(20px, 1.9vw, 25px);
  font-weight: 800;
  line-height: 1.03;
}

.services__track {
  display: flex;
  gap: 58px;
  width: max-content;
  overflow: visible;
  scroll-behavior: auto;
  scroll-snap-type: none;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 18px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  animation: servicesRail 56s linear infinite;
  will-change: transform;
}

.services__track::-webkit-scrollbar {
  display: none;
}

@keyframes servicesRail {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 29px));
  }
}

.service-card {
  flex: 0 0 290px;
  scroll-snap-align: start;
  display: block;
  min-height: 0;
  padding: 0;
  text-align: left;
  color: var(--bg);
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateZ(0);
}

.service-image {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.14);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.service-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.service-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  color: var(--bg);
  font-weight: 700;
  opacity: 0;
  background: rgba(0, 0, 0, 0.45);
  transition: opacity 0.35s ease;
}

.search-icon {
  width: 34px;
  height: 34px;
  border: 3px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.search-icon::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 3px;
  right: -9px;
  bottom: 1px;
  background: currentColor;
  transform: rotate(45deg);
}

.service-card:hover .service-image img {
  transform: scale(1.055);
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-body {
  display: block;
  min-height: 0;
  padding: 34px 26px 0;
}

.service-body strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.service-body span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.25;
}

.ceo {
  position: relative;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 1025 / 576;
  background: var(--bg);
  margin-bottom: var(--section-gap);
}

.ceo::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  background-image: url("../img/ceo-layout-desktop-1025x576.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  border-radius: 0;
  clip-path: none;
}

.ceo-grid {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: grid;
  grid-template-columns: 45% 55%;
}

.ceo-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: min(38vw, 480px);
  padding: clamp(42px, 5vw, 72px) 0;
}

.ceo-copy h2 {
  margin: 0 0 40px;
  color: var(--red);
  font-family: var(--f-head);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ceo-copy blockquote {
  margin: 0;
  color: var(--ink);
  font-family: var(--f-head);
  font-size: clamp(18px, 1.9vw, 26px);
  font-weight: 600;
  line-height: 1.6;
}

.ceo-copy blockquote span {
  color: var(--red);
}

.ceo-portrait-wrap {
  display: none;
}

.ceo-portrait-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.mission-vision {
  padding: 24px 0;
  margin-bottom: var(--section-gap);
}

.mission-vision .container {
  position: relative;
  display: grid;
  grid-template-columns: 34% 66%;
  min-height: 380px;
  background: linear-gradient(105deg, var(--bg) 0%, var(--bg) 82%, var(--bg-soft) 82%, var(--bg-soft) 100%);
}

.mission-vision .container::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 34%;
  width: 1px;
  background: var(--grey);
}

.mission-vision .container::after {
  content: "";
  position: absolute;
  left: 0;
  width: 34%;
  top: 50%;
  height: 1px;
  background: var(--grey);
}

.mv-row {
  display: contents;
}

.mv-row h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
}

.mv-row p {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 36px 62px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.12;
}

.reviews {
  padding: 82px 0 96px;
  background: var(--bg);
  margin-bottom: var(--section-gap);
}

.reviews h2 {
  margin: 0 0 42px;
  text-align: center;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.review-card {
  padding: 36px;
  text-align: center;
  background: var(--pink);
  border-radius: var(--r-card);
}

.stars {
  color: rgb(232, 161, 0);
  font-size: 18px;
  letter-spacing: 0.08em;
}

.review-card p {
  min-height: 82px;
  margin: 22px 0;
  color: var(--ink-2);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
}

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

.review-card strong {
  font-weight: 700;
}

.review-card span {
  color: var(--ink-3);
  margin-top: 4px;
}

.cta-contact {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 118px 0 292px;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.14) 0 22%, transparent 44%),
    linear-gradient(135deg, #c4202b 0%, #a91622 100%);
  color: var(--bg);
}

.cta-contact::before {
  content: "";
  position: absolute;
  inset: 9% 0 auto;
  height: 430px;
  background: linear-gradient(90deg, rgba(196, 32, 43, 0.92) 0%, rgba(196, 32, 43, 0.28) 24%, rgba(196, 32, 43, 0.18) 50%, rgba(196, 32, 43, 0.28) 76%, rgba(196, 32, 43, 0.92) 100%);
  z-index: 2;
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 300px;
  pointer-events: none;
}

.cta-contact h2 {
  margin: 0;
  max-width: min(92vw, 980px);
  font-size: clamp(40px, 4.8vw, 72px);
  line-height: 0.96;
  letter-spacing: 0;
  text-shadow: 0 4px 24px rgba(80, 0, 0, 0.36);
}

.cta-contact h2 span {
  display: block;
}

.cta-contact h2.recognition-title span:last-child {
  font-size: 0.84em;
}

.cta-contact .btn {
  margin: 30px 0 0;
}

.cta-photo-link {
  position: absolute;
  top: 42%;
  z-index: 1;
  display: block;
  width: clamp(178px, 15.6vw, 254px);
  height: clamp(270px, 24vw, 390px);
  transform: translateY(-50%) rotate(var(--tilt));
  text-decoration: none;
}

.cta-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 6px;
  box-shadow: 0 26px 70px rgba(64, 0, 0, 0.25), 0 0 0 8px rgba(255, 255, 255, 0.08);
  opacity: 0.84;
  padding: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f4 100%);
  filter: saturate(0.92) contrast(1.04);
  transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease;
}

.cta-photo-link:hover .cta-photo,
.cta-photo-link:focus-visible .cta-photo {
  opacity: 0.96;
  filter: saturate(1) contrast(1.06);
  transform: scale(1.018);
}

.photo-a {
  left: 3%;
  --tilt: -4deg;
}

.photo-b {
  left: 22%;
  --tilt: 2deg;
}

.photo-c {
  left: 41%;
  --tilt: -1deg;
}

.photo-d {
  left: 60%;
  --tilt: 3deg;
}

.photo-e {
  left: 79%;
  --tilt: -3deg;
}

.photo-f,
.photo-g {
  display: none;
}

.footer-form button {
  border: 0;
  cursor: pointer;
  text-transform: uppercase;
}

.site-footer {
  background: var(--footer-bg);
  color: var(--bg);
  position: relative;
  z-index: 5;
  width: 100%;
  margin: -258px auto 0;
  padding: 42px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.35fr;
  gap: clamp(90px, 12vw, 220px);
  width: min(1180px, calc(100% - 120px));
  margin: 0 auto;
  padding-bottom: 44px;
}

.site-footer h2 {
  margin: 0 0 24px;
  color: var(--bg);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-company a,
.footer-contact a,
.footer-bottom a {
  display: block;
  width: max-content;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
  transition: color 0.25s ease;
}

.footer-company a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: var(--red);
}

.footer-form {
  display: grid;
  max-width: 520px;
  gap: 10px;
  margin-bottom: 28px;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--bg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  outline: none;
}

.footer-form textarea {
  resize: vertical;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.footer-form button {
  min-height: 44px;
  padding: 0 18px;
  color: var(--bg);
  background: var(--red);
  border-radius: 4px;
  font-weight: 800;
}

.footer-contact p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
  line-height: 1.6;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.socials a {
  width: 36px;
  height: 36px;
  margin: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.socials a:hover {
  background: var(--red);
  color: var(--bg);
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 120px));
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom a {
  margin: 0;
}

.footer-bottom .pending-policy {
  color: rgba(255, 255, 255, 0.48);
  cursor: default;
}

.inner-page {
  background: var(--bg);
}

.inner-hero {
  padding: 120px 0 74px;
}

.inner-hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--f-head);
  font-size: clamp(52px, 7vw, 108px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.inner-hero p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--ink-3);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
}

.gallery-page {
  padding: 0 0 var(--section-gap);
  background:
    linear-gradient(180deg, rgba(244, 244, 244, 0.55) 0%, rgba(255, 255, 255, 0) 220px),
    var(--bg);
}

.gallery-category {
  padding: 64px 0 82px;
  border-top: 1px solid var(--line);
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

.gallery-category:first-child {
  border-top: 0;
  padding-top: 0;
}

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

.gallery-category__head h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--f-head);
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.gallery-category__head span {
  color: var(--red);
  font-family: var(--f-head);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1;
}

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

.gallery-page-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  background: var(--bg-soft);
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.gallery-page-grid img.is-loaded {
  opacity: 1;
  transform: scale(1);
}

.service-tabs {
  position: sticky;
  top: 108px;
  z-index: 12;
  display: flex;
  gap: 10px;
  margin: 0 0 46px;
  padding: 14px 0;
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  scrollbar-width: none;
}

.service-tabs::-webkit-scrollbar {
  display: none;
}

.service-tabs a {
  flex: 0 0 auto;
  padding: 11px 16px;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.service-tabs a:hover {
  color: var(--bg);
  background: var(--red);
  border-color: var(--red);
}

.service-video-tile {
  position: relative;
  display: grid;
  place-items: center;
  gap: 14px;
  width: 100%;
  aspect-ratio: 4 / 3;
  color: var(--bg);
  background: radial-gradient(circle at 72% 18%, rgba(255,255,255,0.2), transparent 30%), linear-gradient(135deg, var(--ink), var(--red-deep));
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}

.service-video-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(193,36,41,0.28), rgba(17,17,17,0.1));
  z-index: -1;
}

.service-video-tile > span:last-child {
  max-width: 82%;
  font-size: clamp(16px, 1.9vw, 24px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.service-video-play {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 18px 38px rgba(0,0,0,0.26);
  position: relative;
}

.service-video-play::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 17px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--bg);
}

.service-category__description {
  max-width: 620px;
  margin: -12px 0 30px;
  color: var(--ink-3);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}


.service-subcategory {
  margin-top: 32px;
}

.service-subcategory + .service-subcategory {
  margin-top: 42px;
}

.service-subcategory__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.service-subcategory__head h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.service-subcategory__head span {
  color: var(--red);
  font-family: var(--f-head);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 800;
}

.gallery-page-grid video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  background: var(--ink);
}

.media-type-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 7px 12px;
  color: var(--bg);
  background: var(--red);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.video-thumb {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--bg);
  background: linear-gradient(135deg, var(--red), var(--ink));
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-page-grid a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.08), rgba(193, 36, 41, 0.12));
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.08);
  isolation: isolate;
  transform: translate3d(0, 0, 0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.gallery-page-grid a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 35%, rgba(17, 17, 17, 0.58) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-page-grid a::after {
  content: "View";
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 7px 12px;
  color: var(--bg);
  background: var(--red);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-page-grid a:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(17, 17, 17, 0.15);
}

.gallery-page-grid a:hover::before,
.gallery-page-grid a:hover::after {
  opacity: 1;
}

.gallery-page-grid a:hover::after {
  transform: translateY(0);
}

.gallery-page-grid a:hover img {
  transform: scale(1.045);
}

.certificate-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 58%, rgba(239, 202, 204, 0.22) 100%),
    var(--bg);
}

.certificate-eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.certificate-page {
  padding: 0 0 var(--section-gap);
  background:
    linear-gradient(180deg, rgba(244, 244, 244, 0.62), rgba(255, 255, 255, 0) 280px),
    var(--bg);
}

.certificate-list {
  display: grid;
  gap: 34px;
}

.certificate-item {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: center;
  padding: clamp(22px, 3vw, 42px);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.08);
}

.certificate-copy span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  color: var(--bg);
  background: var(--red);
  border-radius: 50%;
  font-family: var(--f-head);
  font-weight: 800;
}

.certificate-copy h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: var(--f-head);
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 800;
  overflow-wrap: anywhere;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.certificate-copy p {
  max-width: 440px;
  margin: 0;
  color: var(--ink-3);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.certificate-frame {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.85);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-frame::after {
  content: "View certificate";
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 9px 14px;
  color: var(--bg);
  background: var(--red);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.certificate-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(17, 17, 17, 0.14);
}

.certificate-frame:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.certificate-frame img {
  display: block;
  width: 100%;
  max-height: 720px;
  object-fit: contain;
  background: var(--bg);
  border-radius: 4px;
}

.certificate-frame.portrait {
  max-width: 680px;
  justify-self: end;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  flex-direction: column;
  padding: 24px 32px 28px;
  background: rgba(8, 8, 8, 0.93);
  backdrop-filter: blur(8px);
  color: var(--bg);
}

.lightbox.open {
  display: flex;
}

.lightbox-header {
  display: grid;
  grid-template-columns: 1fr auto 52px;
  gap: 20px;
  align-items: center;
}

.lightbox-header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-nav {
  position: relative;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 14px;
  color: var(--bg);
  background: linear-gradient(145deg, var(--red), var(--red-deep));
  box-shadow: 0 18px 42px rgba(193, 36, 41, 0.26), 0 14px 34px rgba(0, 0, 0, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  backdrop-filter: blur(12px);
}

.lightbox-close {
  font-size: 34px;
  line-height: 1;
}

.lightbox-close:hover {
  transform: rotate(90deg);
  background: linear-gradient(145deg, var(--red-deep), var(--red));
}

.lightbox-stage {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
}

.lightbox-stage img,
.lightbox-stage video {
  max-height: calc(100vh - 190px);
  width: 100%;
  object-fit: contain;
}

.lightbox-nav {
  display: grid;
  place-items: center;
  font-size: 0;
}

.lightbox-nav::before {
  content: "";
  width: 13px;
  height: 13px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(45deg);
}

#lightbox-prev::before {
  transform: rotate(225deg);
  margin-left: 5px;
}

#lightbox-next::before {
  margin-right: 5px;
}

.lightbox-nav:hover {
  transform: translateY(-2px);
  background: linear-gradient(145deg, var(--red-deep), var(--red));
  box-shadow: 0 20px 46px rgba(193, 36, 41, 0.34), 0 18px 38px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.thumb-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 8px 0 4px;
}

.thumb-strip button {
  flex: 0 0 72px;
  width: 72px;
  height: 52px;
  padding: 0;
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
}

.thumb-strip button.active {
  border-color: var(--red);
}

.thumb-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-viewer {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 26px;
  color: var(--bg);
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(10px);
}

.gallery-viewer.open {
  display: flex;
}

.gallery-viewer__panel {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 18px;
  width: min(1180px, 100%);
  max-height: calc(100vh - 52px);
}

.gallery-viewer__header {
  display: grid;
  grid-template-columns: 1fr auto 48px;
  gap: 16px;
  align-items: center;
}

.gallery-viewer__title {
  margin: 0;
  font-family: var(--f-head);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.gallery-viewer__count {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.gallery-viewer__close,
.gallery-viewer__nav {
  position: relative;
  border: 0;
  color: var(--bg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
  backdrop-filter: blur(14px);
}

.gallery-viewer__close {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}

.gallery-viewer__close:hover,
.gallery-viewer__nav:hover,
.gallery-viewer__close:focus-visible,
.gallery-viewer__nav:focus-visible {
  color: var(--bg);
  background: linear-gradient(145deg, var(--red), var(--red-deep));
  box-shadow: 0 18px 44px rgba(193, 36, 41, 0.3), 0 16px 38px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  outline: 0;
}

.gallery-viewer__close:hover {
  transform: rotate(90deg);
}

.gallery-viewer__stage {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  gap: 22px;
  align-items: center;
  min-height: 0;
}

.gallery-viewer__stage img,
.gallery-viewer__stage video {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  max-height: calc(100vh - 190px);
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
}

.gallery-viewer__stage [hidden] {
  display: none !important;
}

.gallery-viewer__nav {
  display: grid;
  place-items: center;
  align-self: center;
  justify-self: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  color: var(--bg);
  background: linear-gradient(145deg, var(--red), var(--red-deep));
  box-shadow: 0 18px 42px rgba(193, 36, 41, 0.26), 0 16px 38px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  font-size: 0;
}

.gallery-viewer__prev {
  grid-column: 1;
  grid-row: 1;
}

.gallery-viewer__next {
  grid-column: 3;
  grid-row: 1;
}

.gallery-viewer__nav::before {
  content: "";
  width: 13px;
  height: 13px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.gallery-viewer__next::before {
  transform: rotate(45deg);
  margin-right: 5px;
}

.gallery-viewer__prev::before {
  transform: rotate(225deg);
  margin-left: 5px;
}

.gallery-viewer__nav:hover,
.gallery-viewer__nav:focus-visible {
  color: var(--bg);
  background: linear-gradient(145deg, var(--red-deep), var(--red));
  box-shadow: 0 22px 54px rgba(193, 36, 41, 0.34), 0 18px 44px rgba(0, 0, 0, 0.36), inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.gallery-viewer__thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 0 4px;
  scrollbar-width: none;
}

.gallery-viewer__thumbs::-webkit-scrollbar {
  display: none;
}

.gallery-viewer__thumbs button {
  flex: 0 0 76px;
  width: 76px;
  height: 54px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 5px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  opacity: 0.62;
}

.gallery-viewer__thumbs button.active {
  border-color: var(--red);
  opacity: 1;
}

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

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] {
  transition-delay: 0.1s;
}

[data-reveal-delay="2"] {
  transition-delay: 0.2s;
}

[data-reveal-delay="3"] {
  transition-delay: 0.3s;
}

[data-reveal-delay="4"] {
  transition-delay: 0.4s;
}

[data-reveal-delay="5"] {
  transition-delay: 0.5s;
}

[data-reveal-delay="6"] {
  transition-delay: 0.6s;
}


@media (min-width: 1080px) and (max-width: 1280px) {
  .site-header {
    grid-template-columns: minmax(178px, auto) minmax(0, 1fr) minmax(0, auto);
    gap: 18px;
    padding: 0 clamp(22px, 4.4vw, 56px);
  }

  .brand img {
    height: clamp(42px, 3.75vw, 48px);
  }

  .desktop-nav {
    gap: clamp(20px, 2.4vw, 34px);
  }

  .desktop-nav a,
  .contact-link,
  .mobile-drawer a {
    font-size: 12px;
  }

  .partner-badge {
    width: clamp(132px, 11vw, 158px);
  }
}
@media (max-width: 1079px) {
  .site-header {
    padding: 0 24px;
  }

  .desktop-nav,
  .contact-link {
    display: none;
  }

  .partner-badge {
    position: fixed;
    top: 18px;
    right: 72px;
    z-index: 101;
    display: flex;
    width: clamp(88px, 18vw, 132px);
    transform: none;
  }

  .hamburger {
    display: grid;
    place-items: center;
    align-content: center;
    position: fixed;
    top: 14px;
    right: 16px;
    margin: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(12px);
  }

  .hero {
    min-height: calc(100vh - 108px);
  }

  .hero__media-clip {
    top: 0;
    left: 0;
    clip-path: none;
    opacity: 1;
  }

  .hero__media-clip::before {
    width: 100%;
    background: linear-gradient(
      105deg,
      rgba(255, 255, 255, 0.86) 0%,
      rgba(255, 255, 255, 0.72) 34%,
      rgba(255, 255, 255, 0.28) 62%,
      rgba(255, 255, 255, 0.04) 100%
    );
  }

  .hero-left {
    width: min(760px, 86%);
    transform: translateY(0);
  }

  .about {
    display: block;
    width: calc(100% - 48px);
    min-height: 720px;
  }

  .about-photo,
  .about-panel {
    position: relative;
    inset: auto;
    width: 100%;
    clip-path: none;
  }

  .about-photo {
    height: 420px;
  }

  .about-panel {
    height: auto;
    min-height: 360px;
    margin: 0;
    padding: 0;
  }

  .about-copy {
    max-width: none;
    margin: 0;
    padding: 44px 34px;
  }

  .about-shadow {
    left: 0;
    width: 34%;
  }

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

  .stats {
    background-position: center center;
    background-size: cover;
  }

  .stat-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }

  .service-card {
    flex-basis: 320px;
  }

  .mission-vision .container {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .mission-vision .container::before,
  .mission-vision .container::after {
    display: none;
  }

  .mv-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 32px;
    padding: 38px 0;
    border-bottom: 1px solid var(--line);
  }

  .mv-row h2 {
    justify-content: flex-start;
  }

  .mv-row p {
    padding: 0;
    line-height: 1.45;
  }

  .ceo::before {
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/ceo-layout-tablet-769x432.jpg");
    background-position: center center;
    background-size: 100% 100%;
    clip-path: none;
  }

  .ceo-copy {
    max-width: min(37vw, 330px);
    padding-bottom: 30px;
  }

  .ceo-copy h2 {
    margin-bottom: 24px;
  }

  .ceo-copy blockquote {
    font-size: clamp(16px, 2.1vw, 20px);
    line-height: 1.45;
  }

  .ceo-portrait-wrap {
    display: none;
  }

  .ceo-portrait-wrap img {
    width: 100%;
    max-height: none;
  }

  .site-footer {
    width: 100%;
  }

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

@media (max-width: 767px) {
  :root {
    --section-gap: 64px;
  }

  html {
    scroll-padding-top: 72px;
  }

  body {
    -webkit-text-size-adjust: 100%;
  }

  .container {
    width: calc(100% - 32px);
  }

  .site-header {
    height: 72px;
    padding: 0 20px;
  }


  .brand img {
    height: clamp(34px, 9.8vw, 40px);
  }

  .mobile-drawer {
    top: 72px;
    gap: 16px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .mobile-drawer.open {
    padding: 22px 24px 26px;
  }

  .mobile-drawer a {
    font-size: 14px;
  }

  .hero-content {
    padding-top: 72px;
    min-height: calc(78svh - 72px);
  }

  .hero {
    min-height: 78svh;
    margin-bottom: 72px;
  }

  .hero__media-clip {
    left: 0;
    opacity: 1;
  }

  .hero__media-clip::before {
    width: 100%;
    background: linear-gradient(
      105deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.82) 36%,
      rgba(255, 255, 255, 0.38) 66%,
      rgba(255, 255, 255, 0.08) 100%
    );
  }

  .hero-slide img {
    object-position: 68% center;
  }

  .hero-left {
    box-sizing: border-box;
    width: 100%;
    padding: 0 20px;
    transform: translateY(8px);
  }

  .hero h1 {
    max-width: min(100%, 12ch);
    font-size: clamp(30px, 9.2vw, 39px);
    line-height: 0.98;
    letter-spacing: -0.01em;
  }

  .hero h1 span {
    white-space: nowrap;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .about {
    width: calc(100% - 24px);
    min-height: 0;
    margin-bottom: 72px;
  }

  .about-photo {
    height: 270px;
  }

  .about-panel {
    min-height: 0;
  }

  .about-copy {
    padding: 34px 24px 38px;
  }

  .about-panel h2 {
    max-width: 9.8ch;
    margin-bottom: 20px;
    font-size: clamp(34px, 10.4vw, 42px);
    line-height: 0.98;
    letter-spacing: -0.01em;
  }

  .about-panel p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.58;
  }

  .about-shadow {
    width: 42%;
    height: 34%;
  }

  .stats-grid {
    width: calc(100% - 32px);
  }

  .stats h2 {
    margin-bottom: 22px;
    font-size: clamp(35px, 10.5vw, 46px);
    line-height: 0.98;
    letter-spacing: -0.02em;
  }

  .stats p {
    margin-bottom: 30px;
    font-size: 13px;
    line-height: 1.55;
  }

  .stat-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 24px;
    margin-top: 42px;
  }

  .stat-number {
    font-size: clamp(42px, 13vw, 56px);
  }

  .stat-block span {
    font-size: 12px;
    line-height: 1.25;
  }

  .stats {
    padding: 58px 0 62px;
    background-position: center center;
    background-size: cover;
  }

  .clients__rail {
    min-height: 92px;
    animation-duration: 38s;
  }

  .clients__logo {
    flex-basis: 170px;
    min-height: 92px;
    padding: 14px 22px;
  }

  .clients__logo img {
    max-width: 126px;
    max-height: 48px;
  }

  .services-wrap {
    padding: 42px 0 64px;
  }

  .about,
  .stats-grid,
  .services-wrap > .container {
    width: calc(100% - 24px);
  }

  .partner-badge {
    top: 17px;
    right: 58px;
    width: clamp(54px, 16vw, 70px);
  }

  .hamburger {
    right: 10px;
  }

  .services-panel {
    padding: 26px 0 34px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.72) rgba(255, 255, 255, 0.18);
  }

  .services-panel::-webkit-scrollbar {
    height: 6px;
  }

  .services-panel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.18);
  }

  .services-panel::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.72);
    border-radius: 999px;
  }

  .services__track {
    gap: 20px;
    width: max-content;
    min-width: max-content;
    padding: 0 20px 18px;
    animation: none;
    transform: none !important;
    scroll-snap-type: x proximity;
    will-change: auto;
  }

  .service-card {
    flex: 0 0 clamp(212px, 72vw, 252px);
    scroll-snap-align: start;
  }

  .service-body {
    padding: 18px 4px 0;
    min-height: 92px;
  }

  .service-body strong {
    font-size: 16px;
  }

  .service-body span {
    font-size: 13px;
    line-height: 1.32;
  }

  .service-image {
    border-radius: 14px;
    box-shadow: none;
  }

  .service-card:hover .service-image img {
    transform: none;
  }

  .mv-row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 0;
  }

  .mission-vision {
    padding: 0;
  }

  .mission-vision .container {
    width: calc(100% - 32px);
  }

  .mv-row h2 {
    font-size: 28px;
  }

  .mv-row p {
    font-size: 15px;
    line-height: 1.5;
  }

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

  .inner-hero {
    padding: 78px 0 46px;
  }

  .inner-hero h1 {
    font-size: clamp(38px, 12vw, 54px);
    line-height: 0.98;
  }

  .inner-hero p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.55;
  }

  .gallery-category {
    padding: 42px 0 54px;
    contain-intrinsic-size: 520px;
  }

  .gallery-category__head h2 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .gallery-category__head span {
    font-size: 24px;
  }

  .gallery-category__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .certificate-card {
    padding: 42px 24px;
  }

  .ceo {
    min-height: 0;
    aspect-ratio: 768 / 432;
    background: var(--bg);
  }

  .ceo-grid {
    min-height: 100%;
    grid-template-columns: 1fr;
  }

  .ceo::before {
    display: block;
    background-image: url("../img/ceo-layout-mobile-768x432.jpg");
    background-position: center center;
    background-size: 100% 100%;
  }

  .ceo-copy {
    max-width: min(46vw, 330px);
    padding: clamp(18px, 5vw, 42px) 0;
    align-self: stretch;
  }

  .ceo-copy h2 {
    margin-bottom: clamp(8px, 2vw, 16px);
    font-size: clamp(16px, 4vw, 25px);
  }

  .ceo-copy blockquote {
    max-width: 100%;
    font-size: clamp(9px, 1.8vw, 13px);
    line-height: 1.35;
  }

  .ceo-portrait-wrap {
    display: none;
  }

  .ceo-portrait-wrap img {
    width: 100%;
    max-height: none;
    object-position: center center;
  }

  .certificate-item {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .certificate-frame.portrait {
    max-width: none;
    justify-self: stretch;
  }

  .certificate-copy p {
    max-width: none;
  }

  .cta-contact::before {
    inset: 0 0 auto;
    height: 310px;
    background:
      radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.18) 0 24%, transparent 56%),
      linear-gradient(180deg, rgba(160, 12, 22, 0.58) 0%, rgba(196, 32, 43, 0.4) 48%, rgba(196, 32, 43, 0.02) 100%);
  }

  .cta-photo-link {
    top: 64%;
    width: clamp(124px, 36vw, 150px);
    height: clamp(178px, 53vw, 220px);
  }

  .cta-photo {
    opacity: 0.9;
    padding: 7px;
    box-shadow: 0 18px 44px rgba(64, 0, 0, 0.24), 0 0 0 5px rgba(255, 255, 255, 0.08);
  }

  .photo-a {
    left: -28%;
    --tilt: -6deg;
  }

  .photo-b {
    left: -3%;
    --tilt: 3deg;
  }

  .photo-c {
    left: 22%;
    --tilt: -1deg;
  }

  .photo-d {
    left: 47%;
    --tilt: 3deg;
  }

  .photo-e {
    left: 72%;
    --tilt: -6deg;
  }

  .photo-f,
  .photo-g {
    display: none;
  }

  .cta-contact {
    min-height: 610px;
    padding: 70px 0 248px;
  }

  .contact-inner {
    align-items: start;
    min-height: 190px;
    width: min(100% - 34px, 480px);
  }

  .cta-contact h2 {
    max-width: min(92vw, 390px);
    font-size: clamp(34px, 9.2vw, 44px);
    line-height: 1.02;
    letter-spacing: 0;
    text-shadow: 0 4px 18px rgba(80, 0, 0, 0.42);
  }

  .cta-contact h2.recognition-title span:last-child {
    font-size: 0.76em;
  }

  .site-footer {
    width: 100%;
    margin-top: -118px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    width: calc(100% - 48px);
  }

  .footer-form input,
  .footer-form textarea,
  .footer-form button {
    min-height: 48px;
    border-radius: 4px;
  }

  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 0;
    width: calc(100% - 48px);
  }

  .lightbox {
    padding: 16px;
  }

  .lightbox-header {
    grid-template-columns: 1fr auto 46px;
  }

  .lightbox-stage {
    padding: 14px 0;
  }

  .lightbox-stage img,
.lightbox-stage video {
    height: 68vh;
    border-radius: 6px;
  }

  .lightbox-close,
  .lightbox-nav {
    width: 42px;
    height: 42px;
  }

  .gallery-viewer {
    padding: 14px;
  }

  .gallery-viewer__header {
    grid-template-columns: 1fr auto 42px;
  }

  .gallery-viewer__close {
    width: 42px;
    height: 42px;
  }

  .gallery-viewer__nav {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .gallery-viewer__nav::before {
    width: 11px;
    height: 11px;
    border-width: 2.5px;
  }

  .gallery-viewer__stage {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
  }

  .gallery-viewer__stage img,
.gallery-viewer__stage video {
    max-height: calc(100vh - 180px);
  }
}



@media (max-width: 767px) {
  .about-copy {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 34px 24px 38px;
  }

  .about-panel h2 {
    max-width: 13.5ch;
    font-size: clamp(30px, 8.8vw, 38px);
    line-height: 1;
    text-wrap: balance;
  }

  .about-panel p {
    max-width: 34rem;
  }

  .stats {
    background-position: center 26px;
    background-size: min(118vw, 520px) auto;
  }
}
@media (max-width: 430px) {
  .site-header {
    padding: 0 14px 0 18px;
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .brand img {
    height: clamp(32px, 9.3vw, 36px);
  }

  .partner-badge {
    top: 16px;
    right: 58px;
    width: clamp(46px, 13vw, 54px);
  }

  .hamburger {
    top: 14px;
    right: 8px;
    width: 40px;
    height: 40px;
  }

  .hero-left {
    padding: 0 18px;
  }

  .hero h1 {
    max-width: 100%;
    width: max-content;
    font-size: clamp(29px, 8.7vw, 35px);
    line-height: 1;
  }

  .services-panel {
    padding-top: 22px;
  }

  .service-card {
    flex-basis: clamp(206px, 74vw, 232px);
  }

  .service-body strong {
    font-size: 15px;
  }

  .service-body span {
    font-size: 12.5px;
    line-height: 1.34;
  }

  .service-tabs {
    gap: 8px;
    padding: 7px;
  }

  .service-tabs a {
    font-size: 12px;
    padding: 10px 12px;
  }
}

@media (max-width: 360px) {
  .brand img {
    height: 31px;
  }

  .partner-badge {
    right: 56px;
    width: 38px;
  }

  .hero h1 {
    font-size: 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .services__track,
  .clients__rail,
  .about-reel img {
    animation: none !important;
    transform: none !important;
  }

  .hero-slide {
    transition: none !important;
  }
}





/* Polished media viewer controls */
.gallery-viewer {
  padding: clamp(16px, 2.4vw, 34px);
  background:
    radial-gradient(circle at 50% 44%, rgba(196, 32, 43, 0.12), transparent 36%),
    rgba(8, 8, 8, 0.94);
}

.gallery-viewer__panel {
  width: min(1240px, 100%);
}

.gallery-viewer__header {
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: clamp(10px, 1.4vw, 18px);
  padding-inline: clamp(2px, 0.8vw, 10px);
}

.gallery-viewer__close,
.gallery-viewer__nav {
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(196, 32, 43, 0.96), rgba(132, 12, 20, 0.98));
  box-shadow:
    0 20px 54px rgba(196, 32, 43, 0.24),
    0 18px 42px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -10px 24px rgba(85, 0, 0, 0.22);
}

.gallery-viewer__close {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  font-size: 0;
}

.gallery-viewer__close::before,
.gallery-viewer__close::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2.5px;
  border-radius: 999px;
  background: currentColor;
}

.gallery-viewer__close::before {
  transform: rotate(45deg);
}

.gallery-viewer__close::after {
  transform: rotate(-45deg);
}

.gallery-viewer__close:hover,
.gallery-viewer__close:focus-visible {
  transform: translateY(-1px) scale(1.03);
}

.gallery-viewer__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding-inline: clamp(62px, 7vw, 94px);
}

.gallery-viewer__stage img,
.gallery-viewer__stage video {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 198px);
}

.gallery-viewer__nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: clamp(46px, 4.6vw, 58px);
  height: clamp(46px, 4.6vw, 58px);
  border-radius: 16px;
  transform: translateY(-50%);
}

.gallery-viewer__prev {
  left: clamp(2px, 1.2vw, 18px);
}

.gallery-viewer__next {
  right: clamp(2px, 1.2vw, 18px);
}

.gallery-viewer__nav::before {
  width: 14px;
  height: 14px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.gallery-viewer__prev::before {
  margin: 0 0 0 4px;
}

.gallery-viewer__next::before {
  margin: 0 4px 0 0;
}

.gallery-viewer__nav:hover,
.gallery-viewer__nav:focus-visible {
  transform: translateY(-50%) scale(1.05);
}

@media (max-width: 767px) {
  .gallery-viewer__header {
    grid-template-columns: minmax(0, 1fr) auto 44px;
  }

  .gallery-viewer__close {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .gallery-viewer__close::before,
  .gallery-viewer__close::after {
    width: 17px;
    height: 2.25px;
  }

  .gallery-viewer__stage {
    padding-inline: 52px;
  }

  .gallery-viewer__stage img,
  .gallery-viewer__stage video {
    max-height: calc(100vh - 184px);
  }

  .gallery-viewer__nav {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }
}
/* Polished homepage lightbox controls */
.lightbox {
  padding: clamp(16px, 2.4vw, 34px);
  background:
    radial-gradient(circle at 50% 44%, rgba(196, 32, 43, 0.12), transparent 36%),
    rgba(8, 8, 8, 0.94);
}

.lightbox-header {
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: clamp(10px, 1.4vw, 18px);
}

.lightbox-close,
.lightbox-nav {
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  background: linear-gradient(145deg, rgba(196, 32, 43, 0.96), rgba(132, 12, 20, 0.98));
  box-shadow: 0 20px 54px rgba(196, 32, 43, 0.24), 0 18px 42px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.26), inset 0 -10px 24px rgba(85, 0, 0, 0.22);
}

.lightbox-close {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  font-size: 0;
}

.lightbox-close::before,
.lightbox-close::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2.5px;
  border-radius: 999px;
  background: currentColor;
}

.lightbox-close::before { transform: rotate(45deg); }
.lightbox-close::after { transform: rotate(-45deg); }
.lightbox-close:hover { transform: translateY(-1px) scale(1.03); }

.lightbox-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 22px clamp(62px, 7vw, 94px);
}

.lightbox-stage [hidden] { display: none !important; }

.lightbox-stage img,
.lightbox-stage video {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 198px);
  border-radius: 8px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: clamp(46px, 4.6vw, 58px);
  height: clamp(46px, 4.6vw, 58px);
  border-radius: 16px;
  transform: translateY(-50%);
}

#lightbox-prev { left: clamp(2px, 1.2vw, 18px); }
#lightbox-next { right: clamp(2px, 1.2vw, 18px); }
.lightbox-nav:hover { transform: translateY(-50%) scale(1.05); }

@media (max-width: 767px) {
  .lightbox-header { grid-template-columns: minmax(0, 1fr) auto 44px; }
  .lightbox-close { width: 44px; height: 44px; border-radius: 14px; }
  .lightbox-close::before,
  .lightbox-close::after { width: 17px; height: 2.25px; }
  .lightbox-stage { padding-inline: 52px; }
  .lightbox-stage img,
  .lightbox-stage video { max-height: calc(100vh - 184px); }
  .lightbox-nav { width: 42px; height: 42px; border-radius: 13px; }
}

/* Performance smoothing pass */
.hero-slide,
.about-slide,
.clients__rail,
.services__track,
.cta-photo-link {
  backface-visibility: hidden;
  transform: translateZ(0);
}

.clients__rail,
.services__track {
  will-change: transform;
}

.gallery-category,
.certificate-list {
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}

.hero-slide img,
.about-slide,
.clients__logo img,
.cta-photo {
  transform: translateZ(0);
}

.gallery-viewer__thumbs,
.thumb-strip,
.services-panel {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
}

@media (max-width: 767px) {
  .clients__rail,
  .services__track {
    will-change: auto;
  }

  .hero-slide,
  .about-slide,
  .cta-photo-link {
    will-change: opacity;
  }
}

/* August contact and certification updates */
.partner-badge {
  width: clamp(58px, 5.2vw, 76px);
}

@media (min-width: 1080px) and (max-width: 1280px) {
  .partner-badge {
    width: clamp(54px, 5.4vw, 68px);
  }
}

@media (max-width: 1079px) {
  .partner-badge {
    top: 20px;
    right: 74px;
    width: clamp(48px, 8vw, 62px);
  }
}

@media (max-width: 430px) {
  .certificate-hero h1 {
    font-size: 36px;
    overflow-wrap: anywhere;
  }

  .partner-badge {
    top: 18px;
    right: 56px;
    width: clamp(40px, 11vw, 48px);
  }
}

.contact-page-hero {
  padding: clamp(92px, 11vw, 160px) 0 clamp(44px, 7vw, 90px);
  background: linear-gradient(110deg, #fff 0%, #fff 58%, rgba(196, 32, 43, 0.08) 100%);
}

.contact-page-hero__inner {
  max-width: 980px;
}

.contact-page-hero h1 {
  margin: 16px 0 18px;
  font-family: var(--f-head);
  font-size: clamp(52px, 9vw, 132px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-page-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
}

.contact-page-section {
  padding: clamp(44px, 6.4vw, 92px) 0;
  background: #f7f7f7;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(22px, 3.4vw, 46px);
  align-items: stretch;
}

.contact-page-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.08);
}

.contact-form-card,
.contact-details-card {
  padding: clamp(24px, 3vw, 44px);
}

.contact-page-card h2 {
  margin: 0 0 22px;
  font-family: var(--f-head);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  text-transform: uppercase;
}

.contact-page-form {
  display: grid;
  gap: 16px;
}

.contact-page-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-page-form input,
.contact-page-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: 500 16px/1.4 var(--f-body);
  padding: 15px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.contact-page-form input:focus,
.contact-page-form textarea:focus {
  border-color: rgba(196, 32, 43, 0.66);
  box-shadow: 0 0 0 4px rgba(196, 32, 43, 0.1);
}

.contact-page-form button {
  min-height: 54px;
  border: 0;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  font-family: var(--f-head);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-page-form button:hover {
  transform: translateY(-1px);
  background: #a91520;
  box-shadow: 0 16px 34px rgba(196, 32, 43, 0.24);
}

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

.contact-detail-list article {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-detail-list article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-detail-list span {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-detail-list a,
.contact-detail-list p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-socials a:hover {
  transform: translateY(-1px);
  background: var(--red);
}

.contact-map-section {
  padding: 0 0 clamp(52px, 7vw, 110px);
  background: #f7f7f7;
}

.contact-map-card {
  overflow: hidden;
  min-height: clamp(320px, 42vw, 520px);
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.08);
  background: #ddd;
}

.contact-map-card iframe {
  display: block;
  width: 100%;
  height: clamp(320px, 42vw, 520px);
  border: 0;
}

@media (max-width: 900px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .contact-page-hero {
    padding-top: 96px;
  }

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

  .contact-page-section {
    padding-top: 28px;
  }

  .contact-form-card,
  .contact-details-card {
    padding: 22px;
  }

  .contact-socials a {
    flex: 1 1 auto;
  }
}

/* Luxury polish pass 20260801-02 */
.clients {
  background: linear-gradient(180deg, #fbfbfb 0%, #f2f2f2 100%);
}

.clients__rail {
  min-height: 104px;
  animation-duration: 34s;
}

.clients__logo {
  flex-basis: clamp(190px, 14.2vw, 232px);
  min-height: 104px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.42);
}

.clients__logo img {
  max-width: min(158px, 74%);
  max-height: 56px;
  opacity: 0.82;
  filter: grayscale(1) contrast(1.06);
}

.clients__logo:hover img {
  opacity: 1;
  filter: grayscale(0.45) contrast(1.08);
}

.cta-contact {
  min-height: clamp(720px, 58vw, 880px);
  padding: clamp(96px, 9vw, 144px) 0 clamp(320px, 23vw, 380px);
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.24) 0 15%, transparent 35%),
    linear-gradient(120deg, #9f111d 0%, #c4202b 42%, #8d0e18 100%);
}

.cta-contact::before {
  inset: 0;
  height: auto;
  background:
    linear-gradient(90deg, rgba(70, 0, 8, 0.48) 0%, rgba(196, 32, 43, 0.06) 22%, rgba(255, 255, 255, 0.1) 50%, rgba(196, 32, 43, 0.06) 78%, rgba(70, 0, 8, 0.48) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 28%, rgba(45, 0, 6, 0.28) 100%);
  z-index: 2;
}

.cta-contact::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 24%;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 2, 4, 0.62) 100%);
  z-index: 2;
  pointer-events: none;
}

.contact-inner {
  min-height: clamp(260px, 24vw, 360px);
}

.cta-contact h2.recognition-title {
  position: relative;
  padding: clamp(16px, 2vw, 26px) clamp(18px, 3vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  box-shadow: 0 32px 90px rgba(70, 0, 8, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  font-size: clamp(44px, 5.7vw, 92px);
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.cta-contact h2.recognition-title::before {
  content: "Verified Credentials";
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--f-body);
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cta-contact h2.recognition-title span:last-child {
  font-size: 0.78em;
}

.cta-photo-link {
  top: 58%;
  width: clamp(170px, 13.4vw, 236px);
  height: clamp(260px, 21vw, 360px);
  z-index: 1;
}

.cta-photo {
  opacity: 0.92;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(36, 0, 0, 0.32), 0 0 0 7px rgba(255, 255, 255, 0.08);
}

.photo-a { left: -1%; --tilt: -5deg; }
.photo-b { left: 14%; --tilt: 3deg; }
.photo-c { left: 29%; --tilt: -2deg; }
.photo-d { left: 44%; --tilt: 2deg; }
.photo-e { left: 59%; --tilt: -2deg; }
.photo-f { left: 74%; --tilt: 4deg; display: block; }
.photo-g { left: 89%; --tilt: -5deg; display: block; }

.contact-map-section {
  padding: clamp(26px, 4vw, 54px) 0 clamp(62px, 8vw, 124px);
}

.contact-map-card {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: 0;
  padding: clamp(14px, 2vw, 22px);
  border-radius: 14px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,247,247,0.96)),
    radial-gradient(circle at 10% 0%, rgba(196,32,43,0.18), transparent 30%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-map-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.16);
}

.contact-map-info {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(12px, 1.8vw, 22px);
  padding: clamp(12px, 1.8vw, 18px);
  border-radius: 10px;
  background: #111;
  color: #fff;
}

.map-pin-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(42px, 5vw, 58px);
  height: clamp(42px, 5vw, 58px);
  border-radius: 999px;
  background: linear-gradient(145deg, #e13542, #a7111d);
  box-shadow: 0 18px 36px rgba(196, 32, 43, 0.28), inset 0 1px 0 rgba(255,255,255,0.24);
}

.map-pin-icon::before {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 7px rgba(255,255,255,0.18);
}

.contact-map-info .eyebrow {
  color: rgba(255,255,255,0.64);
}

.contact-map-info h2 {
  margin: 4px 0 4px;
  font-family: var(--f-head);
  font-size: clamp(20px, 2.6vw, 34px);
  line-height: 1;
  text-transform: uppercase;
}

.contact-map-info p {
  margin: 0;
  color: rgba(255,255,255,0.76);
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.4;
}

.contact-map-info > a {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.contact-map-info > a:hover {
  transform: translateY(-1px);
  background: var(--red);
  color: #fff;
}

.contact-map-frame {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.1);
  background: #e8e8e8;
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: clamp(340px, 42vw, 560px);
  border: 0;
  filter: saturate(0.92) contrast(1.02);
}

@media (max-width: 767px) {
  .clients__rail { min-height: 88px; animation-duration: 30s; }
  .clients__logo { flex-basis: 152px; min-height: 88px; padding: 12px 14px; }
  .clients__logo img { max-width: 116px; max-height: 44px; }

  .cta-contact {
    min-height: 650px;
    padding: 74px 0 260px;
  }

  .contact-inner {
    min-height: 210px;
    width: min(100% - 32px, 460px);
  }

  .cta-contact h2.recognition-title {
    max-width: min(94vw, 420px);
    font-size: clamp(34px, 10.8vw, 48px);
    line-height: 1.02;
  }

  .cta-photo-link {
    top: 66%;
    width: clamp(108px, 30vw, 136px);
    height: clamp(166px, 46vw, 210px);
  }

  .photo-a { left: -36%; --tilt: -6deg; }
  .photo-b { left: -14%; --tilt: 3deg; }
  .photo-c { left: 8%; --tilt: -2deg; }
  .photo-d { left: 30%; --tilt: 2deg; }
  .photo-e { left: 52%; --tilt: -2deg; }
  .photo-f { left: 74%; --tilt: 4deg; display: block; }
  .photo-g { left: 96%; --tilt: -6deg; display: block; }

  .contact-map-info {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .contact-map-info > a {
    grid-column: 1 / -1;
    width: 100%;
  }

  .contact-map-frame iframe {
    height: 340px;
  }
}

/* Recognition visibility fix 20260801-11 */
@media (max-width: 767px) {
  .cta-contact {
    min-height: 620px;
    padding: 48px 0 52px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
  }

  .cta-contact::before {
    opacity: 0.86;
  }

  .contact-inner {
    min-height: auto;
    padding: 0 16px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
  }

  .cta-contact h2.recognition-title {
    width: min(92vw, 390px);
    padding: 14px 12px 16px;
    border-radius: 7px;
    font-size: clamp(29px, 9.1vw, 41px);
    line-height: 1.02;
    box-shadow: 0 18px 46px rgba(70, 11, 32, 0.22);
  }

  .cta-contact h2.recognition-title::before {
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: 2.4px;
  }

  .cta-photo-link {
    top: auto;
    bottom: 44px;
    width: clamp(96px, 25vw, 118px);
    height: clamp(144px, 39vw, 176px);
    transform: rotate(var(--tilt));
    opacity: 0.9;
    box-shadow: 0 18px 38px rgba(56, 8, 24, 0.32);
  }

  .cta-photo-link .cta-photo {
    filter: saturate(1.02) contrast(1.02);
  }

  .photo-a { left: -1%; --tilt: -4deg; }
  .photo-b { left: 13%; --tilt: 2deg; }
  .photo-c { left: 27%; --tilt: -1deg; }
  .photo-d { left: 41%; --tilt: 2deg; }
  .photo-e { left: 55%; --tilt: -3deg; }
  .photo-f { left: 69%; --tilt: 3deg; display: block; }
  .photo-g { left: 83%; --tilt: -2deg; display: block; }

  .site-footer {
    margin-top: 0;
  }
}

@media (min-width: 768px) and (max-width: 1079px) {
  .cta-contact {
    min-height: 620px;
    padding-bottom: 96px;
  }

  .cta-photo-link {
    top: 63%;
  }
}

/* Video service tile uplift 20260801-11 */
.service-card .service-video-tile {
  min-height: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  gap: 18px;
  padding: 26px;
  background:
    radial-gradient(circle at 72% 18%, rgba(255,255,255,0.24), transparent 24%),
    radial-gradient(circle at 20% 88%, rgba(255,255,255,0.14), transparent 28%),
    linear-gradient(145deg, #42151a 0%, #67171f 48%, #241013 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), inset 0 -42px 70px rgba(0,0,0,0.18);
}

.service-card .service-video-tile::before {
  z-index: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.13) 42%, transparent 56%),
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.28));
  transform: translateX(-42%);
  transition: transform 0.75s ease;
}

.service-card:hover .service-video-tile::before,
.service-card:focus-visible .service-video-tile::before {
  transform: translateX(18%);
}

.service-video-play {
  width: 66px;
  height: 66px;
  z-index: 1;
  border: 1px solid rgba(255,255,255,0.34);
  background: linear-gradient(145deg, #e12b32, #b81924);
  box-shadow: 0 18px 42px rgba(72, 8, 16, 0.34), 0 0 0 9px rgba(255,255,255,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-video-play::after {
  left: 26px;
  top: 19px;
  border-top-width: 14px;
  border-bottom-width: 14px;
  border-left-width: 20px;
}

.service-card:hover .service-video-play,
.service-card:focus-visible .service-video-play {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 22px 52px rgba(72, 8, 16, 0.42), 0 0 0 11px rgba(255,255,255,0.11);
}

.service-card .service-video-tile > span:last-child {
  position: relative;
  z-index: 1;
  max-width: 88%;
  letter-spacing: 0.01em;
  text-shadow: 0 12px 28px rgba(0,0,0,0.34);
}

@media (max-width: 767px) {
  .service-card .service-video-tile {
    padding: 22px;
    gap: 16px;
  }

  .service-video-play {
    width: 58px;
    height: 58px;
  }

  .service-video-play::after {
    left: 23px;
    top: 17px;
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 18px;
  }
}

/* Recognition tablet visibility fix 20260801-11 */
@media (min-width: 768px) and (max-width: 1079px) {
  .site-footer {
    margin-top: 0;
  }

  .cta-contact {
    min-height: 680px;
    padding-bottom: 56px;
  }

  .cta-photo-link {
    top: auto;
    bottom: 54px;
    width: clamp(142px, 20vw, 176px);
    height: clamp(218px, 31vw, 270px);
    transform: rotate(var(--tilt));
  }
}

/* Recognition showcase rebuild 20260801-11 */
.cta-contact {
  min-height: clamp(520px, 43vw, 640px);
  padding: clamp(48px, 5.6vw, 78px) 0 clamp(220px, 17vw, 270px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.contact-inner {
  position: relative;
  z-index: 5;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.recognition-eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--f-body);
  font-size: clamp(10px, 0.86vw, 12px);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cta-contact h2.recognition-title {
  width: min(90vw, 860px);
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: clamp(38px, 4.8vw, 76px);
  line-height: 0.96;
  text-shadow: 0 22px 58px rgba(70, 0, 8, 0.32);
  backdrop-filter: none;
}

.cta-contact h2.recognition-title::before {
  content: none;
}

.recognition-copy {
  width: min(90vw, 660px);
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: clamp(14px, 1.08vw, 17px);
  font-weight: 650;
  line-height: 1.45;
}

.recognition-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 4px;
  padding: 0 22px;
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,0.1);
  box-shadow: 0 18px 44px rgba(70,0,8,0.22), inset 0 1px 0 rgba(255,255,255,0.18);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.recognition-button:hover,
.recognition-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.18);
}

.cta-photo-link {
  top: auto;
  bottom: clamp(54px, 5vw, 76px);
  width: clamp(132px, 12vw, 194px);
  height: clamp(196px, 17vw, 284px);
  z-index: 3;
  opacity: 0.98;
  transform: rotate(var(--tilt));
}

.cta-photo {
  opacity: 0.98;
  padding: 8px;
  background: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.92);
  box-shadow: 0 22px 54px rgba(42, 0, 6, 0.28), 0 0 0 6px rgba(255, 255, 255, 0.07);
}

.photo-a { left: -2%; --tilt: -4deg; }
.photo-b { left: 13%; --tilt: 2deg; }
.photo-c { left: 28%; --tilt: -1deg; }
.photo-d { left: 43%; --tilt: 1deg; }
.photo-e { left: 58%; --tilt: -1deg; }
.photo-f { left: 73%; --tilt: 3deg; display: block; }
.photo-g { left: 88%; --tilt: -4deg; display: block; }

.site-footer {
  margin-top: 0;
}

@media (max-width: 767px) {
  .cta-contact {
    min-height: 560px;
    padding: 42px 0 178px;
  }

  .contact-inner {
    width: min(100% - 28px, 420px);
    padding: 0;
    gap: 10px;
  }

  .cta-contact h2.recognition-title {
    width: 100%;
    font-size: clamp(31px, 9.3vw, 39px);
    line-height: 1;
  }

  .recognition-copy {
    width: min(100%, 360px);
    font-size: 13px;
    line-height: 1.42;
  }

  .recognition-button {
    min-height: 40px;
    padding: 0 17px;
    font-size: 11px;
  }

  .cta-photo-link {
    bottom: 28px;
    width: clamp(84px, 23vw, 102px);
    height: clamp(126px, 34vw, 154px);
    box-shadow: 0 16px 32px rgba(56, 8, 24, 0.28);
  }

  .photo-a { left: -5%; --tilt: -4deg; }
  .photo-b { left: 10%; --tilt: 2deg; }
  .photo-c { left: 25%; --tilt: -1deg; }
  .photo-d { left: 40%; --tilt: 1deg; }
  .photo-e { left: 55%; --tilt: -1deg; }
  .photo-f { left: 70%; --tilt: 3deg; display: block; }
  .photo-g { left: 85%; --tilt: -4deg; display: block; }
}

@media (min-width: 768px) and (max-width: 1079px) {
  .cta-contact {
    min-height: 540px;
    padding-bottom: 210px;
  }

  .cta-photo-link {
    bottom: 42px;
    width: clamp(118px, 17vw, 154px);
    height: clamp(178px, 26vw, 234px);
  }
}

/* Recognition button pointer fix 20260801-11 */
.cta-contact .contact-inner,
.cta-contact .recognition-eyebrow,
.cta-contact .recognition-title,
.cta-contact .recognition-copy,
.cta-contact .recognition-button {
  pointer-events: auto;
}

.cta-contact .recognition-button {
  position: relative;
  z-index: 8;
}

/* Recognition clarity pass 20260801-11 */
.cta-contact {
  min-height: clamp(560px, 44vw, 650px);
  padding-top: clamp(42px, 5vw, 70px);
  padding-bottom: clamp(235px, 17vw, 285px);
}

.cta-contact .contact-inner {
  z-index: 12;
  gap: 13px;
}

.recognition-button {
  z-index: 20;
  min-height: 48px;
  padding: 0 28px;
  background: rgba(120, 7, 18, 0.58);
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: 0 18px 42px rgba(43, 0, 8, 0.34), inset 0 1px 0 rgba(255,255,255,0.22);
}

.cta-photo-link {
  bottom: clamp(34px, 4vw, 54px);
  width: clamp(128px, 10.6vw, 168px);
  height: clamp(188px, 14.8vw, 238px);
  z-index: 4;
}

.cta-photo {
  padding: 7px;
}

@media (max-width: 767px) {
  .cta-contact {
    min-height: 590px;
    padding: 34px 0 204px;
  }

  .cta-contact .contact-inner {
    gap: 9px;
  }

  .cta-contact h2.recognition-title {
    font-size: clamp(30px, 8.8vw, 38px);
  }

  .recognition-copy {
    max-width: 345px;
    font-size: 12.8px;
  }

  .recognition-button {
    min-height: 42px;
    margin-top: 5px;
    padding: 0 18px;
    font-size: 10.8px;
    background: rgba(125, 7, 18, 0.68);
  }

  .cta-photo-link {
    bottom: 28px;
    width: clamp(108px, 29vw, 126px);
    height: clamp(164px, 44vw, 190px);
  }

  .photo-a { left: -18%; --tilt: -4deg; }
  .photo-b { left: 1%; --tilt: 2deg; }
  .photo-c { left: 20%; --tilt: -1deg; }
  .photo-d { left: 39%; --tilt: 1deg; }
  .photo-e { left: 58%; --tilt: -1deg; }
  .photo-f { left: 77%; --tilt: 3deg; display: block; }
  .photo-g { left: 96%; --tilt: -4deg; display: block; }
}

@media (min-width: 768px) and (max-width: 1079px) {
  .cta-contact {
    min-height: 570px;
    padding-bottom: 225px;
  }

  .recognition-button {
    min-height: 46px;
  }

  .cta-photo-link {
    bottom: 34px;
    width: clamp(130px, 15vw, 152px);
    height: clamp(194px, 22vw, 224px);
  }
}

/* Recognition desktop button clearance 20260801-11 */
@media (min-width: 768px) {
  .cta-photo-link {
    bottom: 18px;
  }
}

@media (min-width: 1080px) {
  .cta-photo-link {
    bottom: 20px;
  }
}

/* Services rail: automatic loop on larger screens, touch scrolling on mobile. */
.services-panel {
  overflow: hidden;
}

.services__track {
  width: max-content;
  padding-inline: 0;
  animation: servicesRail 56s linear infinite;
}

@media (max-width: 767px) {
  .services-panel {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.72) rgba(255,255,255,0.2);
  }

  .services-panel::-webkit-scrollbar {
    height: 6px;
  }

  .services-panel::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.18);
  }

  .services-panel::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(255,255,255,0.78);
  }

  .services__track {
    animation: none;
    transform: none !important;
    padding-inline: 20px;
  }
}

.service-image > .service-video-play--cover {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.service-card:hover .service-image > .service-video-play--cover,
.service-card:focus-visible .service-image > .service-video-play--cover {
  transform: translate(-50%, -54%) scale(1.04);
}

/* Video poster thumbnail support 20260801-11 */
.service-video-tile {
  position: relative;
  overflow: hidden;
}

.service-video-poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.service-card .service-video-tile::before {
  z-index: 1;
  background: linear-gradient(180deg, rgba(26, 8, 12, 0.16), rgba(26, 8, 12, 0.5));
}

.service-video-play,
.service-card .service-video-tile > span:last-child {
  position: relative;
  z-index: 2;
}

/* Client review rail */
.review-viewport {
  --review-gap: 24px;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  margin-inline: -12px;
  padding: 10px 12px 22px;
  touch-action: pan-x pan-y;
  cursor: grab;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
}

.review-viewport::-webkit-scrollbar {
  display: none;
}

.review-viewport:active {
  cursor: grabbing;
}

.review-viewport:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

.review-grid {
  display: flex;
  align-items: stretch;
  width: max-content;
  gap: var(--review-gap);
}

.review-card {
  flex: 0 0 clamp(320px, 31vw, 420px);
  min-height: 268px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(201, 35, 43, 0.14);
  box-shadow: 0 14px 32px rgba(20, 22, 28, 0.08);
}

@media (max-width: 1024px) {
  .review-card {
    flex-basis: clamp(310px, 43vw, 390px);
  }
}

@media (max-width: 767px) {
  .reviews {
    padding: 58px 0 72px;
  }

  .reviews h2 {
    margin-bottom: 28px;
    font-size: 34px;
  }

  .review-viewport {
    --review-gap: 16px;
    margin-inline: -4px;
    padding: 8px 4px 18px;
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 95%, transparent 100%);
    mask-image: linear-gradient(90deg, #000 0, #000 95%, transparent 100%);
  }

  .review-card {
    flex-basis: min(calc(100vw - 64px), 350px);
    min-height: 250px;
    padding: 28px 24px;
  }

  .review-card p {
    min-height: 0;
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .review-viewport {
    scroll-snap-type: x mandatory;
  }

  .review-card {
    scroll-snap-align: start;
  }
}

/* Client appreciation document rail */
.review-scans-shell {
  margin-top: 68px;
  padding-top: 46px;
  border-top: 1px solid var(--line);
}

.review-scans-heading {
  display: grid;
  justify-items: center;
  margin-bottom: 30px;
  text-align: center;
}

.review-scans-heading > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.review-scans-heading h3 {
  margin: 8px 0 6px;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.08;
}

.review-scans-heading p {
  margin: 0;
  color: var(--ink-3);
  font-size: 15px;
}

.review-scan-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  margin-inline: -12px;
  padding: 10px 12px 22px;
  touch-action: pan-x pan-y;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}

.review-scan-viewport::-webkit-scrollbar {
  display: none;
}

.review-scan-track {
  display: flex;
  width: max-content;
  gap: 18px;
}

.review-scan-card {
  position: relative;
  flex: 0 0 214px;
  height: 294px;
  overflow: hidden;
  border: 1px solid rgba(201, 35, 43, 0.14);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(20, 22, 28, 0.1);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-scan-card img {
  display: block;
  width: 100%;
  height: 238px;
  padding: 10px;
  object-fit: contain;
  background: #f7f7f7;
}

.review-scan-card span {
  display: grid;
  min-height: 56px;
  place-items: center;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.review-scan-card:hover,
.review-scan-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(20, 22, 28, 0.16);
}

.review-scan-card:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .review-scans-shell {
    margin-top: 48px;
    padding-top: 38px;
  }

  .review-scans-heading {
    margin-bottom: 22px;
    padding-inline: 10px;
  }

  .review-scans-heading p {
    max-width: 310px;
    font-size: 14px;
  }

  .review-scan-viewport {
    margin-inline: -4px;
    padding-inline: 4px;
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 94%, transparent 100%);
    mask-image: linear-gradient(90deg, #000 0, #000 94%, transparent 100%);
  }

  .review-scan-track {
    gap: 14px;
  }

  .review-scan-card {
    flex-basis: 176px;
    height: 246px;
  }

  .review-scan-card img {
    height: 194px;
    padding: 8px;
  }

  .review-scan-card span {
    min-height: 52px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .review-scan-card {
    scroll-snap-align: start;
    transition: none;
  }

  .review-scan-viewport {
    scroll-snap-type: x mandatory;
  }
}

/* Unified client feedback and original appreciation documents */
.reviews {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 112px) 0 clamp(64px, 7vw, 96px);
  border-top: 4px solid var(--red);
  background: #111214;
  color: #fff;
}

.reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(201, 35, 43, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 28%);
}

.reviews > .container {
  position: relative;
  z-index: 1;
}

.reviews-heading,
.feedback-group-heading,
.review-scans-heading {
  text-align: center;
}

.reviews-heading {
  max-width: 760px;
  margin: 0 auto clamp(36px, 4vw, 52px);
}

.reviews-heading > span,
.feedback-group-heading > span,
.review-scans-heading > span {
  color: #ef5b62;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reviews .reviews-heading h2 {
  margin: 9px 0 12px;
  color: #fff;
  font-size: clamp(36px, 4.2vw, 64px);
  line-height: 0.98;
}

.reviews-heading p {
  max-width: 610px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.65;
}

.feedback-group {
  min-width: 0;
}

.feedback-group-heading {
  display: grid;
  justify-items: center;
  gap: 5px;
  margin-bottom: 22px;
}

.feedback-group-heading strong {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.1;
}

.reviews .review-viewport {
  padding-block: 8px 20px;
}

.reviews .review-card {
  min-height: 250px;
  padding: 34px;
  border: 1px solid rgba(201, 35, 43, 0.22);
  border-top: 3px solid var(--red);
  border-radius: 6px;
  background: #f8f5f5;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
  color: #17181b;
}

.reviews .review-card .stars {
  color: var(--red);
}

.reviews .review-card p {
  color: #34363b;
}

.reviews .review-card span {
  color: #686b72;
}

.reviews .review-scans-shell {
  margin-top: clamp(44px, 5vw, 66px);
  padding-top: clamp(40px, 4vw, 54px);
  border-top-color: rgba(255, 255, 255, 0.14);
}

.reviews .review-scans-heading {
  margin-bottom: 28px;
}

.reviews .review-scans-heading h3 {
  margin: 8px 0 8px;
  color: #fff;
}

.reviews .review-scans-heading p {
  color: rgba(255, 255, 255, 0.62);
}

.reviews .review-scan-viewport {
  padding-block: 12px 24px;
}

.reviews .review-scan-track[data-loop="false"] {
  width: 100%;
  justify-content: center;
}

.reviews .review-scan-card {
  flex-basis: clamp(238px, 21vw, 292px);
  height: clamp(344px, 32vw, 404px);
  border-color: rgba(255, 255, 255, 0.16);
  background: #fff;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
}

.reviews .review-scan-card img {
  height: calc(100% - 58px);
  padding: 14px;
  background: #f5f5f5;
}

.reviews .review-scan-card span {
  min-height: 58px;
  color: #17181b;
  font-size: 13px;
}

@media (max-width: 767px) {
  .reviews {
    padding: 58px 0 64px;
  }

  .reviews-heading {
    margin-bottom: 36px;
    padding-inline: 8px;
  }

  .reviews .reviews-heading h2 {
    margin-bottom: 12px;
    font-size: clamp(34px, 10vw, 44px);
  }

  .reviews-heading p {
    font-size: 14px;
    line-height: 1.55;
  }

  .feedback-group-heading {
    margin-bottom: 16px;
  }

  .reviews .review-viewport {
    margin-inline: -4px;
    padding-inline: 4px;
  }

  .reviews .review-card {
    flex-basis: min(calc(100vw - 54px), 360px);
    min-height: 238px;
    padding: 28px 24px;
  }

  .reviews .review-scans-shell {
    margin-top: 38px;
    padding-top: 34px;
  }

  .reviews .review-scans-heading {
    margin-bottom: 18px;
  }

  .reviews .review-scans-heading h3 {
    font-size: 25px;
  }

  .reviews .review-scan-viewport {
    margin-inline: -4px;
    padding-inline: 4px;
  }

  .reviews .review-scan-track[data-loop="false"] {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
  }

  .reviews .review-scan-card {
    flex-basis: min(calc(100vw - 72px), 300px);
    height: 386px;
  }

  .reviews .review-scan-track[data-loop="false"] .review-scan-card {
    width: min(100%, 320px);
    max-width: 320px;
  }

  .reviews .review-scan-card img {
    height: 328px;
    padding: 12px;
  }
}
