:root {
  --bg: #080909;
  --black: #080909;
  --surface: #111515;
  --surface-2: #191f1f;
  --text: #f7f3ec;
  --muted: #b9c0bb;
  --line: rgba(255, 255, 255, 0.13);
  --accent: #ffe642;
  --yellow: #ffe642;
  --accent-2: #2fc4b2;
  --accent-3: #e65b4f;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  --site-font: "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--site-font);
  font-weight: 300;
  line-height: 1.5;
}

.site-motion-bg,
.site-motion-scrim {
  display: none;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 9, 9, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  height: 36px;
  padding: 0 6px;
  border: 1px solid var(--accent);
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.brand-mark {
  display: flex;
  align-items: center;
  width: clamp(208px, 22vw, 330px);
  height: 100%;
}

.brand-mark-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  min-width: 0;
}

.main-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  transition: color 180ms ease;
}

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

.nav-scroll-cue {
  display: none;
}

.language-switcher {
  display: grid;
  grid-template-columns: repeat(4, 36px);
  gap: 6px;
  width: max-content;
}

.language-button {
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.language-button:hover,
.language-button:focus-visible,
.language-button.is-active {
  border-color: rgba(244, 196, 95, 0.95);
  background: var(--accent);
  color: #17130a;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(82svh - 72px);
  display: flex;
  align-items: flex-end;
  padding: clamp(92px, 13vw, 152px) clamp(20px, 6vw, 80px) clamp(54px, 7vw, 86px);
  background:
    linear-gradient(0deg, rgba(8, 9, 9, 0.95), rgba(8, 9, 9, 0.35)),
    url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=1900&q=82") center / cover;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 9, 9, 0.88) 0%, rgba(8, 9, 9, 0.60) 45%, rgba(8, 9, 9, 0.34) 100%),
    linear-gradient(0deg, rgba(8, 9, 9, 0.85) 0%, rgba(8, 9, 9, 0.08) 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
}

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

.hero .eyebrow {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 200;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(64px, 12vw, 143px);
  line-height: 0.86;
  font-weight: 100;
  letter-spacing: 0;
}

.hero-lead {
  width: min(720px, 100%);
  margin: 26px 0 0;
  color: #f4f1eb;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.28;
  font-weight: 100;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 160px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #17130a;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button-transparent {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 230, 66, 0.58);
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.button-transparent::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 230, 66, 0.22) 42%, rgba(255, 255, 255, 0.28) 50%, rgba(255, 230, 66, 0.22) 58%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.button-transparent:hover,
.button-transparent:focus-visible {
  border-color: var(--accent);
  background: rgba(255, 230, 66, 0.13);
  color: var(--white);
}

.button-transparent:hover::after,
.button-transparent:focus-visible::after {
  transform: translateX(120%);
}

.hero-actions .button-secondary:hover,
.hero-actions .button-secondary:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: #17130a;
}

.hero-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.social-icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-icon-link {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-icon-link:hover,
.social-icon-link:focus-visible {
  border-color: rgba(244, 196, 95, 0.95);
  background: var(--accent);
  color: #17130a;
  transform: translateY(-2px);
}

.social-icon-link.is-empty {
  opacity: 0.72;
}

.social-icon-link svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #101414;
}

.signal-strip div {
  min-height: 130px;
  padding: 28px clamp(18px, 3vw, 40px);
  border-right: 1px solid var(--line);
}

.signal-strip div:last-child {
  border-right: 0;
}

.signal-strip strong {
  display: block;
  color: var(--accent);
  font-size: clamp(24px, 3.15vw, 42px);
  font-weight: 500;
  line-height: 1.08;
}

.signal-strip span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.signal-choice-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: #080909;
}

.signal-choice-cell {
  padding: 12px clamp(12px, 2vw, 24px);
  border-right: 1px solid var(--line);
}

.signal-choice-cell:last-child {
  border-right: 0;
}

.signal-choice-button {
  width: 100%;
  min-height: 48px;
  border: 0;
  background: var(--accent);
  color: #17130a;
  padding: 9px 12px;
  cursor: pointer;
  font-size: clamp(13px, 1.08vw, 16px);
  line-height: 1.08;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.signal-choice-button:hover,
.signal-choice-button:focus-visible,
.footer-choice-button:hover,
.footer-choice-button:focus-visible {
  background: var(--white);
  transform: translateY(-2px);
}

.world-events {
  position: relative;
  min-height: 100svh;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #070808;
  overflow: hidden;
}

.world-events-media {
  position: absolute;
  inset: clamp(122px, 14vw, 188px) 0 0;
}

.world-events-media::after {
  content: none;
}

.world-events-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #070808;
}

.world-events-copy {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: clamp(36px, 5vw, 70px);
  text-align: center;
}

.world-events-copy h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
}

.world-events-copy p {
  margin: 16px 0 0;
  color: var(--accent);
  font-size: clamp(17px, 1.9vw, 24px);
  font-weight: 800;
}

.world-events-title-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  padding: clamp(24px, 3vw, 42px) clamp(20px, 6vw, 80px);
}

.world-events-title-wrap h2 {
  margin: 0;
  color: var(--accent);
  font-size: clamp(30px, 4.6vw, 68px);
  font-weight: 300;
  line-height: 0.98;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.65);
}

.trusted-strip {
  padding: clamp(34px, 5vw, 52px) 0 clamp(38px, 5vw, 56px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #090a0b;
}

.trusted-strip-copy {
  width: auto;
  max-width: 1180px;
  margin: 0 clamp(20px, 6vw, 80px) clamp(24px, 3vw, 34px);
}

.trusted-strip-copy .eyebrow {
  margin-bottom: 8px;
}

.trusted-strip-subtitle {
  margin: 0;
  color: var(--text);
  font-size: clamp(15px, 1.6vw, 22px);
  font-weight: 300;
}

.trusted-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.trusted-track {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.6vw, 34px);
  width: max-content;
  padding-inline: clamp(20px, 6vw, 80px);
  animation: trusted-scroll 72s linear infinite;
  will-change: transform;
}

.trusted-logo {
  flex: 0 0 auto;
  width: clamp(128px, 11.6vw, 216px);
  height: clamp(54px, 5.4vw, 92px);
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 2px 4px;
  filter: none;
  opacity: 0.88;
}

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

#formats {
  padding-bottom: clamp(42px, 6vw, 72px);
}

.event-photo-strip {
  --event-photo-gap: 8px;
  padding: 0 0 clamp(26px, 4vw, 56px);
  overflow: hidden;
  background: #000;
}

.event-photo-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  line-height: 0;
  mask-image: linear-gradient(to right, transparent 0%, #000 4%, #000 96%, transparent 100%);
}

.event-photo-track {
  display: flex;
  width: max-content;
  animation: event-photo-scroll 160s linear infinite;
  will-change: transform;
}

.event-photo-set {
  display: flex;
  flex: 0 0 auto;
  gap: var(--event-photo-gap);
  padding-right: var(--event-photo-gap);
}

.event-photo {
  display: block;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  height: clamp(280px, 33vw, 540px);
  object-fit: contain;
  background: #000;
  cursor: zoom-in;
  transition: opacity 180ms ease, transform 180ms ease;
}

.event-photo:hover,
.event-photo:focus-visible {
  opacity: 0.86;
  transform: translateY(-2px);
  outline: 2px solid rgba(244, 196, 95, 0.78);
  outline-offset: 4px;
}

.event-photo-note {
  width: min(920px, calc(100% - 40px));
  margin: clamp(22px, 3vw, 34px) auto 0;
  color: var(--text);
  font-size: clamp(17px, 1.75vw, 23px);
  line-height: 1.38;
  font-weight: 300;
  text-align: center;
}

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

.reviews-strip {
  padding: clamp(48px, 6vw, 76px) 0 clamp(52px, 7vw, 90px);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #090a0b;
  color: var(--text);
}

.reviews-strip-copy {
  width: auto;
  max-width: 1180px;
  margin: 0 clamp(20px, 6vw, 80px) clamp(24px, 3.4vw, 40px);
}

.reviews-strip-copy .eyebrow {
  margin-bottom: 10px;
}

.reviews-strip-copy h2 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(34px, 4.65vw, 66.78px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
  scroll-margin-top: 110px;
}

.reviews-strip-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 200;
}

.reviews-strip-copy p:empty {
  display: none;
}

.reviews-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0 clamp(20px, 6vw, 80px);
  mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.reviews-track {
  --reviews-duration: 260s;
  display: flex;
  width: max-content;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.reviews-track.is-mobile-slider {
  width: 100%;
  max-width: 100%;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  transform: none !important;
  will-change: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.reviews-track.is-mobile-slider::-webkit-scrollbar {
  display: none;
}

.reviews-marquee:hover .reviews-track,
.reviews-marquee:focus-within .reviews-track,
.reviews-track.is-paused {
  will-change: auto;
}

.reviews-set {
  display: flex;
  flex: 0 0 auto;
  gap: 18px;
  padding-right: 18px;
}

.review-card {
  display: grid;
  grid-template-columns: minmax(210px, 36%) minmax(0, 64%);
  gap: 18px;
  flex: 0 0 clamp(720px, 64vw, 920px);
  min-height: 414px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #111515;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
}

.reviews-track.is-mobile-slider .review-card {
  flex-basis: clamp(720px, 64vw, 920px);
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.reviews-track.is-mobile-slider .review-card:first-child {
  scroll-snap-align: start;
}

@media (min-width: 681px) {
  .reviews-track.is-mobile-slider .review-card:first-child .review-photo {
    object-position: 42% center;
  }
}

.review-photo-wrap {
  min-width: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #050505;
}

.review-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center;
}

.review-content {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding: 10px 10px 10px 0;
}

.review-meta {
  min-width: 0;
}

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

.review-meta strong {
  color: var(--text);
  font-size: 17px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.review-meta span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
}

.review-stars {
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
  text-shadow: 0 0 18px rgba(244, 196, 95, 0.42);
}

.review-card p {
  margin: 0;
  color: rgba(241, 242, 237, 0.8);
  font-size: 15px;
  line-height: 1.55;
}

.review-card.is-pending p {
  color: rgba(241, 242, 237, 0.58);
  font-style: italic;
}

.reviews-mobile-controls {
  display: grid;
  grid-template-columns: 42px minmax(0, 116px) 42px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(430px, calc(100% - 40px));
  margin: 20px auto 0;
}

.reviews-nav-button,
.reviews-dot {
  appearance: none;
  border: 0;
  font: inherit;
}

.reviews-nav-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.reviews-nav-button:hover,
.reviews-nav-button:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: #17130a;
}

.reviews-nav-button:disabled {
  opacity: 0.34;
  cursor: default;
}

.reviews-nav-button:disabled:hover,
.reviews-nav-button:disabled:focus-visible {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.reviews-dots {
  justify-self: center;
  width: min(116px, 100%);
  overflow: hidden;
}

.reviews-dots-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.reviews-dot {
  display: none;
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  opacity: 0.78;
  transition: background 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.reviews-dot.is-visible {
  display: block;
}

.reviews-dot.is-edge {
  opacity: 0.42;
  transform: scale(0.68);
}

.reviews-dot.is-active {
  background: var(--accent);
  opacity: 1;
  box-shadow: 0 0 16px rgba(255, 230, 66, 0.42);
  transform: scale(1.42);
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 6vw, 80px);
  background: #080909;
  color: var(--text);
}

.section-dark {
  background: #080909;
  color: var(--text);
}

.section-intro {
  width: min(820px, 100%);
  margin-bottom: clamp(32px, 5vw, 58px);
}

.section-intro h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

#services .section-intro h2,
.team-section .section-intro h2,
#formats .section-intro h2,
.pricing-section .section-intro h2,
.biography-section .section-intro h2,
.process-section .section-intro h2 {
  font-size: clamp(34px, 4.65vw, 66.78px);
  font-weight: 300;
}

#services {
  padding-top: clamp(24px, 3.4vw, 48px);
}

#services .section-intro {
  width: min(1120px, 100%);
  margin-bottom: clamp(24px, 3.2vw, 42px);
}

