@font-face {
  font-family: "Hanken Grotesk";
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
  src: url("public/fonts/hanken-grotesk/HankenGrotesk-VariableFont_wght.ttf")
    format("truetype");
}

@font-face {
  font-family: "Hanken Grotesk";
  font-display: swap;
  font-style: italic;
  font-weight: 100 900;
  src: url("public/fonts/hanken-grotesk/HankenGrotesk-Italic-VariableFont_wght.ttf")
    format("truetype");
}

:root {
  --black: #050505;
  --ink: #111111;
  --white: #ffffff;
  --soft: #f5f2ee;
  --charcoal: #14110f;
  --line: rgba(17, 17, 17, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --orange: #ff4f22;
  --orange-dark: #db3718;
  --muted: rgba(17, 17, 17, 0.66);
  --muted-dark: rgba(255, 255, 255, 0.68);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
  --max: 1180px;
  --wide: 1440px;
  font-size: 16px;
  scroll-behavior: auto;
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Hanken Grotesk", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  background: var(--black);
  opacity: 0;
  transition: opacity 180ms ease;
}

body.is-soft-jumping::before {
  opacity: 0.28;
}

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

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

::selection {
  background: var(--orange);
  color: var(--white);
}

.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 17rem),
    radial-gradient(ellipse at 50% 45%, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.44) 18rem, rgba(0, 0, 0, 0.12) 30rem, transparent 43rem);
}

.cinematic-section::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 79, 34, 0.18), transparent 26rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.82));
}

.hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
  width: 112%;
  margin-left: -6%;
  opacity: 0.78;
  filter: saturate(1.16) contrast(1.08);
}

.mobile-hero-bg {
  display: none;
}

.hero-panel {
  position: relative;
  flex: 1 1 0;
  height: 100%;
  margin-right: -4.8vw;
  overflow: hidden;
  clip-path: polygon(13% 0, 100% 0, 87% 100%, 0 100%);
}

.hero-panel:first-child {
  clip-path: polygon(0 0, 100% 0, 87% 100%, 0 100%);
}

.hero-panel:last-child {
  margin-right: 0;
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-panel-center {
  flex: 1.55 1 0;
}

.hero-panel picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-panel img {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  animation: slowDrift 18s ease-in-out infinite alternate;
}

.hero-panel:nth-child(2) img {
  animation-delay: -5s;
  object-position: 48% center;
}

.hero-panel:nth-child(3) img {
  animation-delay: -9s;
}

.hero-panel:nth-child(4) img {
  animation-delay: -13s;
  object-position: 64% center;
}

.hero-panel:nth-child(5) img {
  animation-delay: -16s;
}

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(22px, 4vw, 56px);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    padding 220ms ease,
    backdrop-filter 220ms ease;
}

.site-nav.is-scrolled {
  background: rgba(5, 5, 5, 0.78);
  padding-top: 18px;
  padding-bottom: 18px;
  backdrop-filter: blur(16px);
}

.nav-logo {
  display: inline-flex;
  width: clamp(104px, 12vw, 160px);
  height: 46px;
  overflow: hidden;
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-glow {
  filter:
    invert(1)
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.35))
    drop-shadow(0 0 28px rgba(255, 255, 255, 0.16));
}

.nav-links,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.88rem;
  font-weight: 680;
}

.nav-links {
  color: rgba(255, 255, 255, 0.78);
}

.nav-links a,
.site-footer a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--orange);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 680;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.48);
  padding: 12px 20px;
  color: var(--white);
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle span + span {
  margin-top: 6px;
}

.site-nav.menu-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.site-nav.menu-open .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 76px;
  right: 16px;
  left: 16px;
  z-index: 4;
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 5, 0.94);
  padding: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  visibility: hidden;
  backdrop-filter: blur(18px);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 220ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.mobile-menu a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding: 16px 10px;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 640;
  text-align: center;
}

.mobile-menu a:last-child:not(.mobile-menu-cta) {
  border-bottom: 0;
  color: var(--orange);
}

.mobile-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 12px;
  border: 1px solid rgba(255, 79, 34, 0.72);
  background: rgba(255, 79, 34, 0.08);
  color: var(--orange);
  font-weight: 720;
}

.mobile-menu .mobile-menu-cta {
  border-bottom: 1px solid rgba(255, 79, 34, 0.72);
  color: var(--orange);
}