#services .section-intro h2 {
  max-width: 1120px;
  font-size: clamp(30px, 3.25vw, 52px);
}

.section-intro p:not(.eyebrow) {
  margin: 20px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 20px);
}

#services .section-intro p:not(.eyebrow) {
  max-width: 1040px;
  font-weight: 200;
}

.section-dark .section-intro p:not(.eyebrow) {
  color: var(--muted);
}

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

#services .service-grid--single {
  width: min(760px, 100%);
  grid-template-columns: 1fr;
}

.services-tech-cta {
  display: flex;
  margin: 0;
}

.card-body .services-tech-cta {
  margin-top: 22px;
}

.service-more-button {
  width: 100%;
  min-width: 0;
  margin-top: 6px;
}

.technical-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  min-width: min(320px, 100%);
  padding: 14px 24px;
  border: 1px solid rgba(255, 230, 66, 0.62);
  background: rgba(255, 230, 66, 0.1);
  color: var(--accent);
  cursor: pointer;
  overflow: hidden;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  box-shadow: 0 0 0 1px rgba(255, 230, 66, 0.05), 0 18px 42px rgba(0, 0, 0, 0.32);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
  animation: tech-button-pulse 3s ease-in-out infinite;
}

.technical-button::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.12) 34%, rgba(255, 230, 66, 0.42) 50%, rgba(255, 255, 255, 0.12) 66%, transparent 100%);
  transform: translateX(-125%);
  animation: tech-button-sheen 4.2s ease-in-out infinite;
}

.technical-button:hover,
.technical-button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: rgba(255, 230, 66, 0.18);
  color: var(--white);
}

.technical-button-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.technical-button-icon svg {
  width: 22px;
  height: 22px;
}

.feature-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #141a1a;
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.35);
}

.feature-card img {
  height: clamp(220px, 18vw, 285px);
  object-fit: cover;
}

#services .feature-card:nth-child(1) img {
  object-position: 52% 72%;
}

#services .feature-card:nth-child(2) img {
  object-position: 54% 45%;
}

#services .feature-card:nth-child(3) img,
#services .feature-card:nth-child(4) img {
  object-position: center;
}

.feature-card img.media-fit-djmc {
  object-position: 56% 42%;
}

.feature-card img.media-fit-contain {
  object-fit: contain;
  object-position: center;
  background: #0d1010;
  padding: 6px;
}

.card-body {
  padding: 24px;
}

#services .card-body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  padding: 22px;
}

.card-body h3,
.format-card h3,
.timeline h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: 0;
}

#services .card-body h3 {
  font-size: clamp(20px, 1.35vw, 24px);
}

.card-body p,
.format-card p,
.timeline p {
  margin: 14px 0 0;
  color: var(--muted);
}

#services .card-body p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.52;
}

.timeline .process-list-label {
  color: var(--text);
  font-weight: 800;
}

.process-list {
  display: grid;
  gap: 6px;
  margin: 12px 0 0 18px;
  padding: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.process-list li::marker {
  color: var(--accent);
}

.team-section {
  background: #0b0f0f;
}

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

.team-card {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #141a1a;
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.35);
}

.team-card img {
  height: clamp(220px, 22vw, 300px);
  object-fit: cover;
  object-position: center top;
}

.team-card-body {
  padding: 22px;
}

.team-card-body h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
}

.team-country {
  display: inline-flex;
  margin-top: 12px;
  min-height: 30px;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid rgba(244, 196, 95, 0.55);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.team-card-body p {
  margin: 14px 0 0;
  color: var(--muted);
}

.biography-section {
  background: #080909;
}

.biography-content {
  width: min(1080px, 100%);
}

.biography-content h3 {
  margin: 38px 0 16px;
  color: var(--accent);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.04;
}

.biography-content p {
  margin: 0 0 14px;
  max-width: 980px;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.48;
  font-weight: 300;
}

.biography-skills {
  margin-top: 38px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #111515;
}

.biography-skills .eyebrow {
  margin-bottom: 8px;
}

.biography-skills h3 {
  margin: 0;
  max-width: 720px;
}

.biography-skill-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.biography-skill-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-width: 0;
}

.biography-skill-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(244, 196, 95, 0.4);
  background: rgba(255, 230, 66, 0.08);
  color: var(--accent);
}

.biography-skill-icon svg {
  width: 24px;
  height: 24px;
}

.biography-skill-list strong {
  display: block;
  color: var(--white);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.2;
}

.biography-skill-list p {
  margin: 7px 0 0;
  max-width: none;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.45;
}

.bio-list {
  margin: 0 0 18px;
  padding-left: 22px;
  max-width: 1020px;
}

.bio-list li {
  margin: 0 0 10px;
  color: var(--text);
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.45;
  font-weight: 300;
}

.bio-signoff {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.bio-signoff strong {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  letter-spacing: 0;
}

.bio-signoff p {
  margin: 0;
  color: var(--text);
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.format-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: #111515;
}

.format-card-media {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #0d1010;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.format-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.format-card-weddings .format-card-media img {
  object-position: center 43%;
}

.format-card-corporate .format-card-media img {
  object-position: center 55%;
}

.format-card-private .format-card-media img {
  object-position: center 43%;
}

.format-card-conferences .format-card-media img {
  object-position: center 48%;
}

.format-card > h3 {
  margin: 24px 28px 0;
}

.format-card > p {
  display: none;
}

.format-read-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 56px);
  min-height: 44px;
  margin: 16px 28px 28px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 230, 66, 0.06), 0 0 16px rgba(255, 230, 66, 0.08);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
  animation: format-read-pulse 3.4s ease-in-out infinite;
}

.format-read-button::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 34%, rgba(255, 230, 66, 0.34) 50%, rgba(255, 255, 255, 0.08) 66%, transparent 100%);
  transform: translateX(-125%);
  animation: format-read-sheen 4.6s ease-in-out infinite;
}

.format-card:nth-child(2) .format-read-button {
  animation-delay: 0.28s;
}

.format-card:nth-child(2) .format-read-button::before {
  animation-delay: 0.34s;
}

.format-card:nth-child(3) .format-read-button {
  animation-delay: 0.56s;
}

.format-card:nth-child(3) .format-read-button::before {
  animation-delay: 0.68s;
}

.format-card:nth-child(4) .format-read-button {
  animation-delay: 0.84s;
}

.format-card:nth-child(4) .format-read-button::before {
  animation-delay: 1.02s;
}

.format-read-button:hover,
.format-read-button:focus-visible {
  transform: translateY(-2px);
  background: var(--accent);
  color: #17130a;
}

.footer-blog-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(300px, 100%);
  min-height: 44px;
  margin: 16px auto 0;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  padding: 10px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 230, 66, 0.06), 0 0 16px rgba(255, 230, 66, 0.08);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
  animation: format-read-pulse 3.4s ease-in-out infinite;
}

.footer-blog-button::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 34%, rgba(255, 230, 66, 0.34) 50%, rgba(255, 255, 255, 0.08) 66%, transparent 100%);
  transform: translateX(-125%);
  animation: format-read-sheen 4.6s ease-in-out infinite;
}

.footer-blog-button:hover,
.footer-blog-button:focus-visible {
  transform: translateY(-2px);
  background: var(--accent);
  color: #17130a;
}

.footer-recommendations {
  width: min(300px, 100%);
  margin-top: 18px;
}

.footer-recommendations h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

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

.footer-recommendation-card {
  position: relative;
  isolation: isolate;
  min-height: 78px;
  display: grid;
  place-items: center;
  gap: 7px;
  padding: 10px 6px 9px;
  border: 1px solid rgba(255, 230, 66, 0.28);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 230, 66, 0.035) 42%, rgba(0, 0, 0, 0.18));
  color: var(--text);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 230, 66, 0.05), 0 14px 26px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.footer-recommendation-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.06) 34%, rgba(255, 230, 66, 0.26) 50%, rgba(255, 255, 255, 0.06) 66%, transparent 100%);
  opacity: 0;
  transform: translateX(-110%);
  transition: opacity 180ms ease;
}

.footer-recommendation-card:hover,
.footer-recommendation-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 230, 66, 0.72);
  color: var(--accent);
  box-shadow: 0 0 0 1px rgba(255, 230, 66, 0.14), 0 18px 34px rgba(0, 0, 0, 0.36), 0 0 22px rgba(255, 230, 66, 0.12);
}

.footer-recommendation-card:hover::before,
.footer-recommendation-card:focus-visible::before {
  opacity: 1;
  animation: format-read-sheen 1.25s ease both;
}