.button {
  border: 1px solid transparent;
  padding: 15px 28px;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

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

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

.button-ghost {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.button-ghost:hover,
.nav-cta:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
  text-transform: uppercase;
}

.button-dark:hover {
  background: var(--white);
  color: var(--ink);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  width: min(100%, 780px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: clamp(52px, 7vw, 104px) 22px clamp(62px, 7vw, 100px);
  text-align: center;
}

.hero-logo {
  width: min(92vw, 1360px);
  height: clamp(272px, 32vw, 396px);
  margin-bottom: clamp(-36px, -3vw, -18px);
  object-fit: contain;
  object-position: center;
}

.section-kicker {
  margin: 0;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 680;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.experience-eyebrow {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 660;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.keep-together {
  white-space: nowrap;
}

.desktop-break {
  display: block;
}

h1 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(2.45rem, 4.4vw, 4.45rem);
  font-weight: 660;
  line-height: 1.02;
}

.hero-text {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.1rem, 1.55vw, 1.55rem);
  line-height: 1.42;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.section-pad {
  padding: clamp(84px, 9vw, 142px) clamp(22px, 4vw, 56px);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.cinematic-section {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.section-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: saturate(0.85) contrast(1.1);
}

.proposition {
  padding: clamp(86px, 10vw, 150px) clamp(22px, 4vw, 56px);
}

.proposition .section-inner {
  position: relative;
  z-index: 2;
}

.concept-section {
  padding: clamp(86px, 9vw, 136px) clamp(22px, 4vw, 56px);
}

.concept-section .section-bg-image {
  opacity: 0.38;
  filter: saturate(1.08) contrast(1.05);
}

.concept-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(42px, 6vw, 88px);
}

.concept-copy {
  display: grid;
  gap: 22px;
}

.concept-copy h2 {
  margin-bottom: 4px;
}

.concept-copy p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: clamp(1.04rem, 1.28vw, 1.18rem);
  line-height: 1.58;
}

.concept-section .fusion-grid {
  grid-template-columns: minmax(0, 1fr) minmax(64px, 0.18fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 38px);
}

.concept-section .fusion-icon {
  width: clamp(92px, 9vw, 140px);
  margin-bottom: 22px;
}

.concept-section .fusion-item h3 {
  font-size: clamp(1.05rem, 1.42vw, 1.45rem);
}

.concept-section .fusion-item p {
  max-width: 340px;
  font-size: clamp(0.98rem, 1.08vw, 1.06rem);
  line-height: 1.5;
}

.proposition-heading {
  display: grid;
  justify-items: center;
  gap: 22px;
  margin-bottom: clamp(54px, 6vw, 82px);
  text-align: center;
}

.proposition h2,
.section-heading h2,
  .intro h2,
  .value h2,
  .final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(1.85rem, 3.2vw, 3.25rem);
  font-weight: 660;
  line-height: 1.08;
}

.fusion-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(90px, 0.22fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
}

.fusion-item {
  display: grid;
  justify-items: center;
  text-align: center;
}

.fusion-icon {
  width: clamp(118px, 13vw, 190px);
  margin-bottom: 30px;
}

.fusion-item h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 640;
  letter-spacing: 0.08em;
}

.fusion-item p {
  max-width: 440px;
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: clamp(1.06rem, 1.4vw, 1.25rem);
  line-height: 1.58;
}

.fusion-plus {
  position: relative;
  width: clamp(92px, 10vw, 142px);
  height: clamp(92px, 10vw, 142px);
  justify-self: center;
}

.plus-horizontal,
.plus-vertical {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  background: rgba(255, 255, 255, 0.92);
  transform: translate(-50%, -50%);
}

.plus-horizontal {
  width: 100%;
  height: 2px;
}

.plus-vertical {
  width: 2px;
  height: 100%;
}

.intro {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.93), rgba(20, 17, 15, 0.86)),
    url("public/images/orange_blurry.png") center / cover;
  color: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 7vw, 104px);
  align-items: start;
}

.intro-copy {
  display: grid;
  gap: 24px;
}

.intro-text {
  display: grid;
  gap: 24px;
  border-left: 2px solid var(--orange);
  padding-left: clamp(26px, 4vw, 52px);
}