.footer-recommendation-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 230, 66, 0.55);
  border-radius: 999px;
  background: radial-gradient(circle at 50% 35%, rgba(255, 230, 66, 0.28), rgba(255, 230, 66, 0.08) 54%, rgba(0, 0, 0, 0.22));
  color: var(--accent);
  font-size: 16px;
  font-weight: 950;
  line-height: 1;
}

.footer-recommendation-name {
  max-width: 100%;
  color: inherit;
  font-size: clamp(9px, 2vw, 12px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-section {
  position: relative;
  padding-top: clamp(24px, 4vw, 44px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 230, 66, 0.045), transparent 18%),
    #050606;
}

.pricing-return-button {
  position: sticky;
  top: clamp(12px, 2vw, 18px);
  z-index: 8;
  float: right;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: -28px 0 18px 18px;
  border: 1px solid rgba(255, 230, 66, 0.78);
  background: var(--accent);
  color: #17130a;
  cursor: pointer;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  box-shadow: 0 0 24px rgba(255, 230, 66, 0.22), 0 14px 36px rgba(0, 0, 0, 0.38);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pricing-return-button:hover,
.pricing-return-button:focus-visible {
  transform: translateY(-2px) rotate(90deg);
  box-shadow: 0 0 34px rgba(255, 230, 66, 0.34), 0 18px 42px rgba(0, 0, 0, 0.45);
}

.pricing-brand {
  width: min(560px, 64vw);
  height: 86px;
  margin: -8px auto clamp(18px, 3vw, 30px);
  overflow: hidden;
}

.pricing-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.pricing-intro {
  margin-inline: auto;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  clear: both;
}

.pricing-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    #0e1111;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.32);
}

.pricing-card-featured {
  border-color: rgba(255, 230, 66, 0.58);
  box-shadow: 0 0 0 1px rgba(255, 230, 66, 0.12), 0 24px 70px rgba(0, 0, 0, 0.4);
}

.pricing-card-head {
  min-height: 162px;
  padding: 28px clamp(18px, 2vw, 28px) 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.035);
}

.pricing-card-head span,
.pricing-addons-grid span {
  display: inline-flex;
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-card-head span {
  font-size: clamp(18px, 1.45vw, 27px);
  line-height: 1.05;
}

.pricing-addons-grid span {
  font-size: 12px;
}

.pricing-card-head h3 {
  margin: 12px 0 10px;
  color: var(--white);
  font-size: clamp(17px, 1.35vw, 24px);
  font-weight: 300;
  line-height: 1.06;
  white-space: nowrap;
  overflow-wrap: normal;
}

.pricing-card-head strong {
  color: var(--accent);
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 850;
}

.pricing-card-body {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 24px clamp(18px, 2vw, 28px) 28px;
}

.pricing-card-body p {
  margin: 0 0 -8px;
  color: var(--text);
  font-size: 18px;
  font-weight: 850;
}

.pricing-card-body ul,
.pricing-check-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card-body li {
  position: relative;
  min-width: 0;
  padding-left: 18px;
  color: rgba(247, 243, 236, 0.82);
  font-size: 15px;
  line-height: 1.32;
  overflow-wrap: anywhere;
}

.pricing-card-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.pricing-check-list {
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.pricing-check-list li {
  padding-left: 28px;
  color: var(--white);
  font-weight: 650;
}

.pricing-check-list li::before {
  content: "✓";
  top: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
  transform: none;
}

.pricing-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(30px, 5vw, 58px);
}

.pricing-info-panel {
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 230, 66, 0.3);
  background:
    linear-gradient(140deg, rgba(255, 230, 66, 0.065), rgba(255, 255, 255, 0.025) 52%, rgba(47, 196, 178, 0.04)),
    #090a0a;
}

.pricing-info-panel-wide {
  grid-column: 1 / -1;
}

.pricing-info-panel h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  line-height: 1;
}

.pricing-info-panel p {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 16px;
  font-weight: 850;
}

.pricing-info-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-options-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
}

.pricing-info-panel li {
  position: relative;
  min-width: 0;
  padding-left: 20px;
  color: rgba(247, 243, 236, 0.82);
  font-size: 15px;
  line-height: 1.34;
  overflow-wrap: anywhere;
}

.pricing-info-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(255, 230, 66, 0.24);
  transform: translateY(-50%);
}

.pricing-common-list li {
  padding-left: 28px;
}

.pricing-common-list li::before {
  content: "\2713";
  top: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: var(--accent);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  transform: none;
}

.pricing-addons {
  margin-top: clamp(34px, 5vw, 62px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 230, 66, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 230, 66, 0.075), rgba(255, 255, 255, 0.02) 42%, rgba(47, 196, 178, 0.05)),
    #090a0a;
}

.pricing-addons-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(22px, 4vw, 36px);
}

.pricing-addons-head h3 {
  margin: 0;
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 300;
  line-height: 0.98;
}

.pricing-addons-head img {
  width: min(300px, 34vw);
  height: 44px;
  object-fit: contain;
  object-position: right center;
}

.pricing-addons-grid,
.pricing-bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.pricing-addons-grid article,
.pricing-bonus-grid span {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.pricing-addons-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 218px;
  padding: 20px;
}

.pricing-addons-grid h4 {
  margin: 0;
  color: var(--white);
  font-size: clamp(20px, 1.9vw, 30px);
  font-weight: 300;
  line-height: 1;
}

.pricing-addons-grid strong {
  color: var(--accent);
  font-size: 17px;
  line-height: 1.18;
}

.pricing-addons-grid p {
  margin: 0;
  color: rgba(247, 243, 236, 0.75);
  font-size: 14px;
  line-height: 1.38;
}

.pricing-bonus-grid {
  margin-top: 12px;
}

.pricing-bonus-grid span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.pricing-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.equipment-rental-intro h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 300;
  line-height: 0.98;
}

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

.equipment-rental-card .pricing-card-head {
  min-height: 144px;
  padding: 22px 18px 20px;
}

.equipment-rental-card .pricing-card-head span {
  font-size: clamp(18px, 1.25vw, 23px);
}

.equipment-rental-card .pricing-card-head h3 {
  margin: 8px 0 10px;
  color: var(--muted);
  font-size: clamp(14px, 0.95vw, 17px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.equipment-rental-card .pricing-card-head strong {
  display: block;
  font-size: clamp(17px, 1.22vw, 22px);
  line-height: 1.12;
  text-transform: uppercase;
}

.equipment-rental-media {
  display: grid;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.equipment-rental-photo,
.equipment-rental-bonus-photo {
  margin: 0;
  overflow: hidden;
  background: #c9c9c9;
}

.equipment-rental-photo {
  aspect-ratio: 2623 / 1888;
  border-bottom: 1px solid rgba(0, 0, 0, 0.44);
}

.equipment-rental-photo img,
.equipment-rental-bonus-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.equipment-rental-card-body {
  padding: 20px 18px 22px;
}

.equipment-rental-card-body li {
  font-size: 14px;
}

.equipment-rental-bonuses {
  margin-top: clamp(24px, 3.4vw, 42px);
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255, 230, 66, 0.32);
  background: rgba(255, 255, 255, 0.025);
}

.equipment-rental-bonus-copy {
  display: grid;
  gap: 12px;
  max-width: 1060px;
  margin: 0 auto clamp(20px, 3vw, 30px);
  color: rgba(247, 243, 236, 0.82);
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 300;
  line-height: 1.48;
  text-align: left;
}

.equipment-rental-bonus-copy p {
  margin: 0;
}

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

.equipment-rental-bonus-grid article {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0e1111;
}

.equipment-rental-bonus-photo {
  aspect-ratio: 2623 / 1888;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.equipment-rental-bonus-grid h4 {
  margin: 0;
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  color: var(--text);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.18;
  text-transform: uppercase;
}

.pricing-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(760px, 100%);
  margin: clamp(28px, 4vw, 46px) auto 0;
}

.pricing-primary-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(980px, 100%);
}

.pricing-action-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 54px;
  padding: 14px 18px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #17130a;
  overflow: hidden;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.12;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 0 0 1px rgba(255, 230, 66, 0.08), 0 0 22px rgba(255, 230, 66, 0.16);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
  animation: format-read-pulse 3.4s ease-in-out infinite;
}

.pricing-action-button::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 34%, rgba(255, 255, 255, 0.58) 50%, rgba(255, 255, 255, 0.08) 66%, transparent 100%);
  transform: translateX(-125%);
  animation: format-read-sheen 4.6s ease-in-out infinite;
}

.pricing-action-button-secondary {
  background: rgba(0, 0, 0, 0.72);
  color: var(--accent);
  border-color: rgba(255, 230, 66, 0.58);
}

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

.pricing-action-button-secondary:hover,
.pricing-action-button-secondary:focus-visible {
  background: var(--accent);
  color: #17130a;
}

.equipment-video-actions {
  width: min(620px, 100%);
  margin: clamp(18px, 3vw, 30px) auto clamp(28px, 4vw, 42px);
}

.tech-equipment-section .equipment-video-actions {
  margin-bottom: clamp(22px, 3vw, 34px);
}

.equipment-rental-section .equipment-video-actions {
  margin-top: clamp(20px, 3vw, 32px);
}

.equipment-section {
  background: #080909;
}

.equipment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.equipment-photo {
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(11, 12, 12, 0.0), rgba(11, 12, 12, 0.52)),
    url("https://images.unsplash.com/photo-1514525253161-7a46d19cd819?auto=format&fit=crop&w=1500&q=82") center / cover;
  box-shadow: var(--shadow);
}

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

.equipment-item {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #141a1a;
}

.equipment-item strong {
  font-size: 22px;
}

.equipment-item span {
  color: var(--muted);
  font-weight: 700;
}

.process-section {
  background: #080909;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.13);
}

.timeline article {
  min-height: 250px;
  padding: 28px;
  background: #111515;
}

.timeline span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 36px;
  background: #111515;
  color: var(--accent);
  font-weight: 900;
}

body.dialog-open {
  overflow: hidden;
}

.content-dialog,
.gallery-dialog {
  width: min(1440px, calc(100vw - 24px));
  max-height: calc(100svh - 32px);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--text);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.62);
}

.content-dialog::backdrop,
.gallery-dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

.dialog-shell {
  position: relative;
  max-height: calc(100svh - 32px);
  overflow: auto;
  background: #080909;
}

.format-details-dialog {
  width: min(760px, calc(100vw - 24px));
}

.tech-equipment-dialog {
  width: min(980px, calc(100vw - 24px));
}

.blog-dialog {
  width: min(1180px, calc(100vw - 24px));
}

.pricing-dialog {
  width: min(1320px, calc(100vw - 24px));
}

.equipment-rental-dialog {
  width: min(1440px, calc(100vw - 24px));
}

.format-details-section {
  padding: clamp(30px, 5vw, 56px);
}

.tech-equipment-section {
  padding: clamp(30px, 5vw, 58px);
}

.blog-section {
  padding: clamp(30px, 5vw, 58px);
}

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

.blog-card {
  display: grid;
  grid-template-rows: auto minmax(240px, 1fr);
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #141a1a;
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.35);
}

.blog-card-copy {
  padding: clamp(20px, 2.4vw, 28px);
}

.blog-card-title {
  display: inline;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: clamp(21px, 2.1vw, 30px);
  font-weight: 450;
  line-height: 1.08;
  text-align: left;
  transition: color 180ms ease;
}

.blog-card-title:hover,
.blog-card-title:focus-visible {
  color: var(--accent);
}

.blog-card-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.48;
}

.blog-card-media {
  display: block;
  width: 100%;
  min-width: 0;
  height: 100%;
  min-height: 240px;
  padding: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #080909;
  cursor: pointer;
  overflow: hidden;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease, filter 220ms ease;
}

.blog-card-media:hover img,
.blog-card-media:focus-visible img {
  filter: brightness(1.12);
  transform: scale(1.035);
}

.blog-article-view:not([hidden]) {
  display: grid;
  gap: clamp(22px, 3vw, 36px);
}

.blog-back-button {
  justify-self: start;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 230, 66, 0.72);
  background: rgba(255, 230, 66, 0.08);
  color: var(--accent);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.blog-back-button:hover,
.blog-back-button:focus-visible {
  transform: translateY(-2px);
  background: var(--accent);
  color: #17130a;
}

.blog-article-hero {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #050606;
  overflow: hidden;
}

.blog-article-hero img {
  width: 100%;
  max-height: min(58svh, 620px);
  object-fit: cover;
  object-position: center;
}

.blog-article-copy {
  width: min(860px, 100%);
}

.blog-article-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(32px, 4.2vw, 58px);
  font-weight: 300;
  line-height: 1.02;
}

.blog-article-content {
  display: grid;
  gap: 16px;
  margin-top: clamp(22px, 3vw, 34px);
}

.blog-article-content h3 {
  margin: 14px 0 0;
  color: var(--accent);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.12;
}

.blog-article-content p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.6;
}

.blog-article-content .blog-lead {
  color: var(--text);
  font-size: clamp(18px, 1.75vw, 22px);
  line-height: 1.45;
}

.blog-article-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-article-content li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.5;
}

.blog-article-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  background: var(--accent);
}

.blog-video-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid var(--accent);
  background: rgba(255, 230, 66, 0.08);
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.blog-video-link:hover,
.blog-video-link:focus-visible {
  transform: translateY(-2px);
  background: var(--accent);
  color: #17130a;
}

.format-details-copy {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.55;
  font-weight: 300;
}

.tech-equipment-list {
  display: grid;
  gap: 12px;
}

.tech-equipment-item {
  display: grid;
  grid-template-columns: minmax(150px, 220px) 54px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-width: 0;
  padding: clamp(16px, 2.2vw, 22px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.tech-equipment-photo {
  min-width: 0;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #080909;
}

.tech-equipment-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 6px;
}

.tech-equipment-number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 230, 66, 0.52);
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.tech-equipment-item h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1;
  letter-spacing: 0;
}

.tech-equipment-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.48;
  font-weight: 300;
}

.choice-dialog-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: stretch;
}

.choice-dialog-media {
  min-height: clamp(260px, 30vw, 420px);
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px dashed rgba(244, 196, 95, 0.5);
  background: linear-gradient(135deg, rgba(255, 230, 66, 0.09), rgba(255, 255, 255, 0.03));
  color: var(--muted);
  text-align: center;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 700;
}

.choice-dialog-media-column {
  align-self: start;
  display: grid;
  gap: 12px;
}

.choice-dialog-photo {
  aspect-ratio: 1354 / 1600;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-style: solid;
  background: #090b0b;
}

.choice-dialog-photo--wide {
  align-self: start;
  aspect-ratio: 1800 / 1392;
  min-height: 0;
}

.choice-dialog-photo--equipment {
  aspect-ratio: 1314 / 1600;
}

.choice-dialog-photo--consultation {
  aspect-ratio: 1536 / 1024;
  min-height: 0;
}

.choice-dialog-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}

.choice-dialog-photo img {
  width: 100%;
  height: 100%;
  min-height: clamp(260px, 30vw, 420px);
  display: block;
  object-fit: contain;
  object-position: center center;
}

.choice-dialog-photo--wide img {
  min-height: 0;
}

.choice-dialog-photo--consultation img {
  min-height: 0;
}

.choice-dialog-book-button {
  width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  background: #050606;
  color: var(--accent);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.choice-dialog-book-button:hover,
.choice-dialog-book-button:focus-visible {
  transform: translateY(-2px);
  background: var(--accent);
  color: #17130a;
  border-color: var(--accent);
}

.choice-dialog-copy {
  min-height: clamp(220px, 24vw, 360px);
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #111515;
  padding: clamp(22px, 3vw, 36px);
}

.choice-dialog-copy p,
.music-video-section .section-intro p:not(.eyebrow) {
  margin: 0;
  max-width: 760px;
  color: var(--text);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.28;
  font-weight: 300;
}

.choice-dialog-copy--rich {
  display: block;
  align-items: initial;
}

.choice-dialog-copy--rich h3 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.08;
}

.choice-dialog-copy--rich p,
.choice-dialog-copy--rich li {
  max-width: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55;
  font-weight: 400;
}

.choice-dialog-copy--rich p {
  margin: 0 0 14px;
}

.choice-dialog-quote {
  color: var(--accent) !important;
  font-size: clamp(18px, 1.45vw, 23px) !important;
  line-height: 1.35 !important;
  font-weight: 700 !important;
}

.choice-dialog-list-title {
  display: block;
  margin: 18px 0 10px;
  color: var(--accent);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.3;
}

.choice-dialog-copy--rich ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 20px;
}

.music-video-section .section-intro {
  width: min(940px, 100%);
}

.music-platform-links {
  gap: 12px;
}

.music-platform-links .social-icon-link {
  width: 64px;
  height: 64px;
}

.dialog-close,
.gallery-close,
.gallery-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(8, 9, 9, 0.76);
  color: var(--white);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.dialog-close:hover,
.dialog-close:focus-visible,
.gallery-close:hover,
.gallery-close:focus-visible,
.gallery-nav:hover,
.gallery-nav:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: #17130a;
}

.dialog-close {
  position: sticky;
  top: 18px;
  z-index: 3;
  float: right;
  width: 44px;
  height: 44px;
  margin: 0 0 18px 18px;
  font-size: 28px;
  line-height: 1;
}

.content-dialog .section-intro {
  padding-top: 6px;
}

.content-dialog .team-grid,
.content-dialog .timeline {
  clear: both;
}

#team-dialog.content-dialog {
  width: min(1560px, calc(100vw - 24px));
}

#team-dialog .team-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

#team-dialog .team-card img {
  height: clamp(260px, 22vw, 380px);
  object-fit: contain;
  object-position: center;
  background: #0d1010;
}

.faq-dialog-list {
  clear: both;
  display: grid;
  gap: 10px;
}

.faq-dialog-item {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: #111515;
}

.faq-dialog-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 18px 22px;
  color: var(--white);
  cursor: pointer;
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 750;
  line-height: 1.22;
}

.faq-dialog-item summary::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(244, 196, 95, 0.45);
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
}

.faq-dialog-item[open] summary::after {
  content: "-";
}

.faq-dialog-answer {
  display: grid;
  gap: 10px;
  padding: 0 22px 22px;
}

.faq-dialog-answer p {
  margin: 0;
  max-width: 980px;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.55;
}

.gallery-dialog {
  width: min(1180px, calc(100vw - 24px));
  background: #000;
}

.gallery-shell {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 12px;
  min-height: min(760px, calc(100svh - 32px));
  padding: clamp(16px, 3vw, 28px);
  background: #000;
}

.gallery-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  font-size: 28px;
}

.gallery-nav {
  width: 52px;
  height: 52px;
}

.gallery-nav svg {
  width: 26px;
  height: 26px;
}

.gallery-figure {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin: 0;
}

.gallery-image {
  width: 100%;
  max-height: calc(100svh - 144px);
  object-fit: contain;
}

.gallery-caption {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
  padding: clamp(64px, 9vw, 120px) clamp(20px, 6vw, 80px);
  background: #080909;
}

.contact-form-header h2,
.contact-copy h2,
.contact-info-card h3 {
  margin: 0;
  width: min(720px, 100%);
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 300;
  line-height: 1.02;
}

.contact-form-header p:not(.eyebrow),
.contact-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  width: min(660px, 100%);
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 19px);
}

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

.contact-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(17, 21, 21, 0.94);
  box-shadow: var(--shadow);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.contact-form span {
  color: #e7e1d5;
  font-size: 14px;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  padding: 13px 14px;
  outline: none;
}

.contact-form select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%) calc(100% - 18px) 50% / 7px 7px no-repeat,
    linear-gradient(135deg, var(--muted) 50%, transparent 50%) calc(100% - 13px) 50% / 7px 7px no-repeat,
    rgba(255, 255, 255, 0.07);
  padding-right: 38px;
}

.contact-form select option {
  background: #111515;
  color: var(--white);
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}

.brief-field-full {
  grid-column: 1 / -1;
}

.contact-form .button {
  width: min(260px, 100%);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-sidebar {
  display: grid;
  gap: 24px;
}

.contact-info-card,
.contact-expect-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(17, 21, 21, 0.94);
  box-shadow: var(--shadow);
  padding: clamp(22px, 3vw, 34px);
}

.contact-info-card h3,
.contact-expect-card h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
  font-weight: 450;
}

.contact-info-card h3 {
  width: min(720px, 100%);
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.02;
}