.intro-text p,
.section-heading > p:not(.section-kicker),
.experience-copy p,
.final-cta p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.62;
}

.intro .intro-text p {
  color: var(--muted-dark);
}

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

.how .section-heading > p:not(.section-kicker) {
  color: var(--muted-dark);
}

.how .section-heading h2,
.work .section-heading h2 {
  color: var(--white);
}

.section-heading {
  display: grid;
  max-width: 850px;
  gap: 18px;
  margin-bottom: clamp(46px, 6vw, 82px);
}

.section-heading.center {
  justify-items: center;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.system-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: stretch;
}

.system-image {
  min-height: clamp(420px, 48vw, 660px);
  overflow: hidden;
}

.system-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
  transition: transform 900ms ease;
}

.system-image:hover img {
  transform: scale(1.025);
}

.system-list {
  display: grid;
  align-content: center;
  border-top: 1px solid var(--line-dark);
}

.system-beat {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--line-dark);
  padding: clamp(28px, 4vw, 48px) 0;
}

.system-beat span {
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 780;
}

.system-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.system-title img {
  width: 34px;
  height: 34px;
  opacity: 0.84;
  filter: invert(1);
}

.system-beat h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  font-weight: 660;
  line-height: 1.05;
}

.system-beat p {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  line-height: 1.58;
}

.themes {
  background: var(--white);
}

.theme-reel {
  position: relative;
  left: 50%;
  width: 100vw;
  overflow-x: auto;
  overflow-y: hidden;
  margin-left: -50vw;
  padding: 0 clamp(22px, 4vw, 56px);
  cursor: grab;
  mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  touch-action: pan-y;
  user-select: none;
}

.theme-reel::-webkit-scrollbar {
  display: none;
}

.theme-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: themeReel 68s linear infinite;
}

.theme-reel:hover .theme-track,
.theme-reel.is-user-controlled .theme-track {
  animation-play-state: paused;
}

.theme-reel.is-dragging {
  cursor: grabbing;
}

.theme-slide {
  position: relative;
  width: clamp(260px, 28vw, 430px);
  height: clamp(330px, 34vw, 520px);
  flex: 0 0 auto;
  margin: 0;
  background: var(--black);
  overflow: hidden;
}

.theme-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
  transition: transform 900ms ease;
}

.theme-entertainment img {
  object-position: 88% center;
}

.theme-slide:hover img {
  transform: scale(1.035);
}

.theme-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.66));
}

.theme-slide figcaption {
  position: absolute;
  z-index: 1;
  bottom: 20px;
  left: 20px;
  color: var(--white);
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
  font-weight: 660;
}

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

.work .section-heading h2 {
  max-width: 980px;
}

.experience-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 34px);
}

.experience {
  display: grid;
  align-content: start;
  gap: 24px;
}

.experience.reverse {
  grid-template-columns: 1fr;
}

.experience.reverse .experience-image {
  order: 0;
}

.experience-image {
  overflow: hidden;
}

.experience-image img {
  width: 100%;
  height: clamp(320px, 31vw, 460px);
  object-fit: cover;
  transition: transform 800ms ease;
}

.experience-caricature .experience-image img {
  object-position: 47% center;
}

.experience:hover .experience-image img {
  transform: scale(1.035);
}

.experience-copy h3 {
  margin: 12px 0 14px;
  color: var(--white);
  font-size: clamp(1.55rem, 2.1vw, 2.25rem);
  font-weight: 660;
  line-height: 1.05;
}

.experience-copy p {
  color: var(--muted-dark);
}

.real-moments {
  background: var(--black);
  color: var(--white);
}

.real-moments .section-heading {
  margin-bottom: clamp(28px, 3.8vw, 44px);
}

.real-moments .section-heading p {
  color: var(--muted-dark);
}

.real-moments .section-inner {
  width: min(100%, 1580px);
}

.real-moments-reel {
  display: contents;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr)) repeat(8, minmax(38px, 1.18fr));
  grid-template-areas:
    "large large large large exterior exterior exterior exterior style style style style result result result result"
    "large large large large exterior exterior exterior exterior style style style style result result result result"
    "large large large large video video video video style style style style result result result result"
    "large large large large video video video video style style style style result result result result";
  grid-auto-rows: clamp(118px, 10vw, 158px);
  gap: clamp(14px, 1.25vw, 18px);
  align-items: stretch;
  max-width: 1580px;
  min-height: 0;
  margin: 0 auto;
}

.moment-card {
  position: relative;
  display: block;
  height: 100%;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}

.moment-main {
  grid-area: large;
}

.moment-video-klepierre {
  grid-area: video;
}

.moment-cy-one {
  grid-area: exterior;
}

.moment-video-meadowhall {
  grid-area: style;
}

.moment-cy-two {
  grid-area: result;
}

.moment-copy {
  display: flex;
  align-items: flex-end;
  padding: clamp(20px, 2vw, 30px);
  background:
    linear-gradient(135deg, rgba(255, 79, 34, 0.14), rgba(255, 255, 255, 0.055)),
    #1b1513;
}

.moment-copy-accent {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 79, 34, 0.15)),
    #1d1613;
}

.moment-copy div {
  max-width: 33rem;
}

.moment-copy span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.moment-copy h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: clamp(1.04rem, 1.22vw, 1.38rem);
  font-weight: 660;
  line-height: 1.1;
}

.moment-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.82rem, 0.9vw, 0.94rem);
  line-height: 1.38;
}

.moment-card::after {
  display: none;
}

.moment-copy::after {
  display: none;
}

.moment-card video,
.moment-card img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  min-width: 0;
  min-height: 0;
}

.moment-card img {
  object-fit: cover;
}

.moment-card video {
  object-fit: cover;
  background: rgba(255, 255, 255, 0.035);
}

.moment-main img {
  object-position: 42% center;
}

.moment-cy-one img {
  object-position: 16% 72%;
}

.moment-cy-two img {
  object-position: center;
}

.moment-video-klepierre video {
  object-position: center;
  transform: translateY(3%) scale(1.06);
  transform-origin: center;
}

.moment-video-meadowhall video {
  object-fit: cover;
  object-position: center;
}

.clients-strip {
  overflow: hidden;
  padding: clamp(42px, 5.5vw, 70px) 0;
  background: var(--black);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.clients-inner {
  display: grid;
  justify-items: center;
  gap: clamp(26px, 3.2vw, 38px);
}

.clients-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(1rem, 1.35vw, 1.32rem);
  font-weight: 620;
  letter-spacing: 0.16em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.client-logo-reel {
  position: relative;
  left: 50%;
  width: 100vw;
  overflow: hidden;
  margin-left: -50vw;
  padding: 0 clamp(22px, 4vw, 56px);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.client-logo-track {
  --client-logo-gap: clamp(22px, 4vw, 64px);
  --client-logo-loop-distance: 0px;
  display: flex;
  width: max-content;
  gap: var(--client-logo-gap);
  animation: clientLogoReel 34s linear infinite;
}

.client-logo-reel:hover .client-logo-track {
  animation-play-state: paused;
}

.client-logo {
  display: grid;
  width: clamp(210px, 23vw, 330px);
  height: 104px;
  flex: 0 0 auto;
  place-items: center;
  opacity: 0.86;
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.client-logo-british img {
  max-width: 250px;
  max-height: 76px;
}

.client-logo-centennial img {
  max-width: 304px;
  max-height: 86px;
}

.client-logo-gpt img {
  max-width: 142px;
  max-height: 68px;
}

.client-logo-klepierre img {
  max-width: 272px;
  max-height: 80px;
}

.value {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.value::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.76) 48%, rgba(5, 5, 5, 0.94)),
    radial-gradient(circle at 78% 18%, rgba(255, 79, 34, 0.18), transparent 28rem);
}

.value-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: saturate(1.05) contrast(1.08);
}

.value-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(48px, 7vw, 94px);
  align-items: center;
}

.value-copy {
  display: grid;
  gap: 20px;
}

.value-copy p:not(.section-kicker) {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.58;
}

.performance-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 22px;
  min-height: 460px;
  border: 1px solid rgba(5, 5, 5, 0.82);
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.performance-panel::before {
  position: absolute;
  inset: -30%;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(110deg, transparent 0 42%, rgba(255, 79, 34, 0.08) 48%, transparent 54% 100%);
  transform: translateX(-18%);
  animation: panelSweep 6.5s ease-in-out infinite;
}