.contact-info-list,
.contact-expect-card ul {
  display: grid;
  gap: 22px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.contact-info-list li {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.contact-info-list strong {
  display: block;
  color: var(--white);
  font-size: 17px;
  line-height: 1.2;
}

.contact-info-list .contact-action-button {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.35;
}

.contact-action-button {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 56px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.contact-action-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--accent);
}

.contact-action-icon svg {
  width: 26px;
  height: 26px;
}

a.contact-action-button:hover,
a.contact-action-button:focus-visible {
  border-color: var(--accent);
  background: rgba(255, 230, 66, 0.1);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-action-button.is-disabled {
  cursor: default;
}

.contact-expect-card {
  background: rgba(25, 31, 31, 0.97);
}

.contact-expect-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.45;
}

.contact-expect-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  background: var(--accent);
}

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

.site-footer {
  padding: clamp(52px, 7vw, 90px) clamp(20px, 6vw, 80px) 24px;
  border-top: 1px solid var(--line);
  background: #070808;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(260px, 1fr) minmax(220px, 0.95fr) minmax(220px, 0.95fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: start;
}

.footer-block {
  min-width: 0;
}

.footer-brand {
  display: grid;
  justify-items: center;
  text-align: center;
}

.footer-logo {
  width: min(320px, 100%);
  height: auto;
  aspect-ratio: 1947 / 448;
  object-fit: contain;
  border: 1px solid rgba(244, 196, 95, 0.44);
}

.footer-social-links {
  justify-content: center;
}

.footer-subscribe {
  margin: 22px 0 18px;
  color: var(--white);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.14;
  font-weight: 300;
}

.footer-kicker {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-block h2,
.footer-block h3 {
  margin: 0;
  color: var(--text);
  letter-spacing: 0;
}

.footer-block h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.04;
}

.footer-block h3 {
  margin-top: 26px;
  font-size: 20px;
  font-weight: 500;
}

.footer-choice-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.footer-choice-button {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 230, 66, 0.62);
  background: var(--accent);
  color: #17130a;
  padding: 9px 12px;
  text-align: center;
  font-size: clamp(13px, 1.08vw, 16px);
  line-height: 1.08;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 230, 66, 0.12),
    0 0 22px rgba(255, 230, 66, 0.16);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  animation: signal-choice-pulse 2.8s ease-in-out infinite;
}

.footer-choice-button::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.18) 34%, rgba(255, 255, 255, 0.54) 48%, rgba(255, 255, 255, 0.16) 62%, transparent 100%);
  transform: translateX(-125%);
  animation: signal-choice-sheen 3.8s ease-in-out infinite;
}

.footer-choice-grid .footer-choice-button:nth-child(2) {
  animation-delay: 0.22s;
}

.footer-choice-grid .footer-choice-button:nth-child(2)::before {
  animation-delay: 0.35s;
}

.footer-choice-grid .footer-choice-button:nth-child(3) {
  animation-delay: 0.44s;
}

.footer-choice-grid .footer-choice-button:nth-child(3)::before {
  animation-delay: 0.7s;
}

.footer-choice-grid .footer-choice-button:nth-child(4) {
  animation-delay: 0.66s;
}

.footer-choice-grid .footer-choice-button:nth-child(4)::before {
  animation-delay: 1.05s;
}

.footer-choice-grid .footer-choice-button:nth-child(5) {
  animation-delay: 0.88s;
}

.footer-choice-grid .footer-choice-button:nth-child(5)::before {
  animation-delay: 1.4s;
}

.footer-choice-button:hover,
.footer-choice-button:focus-visible {
  background: var(--white);
  transform: translateY(-2px);
}

.footer-nav-list {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.footer-nav-link {
  width: max-content;
  max-width: 100%;
  color: var(--muted);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.3;
  transition: color 180ms ease;
}

.footer-nav-link:hover,
.footer-nav-link:focus-visible {
  color: var(--accent);
}

.footer-about > p:not(.footer-kicker),
.footer-faq p,
.company-list,
.footer-skill-list p {
  color: var(--muted);
}

.footer-about > p:not(.footer-kicker) {
  margin: 14px 0 10px;
}

.footer-text-link {
  display: inline-flex;
  margin-top: 4px;
  color: var(--accent);
  font-weight: 850;
}

.footer-skill-list,
.company-list {
  display: grid;
  gap: 14px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.footer-skill-list li,
.company-list li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.footer-skill-icon,
.company-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(244, 196, 95, 0.4);
  background: rgba(255, 230, 66, 0.08);
  color: var(--accent);
}

.footer-skill-icon svg,
.company-icon svg {
  width: 22px;
  height: 22px;
}

.footer-skill-list strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  line-height: 1.2;
}

.footer-skill-list p {
  margin: 5px 0 0;
  font-size: 13px;
  line-height: 1.45;
}

.footer-book {
  margin-top: 22px;
}

.footer-faq details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 0;
}

.footer-faq summary {
  cursor: pointer;
  color: var(--white);
  font-size: 15px;
  font-weight: 850;
}

.footer-faq p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.45;
}

.footer-booking .button {
  width: 100%;
}

.footer-booking h3 {
  color: var(--accent);
}

.footer-booking h2 {
  color: var(--text);
}

.company-list {
  font-size: 14px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: clamp(34px, 5vw, 58px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.footer-bottom span:first-child {
  color: var(--text);
}

.cookie-consent {
  position: fixed;
  right: clamp(16px, 4vw, 40px);
  bottom: clamp(16px, 4vw, 40px);
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(720px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 9, 9, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.cookie-consent.is-hidden {
  display: none;
}

.cookie-consent-copy h2 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 16px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
}

.cookie-consent-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
}

.cookie-consent-actions {
  display: flex;
  gap: 8px;
}

.cookie-consent-actions .button {
  min-height: 42px;
  min-width: 118px;
  padding: 10px 14px;
  cursor: pointer;
}

@media (max-width: 1180px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }
}

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

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .service-grid,
  .team-grid,
  .format-grid,
  .pricing-grid,
  .equipment-rental-grid,
  .equipment-rental-bonus-grid,
  .blog-grid,
  .signal-choice-strip,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .pricing-addons-grid,
  .pricing-bonus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #team-dialog .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .equipment-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .equipment-photo {
    min-height: 420px;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 8px;
    padding: 10px 14px;
  }

  .brand {
    width: min(190px, calc(100vw - 198px));
    min-width: 0;
    height: 36px;
    padding: 0;
  }

  .brand-mark {
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .brand-mark-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .main-nav {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: clamp(2px, 0.8vw, 4px);
    overflow-x: visible;
    row-gap: 0;
  }

  .main-nav a {
    font-size: clamp(8px, 2.25vw, 10px);
    line-height: 1.05;
    white-space: nowrap;
  }

  .main-nav .nav-mobile-hidden {
    display: none;
  }

  .language-switcher {
    grid-template-columns: repeat(4, 34px);
  }

  .language-button {
    height: 34px;
    font-size: 11px;
  }

  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    width: auto;
    gap: 14px;
    padding: 15px;
  }

  .cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-consent-actions .button {
    width: 100%;
    min-width: 0;
    font-size: 12px;
  }

  .hero {
    min-height: calc(80svh - 88px);
    padding: 64px 18px 42px;
  }

  main {
    display: flex;
    flex-direction: column;
  }

  .hero {
    order: 1;
  }

  .signal-strip {
    order: 2;
  }

  .signal-choice-strip {
    order: 3;
  }

  .world-events {
    order: 4;
  }

  .trusted-strip {
    order: 5;
  }

  #formats {
    order: 6;
  }

  .event-photo-strip {
    order: 7;
  }

  #services {
    order: 8;
  }

  .reviews-strip {
    order: 9;
    padding: 36px 0 44px;
  }

  #contact {
    order: 10;
  }

  #formats,
  #services,
  #contact {
    scroll-margin-top: 0;
  }

  .world-events {
    min-height: clamp(300px, 82vw, 430px);
    height: auto;
  }

  .world-events-title-wrap {
    min-height: clamp(300px, 82vw, 430px);
    height: clamp(300px, 82vw, 430px);
  }

  .world-events-media {
    display: flex;
    align-items: center;
    inset: clamp(104px, 30vw, 150px) 0 0;
  }

  .world-events-media img {
    height: auto;
    min-height: 0;
    object-fit: contain;
  }

  .world-events-title-wrap {
    padding: 20px 18px;
  }

  .world-events-title-wrap h2 {
    font-size: clamp(24px, 8vw, 42px);
  }

  .world-events-copy {
    width: calc(100% - 36px);
    padding-top: 30px;
  }

  .world-events-copy h2 {
    font-size: 26px;
  }

  .world-events-copy p {
    margin-top: 10px;
    font-size: 16px;
  }

  .trusted-strip {
    padding: 30px 0 6px;
  }

  #formats {
    padding-top: 12px;
  }

  .trusted-strip-copy {
    width: calc(100% - 36px);
    margin-bottom: 20px;
  }

  .trusted-track {
    gap: 14px;
    animation-duration: 62s;
  }

  .trusted-logo {
    width: 132px;
    height: 58px;
    padding: 1px 2px;
  }

  .event-photo-strip {
    --event-photo-gap: 6px;
    padding-bottom: 8px;
    background: transparent;
  }

  .event-photo-track {
    animation-duration: 140s;
  }

  .event-photo {
    height: clamp(220px, 74vw, 360px);
  }

  .event-photo-note {
    width: calc(100% - 36px);
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 15.5px;
    line-height: 1.42;
    text-align: left;
  }

  #services {
    padding-top: 8px;
    background: transparent;
  }

  #services .section-intro {
    margin-bottom: 14px;
  }

  #services .section-intro h2,
  #services .section-intro p:not(.eyebrow) {
    display: none;
  }

  .reviews-strip-copy {
    width: auto;
    margin: 0 18px 22px;
  }

  .reviews-strip-copy h2 {
    font-size: clamp(34px, 4.65vw, 66.78px);
  }

  .reviews-marquee {
    padding: 0 18px;
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  }

  .reviews-track {
    --reviews-duration: 220s;
  }

  .reviews-track.is-mobile-slider {
    gap: 12px;
  }

  .reviews-set {
    gap: 12px;
    padding-right: 12px;
  }

  .review-card {
    grid-template-columns: 1fr;
    gap: 0;
    align-content: start;
    align-items: start;
    flex-basis: min(560px, calc(100vw - 34px));
    min-height: auto;
    padding: 10px;
  }

  .reviews-track.is-mobile-slider .review-card {
    flex-basis: 100%;
  }

  .review-photo-wrap {
    height: clamp(190px, 56vw, 240px);
  }

  .review-photo {
    min-height: 0;
  }

  .review-content {
    gap: 9px;
    padding: 0 4px 6px;
  }

  .review-meta strong {
    font-size: 15px;
  }

  .review-meta span,
  .review-card p {
    font-size: 13px;
    line-height: 1.38;
  }

  .review-stars {
    font-size: 15px;
  }

  .reviews-mobile-controls {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    align-items: center;
    gap: 12px;
    width: min(360px, calc(100% - 36px));
    margin: 16px auto 0;
  }

  .hero-video {
    object-fit: contain;
    object-position: center top;
    background: #000;
  }

  .hero h1 {
    font-size: clamp(56px, 21vw, 86px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-social-links {
    flex-wrap: nowrap;
    gap: 6px;
  }

  .hero-social-links .social-icon-link {
    width: min(48px, calc((100vw - 72px) / 7));
    height: min(48px, calc((100vw - 72px) / 7));
  }

  .music-platform-links .social-icon-link {
    width: min(54px, calc((100vw - 64px) / 4));
    height: min(54px, calc((100vw - 64px) / 4));
  }

  .social-icon-link svg {
    width: min(24px, 6vw);
    height: min(24px, 6vw);
  }

  .button {
    width: 100%;
  }

  .services-tech-cta {
    margin: 0;
  }

  .card-body .services-tech-cta {
    margin-top: 18px;
  }

  .technical-button {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 13px 16px;
  }

  .pricing-section {
    padding-top: 34px;
  }

  .pricing-return-button {
    top: 12px;
    width: 42px;
    height: 42px;
    margin-top: -24px;
    font-size: 30px;
  }

  .pricing-brand {
    width: min(260px, 72vw);
    height: 48px;
    margin-top: -4px;
  }

  .pricing-grid,
  .equipment-rental-grid,
  .equipment-rental-bonus-grid,
  .pricing-addons-grid,
  .pricing-bonus-grid,
  .pricing-details,
  .pricing-options-list {
    grid-template-columns: 1fr;
  }

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

  .equipment-rental-card .pricing-card-head {
    min-height: 0;
  }

  .equipment-rental-intro h2 {
    font-size: clamp(30px, 10vw, 44px);
  }

  .pricing-card-head {
    min-height: 0;
    padding: 22px 18px 20px;
  }

  .pricing-card-head h3 {
    font-size: 23px;
  }

  .pricing-card-body {
    padding: 20px 18px 22px;
  }

  .pricing-card-body p {
    font-size: 16px;
  }

  .pricing-card-body li {
    font-size: 14px;
  }

  .pricing-addons {
    padding: 20px 16px;
  }

  .pricing-addons-head {
    display: grid;
    gap: 14px;
  }

  .pricing-addons-head img {
    width: min(230px, 64vw);
    object-position: left center;
  }

  .pricing-addons-grid article {
    min-height: 0;
  }

  .pricing-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .pricing-primary-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .pricing-action-button {
    min-height: 58px;
    padding: 12px 8px;
    font-size: clamp(10px, 2.9vw, 12px);
  }

  .pricing-primary-actions .pricing-action-button {
    min-height: 66px;
    padding: 10px 5px;
    font-size: clamp(8px, 2.2vw, 10px);
  }

  .signal-choice-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signal-choice-cell {
    padding: 6px;
  }

  .signal-choice-button,
  .footer-choice-button {
    min-height: 44px;
    padding: 8px 7px;
    font-size: clamp(12.8px, 3.45vw, 14.5px);
    line-height: 1.05;
  }

  .signal-strip,
  .service-grid,
  .team-grid,
  .biography-skill-list,
  .choice-dialog-layout,
  .format-grid,
  .blog-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  #team-dialog .team-grid {
    grid-template-columns: 1fr;
  }

  .signal-strip div,
  .signal-choice-cell,
  .format-card,
  .timeline article {
    min-height: auto;
  }

  .signal-strip div {
    padding: 20px 18px;
  }

  .signal-strip span {
    margin-top: 8px;
  }

  .format-card > h3 {
    margin: 18px 18px 0;
  }

  .format-read-button {
    width: calc(100% - 36px);
    margin: 16px 18px 18px;
  }

  .format-details-dialog {
    width: calc(100vw - 18px);
  }

  .format-details-section,
  .tech-equipment-section {
    padding: 28px 18px 30px;
  }

  .blog-section {
    padding: 52px 16px 24px;
  }

  .blog-card {
    grid-template-rows: auto minmax(190px, 1fr);
  }

  .blog-card-media,
  .blog-card-media img {
    min-height: 190px;
  }

  .blog-article-hero img {
    max-height: 46svh;
  }

  .format-details-copy {
    font-size: 15px;
    line-height: 1.48;
  }

  .tech-equipment-list {
    gap: 10px;
  }

  .tech-equipment-item {
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    padding: 15px;
  }

  .tech-equipment-photo {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
  }

  .tech-equipment-number {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .signal-strip div,
  .signal-choice-cell {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-choice-cell:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .signal-choice-cell:nth-child(n + 3) {
    border-bottom: 0;
  }

  .signal-strip div:last-child,
  .signal-choice-cell:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .section,
  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .feature-card img {
    height: 230px;
  }

  .feature-card img.media-fit-contain {
    padding: 4px;
  }

  .equipment-photo {
    min-height: 320px;
  }

  .contact-links a {
    width: 100%;
    justify-content: center;
  }

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

  .contact-form .button {
    width: 100%;
  }

  .contact-action-button {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .content-dialog,
  .gallery-dialog {
    width: calc(100vw - 18px);
    max-height: calc(100svh - 18px);
  }

  .dialog-shell {
    max-height: calc(100svh - 18px);
  }

  .dialog-close {
    top: 10px;
    width: 42px;
    height: 42px;
  }

  .faq-dialog-item summary {
    min-height: 58px;
    padding: 15px 16px;
    gap: 12px;
  }

  .faq-dialog-answer {
    padding: 0 16px 18px;
  }

  .gallery-shell {
    grid-template-columns: 1fr;
    min-height: calc(100svh - 18px);
    padding: 12px;
  }

  .gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 44px;
    height: 44px;
    transform: translateY(-50%);
  }

  .gallery-prev {
    left: 12px;
  }

  .gallery-next {
    right: 12px;
  }

  .gallery-image {
    max-height: calc(100svh - 110px);
  }

  .site-footer {
    padding: 44px 18px 22px;
  }

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

  .footer-choice-button {
    width: 100%;
  }

  .footer-social-links {
    flex-wrap: nowrap;
  }

  .footer-bottom {
    display: grid;
  }

  body {
    --mobile-header-offset: calc(112px + env(safe-area-inset-top));
    padding-top: var(--mobile-header-offset);
    background: #050606;
  }

  html {
    scroll-padding-top: calc(112px + env(safe-area-inset-top));
  }

  .site-motion-bg,
  .site-motion-scrim {
    display: block;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .site-motion-bg {
    z-index: 0;
    object-fit: cover;
    object-position: center;
    opacity: 0.6;
    filter: saturate(1.24) contrast(1.1) brightness(1.12);
  }

  .site-motion-scrim {
    z-index: 0;
    background:
      radial-gradient(circle at 50% 18%, rgba(255, 230, 66, 0.11), transparent 34%),
      linear-gradient(180deg, rgba(5, 6, 6, 0.22), rgba(5, 6, 6, 0.7) 44%, rgba(5, 6, 6, 0.88));
  }

  .site-header,
  main,
  .site-footer {
    position: relative;
    z-index: 1;
  }

  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 0;
    gap: 10px;
    z-index: 40;
    padding: calc(10px + env(safe-area-inset-top)) 12px 8px;
    background: rgba(5, 6, 6, 0.92);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
  }

  .brand {
    width: min(190px, calc(100vw - 188px));
    height: 40px;
  }

  .brand-mark-logo {
    object-fit: cover;
    object-position: center;
  }

  .language-switcher {
    position: absolute;
    top: calc(10px + env(safe-area-inset-top));
    right: 12px;
    grid-template-columns: repeat(4, 32px);
    gap: 5px;
    width: 143px;
  }

  .language-button {
    height: 34px;
    font-size: 11px;
  }

  .main-nav {
    position: relative;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    padding: 7px 82px 2px 0;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    min-height: 34px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.07);
    color: var(--white);
    font-size: 13px;
    font-weight: 850;
    line-height: 1;
    scroll-snap-align: start;
  }

  .nav-scroll-cue {
    display: none;
  }

  .site-header::before {
    content: "";
    position: absolute;
    top: calc(60px + env(safe-area-inset-top));
    right: 0;
    z-index: 2;
    width: 62px;
    height: 44px;
    background: linear-gradient(90deg, rgba(8, 9, 9, 0), rgba(8, 9, 9, 0.88) 58%, rgba(8, 9, 9, 0.98));
    pointer-events: none;
  }

  .site-header::after {
    content: "";
    position: absolute;
    top: calc(105px + env(safe-area-inset-top));
    right: 14px;
    left: 14px;
    z-index: 3;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background:
      linear-gradient(90deg, rgba(255, 230, 66, 0.08), rgba(255, 230, 66, 0.38) 74%, rgba(255, 230, 66, 0.82)),
      linear-gradient(90deg, transparent 0%, transparent 34%, rgba(255, 230, 66, 0.16) 44%, rgba(255, 255, 255, 0.92) 52%, rgba(255, 230, 66, 0.96) 58%, transparent 72%, transparent 100%);
    background-size: 100% 100%, 190% 100%;
    background-position: 0 0, -140% 0;
    box-shadow: 0 0 0 1px rgba(255, 230, 66, 0.12), 0 0 20px rgba(255, 230, 66, 0.18);
    pointer-events: none;
    animation: nav-swipe-line 2.4s ease-in-out infinite;
  }

  .main-nav .nav-mobile-hidden {
    display: none;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 0 18px max(14px, env(safe-area-inset-bottom));
    background: transparent;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.72) 74%, rgba(0, 0, 0, 0.94) 100%),
      linear-gradient(90deg, rgba(8, 9, 9, 0.22), rgba(8, 9, 9, 0.06));
  }

  .hero-video {
    position: relative;
    inset: auto;
    display: block;
    width: calc(100% + 36px);
    height: auto;
    aspect-ratio: 16 / 9;
    margin: 0 -18px;
    object-fit: cover;
    object-position: center;
    background: #000;
  }

  .hero-content {
    transform: none;
    padding-top: 14px;
  }

  .hero .eyebrow {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .hero h1 {
    max-width: 340px;
    font-size: clamp(44px, 16vw, 68px);
    line-height: 0.9;
  }

  .hero-lead {
    margin-top: 12px;
    font-size: 14.5px;
    line-height: 1.32;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 9px;
    margin-top: 16px;
  }

  .hero-actions .button {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: auto;
    min-width: 0;
    min-height: 42px;
    padding: 10px 10px;
    font-size: 11.5px;
    line-height: 1.12;
    animation: hero-cta-pulse 3s ease-in-out infinite;
  }

  .hero-actions .button::before {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: -1;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 34%, rgba(255, 230, 66, 0.32) 50%, rgba(255, 255, 255, 0.08) 66%, transparent 100%);
    transform: translateX(-125%);
    animation: hero-cta-sheen 4s ease-in-out infinite;
  }

  .hero-actions a[href="#pricing-dialog"] {
    order: 1;
  }

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

  .hero-actions a[href="#contact"] {
    order: 3;
    border-color: rgba(255, 230, 66, 0.55);
    animation-delay: 0.35s;
  }

  .hero-actions a[href="#contact"]::before {
    animation-delay: 0.55s;
  }

  .hero-actions .hero-call-button {
    order: 4;
  }

  .hero-social-links {
    margin-top: 14px;
  }

  .signal-strip,
  .signal-choice-strip,
  .world-events,
  .trusted-strip,
  .section,
  .section-dark,
  .reviews-strip,
  .contact-section,
  .site-footer {
    background: rgba(8, 9, 9, 0.78);
    backdrop-filter: blur(2px);
  }

  .event-photo-strip.section-dark,
  #services.section {
    background: transparent;
  }

  .event-photo-strip.section-dark {
    backdrop-filter: none;
  }

  .feature-card,
  .format-card,
  .blog-card,
  .review-card,
  .contact-form,
  .contact-info-card,
  .contact-expect-card,
  .footer-choice-button {
    backdrop-filter: blur(4px);
  }

  .signal-choice-button,
  .footer-choice-button {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid rgba(255, 230, 66, 0.62);
    box-shadow:
      0 0 0 1px rgba(255, 230, 66, 0.12),
      0 0 22px rgba(255, 230, 66, 0.16);
    animation: signal-choice-pulse 2.8s ease-in-out infinite;
  }

  .signal-choice-button::before,
  .footer-choice-button::before {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: -1;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.18) 34%, rgba(255, 255, 255, 0.54) 48%, rgba(255, 255, 255, 0.16) 62%, transparent 100%);
    transform: translateX(-125%);
    animation: signal-choice-sheen 3.8s ease-in-out infinite;
  }

  .signal-choice-cell:nth-child(2) .signal-choice-button,
  .footer-choice-grid .footer-choice-button:nth-child(2) {
    animation-delay: 0.22s;
  }

  .signal-choice-cell:nth-child(2) .signal-choice-button::before,
  .footer-choice-grid .footer-choice-button:nth-child(2)::before {
    animation-delay: 0.35s;
  }

  .signal-choice-cell:nth-child(3) .signal-choice-button,
  .footer-choice-grid .footer-choice-button:nth-child(3) {
    animation-delay: 0.44s;
  }

  .signal-choice-cell:nth-child(3) .signal-choice-button::before,
  .footer-choice-grid .footer-choice-button:nth-child(3)::before {
    animation-delay: 0.7s;
  }

  .signal-choice-cell:nth-child(4) .signal-choice-button,
  .footer-choice-grid .footer-choice-button:nth-child(4) {
    animation-delay: 0.66s;
  }

  .signal-choice-cell:nth-child(4) .signal-choice-button::before,
  .footer-choice-grid .footer-choice-button:nth-child(4)::before {
    animation-delay: 1.05s;
  }

  .footer-choice-grid .footer-choice-button:nth-child(5) {
    animation-delay: 0.88s;
  }

  .footer-choice-grid .footer-choice-button:nth-child(5)::before {
    animation-delay: 1.4s;
  }
}