.panel-topline,
.metric-grid {
  position: relative;
  z-index: 1;
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(5, 5, 5, 0.58);
  font-size: 0.78rem;
  font-weight: 680;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.metric-card {
  display: grid;
  min-height: 146px;
  align-content: space-between;
  gap: 14px;
  border: 2px solid rgba(5, 5, 5, 0.88);
  padding: 20px;
  background: var(--white);
}

.metric-highlight {
  border-color: var(--orange);
  background: var(--orange);
}

.metric-wide {
  grid-column: 1 / -1;
  min-height: 142px;
}

.metric-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(5, 5, 5, 0.62);
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  color: var(--black);
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  font-weight: 640;
  line-height: 1.08;
}

.metric-card em {
  display: block;
  margin-top: 8px;
  color: rgba(5, 5, 5, 0.58);
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  font-style: normal;
  font-weight: 650;
}

.metric-highlight .metric-label,
.metric-highlight strong,
.metric-highlight em {
  color: var(--white);
}

.participation-card {
  grid-template-columns: minmax(160px, 0.74fr) minmax(220px, 1fr) minmax(132px, 0.52fr);
  align-items: end;
  min-height: 190px;
}

.participation-chart {
  display: grid;
  grid-template-columns: repeat(11, minmax(8px, 1fr));
  align-items: end;
  gap: 6px;
  height: 112px;
}

.participation-chart span {
  display: block;
  height: var(--h);
  min-height: 10px;
  background: rgba(5, 5, 5, 0.84);
  transform: scaleY(0.16);
  transform-origin: bottom;
}

.participation-chart .is-peak {
  background: var(--orange);
}

.performance-panel.is-visible .participation-chart span {
  animation: barRise 1.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.performance-panel.is-visible .participation-chart span:nth-child(2) {
  animation-delay: 70ms;
}

.performance-panel.is-visible .participation-chart span:nth-child(3) {
  animation-delay: 140ms;
}

.performance-panel.is-visible .participation-chart span:nth-child(4) {
  animation-delay: 210ms;
}

.performance-panel.is-visible .participation-chart span:nth-child(5) {
  animation-delay: 280ms;
}

.performance-panel.is-visible .participation-chart span:nth-child(6) {
  animation-delay: 350ms;
}

.performance-panel.is-visible .participation-chart span:nth-child(7) {
  animation-delay: 420ms;
}

.performance-panel.is-visible .participation-chart span:nth-child(8) {
  animation-delay: 490ms;
}

.performance-panel.is-visible .participation-chart span:nth-child(9) {
  animation-delay: 560ms;
}

.performance-panel.is-visible .participation-chart span:nth-child(10) {
  animation-delay: 630ms;
}

.performance-panel.is-visible .participation-chart span:nth-child(11) {
  animation-delay: 700ms;
}

.live-session-stat {
  align-self: stretch;
  display: grid;
  align-content: center;
  border-left: 1px solid rgba(5, 5, 5, 0.16);
  padding-left: clamp(16px, 2vw, 24px);
}

.live-session-stat strong {
  display: flex;
  align-items: center;
  gap: 12px;
}

.live-session-stat .live-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #19c996;
  box-shadow: 0 0 0 8px rgba(25, 201, 150, 0.16);
}

.channel-card {
  gap: 18px;
}

.channel-bars {
  display: grid;
  gap: 14px;
}

.channel-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.channel-row span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.channel-row i {
  position: relative;
  display: block;
  height: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.channel-row i::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  content: "";
  background: linear-gradient(90deg, var(--orange), #ff8d45);
  transform: scaleX(0);
  transform-origin: left;
}

.channel-downloads i::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(154, 154, 154, 0.78));
}