@keyframes signal-choice-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(255, 230, 66, 0.12),
      0 0 18px rgba(255, 230, 66, 0.12);
  }

  50% {
    box-shadow:
      0 0 0 2px rgba(255, 230, 66, 0.32),
      0 0 32px rgba(255, 230, 66, 0.34);
  }
}

@keyframes signal-choice-sheen {
  0%,
  48% {
    transform: translateX(-125%);
  }

  78%,
  100% {
    transform: translateX(125%);
  }
}

@keyframes hero-cta-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(255, 230, 66, 0.08),
      0 0 16px rgba(255, 230, 66, 0.08);
  }

  50% {
    box-shadow:
      0 0 0 2px rgba(255, 230, 66, 0.28),
      0 0 24px rgba(255, 230, 66, 0.22);
  }
}

@keyframes hero-cta-sheen {
  0%,
  52% {
    transform: translateX(-125%);
  }

  82%,
  100% {
    transform: translateX(125%);
  }
}

@keyframes tech-button-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(255, 230, 66, 0.08),
      0 0 18px rgba(255, 230, 66, 0.1),
      0 18px 42px rgba(0, 0, 0, 0.32);
  }

  50% {
    box-shadow:
      0 0 0 2px rgba(255, 230, 66, 0.3),
      0 0 30px rgba(255, 230, 66, 0.26),
      0 18px 42px rgba(0, 0, 0, 0.32);
  }
}

@keyframes tech-button-sheen {
  0%,
  52% {
    transform: translateX(-125%);
  }

  82%,
  100% {
    transform: translateX(125%);
  }
}

@keyframes format-read-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(255, 230, 66, 0.06),
      0 0 14px rgba(255, 230, 66, 0.08);
  }

  50% {
    box-shadow:
      0 0 0 2px rgba(255, 230, 66, 0.26),
      0 0 24px rgba(255, 230, 66, 0.2);
  }
}

@keyframes format-read-sheen {
  0%,
  54% {
    transform: translateX(-125%);
  }

  84%,
  100% {
    transform: translateX(125%);
  }
}

@keyframes nav-swipe-line {
  0%,
  100% {
    opacity: 0.76;
    background-position: 0 0, -150% 0;
    box-shadow: 0 0 0 1px rgba(255, 230, 66, 0.1), 0 0 14px rgba(255, 230, 66, 0.14);
  }

  52% {
    opacity: 1;
    background-position: 0 0, 120% 0;
    box-shadow: 0 0 0 1px rgba(255, 230, 66, 0.18), 0 0 28px rgba(255, 230, 66, 0.3);
  }

  78% {
    opacity: 0.88;
    background-position: 0 0, 150% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trusted-track,
  .event-photo-track,
  .reviews-track {
    animation: none;
  }

  .signal-choice-button,
  .signal-choice-button::before,
  .footer-choice-button,
  .footer-choice-button::before,
  .footer-blog-button,
  .footer-blog-button::before,
  .footer-recommendation-card::before,
  .hero-actions .button,
  .hero-actions .button::before,
  .technical-button,
  .technical-button::before,
  .format-read-button,
  .format-read-button::before,
  .pricing-action-button,
  .pricing-action-button::before,
  .nav-scroll-cue,
  .main-nav::after,
  .site-header::after {
    animation: none;
  }
}

.footer-seo-links {
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.footer-seo-summary {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  color: rgba(241, 242, 237, 0.42);
  cursor: pointer;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-seo-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.footer-seo-groups nav {
  display: grid;
  gap: 6px;
  align-content: start;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.028);
}

.footer-seo-groups h3 {
  margin: 0 0 5px;
  font-size: 12px;
  color: rgba(255, 230, 66, 0.76);
  text-transform: uppercase;
}

.footer-seo-group-label {
  margin-top: 8px;
  color: rgba(255, 230, 66, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-seo-groups a {
  color: rgba(241, 242, 237, 0.56);
  text-decoration: none;
  font-size: 12.5px;
  line-height: 1.25;
  opacity: 1;
}

.footer-seo-groups a:hover {
  color: var(--yellow);
  opacity: 1;
}

.seo-page-body {
  min-height: 100vh;
  color: var(--text);
  background: #050606;
  font-family: var(--site-font);
}

.seo-page-body--polished {
  background:
    linear-gradient(135deg, rgba(255, 230, 66, 0.06), rgba(5, 6, 6, 0) 34%),
    linear-gradient(180deg, #050606 0%, #080909 48%, #050606 100%);
}

.seo-page-body--equipment {
  background:
    linear-gradient(140deg, rgba(47, 196, 178, 0.08), rgba(5, 6, 6, 0) 32%),
    linear-gradient(180deg, #050606 0%, #080909 100%);
}

.seo-page-body--poznan {
  background:
    linear-gradient(145deg, rgba(255, 230, 66, 0.08), rgba(5, 6, 6, 0) 36%),
    linear-gradient(180deg, #040505 0%, #090a0a 100%);
}

.seo-page-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 6, 6, 0.94);
  backdrop-filter: blur(16px);
}

.seo-page-brand img {
  width: min(236px, 42vw);
  height: auto;
  display: block;
}

.seo-page-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.seo-page-nav a,
.seo-page-footer a,
.seo-related-links a,
.seo-case-card a {
  color: var(--yellow);
  text-decoration: none;
}

.seo-page-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 230, 66, 0.32);
  border-radius: 999px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.seo-page-nav a:hover,
.seo-page-nav a:focus-visible {
  border-color: var(--yellow);
  background: rgba(255, 230, 66, 0.12);
}

.seo-page-main {
  padding: 0 clamp(18px, 5vw, 72px) 70px;
}

.seo-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: 72svh;
  padding: clamp(38px, 7vw, 82px) 0;
}

.seo-page-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.94;
}

.seo-page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 24px);
}