.performance-panel.is-visible .channel-row i::before {
  animation: channelFill 1.25s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.performance-panel.is-visible .channel-row:nth-child(2) i::before {
  animation-delay: 110ms;
}

.performance-panel.is-visible .channel-row:nth-child(3) i::before {
  animation-delay: 220ms;
}

.performance-panel.is-visible .channel-row:nth-child(4) i::before {
  animation-delay: 330ms;
}

.bar-chart {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 8px;
  height: 76px;
}

.bar-chart span {
  display: block;
  height: var(--h);
  min-height: 12px;
  background: linear-gradient(180deg, var(--orange), rgba(255, 255, 255, 0.7));
  transform: scaleY(0.12);
  transform-origin: bottom;
}

.performance-panel.is-visible .bar-chart span {
  animation: barRise 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.performance-panel.is-visible .bar-chart span:nth-child(2) {
  animation-delay: 120ms;
}

.performance-panel.is-visible .bar-chart span:nth-child(3) {
  animation-delay: 240ms;
}

.performance-panel.is-visible .bar-chart span:nth-child(4) {
  animation-delay: 360ms;
}

.pulse-ring {
  position: relative;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: conic-gradient(var(--orange) 0 78%, rgba(255, 255, 255, 0.12) 78% 100%);
  justify-self: end;
}

.pulse-ring::before {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: #0a0a0a;
  content: "";
}

.pulse-ring span {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(255, 79, 34, 0.52);
  border-radius: 50%;
  animation: metricPulse 2.2s ease-out infinite;
}

.line-chart {
  width: 100%;
  height: 104px;
  overflow: visible;
}

.chart-grid {
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1;
}

.chart-line {
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  filter: drop-shadow(0 0 10px rgba(255, 79, 34, 0.36));
}

.performance-panel.is-visible .chart-line {
  animation: drawLine 2.2s cubic-bezier(0.22, 1, 0.36, 1) 220ms forwards;
}

.insight-card {
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  align-items: end;
}

.insight-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.insight-tiles span {
  border: 1px solid rgba(255, 255, 255, 0.11);
  padding: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
}

.performance-panel.is-visible .insight-tiles span {
  animation: tileGlow 3.6s ease-in-out infinite;
}

.performance-panel.is-visible .insight-tiles span:nth-child(2) {
  animation-delay: 300ms;
}

.performance-panel.is-visible .insight-tiles span:nth-child(3) {
  animation-delay: 600ms;
}

.performance-panel.is-visible .insight-tiles span:nth-child(4) {
  animation-delay: 900ms;
}

.final-cta {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 79, 34, 0.18), transparent 24rem),
    linear-gradient(135deg, rgba(5, 5, 5, 0.98), rgba(20, 17, 15, 0.96)),
    var(--black);
  color: var(--white);
  padding: clamp(64px, 8vw, 110px) clamp(22px, 4vw, 56px);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.final-cta h2 {
  max-width: 850px;
}

.final-cta p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.85);
}

.contact-copy ul {
  display: grid;
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.contact-copy li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.45;
}

.contact-copy li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--orange);
  content: "";
}

.demo-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(5, 5, 5, 0.74);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(8px);
}

.demo-form label {
  display: grid;
  gap: 8px;
}

.form-hidden {
  display: none;
}

.demo-form label span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 680;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  min-height: 48px;
  padding: 12px 0;
  outline: none;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.demo-form textarea {
  min-height: 112px;
  resize: vertical;
}

.demo-form select {
  background-color: rgba(255, 255, 255, 0.04);
  color-scheme: dark;
}

.demo-form option {
  background: #111111;
  color: #ffffff;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  border-color: var(--orange);
  background: transparent;
}

.form-wide {
  grid-column: 1 / -1;
}

.form-note {
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.9rem;
}

.demo-form .button-dark {
  background: var(--orange);
  color: var(--white);
}

.demo-form .button-dark:hover {
  background: var(--white);
  color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 28px clamp(22px, 4vw, 56px);
  background: var(--black);
  color: rgba(255, 255, 255, 0.78);
}

.social-links {
  display: flex;
  gap: 18px;
  justify-self: start;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 720;
  letter-spacing: 0.04em;
}

.social-links img {
  width: 24px;
  height: 24px;
  filter: invert(1);
}

.site-footer p {
  justify-self: center;
  margin-bottom: 0;
  text-align: center;
}

.footer-concept {
  display: grid;
  justify-items: end;
  justify-self: end;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 12px;
  color: var(--white);
  line-height: 1;
  transition: opacity 180ms ease;
}

.footer-concept:hover {
  opacity: 0.72;
}

.footer-concept span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.footer-concept img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  filter: invert(1);
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.84)),
    url("public/images/orange_blurry.png") center / cover;
  color: var(--white);
  text-align: center;
}

.success-panel {
  display: grid;
  justify-items: center;
  gap: 22px;
  max-width: 620px;
}

.success-logo img {
  width: min(320px, 72vw);
  filter: invert(1) drop-shadow(0 0 22px rgba(255, 255, 255, 0.35));
}

.success-panel h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 650;
}

.success-panel p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.reveal {
  transform: translateY(26px);
  opacity: 0;
  transition:
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 760ms ease;
}

.reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@keyframes slowDrift {
  from {
    transform: scale(1.02) translateY(0);
  }

  to {
    transform: scale(1.08) translateY(-1.4%);
  }
}

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

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

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

  to {
    transform: translateX(calc(-1 * var(--client-logo-loop-distance)));
  }
}

@keyframes panelSweep {
  0%,
  100% {
    transform: translateX(-18%);
    opacity: 0.72;
  }

  50% {
    transform: translateX(14%);
    opacity: 1;
  }
}

@keyframes barRise {
  from {
    transform: scaleY(0.12);
  }

  to {
    transform: scaleY(1);
  }
}

@keyframes metricPulse {
  0% {
    transform: scale(0.88);
    opacity: 0.75;
  }

  100% {
    transform: scale(1.22);
    opacity: 0;
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes channelFill {
  to {
    transform: scaleX(1);
  }
}

@keyframes tileGlow {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.04);
  }

  45% {
    border-color: rgba(255, 79, 34, 0.42);
    background: rgba(255, 79, 34, 0.1);
  }
}

@media (min-width: 1001px) {
  html {
    scroll-snap-type: y proximity;
  }

  .hero,
  .proposition,
  .how,
  .themes,
  .real-moments,
  .value,
  .final-cta {
    min-height: 100svh;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }

  .proposition,
  .how,
  .themes,
  .real-moments,
  .value,
  .final-cta {
    display: grid;
    align-items: center;
  }

  .work {
    min-height: 100svh;
    scroll-snap-align: start;
  }
}

@media (max-width: 1000px) {
  .desktop-break {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-logo {
    width: clamp(132px, 24vw, 160px);
  }

  .menu-toggle {
    display: block;
  }

  .hero-bg {
    display: none;
  }

  .mobile-hero-bg {
    position: absolute;
    inset: 0;
    display: flex;
    width: 110%;
    margin-left: -5%;
    opacity: 0.84;
    filter: saturate(1.18) contrast(1.08);
  }

  .hero-panel {
    margin-right: -8vw;
  }

  .mobile-hero-bg .hero-panel:first-child img {
    object-position: 46% center;
  }

  .hero::after {
    background:
      radial-gradient(ellipse at 50% 48%, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.26) 10rem, rgba(0, 0, 0, 0.08) 17rem, transparent 22rem);
  }

  .mobile-hero-bg .hero-panel:last-child img {
    object-position: 34% center;
  }

  .fusion-grid,
  .concept-grid,
  .intro-grid,
  .system-grid,
  .bento-grid,
  .experience,
  .experience.reverse,
  .experience-list,
  .value-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .experience.reverse .experience-image {
    order: 0;
  }

  .system-image {
    min-height: 420px;
  }

  .bento-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-areas:
      "large large large exterior exterior exterior"
      "large large large exterior exterior exterior"
      "large large large video video video"
      "large large large video video video"
      "style style style result result result"
      "style style style result result result";
    grid-auto-rows: clamp(96px, 13vw, 140px);
    max-width: 920px;
  }

  .moment-card {
    min-height: 0;
  }

  .moment-copy {
    min-height: 0;
  }

  .value-copy {
    position: static;
  }

  .performance-panel {
    min-height: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    gap: 22px;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .site-footer p,
  .footer-concept,
  .social-links {
    justify-self: center;
    text-align: center;
  }

  .footer-concept {
    justify-items: center;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-concept img {
    width: 118px;
    height: 72px;
  }
}

@media (min-width: 769px) and (max-width: 1000px) {
  .hero-bg {
    display: flex;
  }

  .mobile-hero-bg {
    display: none;
  }

  .hero-bg .hero-panel {
    margin-right: -4.8vw;
  }

  .hero-bg .hero-panel:last-child {
    margin-right: 0;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 17rem),
      radial-gradient(ellipse at 50% 45%, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.44) 18rem, rgba(0, 0, 0, 0.12) 30rem, transparent 43rem);
  }
}