.seo-page-hero-media {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    #070808;
  height: min(58svh, 560px);
  min-height: 320px;
  display: grid;
  place-items: center;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.seo-page-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.seo-page-hero-media--square {
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: 0;
}

.seo-page-hero-media--contain {
  aspect-ratio: 16 / 10;
  height: auto;
  min-height: 0;
  padding: clamp(8px, 1.2vw, 16px);
}

.seo-page-hero-media--equipment {
  background: #0b0d0d;
}

.seo-page-hero-media--equipment img {
  background: #c9c9c9;
}

.seo-page-body--polished .seo-content-grid article,
.seo-page-body--polished .seo-case-card,
.seo-page-body--polished .seo-review-card,
.seo-page-body--polished .seo-inline-cta,
.seo-page-body--equipment .seo-content-grid article,
.seo-page-body--equipment .seo-case-card,
.seo-page-body--equipment .seo-review-card,
.seo-page-body--equipment .seo-inline-cta {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.028)),
    rgba(255, 255, 255, 0.025);
}

.seo-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.seo-content-grid,
.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.seo-content-grid article,
.seo-case-card,
.seo-review-card,
.seo-inline-cta {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.seo-content-grid h2,
.seo-case-card h2,
.seo-review-card h2,
.seo-inline-cta h2,
.seo-page-footer h2 {
  margin-top: 0;
  font-size: clamp(24px, 3vw, 36px);
}

.seo-content-grid p,
.seo-content-grid li,
.seo-case-card p,
.seo-review-card p,
.seo-inline-cta p,
.seo-page-footer p {
  color: var(--muted);
}

.seo-content-grid details {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.seo-content-grid summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 700;
}

.seo-inline-cta {
  margin-top: 18px;
}

.seo-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.seo-filter-row span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--muted);
}

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

.seo-review-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #070808;
  border-radius: 6px;
  margin-bottom: 18px;
}

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

.seo-card-meta {
  color: var(--yellow) !important;
  text-transform: uppercase;
  font-size: 13px;
}

.seo-page-footer {
  display: grid;
  gap: 20px;
  padding: 38px clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #050606;
}

.seo-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

@media (max-width: 860px) {
  .seo-page-hero,
  .seo-content-grid,
  .seo-card-grid,
  .seo-review-grid,
  .seo-case-grid {
    grid-template-columns: 1fr;
  }

  .footer-seo-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-page-header {
    align-items: center;
    flex-direction: column;
  }

  .seo-page-nav {
    justify-content: center;
  }

  .seo-page-hero-media {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .seo-page-hero-media--square {
    aspect-ratio: 1 / 1;
  }
}

body,
body [class],
body [class] *,
button,
input,
select,
textarea {
  font-family: var(--site-font) !important;
  font-weight: 300 !important;
}

@media (max-width: 680px) {
  .hero .eyebrow,
  #formats .section-intro .eyebrow,
  #services .section-intro .eyebrow,
  .pricing-section .section-intro .eyebrow,
  .reviews-strip-copy .eyebrow,
  .contact-form-header .eyebrow {
    font-size: 14px;
  }

  #formats .section-intro h2,
  .pricing-section .section-intro h2,
  .reviews-strip-copy h2 {
    font-size: 30px;
  }

  .technical-button {
    font-size: 15px;
  }

  .contact-expect-card {
    margin-top: -9px;
    margin-bottom: -35px;
    min-height: 224px;
    padding: 6px 50px;
    border-width: 0;
  }

  .site-footer {
    margin-top: -27px;
  }

  body .footer-choice-button {
    font-weight: 600 !important;
  }

  .footer-seo-links {
    opacity: 0.72;
  }

  .footer-seo-summary {
    font-size: 10px;
  }

  .footer-seo-groups {
    grid-template-columns: 1fr;
  }
}


/* Multilingual SEO landing additions */

.seo-language-switcher a {
  color: var(--text);
  text-decoration: none;
}

.seo-language-switcher a:hover,
.seo-language-switcher a:focus-visible {
  color: var(--accent);
}

.seo-language-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.seo-language-switcher a {
  min-width: 38px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

.seo-language-switcher a.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #17130a;
}

.seo-long-copy {
  margin: 18px 0;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.seo-long-copy h2 {
  margin-top: 0;
  font-size: clamp(26px, 4vw, 44px);
}

.seo-long-copy p {
  max-width: 980px;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
}

.seo-content-grid--top ul {
  margin-bottom: 0;
}

@media (max-width: 860px) {
  .seo-language-switcher {
    width: 100%;
  }
}

/* End multilingual SEO landing additions */


/* DJ signature strengths */
.dj-features-section {
  width: min(1180px, calc(100% - 32px));
  margin: 48px auto;
  padding: 40px 0 8px;
  border-top: 1px solid rgba(244, 196, 95, 0.34);
}

.dj-features-section__intro {
  max-width: 820px;
  margin-bottom: 24px;
}

.dj-features-section__kicker {
  margin: 0 0 8px;
  color: var(--accent, #f4c45f);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.dj-features-section h2,
.biography-skills > h3 {
  margin: 0;
  color: var(--white, #fff);
  font-size: 34px;
  font-weight: 300;
  line-height: 1.12;
}

.dj-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.dj-feature-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #111515;
}

.dj-feature-card__media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #080909;
}

.dj-feature-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.dj-feature-card:hover .dj-feature-card__media img {
  transform: scale(1.025);
}

.dj-feature-card__body {
  flex: 1;
  padding: 22px;
}

.dj-feature-card__body h3,
.biography-content .dj-feature-card__body h3 {
  margin: 0 0 10px;
  color: var(--accent, #f4c45f);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.22;
}

.dj-feature-card__body p,
.biography-content .dj-feature-card__body p {
  margin: 0;
  max-width: none;
  color: var(--muted, #c7cccc);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
}

.biography-skills {
  margin-top: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}

.biography-skills > h3 {
  max-width: 820px;
  margin-bottom: 24px;
}

@media (max-width: 760px) {
  .dj-features-section {
    width: min(100% - 24px, 1180px);
    margin: 36px auto;
    padding-top: 30px;
  }

  .dj-features-section h2,
  .biography-skills > h3 {
    font-size: 28px;
  }

  .dj-feature-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .dj-feature-card__body {
    padding: 18px;
  }

  .dj-feature-card__body h3,
  .biography-content .dj-feature-card__body h3 {
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dj-feature-card__media img {
    transition: none;
  }
}


/* SEO intent pages 2026-06-18 */
.footer-search-intents__group {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}

.footer-search-intents__group h4 {
  margin: 4px 0 2px;
  color: rgba(241, 242, 237, 0.82);
  font-size: 11px;
  text-transform: uppercase;
}

.footer-seo-groups .footer-search-intents {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 24px;
}

.footer-search-intents > h3 {
  grid-column: 1 / -1;
}

.seo-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  color: var(--muted);
  font-size: 13px;
}

.seo-breadcrumbs a,
.seo-related-index a {
  color: var(--yellow);
  text-decoration: none;
}

.seo-intent-page .seo-page-hero {
  min-height: 64svh;
}

.seo-intent-page .seo-page-hero-media img {
  object-fit: contain;
  object-position: center;
}

.seo-related-index {
  display: grid;
  gap: 10px;
}

.seo-related-index a {
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-content-grid--bottom {
  margin-top: 18px;
}

@media (max-width: 860px) {
  .seo-intent-page .seo-page-hero {
    min-height: 0;
  }

  .footer-seo-groups .footer-search-intents {
    grid-template-columns: 1fr;
  }

  .footer-search-intents > h3 {
    grid-column: auto;
  }
}
/* End SEO intent pages */

/* Cross-service buttons 2026-06-19 */
.seo-service-crosslinks {
  margin-top: 18px;
}

.seo-service-crosslinks > h2,
.seo-service-crosslinks > p {
  margin-top: 0;
}

.seo-service-crosslinks > p {
  color: var(--muted);
}

.seo-service-recommendations {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
}

.seo-service-recommendations a {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 16px 13px 18px;
  border: 1px solid rgba(242, 205, 61, 0.88);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(242, 205, 61, 0.16), rgba(242, 205, 61, 0.07));
  color: var(--yellow);
  font-weight: 800;
  line-height: 1.25;
  text-align: left;
  text-decoration: none;
  box-shadow: inset 3px 0 0 var(--yellow);
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.seo-service-recommendations a::after {
  content: "›";
  display: inline-grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: #11120f;
  font-size: 24px;
  line-height: 1;
}

.seo-service-recommendations a:hover,
.seo-service-recommendations a:focus-visible {
  transform: translateX(3px);
  border-color: var(--yellow);
  background: var(--yellow);
  color: #11120f;
}

.seo-service-recommendations a:hover::after,
.seo-service-recommendations a:focus-visible::after {
  background: #11120f;
  color: var(--yellow);
}
/* End cross-service buttons */


/* Trusted and equipment update 2026-06-19 */
.tech-equipment-section .equipment-video-actions {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(940px, 100%);
}

.tech-equipment-item {
  grid-template-columns: minmax(240px, 34%) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 38px);
}

.tech-equipment-photo {
  aspect-ratio: 4 / 3;
}

.footer-booking .footer-trust-button {
  width: min(300px, 100%);
  margin: 22px 0 0;
}

.seo-trust-page .seo-page-hero {
  min-height: auto;
}

.seo-trust-page .seo-page-hero-media {
  height: auto;
  min-height: 0;
  aspect-ratio: 1 / 1;
}

.seo-trust-page .seo-page-hero-media img {
  object-fit: contain;
  object-position: center;
}

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

.trust-faq-card {
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.trust-faq-card h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
}

.trust-faq-card p,
.trust-faq-card li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.trust-faq-card ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.trust-faq-card li::marker {
  color: var(--yellow);
}

.trust-closing {
  margin: 20px 0 0;
  padding: clamp(22px, 3vw, 34px);
  border-left: 4px solid var(--yellow);
  background: rgba(255, 230, 66, 0.07);
  color: var(--text);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

@media (max-width: 760px) {
  .tech-equipment-section .equipment-video-actions,
  .trust-faq-grid {
    grid-template-columns: 1fr;
  }

  .tech-equipment-item {
    grid-template-columns: 1fr;
  }

  .tech-equipment-photo {
    width: 100%;
    aspect-ratio: 16 / 10;
  }
}

/* Mobile art direction: desktop keeps every original image source. */
picture.mobile-picture {
  display: contents;
}

/* Preserve text embedded at the bottom of host + DJ hero artwork. */
@media (max-width: 860px) {
  .seo-host-dj-page .seo-page-hero-media {
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
  }

  .seo-host-dj-page .seo-page-hero-media img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }
}