@media (max-width: 680px) {
  .site-nav {
    justify-content: center;
    gap: 10px;
    padding: 16px 18px;
  }

  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 136px;
    height: 42px;
  }

  .menu-toggle {
    margin-left: auto;
    display: block;
    order: 2;
  }

  .nav-cta {
    display: none;
  }

  .hero-content {
    max-width: 360px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-logo {
    width: min(92vw, 584px);
    height: clamp(148px, 40vw, 208px);
    margin-bottom: -20px;
  }

  h1 {
    margin-bottom: 12px;
    font-size: clamp(1.88rem, 8.4vw, 2.45rem);
    line-height: 1.04;
  }

  .hero-text {
    font-size: clamp(0.96rem, 4vw, 1.12rem);
    line-height: 1.35;
  }

  .button-row {
    max-width: 320px;
    margin-top: 22px;
  }

  .button {
    width: 100%;
    min-height: 42px;
    font-size: 0.84rem;
  }

  .fusion-grid {
    gap: 38px;
  }

  .concept-copy h2 {
    font-size: clamp(1.72rem, 8vw, 2.22rem);
  }

  .concept-section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .concept-copy {
    text-align: left;
  }

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

  .fusion-plus {
    width: 78px;
    height: 78px;
  }

  .intro-text {
    border-left: 0;
    border-top: 2px solid var(--orange);
    padding-top: 26px;
    padding-left: 0;
  }

  .system-image {
    min-height: 360px;
  }

  .moment-card {
    min-height: 430px;
  }

  .moment-copy {
    min-height: 240px;
  }

  .system-beat {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .theme-slide {
    width: 78vw;
    height: 360px;
  }

  .client-logo {
    width: 220px;
    height: 86px;
  }

  .metric-grid,
  .insight-card,
  .demo-form {
    grid-template-columns: 1fr;
  }

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

  .participation-card {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .participation-card {
    align-items: stretch;
  }

  .metric-card {
    min-height: 132px;
    padding: 16px;
  }

  .metric-card strong {
    font-size: clamp(1.85rem, 10vw, 2.45rem);
  }

  .metric-card em {
    font-size: 0.88rem;
  }

  .live-session-stat {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
    padding-top: 18px;
    padding-left: 0;
  }

  .metric-card,
  .metric-wide {
    min-height: 150px;
  }

  .channel-row {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
  }

  .channel-row span {
    font-size: 0.86rem;
  }

  .panel-topline {
    flex-direction: column;
    gap: 8px;
  }

  .pulse-ring {
    justify-self: start;
  }

  .form-wide {
    grid-column: auto;
  }

  .social-links {
    align-items: center;
    justify-content: center;
    gap: 22px;
  }
}

@media (max-width: 680px) {
  .real-moments {
    overflow: hidden;
  }

  .real-moments .section-heading {
    margin-bottom: 28px;
  }

  .real-moments-reel {
    position: relative;
    left: 50%;
    display: block;
    width: 100vw;
    overflow-x: auto;
    overflow-y: hidden;
    margin-left: -50vw;
    padding: 0 18px 8px;
    mask-image: none;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
    user-select: none;
    -webkit-overflow-scrolling: touch;
  }

  .real-moments-reel::-webkit-scrollbar {
    display: none;
  }

  .bento-grid {
    position: static;
    left: auto;
    display: flex;
    width: max-content;
    overflow: visible;
    gap: 16px;
    margin: 0;
    padding: 0;
    min-height: 0;
  }

  .moment-card {
    width: clamp(260px, 78vw, 380px);
    height: clamp(330px, 58vh, 500px);
    flex: 0 0 auto;
    min-height: 0;
    scroll-snap-align: center;
  }

  .moment-main {
    aspect-ratio: auto;
  }

  .moment-video-klepierre {
    aspect-ratio: auto;
  }

  .moment-cy-one {
    aspect-ratio: auto;
  }

  .moment-video-meadowhall {
    aspect-ratio: auto;
  }

  .moment-cy-two {
    aspect-ratio: auto;
  }

  .theme-reel {
    overflow-x: auto;
    padding-right: 18px;
    padding-left: 18px;
    mask-image: none;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .theme-reel::-webkit-scrollbar {
    display: none;
  }

  .theme-track {
    animation: none;
  }

  .theme-slide {
    scroll-snap-align: center;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    transform: none;
    opacity: 1;
  }

  .client-logo-track {
    animation: none;
  }
}
