:root {
  --bg: #191a1a;
  --surface: #202121;
  --surface-alt: #242525;
  --text: #f4f2f1;
  --muted: rgba(244, 242, 241, 0.74);
  --line: rgba(244, 242, 241, 0.12);
  --brand: #f4f2f1;
  --brand-dark: #d9d6d4;
  --accent: #bfa37a;
  --accent-rgb: 191, 163, 122;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  --header-offset: 96px;
  --header-offset-compact: 78px;
  --header-font: "Barlow Condensed", "Arial Narrow", sans-serif;
  --title-font: "Cormorant Garamond", Georgia, serif;
}

.home-video-section {
  position: relative;
  width: 100%;
  background: #080909;
  border-bottom: 1px solid rgba(244, 242, 241, 0.08);
}

.home-video-trigger {
  position: relative;
  display: block;
  width: 100%;
  min-height: clamp(420px, 56vw, 820px);
  padding: 0;
  overflow: hidden;
  color: #f4f2f1;
  text-align: left;
  background: #0b0c0c;
  border: 0;
  cursor: pointer;
}

.home-video-preview,
.home-video-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-video-preview {
  object-fit: cover;
  filter: grayscale(1) contrast(1.06) brightness(0.78);
  transform: scale(1.002);
  transition: filter 420ms ease, transform 900ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.home-video-shade {
  background:
    linear-gradient(180deg, rgba(8, 9, 9, 0.1) 20%, rgba(8, 9, 9, 0.72) 100%),
    linear-gradient(90deg, rgba(8, 9, 9, 0.42) 0%, transparent 48%, rgba(8, 9, 9, 0.18) 100%);
}

.home-video-trigger:hover .home-video-preview,
.home-video-trigger:focus-visible .home-video-preview {
  filter: grayscale(0.65) contrast(1.08) brightness(0.88);
  transform: scale(1.025);
}

.home-video-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.home-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: clamp(78px, 7.2vw, 106px);
  aspect-ratio: 1;
  place-items: center;
  color: #f4f2f1;
  font-size: clamp(1.75rem, 2.35vw, 2.5rem);
  background: rgba(10, 11, 11, 0.62);
  border: 1px solid rgba(var(--accent-rgb), 0.58);
  border-radius: 50%;
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  transform: translate(-50%, -50%);
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.home-video-play i {
  display: grid;
  width: 1em;
  height: 1em;
  margin: 0;
  line-height: 1;
  place-items: center;
}

.home-video-trigger:hover .home-video-play,
.home-video-trigger:focus-visible .home-video-play {
  color: #111212;
  background: rgba(244, 242, 241, 0.96);
  border-color: rgba(244, 242, 241, 0.92);
  transform: translate(-50%, -50%) scale(1.045);
}

.home-video-copy {
  position: absolute;
  right: max(28px, calc((100vw - 1760px) / 2 + 28px));
  bottom: clamp(34px, 6vw, 82px);
  left: max(28px, calc((100vw - 1760px) / 2 + 28px));
  z-index: 2;
  display: grid;
  gap: 10px;
  max-width: 1040px;
}

.home-video-eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.home-video-title {
  max-width: 20ch;
  font-family: var(--title-font);
  font-size: clamp(2.25rem, 5vw, 5.5rem);
  font-weight: 400;
  line-height: 0.96;
}

.home-video-modal[hidden] {
  display: none !important;
}

.home-video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  padding: clamp(18px, 4vw, 56px);
  place-items: center;
  opacity: 0;
  transition: opacity 180ms ease;
}

.home-video-modal.is-open {
  opacity: 1;
}

.home-video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  border: 0;
  cursor: pointer;
}

.home-video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
  background: #000;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.72);
}

.home-video-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.home-video-player iframe,
.home-video-player video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
}

.home-video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #f4f2f1;
  font-size: 1.5rem;
  background: rgba(17, 18, 18, 0.92);
  border: 1px solid rgba(244, 242, 241, 0.34);
  border-radius: 50%;
  cursor: pointer;
}

.home-video-modal-close:hover,
.home-video-modal-close:focus-visible {
  color: #111212;
  background: #f4f2f1;
}

html.home-video-modal-open,
body.home-video-modal-open {
  overflow: hidden;
}

@media (max-width: 760px) {
  .home-video-trigger {
    min-height: clamp(360px, 116vw, 560px);
  }

  .home-video-play {
    width: 70px;
    font-size: 1.7rem;
  }

  .home-video-copy {
    right: 22px;
    bottom: 30px;
    left: 22px;
  }

  .home-video-title {
    font-size: clamp(2rem, 11vw, 3.4rem);
  }

  .home-video-modal {
    padding: 18px;
  }

  .home-video-modal-close {
    top: -46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-video-preview,
  .home-video-play,
  .home-video-modal {
    transition: none;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--bg);
}

body.menu-open {
  overflow: hidden;
}

main {
  padding-top: var(--header-offset);
}

body.layout-header-overlay main {
  padding-top: 0;
}

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

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

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(17, 18, 18, 0.96);
  border-bottom: 1px solid rgba(244, 242, 241, 0.1);
  transition: transform 240ms ease, background 240ms ease, border-color 240ms ease;
}

body.layout-header-overlay .site-header {
  background: linear-gradient(180deg, rgba(10, 10, 11, 0.88), rgba(10, 10, 11, 0));
  border-bottom: 0;
}

.site-header.is-scrolled {
  background: rgba(12, 12, 13, 0.96);
  border-bottom-color: transparent;
}

body.layout-header-overlay .site-header.is-scrolled {
  background: rgba(12, 12, 13, 0.96);
  border-bottom: 0;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 2px));
}

.site-header .wrap {
  width: min(1760px, calc(100% - 56px));
}

.site-header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: var(--header-offset);
  position: relative;
  z-index: 26;
  transition: min-height 240ms ease, gap 240ms ease;
}

.site-header-minimal .site-header-inner {
  display: flex;
  justify-content: center;
}

.site-header-minimal .brand-lockup {
  margin-inline: auto;
}

.site-header-minimal .site-languages-minimal {
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  top: 50%;
  transform: translateY(-50%);
}

.site-header.is-scrolled .site-header-inner {
  min-height: var(--header-offset-compact);
  gap: 20px;
}

.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  color: #fff;
  line-height: 1;
  padding: 12px 0;
  width: max-content;
}

div.brand-lockup {
  cursor: default;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(32px, 2.6vw, 46px);
  transition: height 240ms ease;
}

.site-header.is-scrolled .brand-logo {
  height: clamp(28px, 2.2vw, 38px);
}

.site-menu-button,
.site-menu-backdrop {
  display: none;
}

.site-menu-panel {
  display: contents;
}

.brand-title,
.brand-subtitle,
.site-nav,
.site-languages {
  font-family: var(--header-font);
}

.brand-title {
  font-size: clamp(1.6rem, 2.3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-subtitle {
  display: block;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0.88;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: nowrap;
  overflow: visible;
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  scrollbar-width: none;
}

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

.site-nav-item {
  position: relative;
  flex: 0 0 auto;
}

.site-nav-link,
.site-nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 500;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.site-nav-link:hover,
.site-nav-link:focus-visible,
.site-nav-toggle:hover,
.site-nav-toggle:focus-visible,
.site-nav-item.is-open .site-nav-toggle {
  color: var(--accent);
  background: rgba(244, 242, 241, 0.04);
  outline: none;
}

.site-nav-caret {
  font-size: 0.9rem;
  line-height: 1;
  transition: transform 160ms ease;
}

.site-nav-item.is-open .site-nav-caret {
  transform: rotate(180deg);
}

.site-submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 320px;
  padding: 12px;
  border: 1px solid rgba(244, 242, 241, 0.1);
  border-radius: 18px;
  background: #111212;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  pointer-events: none;
}

.site-nav-item.is-open .site-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.submenu-link {
  display: block;
  padding: 14px 16px;
  border-radius: 18px;
  transition: background 160ms ease, transform 160ms ease;
}

.submenu-link + .submenu-link {
  margin-top: 6px;
}

.submenu-link:hover,
.submenu-link:focus-visible {
  background: rgba(244, 242, 241, 0.04);
  transform: translateY(-1px);
  outline: none;
}

.submenu-label {
  display: block;
  color: var(--text);
  font-family: var(--title-font);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
}

.submenu-description {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
  white-space: normal;
}

.site-languages {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-self: end;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.96rem;
  white-space: nowrap;
}

.site-languages::before {
  content: "";
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.22);
}

.site-languages a.is-active,
.site-languages a:hover,
.site-languages a:focus-visible {
  color: var(--accent);
}

.section {
  padding: 72px 0;
}

.section-soft {
  background: rgba(244, 242, 241, 0.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 128px 0 96px;
  color: #fff;
  background: #141515;
  display: flex;
  align-items: flex-end;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media-viewport,
.hero-split-media-viewport {
  position: absolute;
  inset: 0;
}

.hero-media-viewport-mobile,
.hero-split-media-viewport-mobile {
  display: none;
}

.hero-media-image,
.hero-media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transform: scale(1.02);
}

.hero.hero-tone-color .hero-media-image,
.hero.hero-tone-color .hero-media-video,
.hero.hero-tone-color .hero-split-media-image,
.hero.hero-tone-color .hero-split-media-video,
.hero-media.media-tone-color .hero-media-image,
.hero-media.media-tone-color .hero-media-video,
.hero-split-media.media-tone-color .hero-split-media-image,
.hero-split-media.media-tone-color .hero-split-media-video {
  filter: none;
}

.hero-media.media-tone-bw .hero-media-image,
.hero-media.media-tone-bw .hero-media-video {
  filter: grayscale(1);
}

.hero-split-media.media-tone-bw .hero-split-media-image,
.hero-split-media.media-tone-bw .hero-split-media-video {
  filter: grayscale(1) contrast(1.02) brightness(0.94);
}

.hero-split {
  min-height: 100vh;
  padding: 0;
  align-items: stretch;
  background: #0d0e0e;
  border-top: none;
  border-bottom: 1px solid rgba(244, 242, 241, 0.06);
}

.hero.hero-split .hero-split-shell.wrap {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-inline: 0;
}

.hero-split-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  min-height: calc(100vh - var(--header-offset));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.hero.hero-split .hero-copy.hero-split-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
  margin-left: 0;
  margin-right: auto;
  padding: calc(var(--header-offset) + clamp(120px, 16vw, 200px)) clamp(24px, 3vw, 36px) clamp(48px, 6vw, 64px) clamp(36px, 4vw, 56px);
  max-width: none;
  width: auto;
}

@media (min-width: 1800px) {
  .hero-split-shell {
    min-height: calc(100vh - var(--header-offset));
  }

  .hero.hero-split .hero-copy.hero-split-copy {
    max-width: none;
    padding-left: clamp(48px, 4vw, 80px);
    padding-bottom: clamp(64px, 6vw, 96px);
  }

  .hero.hero-split .hero-split-copy h1 {
    font-size: clamp(4rem, 5vw, 5.5rem);
  }
}

@media (min-width: 2400px) {
  .hero-split-shell {
    min-height: calc(100vh - var(--header-offset));
  }

  .hero.hero-split .hero-copy.hero-split-copy {
    max-width: none;
    padding-left: clamp(64px, 4vw, 120px);
    padding-bottom: clamp(80px, 5vw, 120px);
  }
}

.hero-split-copy::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -100vw;
  z-index: -1;
  background: linear-gradient(90deg, rgba(13, 14, 14, 0.92) 0%, rgba(13, 14, 14, 0.7) 55%, transparent 100%);
  pointer-events: none;
}

.hero-split-copy .eyebrow {
  text-align: left;
}

.hero-split-copy h1 {
  max-width: none;
  margin-bottom: 20px;
  text-align: left;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.hero-split-copy .lead {
  max-width: 32rem;
  margin: 0 0 24px;
  text-align: left;
}

.hero-split-copy .actions,
.hero-split-copy .hero-highlights {
  justify-content: flex-start;
}

.hero-split-copy .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.hero-split-copy .hero-highlights {
  width: 100%;
}

.hero-split-copy .hero-highlights li:first-child::before {
  display: none;
}

.hero-split-media-stage {
  position: absolute;
  inset: 0;
  min-height: 100%;
}

.hero-split-media-glow {
  display: none;
}

.hero-split-media {
  position: absolute;
  inset: 0;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  background: #0d0e0e;
}

.hero-split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 14, 14, 0.6) 0%, rgba(13, 14, 14, 0) 20%),
    linear-gradient(180deg, rgba(13, 14, 14, 0.15) 0%, transparent 30%, rgba(13, 14, 14, 0.25) 100%);
  pointer-events: none;
}

.hero-split-media-image,
.hero-split-media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: grayscale(1) contrast(1.02) brightness(0.94);
}

.hero.hero-tone-color .hero-split-media-image,
.hero.hero-tone-color .hero-split-media-video {
  filter: contrast(1.02) brightness(0.96);
}

.hero.hero-split .hero-scroll {
  position: static;
  left: auto;
  bottom: auto;
  transform: none;
  margin-top: 24px;
  padding-top: 0;
  justify-content: flex-start;
}

body.layout-header-overlay .hero {
  margin-top: calc(var(--header-offset) * -1);
  padding-top: calc(var(--header-offset) + 128px);
}

body.layout-header-overlay .hero.hero-split {
  margin-top: calc(var(--header-offset) * -1);
  padding-top: 0;
}

body.layout-header-solid .hero {
  margin-top: 0;
  padding-top: 128px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 8, 0.52) 0%, rgba(7, 7, 8, 0.18) 18%, rgba(7, 7, 8, 0.48) 100%),
    linear-gradient(90deg, rgba(7, 7, 8, 0.72) 0%, rgba(7, 7, 8, 0.16) 52%, rgba(7, 7, 8, 0.82) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 36px;
  align-items: center;
  padding-inline: clamp(24px, 5vw, 64px);
}

.hero-copy {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.hero h1,
h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.02;
  font-family: var(--title-font);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero h1 {
  font-size: clamp(2.6rem, 8vw, 5rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.2rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
}

.hero .eyebrow {
  color: var(--accent);
}

.lead,
.section-copy,
.card p,
.prose,
.site-footer,
.muted {
  color: var(--muted);
  line-height: 1.7;
}

.hero .lead {
  color: rgba(244, 242, 241, 0.88);
  font-size: 1.08rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(244, 242, 241, 0.76);
  font-family: var(--header-font);
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  justify-content: center;
}

.hero .actions {
  justify-content: center;
}

.hero-highlights li {
  position: relative;
}

.hero-highlights li + li::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  width: 2px;
  height: 2px;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.68);
  transform: translateY(-50%);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll i {
  font-size: 2.2rem;
  line-height: 1;
}

.home-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 2.05fr);
  gap: 0;
  width: 100%;
  padding: 0;
  background: #111212;
  border-top: 1px solid rgba(244, 242, 241, 0.08);
  border-bottom: 1px solid rgba(244, 242, 241, 0.08);
}

.home-showcase-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 22px;
  padding: clamp(42px, 6vw, 82px);
  background: #111212;
}

.home-showcase-intro h2 {
  max-width: 15ch;
  margin-bottom: 0;
}

.home-showcase-intro .section-copy {
  max-width: 36rem;
  margin: 0;
}

.home-showcase-bands {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 480px;
}

.showcase-band {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 480px;
  padding: 0;
  border-left: 1px solid rgba(244, 242, 241, 0.08);
  isolation: isolate;
}

.showcase-band-media,
.showcase-band-overlay {
  position: absolute;
  inset: 0;
}

.showcase-band-media {
  overflow: hidden;
}

.showcase-band-media-image,
.showcase-band-media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transform: scale(1.04);
  transition: transform 420ms ease, filter 420ms ease;
}

.showcase-band-media.media-tone-bw .showcase-band-media-image,
.showcase-band-media.media-tone-bw .showcase-band-media-video {
  filter: grayscale(1) contrast(1.02) brightness(0.9);
}

.showcase-band-media.media-tone-color .showcase-band-media-image,
.showcase-band-media.media-tone-color .showcase-band-media-video {
  filter: saturate(1) contrast(1.02);
}

.showcase-band-overlay {
  background:
    linear-gradient(180deg, rgba(10, 10, 11, 0.08) 0%, rgba(10, 10, 11, 0.24) 30%, rgba(10, 10, 11, 0.9) 100%);
  transition: opacity 420ms ease;
}

.showcase-band-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.12) 0%, rgba(var(--accent-rgb), 0.2) 24%, rgba(10, 10, 11, 0.72) 100%),
    linear-gradient(180deg, rgba(10, 10, 11, 0.04) 0%, rgba(10, 10, 11, 0.18) 32%, rgba(10, 10, 11, 0.74) 100%);
  opacity: 0;
  transition: opacity 420ms ease;
}

.showcase-band-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 12px;
  padding: 28px 24px 42px;
  transform: translateY(18px);
  transition: transform 360ms ease;
  pointer-events: none;
}

.showcase-band-title {
  margin: 0;
  color: var(--text);
  font-family: var(--title-font);
  font-size: clamp(1.9rem, 2.5vw, 2.8rem);
  font-weight: 500;
  line-height: 0.95;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.32);
}

.showcase-band-copy {
  max-width: 18rem;
  margin: 0;
  color: rgba(244, 242, 241, 0.76);
  line-height: 1.6;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.showcase-band-action {
  margin-top: 8px;
  opacity: 0.88;
  transform: translateY(8px);
  transition: opacity 320ms ease, transform 320ms ease;
  pointer-events: none;
}

.showcase-band-hitarea {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.showcase-band:hover .showcase-band-media-image,
.showcase-band:hover .showcase-band-media-video,
.showcase-band:focus-visible .showcase-band-media-image,
.showcase-band:focus-visible .showcase-band-media-video {
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.1);
}

.showcase-band:hover .showcase-band-media.media-tone-bw .showcase-band-media-image,
.showcase-band:hover .showcase-band-media.media-tone-bw .showcase-band-media-video,
.showcase-band:focus-visible .showcase-band-media.media-tone-bw .showcase-band-media-image,
.showcase-band:focus-visible .showcase-band-media.media-tone-bw .showcase-band-media-video {
  filter: grayscale(1) contrast(1.04) brightness(0.92);
}

.showcase-band:hover .showcase-band-overlay,
.showcase-band:focus-visible .showcase-band-overlay {
  opacity: 1;
}

.showcase-band:hover .showcase-band-overlay::after,
.showcase-band:focus-visible .showcase-band-overlay::after {
  opacity: 1;
}

.showcase-band:hover .showcase-band-content,
.showcase-band:focus-visible .showcase-band-content {
  transform: translateY(0);
}

.showcase-band:hover .showcase-band-action,
.showcase-band:focus-visible .showcase-band-action {
  opacity: 1;
  transform: translateY(0);
}

.story-hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  padding: 168px 0 88px;
  background: #111212;
  display: flex;
  align-items: flex-end;
}

.story-hero-media,
.story-hero-overlay {
  position: absolute;
  inset: 0;
}

.story-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04) brightness(0.54);
  transform: scale(1.04);
}

.story-hero-overlay {
  background:
    linear-gradient(180deg, rgba(7, 7, 8, 0.56) 0%, rgba(7, 7, 8, 0.18) 22%, rgba(7, 7, 8, 0.72) 100%),
    linear-gradient(90deg, rgba(7, 7, 8, 0.9) 0%, rgba(7, 7, 8, 0.26) 56%, rgba(7, 7, 8, 0.82) 100%);
}

.story-hero-contact .story-hero-overlay {
  background:
    linear-gradient(180deg, rgba(7, 7, 8, 0.56) 0%, rgba(7, 7, 8, 0.12) 22%, rgba(7, 7, 8, 0.78) 100%),
    linear-gradient(90deg, rgba(var(--accent-rgb), 0.18) 0%, rgba(7, 7, 8, 0.22) 48%, rgba(7, 7, 8, 0.88) 100%);
}

.story-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 32px;
  align-items: end;
}

.story-hero-copy {
  max-width: 760px;
}

.story-hero-copy h1 {
  max-width: 13ch;
  margin-bottom: 18px;
  color: rgba(244, 242, 241, 0.98);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.story-hero-copy .lead {
  max-width: 40rem;
  margin: 0;
  color: rgba(244, 242, 241, 0.84);
  font-size: 1.06rem;
}

.story-hero-actions {
  margin-top: 30px;
}

.story-metrics-grid {
  display: grid;
  gap: 14px;
}

.story-metric,
.story-card,
.contact-method-card,
.contact-process-step,
.contact-sidebar,
.story-closing-panel {
  border: 1px solid rgba(244, 242, 241, 0.1);
}

.story-metric {
  padding: 20px 22px;
  background: rgba(17, 18, 18, 0.56);
  backdrop-filter: blur(16px);
}

.story-metric-value,
.story-metric-label {
  margin: 0;
}

.story-metric-value {
  color: rgba(244, 242, 241, 0.96);
  font-family: var(--title-font);
  font-size: clamp(1.45rem, 2.2vw, 2.4rem);
  line-height: 1;
}

.story-metric-label {
  margin-top: 8px;
  color: rgba(244, 242, 241, 0.68);
  line-height: 1.6;
}

.story-overview {
  padding: 88px 0 32px;
  background: #141515;
}

.story-overview-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 40px;
  align-items: start;
}

.story-overview-head h2 {
  max-width: 16ch;
  margin-bottom: 0;
}

.story-overview-body .prose {
  margin: 0;
}

.story-overview-points {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-overview-points li {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  color: rgba(244, 242, 241, 0.74);
  line-height: 1.7;
}

.story-overview-point-marker {
  width: 10px;
  height: 10px;
  margin-top: 0.55em;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.8);
  box-shadow: 0 0 0 6px rgba(var(--accent-rgb), 0.12);
}

.story-cards {
  padding: 32px 0 96px;
  background: #141515;
}

.story-cards-contact {
  padding-top: 24px;
}

.story-cards-head {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 28px;
}

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

.story-card,
.contact-method-card,
.contact-process-step {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 240px;
  padding: 28px 24px 26px;
  background: var(--surface);
}

.story-card h3,
.contact-method-card h3,
.contact-process-step h3,
.contact-sidebar h2 {
  margin: 0;
}

.story-card p,
.contact-method-card p,
.contact-process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-channels-section {
  padding: 96px 0 72px;
  border-bottom: 1px solid rgba(244, 242, 241, 0.08);
  background:
    radial-gradient(circle at 12% 0%, rgba(var(--accent-rgb), 0.12) 0%, transparent 38%),
    #111212;
}

.contact-channels-inner {
  display: grid;
  gap: 42px;
}

.contact-channels-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
}

.contact-channels-head h2 {
  max-width: 16ch;
  margin: 0;
}

.contact-channels-head .lead {
  margin: 0;
  color: rgba(244, 242, 241, 0.72);
}

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

.contact-channel-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 310px;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(244, 242, 241, 0.12);
  background:
    linear-gradient(145deg, rgba(var(--accent-rgb), 0.1) 0%, rgba(32, 33, 33, 0.94) 52%, rgba(20, 21, 21, 0.98) 100%);
}

.contact-channel-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(var(--accent-rgb), 0.34);
  color: rgba(var(--accent-rgb), 0.96);
  font-size: 1.45rem;
}

.contact-channel-title {
  margin: 6px 0 0;
  color: rgba(var(--accent-rgb), 0.94);
  font-family: var(--header-font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.contact-channel-card h3 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 3rem);
}

.contact-channel-description {
  max-width: 42rem;
  margin: 0;
  color: rgba(244, 242, 241, 0.7);
  line-height: 1.7;
}

.contact-channel-email {
  justify-self: start;
  margin-top: auto;
  color: rgba(244, 242, 241, 0.96);
  font-family: var(--title-font);
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-decoration-color: rgba(var(--accent-rgb), 0.52);
  text-underline-offset: 0.3em;
}

.contact-channel-email:hover {
  color: rgba(var(--accent-rgb), 1);
  text-decoration-color: rgba(var(--accent-rgb), 0.92);
}

.contact-page {
  padding: 88px 0 64px;
  background: #141515;
}

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

.contact-page-main {
  display: grid;
  gap: 18px;
}

.contact-subsection-head {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 10px;
}

.contact-subsection-head h2,
.contact-subsection-head p {
  margin: 0;
}

.contact-subsection-head > p:not(.eyebrow) {
  color: rgba(244, 242, 241, 0.7);
  line-height: 1.7;
}

.contact-process-head {
  margin-top: 48px;
}

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

.contact-methods-grid--additional {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-method-card {
  gap: 18px;
  min-height: 270px;
  padding: 34px 30px;
  border: 1px solid rgba(244, 242, 241, 0.12);
  background:
    linear-gradient(180deg, rgba(244, 242, 241, 0.035) 0%, rgba(32, 33, 33, 0.92) 100%);
}

.contact-method-card .text-link {
  justify-self: start;
  justify-content: flex-start;
  text-align: left;
}

.contact-method-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(var(--accent-rgb), 0.26);
  color: rgba(var(--accent-rgb), 0.94);
  font-size: 1.45rem;
}

.contact-sidebar {
  padding: 28px 24px;
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.22) 0%, rgba(36, 37, 37, 0.8) 100%);
}

.contact-sidebar-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding-left: 18px;
  color: rgba(244, 242, 241, 0.84);
  line-height: 1.7;
}

.contact-form-section {
  padding: 72px 0 96px;
  background:
    radial-gradient(circle at 14% 0%, rgba(var(--accent-rgb), 0.12) 0%, transparent 42%),
    #111212;
  border-top: 1px solid rgba(244, 242, 241, 0.08);
  border-bottom: 1px solid rgba(244, 242, 241, 0.08);
}

.contact-form-row {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}

.contact-form-head h2 {
  max-width: 12ch;
}

.contact-form-head p,
.contact-form-status {
  color: rgba(244, 242, 241, 0.7);
  line-height: 1.7;
}

.contact-form-panel {
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(244, 242, 241, 0.12);
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.12) 0%, rgba(22, 23, 23, 0.96) 58%, rgba(17, 18, 18, 1) 100%);
}

.contact-form-panel h3 {
  margin: 0;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.contact-form label,
.contact-form-field--name,
.contact-form-field--full,
.contact-form-status {
  grid-column: span 2;
}

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

.contact-form label:not(.contact-form-field--full):not(.contact-form-field--name) {
  grid-column: span 1;
}

.contact-form span {
  color: rgba(var(--accent-rgb), 0.86);
  font-family: var(--header-font);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(244, 242, 241, 0.16);
  border-radius: 0;
  background: rgba(17, 18, 18, 0.84);
  color: rgba(244, 242, 241, 0.95);
  font: inherit;
  padding: 14px 16px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(var(--accent-rgb), 0.72);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.12);
}

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

.media-video-section,
.media-download-section,
.media-photo-section {
  background: #111212;
  color: var(--text);
}

.media-section-head,
.media-closing-copy {
  min-width: 0;
}

.media-section-head h2,
.media-download-card h3,
.media-download-card p,
.media-closing-copy h2,
.media-closing-copy p {
  overflow-wrap: break-word;
}

.media-section-head .eyebrow {
  margin: 0;
}

.media-section-head h2,
.media-download-card h3 {
  margin: 0;
}

.media-download-card p {
  margin: 0;
  color: rgba(244, 242, 241, 0.7);
  line-height: 1.7;
}

.media-section-inner {
  display: grid;
  gap: clamp(34px, 5vw, 62px);
}

.media-section-head {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.media-section-head h2 {
  max-width: 20ch;
}

.media-section-intro {
  max-width: 66ch;
  margin: 0;
  color: rgba(244, 242, 241, 0.7);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.75;
  text-wrap: pretty;
}

.media-section-head--center {
  max-width: 880px;
}

.media-section-head--center h2 {
  max-width: 24ch;
}

.media-video-section {
  padding: 104px 0;
}

.media-video-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.media-video-card {
  flex: 0 1 calc((100% - 36px) / 3);
}

.media-video-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(244, 242, 241, 0.12);
  color: var(--text);
  background: #171818;
}

.media-video-card-view {
  position: relative;
  display: grid;
  align-content: end;
  width: 100%;
  min-height: 320px;
  padding: 24px;
  overflow: hidden;
  border: 0;
  color: var(--text);
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.media-video-card-view img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25);
  opacity: 0.62;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.media-video-card-view::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 18, 18, 0.18) 0%, rgba(17, 18, 18, 0.88) 100%),
    radial-gradient(circle at 20% 18%, rgba(var(--accent-rgb), 0.24), transparent 44%);
}

.media-video-card-view:hover img,
.media-video-card-view:focus-visible img {
  transform: scale(1.04);
  opacity: 0.78;
}

.media-video-card-view:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.media-video-play,
.media-card-meta,
.media-video-card h3 {
  position: relative;
  z-index: 1;
}

.media-video-play {
  position: absolute;
  top: 22px;
  right: 22px;
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(244, 242, 241, 0.22);
  border-radius: 999px;
  background: rgba(17, 18, 18, 0.48);
  backdrop-filter: blur(14px);
}

.media-card-meta,
.media-download-link {
  color: rgba(var(--accent-rgb), 0.86);
  font-family: var(--header-font);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.media-video-card h3 {
  max-width: 12ch;
  margin: 10px 0 0;
}

.media-video-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 24px;
}

.media-video-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 0;
  padding: 10px 14px;
  border: 1px solid rgba(244, 242, 241, 0.2);
  color: var(--text);
  font-family: var(--header-font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  background: rgba(244, 242, 241, 0.04);
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.media-video-action i,
.media-video-action span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.media-video-action i {
  width: 1em;
  height: 1em;
  justify-content: center;
  flex: 0 0 1em;
}

.media-video-action:hover,
.media-video-action:focus-visible {
  border-color: var(--accent);
  color: #111212;
  background: var(--accent);
}

.media-video-action--download {
  border-color: rgba(var(--accent-rgb), 0.45);
  color: var(--accent);
}

.media-download-section {
  padding: 98px 0 110px;
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--accent-rgb), 0.16) 0%, transparent 44%),
    linear-gradient(180deg, #3a352d 0%, #151616 52%, #111212 100%);
  border-top: 1px solid rgba(244, 242, 241, 0.08);
  border-bottom: 1px solid rgba(244, 242, 241, 0.08);
}

.media-download-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.media-download-card {
  flex: 0 1 calc((100% - 54px) / 4);
  display: grid;
  gap: 18px;
  min-height: 340px;
  padding: 34px 30px;
  border: 1px solid rgba(244, 242, 241, 0.14);
  color: var(--text);
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(244, 242, 241, 0.04) 0%, rgba(17, 18, 18, 0.9) 100%);
}

.media-download-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(var(--accent-rgb), 0.26);
  color: rgba(var(--accent-rgb), 0.9);
  font-size: 1.45rem;
}

.media-download-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: end;
}

.media-photo-section {
  padding: 104px 0;
}

.media-photo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.media-photo-card {
  flex: 0 1 calc((100% - 54px) / 4);
  position: relative;
  display: grid;
  align-content: end;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(244, 242, 241, 0.12);
  color: var(--text);
  text-decoration: none;
}

.media-photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.84;
  filter: brightness(0.86) contrast(1.04);
  transition: transform 0.5s ease, opacity 0.5s ease, filter 0.5s ease;
}

.media-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 18, 18, 0.04) 0%, rgba(17, 18, 18, 0.18) 48%, rgba(17, 18, 18, 0.78) 100%);
}

.media-photo-card:hover img,
.media-photo-card:focus-visible img {
  transform: scale(1.04);
  opacity: 1;
  filter: brightness(0.96) contrast(1.04);
}

.media-photo-card span {
  position: relative;
  z-index: 1;
  padding: 24px;
  font-family: var(--title-font);
  font-size: clamp(1.45rem, 2.1vw, 2.2rem);
  line-height: 0.95;
}

.story-closing.media-closing {
  padding: 0;
  background: #141515;
}

.story-closing.media-closing .wrap {
  width: 100%;
  max-width: none;
  margin: 0;
}

.story-closing.media-closing .story-closing-panel {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 34vw, 500px);
  border-left: 0;
  border-right: 0;
  padding: clamp(54px, 6vw, 84px) clamp(24px, 8vw, 112px);
  background:
    linear-gradient(90deg, rgba(17, 18, 18, 0.98) 0%, rgba(17, 18, 18, 0.9) 42%, rgba(17, 18, 18, 0.48) 68%, rgba(17, 18, 18, 0.88) 100%),
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.2) 0%, rgba(17, 18, 18, 0.94) 46%, rgba(17, 18, 18, 1) 100%);
  isolation: isolate;
}

.media-closing-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.media-closing-media {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -1;
  width: min(58vw, 62%);
  pointer-events: none;
}

.media-closing-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 18, 18, 1) 0%, rgba(17, 18, 18, 0.84) 22%, rgba(17, 18, 18, 0.3) 52%, rgba(17, 18, 18, 0.82) 100%),
    linear-gradient(180deg, rgba(17, 18, 18, 0.22) 0%, rgba(17, 18, 18, 0.08) 42%, rgba(17, 18, 18, 0.56) 100%);
}

.media-closing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.04) brightness(0.62);
}

.media-photo-section:has(+ .media-closing) {
  padding-bottom: clamp(44px, 5vw, 84px);
}

.story-closing {
  padding: 24px 0 104px;
  background: #141515;
}

.story-closing-panel {
  padding: 36px 34px;
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.18) 0%, rgba(17, 18, 18, 0.96) 42%, rgba(17, 18, 18, 1) 100%);
}

.story-closing-panel h2 {
  max-width: 16ch;
}

.story-closing-panel .lead {
  max-width: 42rem;
  margin: 0;
  color: rgba(244, 242, 241, 0.76);
}

.story-hero {
  min-height: clamp(460px, 62vh, 720px);
  padding: 0;
  align-items: center;
  isolation: isolate;
}

.story-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: inherit;
  padding: clamp(52px, 7vw, 96px) 0;
}

.story-hero-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}

.story-hero-copy {
  width: min(1120px, 100%);
  max-width: none;
  margin: 0 auto;
}

.story-hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--accent);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.story-hero-copy .eyebrow::before,
.story-hero-copy .eyebrow::after {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
  opacity: 0.72;
}

.story-hero-copy h1 {
  max-width: 13ch;
  margin: 0 auto;
  font-size: clamp(2.4rem, 5.8vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0.03em;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.story-hero-copy .lead {
  max-width: 48rem;
  margin: 22px auto 0;
  color: rgba(244, 242, 241, 0.84);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.55;
  text-align: center;
}

.story-hero-actions {
  justify-content: center;
}

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

.story-metric {
  background: rgba(17, 18, 18, 0.72);
}

.story-hero-internal .story-hero-overlay {
  background:
    linear-gradient(180deg, rgba(7, 7, 8, 0.38) 0%, rgba(7, 7, 8, 0.14) 20%, rgba(7, 7, 8, 0.84) 100%),
    linear-gradient(90deg, rgba(7, 7, 8, 0.58) 0%, rgba(7, 7, 8, 0.18) 50%, rgba(7, 7, 8, 0.58) 100%);
}

.story-hero-contact .story-hero-copy {
  max-width: 860px;
}

.bio-intro,
.bio-profile-section,
.bio-signature-section,
.bio-gallery-section,
.bio-awards-section,
.bio-proof-section {
  background: #141515;
  color: var(--text);
}

.bio-metrics-band {
  background: #111212;
  border-top: 1px solid rgba(244, 242, 241, 0.08);
  border-bottom: 1px solid rgba(244, 242, 241, 0.08);
}

.bio-metrics-band .wrap {
  width: 100%;
  max-width: none;
}

.bio-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bio-metric {
  min-height: 164px;
  padding: 32px clamp(28px, 5vw, 72px);
  border-left: 1px solid rgba(244, 242, 241, 0.08);
}

.bio-metric:last-child {
  border-right: 1px solid rgba(244, 242, 241, 0.08);
}

.bio-metric-value,
.bio-metric-label {
  margin: 0;
}

.bio-metric-value {
  color: rgba(244, 242, 241, 0.98);
  font-family: var(--header-font);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  line-height: 0.9;
}

.bio-metric-label {
  max-width: 16rem;
  margin-top: 14px;
  color: rgba(244, 242, 241, 0.66);
  line-height: 1.55;
}

.bio-intro {
  padding: 108px 0 72px;
  border-top: 1px solid rgba(244, 242, 241, 0.08);
}

.bio-intro .wrap {
  width: min(1760px, calc(100% - 56px));
  padding-inline: clamp(8px, 1.8vw, 24px);
}

.bio-intro-stack {
  display: grid;
  gap: 32px;
}

.bio-intro-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.14fr) repeat(2, minmax(0, 0.93fr));
  gap: 28px;
  align-items: stretch;
}

.bio-intro-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 32px 20px 8px;
}

.bio-intro-divider {
  width: clamp(132px, 14vw, 220px);
  height: 4px;
  margin: 18px 0 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.96) 0%, rgba(var(--accent-rgb), 0.48) 72%, rgba(var(--accent-rgb), 0) 100%);
}

.bio-intro-media,
.bio-gallery-slide,
.bio-award-item,
.bio-feature-card {
  overflow: hidden;
}

.bio-intro-media {
  position: relative;
  min-height: 460px;
  border: 1px solid rgba(244, 242, 241, 0.08);
  background: rgba(32, 33, 33, 0.76);
}

.bio-intro-media-panel,
.bio-intro-media-panel::after {
  position: absolute;
  inset: 0;
}

.bio-intro-media-panel::after {
  content: "";
  background: linear-gradient(180deg, rgba(17, 18, 18, 0.04) 0%, rgba(17, 18, 18, 0.18) 50%, rgba(17, 18, 18, 0.48) 100%);
  pointer-events: none;
}

.bio-intro-media img,
.bio-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bio-intro-media img {
  filter: grayscale(0.12) contrast(1.02) brightness(0.9);
}

.bio-intro-copy h2,
.bio-profile-copy h2,
.bio-signature-head h2,
.bio-awards-head h2,
.bio-proof-head h2 {
  color: rgba(244, 242, 241, 0.96);
}

.bio-intro-copy h2 {
  max-width: 16ch;
  margin-bottom: 0;
}

.bio-intro-copy .prose,
.bio-feature-card p,
.bio-signature-card p,
.bio-journey-step p,
.bio-award-item p,
.bio-proof-list p {
  color: rgba(244, 242, 241, 0.7);
}

.bio-intro-copy .prose {
  max-width: 44rem;
  font-size: 1.06rem;
}

.bio-intro-stack > .btn {
  justify-self: start;
  margin-top: -6px;
}

.bio-profile-section {
  position: relative;
  padding: 86px 0 104px;
  background:
    linear-gradient(180deg, rgba(17, 18, 18, 1) 0%, rgba(20, 21, 21, 1) 100%);
  border-top: 1px solid rgba(244, 242, 241, 0.08);
}

.bio-profile-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(24px, 7vw, 132px);
  right: clamp(24px, 7vw, 132px);
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.58), rgba(244, 242, 241, 0.08), transparent);
}

.bio-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
}

.bio-profile-copy {
  display: grid;
  gap: 18px;
}

.bio-profile-copy h2 {
  max-width: 15ch;
  margin-bottom: 0;
}

.bio-profile-copy .prose {
  max-width: 48rem;
  margin: 0;
  font-size: 1.05rem;
}

.bio-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 0;
}

.bio-feature-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  min-height: 164px;
  padding: 26px 24px;
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.12) 0%, rgba(32, 33, 33, 0.94) 100%);
  border: 1px solid rgba(var(--accent-rgb), 0.18);
}

.bio-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(var(--accent-rgb), 0.26);
  color: var(--accent);
  background: rgba(0, 0, 0, 0.16);
  font-size: 22px;
}

.bio-feature-copy h3,
.bio-signature-card h3,
.bio-journey-step h3 {
  color: rgba(244, 242, 241, 0.96);
}

.bio-feature-copy h3,
.bio-feature-copy p,
.bio-signature-card h3,
.bio-signature-card p {
  margin: 0;
}

.bio-feature-copy p,
.bio-signature-card p {
  margin-top: 10px;
  line-height: 1.65;
}

.bio-signature-section {
  padding: 92px 0;
  background:
    linear-gradient(180deg, rgba(17, 18, 18, 1) 0%, rgba(20, 21, 21, 1) 100%);
  border-top: 1px solid rgba(244, 242, 241, 0.08);
  border-bottom: 1px solid rgba(244, 242, 241, 0.08);
}

.bio-signature-head {
  display: grid;
  gap: 12px;
  max-width: 840px;
  margin-bottom: 30px;
}

.bio-signature-head h2 {
  max-width: 17ch;
  margin-bottom: 0;
}

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

.bio-signature-card {
  min-height: 240px;
  padding: 30px 28px;
  background: rgba(32, 33, 33, 0.72);
  border: 1px solid rgba(244, 242, 241, 0.1);
}

.bio-signature-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.bio-journey-band {
  padding: 0;
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.22) 0%, rgba(var(--accent-rgb), 0.14) 100%);
  border-top: 1px solid rgba(244, 242, 241, 0.08);
  border-bottom: 1px solid rgba(244, 242, 241, 0.08);
}

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

.bio-journey-step {
  padding: 38px 0 34px;
}

.bio-journey-step h3 {
  color: rgba(244, 242, 241, 0.96);
}

.bio-journey-step p {
  color: rgba(244, 242, 241, 0.76);
}

.bio-journey-number {
  margin: 0 0 10px;
  color: rgba(244, 242, 241, 0.46);
  font-family: var(--title-font);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.bio-gallery-section {
  position: relative;
  width: 100%;
  padding: clamp(56px, 6vw, 92px) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(244, 242, 241, 0.08);
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--accent-rgb), 0.08), transparent 38%),
    #111212;
}

.bio-gallery-carousel {
  width: 100%;
  padding: 0 clamp(18px, 4.5vw, 88px) 78px;
  overflow: visible;
}

.bio-gallery-track {
  align-items: stretch;
}

.bio-gallery-slide {
  position: relative;
  display: block;
  width: min(78vw, 1320px);
  height: clamp(520px, 54vw, 780px);
  border: 1px solid rgba(244, 242, 241, 0.1);
  background: #090a0a;
  cursor: zoom-in;
  isolation: isolate;
}

.bio-gallery-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 62%, rgba(5, 5, 5, 0.34) 100%);
  pointer-events: none;
}

.bio-gallery-slide img {
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 500ms ease;
  filter: saturate(0.92) contrast(1.03) brightness(0.92);
}

.bio-gallery-slide:hover img {
  transform: scale(1.018);
  filter: saturate(1) contrast(1.03) brightness(0.98);
}

.bio-gallery-slide:focus-visible {
  outline: 2px solid rgba(var(--accent-rgb), 0.95);
  outline-offset: 5px;
}

.bio-gallery-zoom {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.58);
  color: #fff;
  font-size: 1.2rem;
  backdrop-filter: blur(12px);
  transition: background-color 180ms ease, transform 180ms ease;
}

.bio-gallery-slide:hover .bio-gallery-zoom {
  transform: scale(1.05);
  background: rgba(var(--accent-rgb), 0.82);
}

.bio-gallery-controls {
  position: absolute;
  right: clamp(18px, 4.5vw, 88px);
  bottom: 0;
  left: clamp(18px, 4.5vw, 88px);
  z-index: 3;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 16px;
  align-items: center;
}

.bio-gallery-button {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(244, 242, 241, 0.18);
  border-radius: 50%;
  background: rgba(20, 21, 21, 0.88);
  color: rgba(244, 242, 241, 0.96);
  font-size: 1.05rem;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.bio-gallery-button:hover,
.bio-gallery-button:focus-visible {
  border-color: rgba(var(--accent-rgb), 0.84);
  background: rgba(var(--accent-rgb), 0.9);
  color: #111;
  outline: none;
}

.bio-gallery-button.swiper-button-disabled {
  opacity: 0.32;
  cursor: default;
}

.bio-gallery-pagination {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.bio-gallery-pagination .swiper-pagination-bullet {
  width: 26px;
  height: 2px;
  margin: 0 4px !important;
  border-radius: 999px;
  background: rgba(244, 242, 241, 0.35);
  opacity: 1;
  transition: width 220ms ease, background-color 220ms ease;
}

.bio-gallery-pagination .swiper-pagination-bullet-active {
  width: 54px;
  background: rgba(var(--accent-rgb), 0.96);
}

.bio-awards-section {
  padding: 24px 0 64px;
  background:
    linear-gradient(180deg, rgba(20, 21, 21, 1) 0%, rgba(17, 18, 18, 1) 100%);
}

.bio-awards-head {
  display: grid;
  gap: 12px;
  max-width: 640px;
  margin-bottom: 24px;
}

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

.bio-award-item {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 16px;
  min-height: 184px;
  padding: 22px 18px;
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.12) 0%, rgba(32, 33, 33, 0.96) 100%);
  border: 1px solid rgba(var(--accent-rgb), 0.16);
  text-align: center;
}

.bio-award-item img {
  max-width: 100%;
  max-height: 74px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.08);
}

.bio-award-item p {
  margin: 0;
}

.bio-proof-section {
  padding: 72px 0 40px;
  background: #111212;
  border-top: 1px solid rgba(244, 242, 241, 0.08);
}

.bio-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.bio-proof-head h2 {
  max-width: 16ch;
  margin-bottom: 0;
}

.bio-proof-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(244, 242, 241, 0.1);
}

.bio-proof-list li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(244, 242, 241, 0.1);
}

.bio-proof-list span {
  width: 9px;
  height: 9px;
  margin-top: 0.6em;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(var(--accent-rgb), 0.1);
}

.bio-proof-list p {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.65;
}

.bio-closing {
  padding-top: 0;
  padding-bottom: 0;
}

.bio-closing .wrap {
  width: 100%;
  max-width: none;
}

.bio-closing .story-closing-panel {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 34vw, 500px);
  border-left: 0;
  border-right: 0;
  padding: clamp(54px, 6vw, 84px) clamp(24px, 8vw, 112px);
  background:
    linear-gradient(90deg, rgba(17, 18, 18, 0.98) 0%, rgba(17, 18, 18, 0.9) 42%, rgba(17, 18, 18, 0.48) 68%, rgba(17, 18, 18, 0.88) 100%),
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.2) 0%, rgba(17, 18, 18, 0.94) 46%, rgba(17, 18, 18, 1) 100%);
  isolation: isolate;
}

.bio-closing-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.bio-closing-media {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -1;
  width: min(58vw, 62%);
  pointer-events: none;
}

.bio-closing-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 18, 18, 1) 0%, rgba(17, 18, 18, 0.84) 22%, rgba(17, 18, 18, 0.3) 52%, rgba(17, 18, 18, 0.82) 100%),
    linear-gradient(180deg, rgba(17, 18, 18, 0.22) 0%, rgba(17, 18, 18, 0.08) 42%, rgba(17, 18, 18, 0.56) 100%);
}

.bio-closing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.04) brightness(0.62);
}

.event-metrics-band {
  background: #111212;
  border-top: 1px solid rgba(244, 242, 241, 0.08);
  border-bottom: 1px solid rgba(244, 242, 241, 0.08);
}

.event-metrics-band .wrap {
  width: 100%;
  max-width: none;
}

.event-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.event-metric {
  min-height: 164px;
  padding: 32px clamp(28px, 5vw, 72px);
  border-left: 1px solid rgba(244, 242, 241, 0.08);
}

.event-metric:last-child {
  border-right: 1px solid rgba(244, 242, 241, 0.08);
}

.event-metric-value,
.event-metric-label {
  margin: 0;
}

.event-metric-value {
  color: rgba(244, 242, 241, 0.98);
  font-family: var(--header-font);
  font-size: clamp(2rem, 3.6vw, 4.2rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 0.92;
}

.event-metric-label {
  max-width: 17rem;
  margin-top: 14px;
  color: rgba(244, 242, 241, 0.66);
  line-height: 1.55;
}

.event-overview-section,
.event-format-section {
  background: #141515;
  color: var(--text);
}

.event-overview-section {
  padding: 112px 0 104px;
  border-bottom: 1px solid rgba(244, 242, 241, 0.08);
}

.event-overview-section .wrap,
.event-gallery-section .wrap {
  width: min(1760px, calc(100% - 56px));
  padding-inline: clamp(8px, 1.8vw, 24px);
}

.event-overview-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(36px, 6vw, 112px);
  align-items: center;
}

.event-overview-copy {
  display: grid;
  justify-items: start;
  gap: 24px;
  padding: 20px 32px 20px 8px;
}

.event-overview-copy h2,
.event-section-head h2 {
  max-width: 15ch;
  margin: 0;
}

.event-overview-copy .prose {
  max-width: 45rem;
  color: rgba(244, 242, 241, 0.72);
}

.event-overview-media {
  position: relative;
  overflow: hidden;
  min-height: clamp(420px, 38vw, 620px);
  border: 1px solid rgba(244, 242, 241, 0.1);
  background: #0c0d0d;
}

.event-overview-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 18, 18, 0.64) 0%, rgba(17, 18, 18, 0.08) 52%, rgba(17, 18, 18, 0.44) 100%),
    linear-gradient(180deg, rgba(17, 18, 18, 0.12) 0%, rgba(17, 18, 18, 0.64) 100%);
}

.event-overview-media img,
.event-gallery-item img,
.event-closing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-overview-media img {
  position: absolute;
  inset: 0;
  filter: grayscale(0.18) contrast(1.04) brightness(0.82);
}

.event-usecases-section {
  padding: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--accent-rgb), 0.22) 0%, rgba(var(--accent-rgb), 0.08) 28%, transparent 58%),
    linear-gradient(180deg, #3b352c 0%, #24231f 46%, #111212 100%);
  color: var(--text);
  border-top: 1px solid rgba(244, 242, 241, 0.08);
  border-bottom: 1px solid rgba(244, 242, 241, 0.08);
}

.event-usecases-section .wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(420px, 44vw) minmax(0, 1fr);
  gap: clamp(46px, 6vw, 104px);
  align-items: stretch;
}

.event-section-head {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.event-usecases-section .event-section-head {
  margin-bottom: 28px;
}

.event-usecase-grid,
.event-format-grid {
  display: grid;
  gap: 18px;
}

.event-usecase-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border-top: 0;
}

.event-usecase-card,
.event-format-card {
  min-height: 0;
  padding: 30px 28px;
}

.event-usecase-card h3,
.event-format-card h3 {
  margin: 0;
}

.event-usecase-card p,
.event-format-card p {
  margin: 16px 0 0;
  color: rgba(244, 242, 241, 0.68);
  line-height: 1.65;
}

.event-usecase-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 22px;
  min-height: 230px;
  padding: 32px 30px;
  overflow: hidden;
  border: 1px solid rgba(244, 242, 241, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.13) 0%, rgba(244, 242, 241, 0.035) 42%, rgba(17, 18, 18, 0.84) 100%),
    rgba(23, 24, 24, 0.86);
  box-shadow: inset 0 1px 0 rgba(244, 242, 241, 0.05);
}

.event-usecase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(var(--accent-rgb), 0.14) 0%, transparent 34%),
    linear-gradient(180deg, transparent 0%, rgba(17, 18, 18, 0.2) 100%);
  pointer-events: none;
}

.event-usecase-card > * {
  position: relative;
  z-index: 1;
}

.event-usecase-icon {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(var(--accent-rgb), 0.34);
  color: rgba(var(--accent-rgb), 0.9);
  background: rgba(17, 18, 18, 0.24);
}

.event-usecase-icon i {
  font-size: 1.45rem;
  line-height: 1;
}

.event-usecase-card h3 {
  max-width: 14rem;
  padding-right: 0;
  margin-top: 74px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.event-usecase-card p {
  max-width: 34rem;
  margin-top: 0;
  font-size: 1.05rem;
}

.event-usecase-card:first-child {
  grid-column: span 2;
  min-height: 190px;
}

.event-usecase-content {
  display: grid;
  align-content: start;
  max-width: 880px;
  padding: clamp(76px, 7vw, 122px) clamp(24px, 6vw, 96px) clamp(76px, 7vw, 122px) 0;
}

.event-usecase-media {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(244, 242, 241, 0.12);
  background: #0d0e0e;
}

.event-usecase-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 18, 18, 0.02) 0%, rgba(17, 18, 18, 0.58) 100%),
    linear-gradient(90deg, rgba(17, 18, 18, 0.32) 0%, rgba(17, 18, 18, 0.02) 52%, rgba(17, 18, 18, 0.44) 100%);
}

.event-usecase-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.04) brightness(0.8);
}

.event-text-columns-section {
  padding: clamp(86px, 7vw, 128px) 0;
  background:
    linear-gradient(180deg, rgba(17, 18, 18, 1) 0%, rgba(20, 21, 21, 1) 100%);
  color: var(--text);
  border-top: 1px solid rgba(244, 242, 241, 0.08);
  border-bottom: 1px solid rgba(244, 242, 241, 0.08);
}

.event-text-columns-section--corporate,
.event-text-columns-section--private {
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--accent-rgb), 0.12) 0%, transparent 46%),
    linear-gradient(180deg, rgba(17, 18, 18, 1) 0%, rgba(20, 21, 21, 1) 100%);
}

.event-text-columns-layout {
  display: grid;
  gap: clamp(42px, 5vw, 76px);
  align-items: start;
}

.event-text-columns-head {
  display: grid;
  gap: 18px;
}

.event-text-columns-head h2 {
  max-width: 22ch;
  margin: 0;
}

.event-text-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 96px);
  padding-top: 0;
}

.event-text-columns--cols-1 {
  grid-template-columns: minmax(0, 1fr);
}

.event-text-columns--cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3.5vw, 64px);
}

@media (max-width: 980px) and (min-width: 761px) {
  .event-text-columns--cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.event-text-column {
  padding-top: 28px;
  border-top: 1px solid rgba(244, 242, 241, 0.12);
}

.event-text-column h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.event-text-column p {
  max-width: 35rem;
  margin: 18px 0 0;
  color: rgba(244, 242, 241, 0.68);
  font-size: 1.08rem;
  line-height: 1.7;
}

.author-intro-section,
.author-feature-section {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 8vw, 136px) 0;
  background: #111212;
  color: var(--text);
  border-bottom: 1px solid rgba(244, 242, 241, 0.08);
}

.author-intro-grid,
.author-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: clamp(44px, 7vw, 120px);
  align-items: center;
}

.author-feature-section {
  padding-block: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(var(--accent-rgb), 0.09), transparent 34%),
    #111212;
}

.author-feature-section .wrap {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.author-feature-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 62%, rgba(255, 255, 255, 0.018) 62% 63%, transparent 63%);
}

.author-feature-grid {
  position: relative;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 0;
  align-items: stretch;
  min-height: clamp(580px, 48vw, 760px);
  border-top: 1px solid rgba(244, 242, 241, 0.12);
  border-bottom: 1px solid rgba(244, 242, 241, 0.12);
  background: rgba(8, 9, 9, 0.32);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
}

.author-feature-grid::before {
  content: "01";
  position: absolute;
  top: clamp(24px, 3vw, 44px);
  right: clamp(28px, 4vw, 64px);
  z-index: 1;
  color: rgba(244, 242, 241, 0.04);
  font-family: var(--title-font);
  font-size: clamp(5rem, 10vw, 10rem);
  line-height: 0.8;
  pointer-events: none;
}

.author-feature-section--impact .author-feature-grid::before {
  content: "02";
  right: auto;
  left: clamp(28px, 4vw, 64px);
}

.author-intro-copy,
.author-feature-copy {
  display: grid;
  gap: 22px;
}

.author-feature-copy {
  position: relative;
  z-index: 2;
  align-content: center;
  padding: clamp(52px, 6.5vw, 104px);
  background: linear-gradient(135deg, rgba(20, 21, 21, 0.98), rgba(15, 16, 16, 0.84));
  border-left: 1px solid rgba(var(--accent-rgb), 0.28);
}

.author-feature-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
}

.author-feature-copy .eyebrow::after {
  content: "";
  width: clamp(42px, 5vw, 78px);
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.85), transparent);
}

.author-intro-copy h2,
.author-feature-copy h2 {
  max-width: 16ch;
  margin: 0;
}

.author-feature-copy h2 {
  max-width: 12ch;
  font-size: clamp(3rem, 4.6vw, 5.25rem);
  line-height: 0.98;
}

.author-intro-copy .lead,
.author-feature-copy .lead {
  max-width: 47rem;
  margin: 0;
  color: rgba(244, 242, 241, 0.7);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.75;
}

.author-intro-media,
.author-feature-media {
  position: relative;
  min-height: clamp(420px, 44vw, 680px);
  overflow: hidden;
  border: 1px solid rgba(244, 242, 241, 0.1);
}

.author-feature-media {
  min-height: 100%;
  border: 0;
}

.author-feature-media::before {
  content: "";
  position: absolute;
  inset: clamp(14px, 1.5vw, 24px);
  z-index: 2;
  border: 1px solid rgba(var(--accent-rgb), 0.34);
  pointer-events: none;
}

.author-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, transparent 58%, rgba(17, 18, 18, 0.38) 100%),
    linear-gradient(180deg, rgba(10, 11, 11, 0.08), rgba(10, 11, 11, 0.28));
  pointer-events: none;
}

.author-intro-media img,
.author-feature-media img,
.author-closing-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.04) brightness(0.82);
}

.author-books-section {
  padding: clamp(92px, 8vw, 144px) 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--accent-rgb), 0.12) 0%, transparent 42%),
    #141515;
  border-bottom: 1px solid rgba(244, 242, 241, 0.08);
}

.author-section-head {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(48px, 6vw, 82px);
}

.author-section-head h2 {
  max-width: 18ch;
  margin: 0;
}

.author-books-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 2.5vw, 44px);
}

.author-book-card {
  display: grid;
  align-content: start;
  gap: 28px;
}

.author-book-cover {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid rgba(244, 242, 241, 0.14);
  background: #0d0e0e;
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.26);
}

.author-book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-book-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(var(--accent-rgb), 0.2), transparent 42%),
    linear-gradient(180deg, #202121 0%, #0d0e0e 100%);
}

.author-book-placeholder::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(var(--accent-rgb), 0.35);
}

.author-book-placeholder span {
  position: relative;
  max-width: 10ch;
  color: var(--text);
  font-family: var(--title-font);
  font-size: clamp(1.55rem, 2.2vw, 2.5rem);
  line-height: 1.02;
}

.author-book-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.author-book-copy h3 {
  margin: 0;
  font-size: clamp(1.45rem, 1.8vw, 2rem);
}

.author-book-copy p {
  margin: 0;
  color: rgba(244, 242, 241, 0.66);
  line-height: 1.68;
}

.author-book-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 4px;
  color: var(--accent);
  font-family: var(--header-font);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.author-book-link:hover {
  color: var(--text);
}

.author-feature-section--impact {
  background:
    radial-gradient(circle at 82% 18%, rgba(var(--accent-rgb), 0.1), transparent 34%),
    #141515;
}

.author-feature-section--impact .author-feature-media {
  order: 2;
}

.author-feature-section--impact .author-feature-copy {
  order: 1;
  border-right: 1px solid rgba(var(--accent-rgb), 0.28);
  border-left: 0;
  background: linear-gradient(225deg, rgba(20, 21, 21, 0.98), rgba(15, 16, 16, 0.84));
}

.author-feature-section--impact .author-feature-media::after {
  background:
    linear-gradient(270deg, transparent 58%, rgba(17, 18, 18, 0.38) 100%),
    linear-gradient(180deg, rgba(10, 11, 11, 0.08), rgba(10, 11, 11, 0.28));
}

.author-closing {
  padding: 0;
  background: #111212;
}

.author-closing .wrap {
  width: 100%;
  max-width: none;
  margin: 0;
}

.author-closing .story-closing-panel {
  position: relative;
  overflow: hidden;
  min-height: clamp(380px, 34vw, 520px);
  padding: clamp(58px, 7vw, 100px) clamp(24px, 8vw, 124px);
  border-top: 1px solid rgba(244, 242, 241, 0.08);
  border-bottom: 1px solid rgba(244, 242, 241, 0.08);
  border-left: 0;
  border-right: 0;
  background:
    linear-gradient(90deg, rgba(17, 18, 18, 0.99) 0%, rgba(17, 18, 18, 0.94) 38%, rgba(17, 18, 18, 0.5) 67%, rgba(17, 18, 18, 0.82) 100%),
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.16), #111212 56%);
  isolation: isolate;
}

.author-closing-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 20px;
  max-width: 760px;
}

.author-closing-copy h2 {
  max-width: 16ch;
  margin: 0;
}

.author-closing-copy .lead {
  margin: 0;
}

.author-closing-media {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -1;
  width: min(66vw, 70%);
  min-height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.author-closing-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 18, 18, 1) 0%, rgba(17, 18, 18, 0.86) 20%, rgba(17, 18, 18, 0.24) 56%, rgba(17, 18, 18, 0.68) 100%),
    linear-gradient(180deg, rgba(17, 18, 18, 0.18), rgba(17, 18, 18, 0.58));
}

.author-closing-media img {
  filter: grayscale(1) contrast(1.04) brightness(0.62);
  object-position: center 34%;
}

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

@media (max-width: 760px) {
  .author-intro-section,
  .author-books-section,
  .author-feature-section {
    padding: 64px 0;
  }

  .author-feature-section {
    padding-block: 0;
  }

  .author-intro-grid,
  .author-feature-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .author-feature-grid {
    min-height: 0;
    gap: 0;
  }

  .author-intro-media,
  .author-feature-media {
    min-height: 360px;
  }

  .author-feature-section--impact .author-feature-media,
  .author-feature-section--impact .author-feature-copy {
    order: initial;
  }

  .author-feature-copy,
  .author-feature-section--impact .author-feature-copy {
    padding: 48px 28px 56px;
    border: 0;
    border-top: 1px solid rgba(var(--accent-rgb), 0.28);
  }

  .author-feature-section--impact .author-feature-media {
    order: 1;
  }

  .author-feature-section--impact .author-feature-copy {
    order: 2;
  }

  .author-books-grid {
    gap: 44px 18px;
  }

  .author-book-card {
    gap: 20px;
  }

  .author-book-copy h3 {
    font-size: 1.35rem;
  }

  .author-closing-copy {
    padding: 0;
  }

  .author-closing-media {
    inset: 0;
    width: 100%;
    min-height: 100%;
  }

  .author-closing .story-closing-panel {
    min-height: 500px;
    padding: 56px 24px;
    background: linear-gradient(90deg, rgba(17, 18, 18, 0.98), rgba(17, 18, 18, 0.72));
  }

  .author-closing-media::after {
    background: linear-gradient(180deg, rgba(17, 18, 18, 0.7), rgba(17, 18, 18, 0.92));
  }
}

@media (max-width: 520px) {
  .author-books-grid {
    grid-template-columns: 1fr;
  }

  .author-book-card {
    width: min(100%, 360px);
    margin-inline: auto;
  }
}

.event-format-section {
  padding: 104px 0;
}

.event-format-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: start;
}

.event-section-head-sticky {
  position: sticky;
  top: calc(var(--header-offset-compact) + 32px);
  margin-bottom: 0;
}

.event-format-grid {
  grid-template-columns: 1fr;
}

.event-format-card {
  display: grid;
  grid-template-columns: 58px minmax(160px, 0.32fr) minmax(0, 1fr);
  column-gap: clamp(16px, 2.4vw, 34px);
  row-gap: 12px;
  align-items: start;
  min-height: 0;
}

.event-format-number {
  justify-self: end;
  align-self: start;
  min-width: 58px;
  margin: 0;
  color: var(--accent);
  font-family: var(--header-font);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.62;
  text-align: right;
  transform: translateY(-0.66em);
}

.event-format-card h3 {
  align-self: start;
  transform: translateY(0.18em);
}

.event-format-card p:not(.event-format-number) {
  margin-top: 0;
}

.event-gallery-section {
  padding: 104px 0 116px;
  background: #111212;
  color: var(--text);
  border-top: 1px solid rgba(244, 242, 241, 0.08);
}

.event-gallery-section .event-section-head,
.event-gallery-shell {
  padding-inline: clamp(8px, 1.8vw, 24px);
}

.event-gallery-shell {
  position: relative;
  overflow: hidden;
}

.event-gallery-carousel {
  overflow: visible;
  padding-bottom: 68px;
}

.event-gallery-track {
  align-items: stretch;
}

.event-gallery-item {
  position: relative;
  overflow: hidden;
  display: block;
  height: clamp(340px, 34vw, 560px);
  margin: 0;
  border: 1px solid rgba(244, 242, 241, 0.1);
  background: #0d0e0e;
  color: inherit;
  text-decoration: none;
}

.event-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 18, 18, 0.06) 0%, rgba(17, 18, 18, 0.28) 100%);
  pointer-events: none;
}

.event-gallery-item img {
  display: block;
  filter: grayscale(0.06) contrast(1.03) brightness(0.86);
  transition: transform 500ms ease;
}

.event-gallery-item:hover img {
  transform: scale(1.035);
}

.event-gallery-zoom {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(244, 242, 241, 0.3);
  border-radius: 999px;
  color: rgba(244, 242, 241, 0.92);
  background: rgba(17, 18, 18, 0.42);
  backdrop-filter: blur(12px);
}

.event-gallery-controls {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 16px;
  align-items: center;
}

.event-gallery-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(244, 242, 241, 0.22);
  border-radius: 999px;
  color: var(--text);
  background: rgba(17, 18, 18, 0.72);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.event-gallery-button:hover,
.event-gallery-button:focus-visible {
  border-color: rgba(var(--accent-rgb), 0.62);
  color: var(--accent);
  background: rgba(27, 28, 28, 0.96);
}

.event-gallery-button.swiper-button-disabled {
  opacity: 0.34;
  cursor: default;
}

.event-gallery-pagination {
  position: static;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.event-gallery-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0;
  background: rgba(244, 242, 241, 0.48);
  opacity: 1;
}

.event-gallery-pagination .swiper-pagination-bullet-active {
  background: var(--accent);
}

.event-closing {
  padding: 0;
}

.event-closing .wrap {
  width: 100%;
  max-width: none;
}

.event-closing .story-closing-panel {
  position: relative;
  overflow: hidden;
  min-height: clamp(380px, 34vw, 520px);
  padding: clamp(54px, 6vw, 86px) clamp(24px, 8vw, 112px);
  border-left: 0;
  border-right: 0;
  background:
    linear-gradient(90deg, rgba(17, 18, 18, 0.98) 0%, rgba(17, 18, 18, 0.9) 42%, rgba(17, 18, 18, 0.48) 68%, rgba(17, 18, 18, 0.88) 100%),
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.18) 0%, rgba(17, 18, 18, 0.94) 48%, rgba(17, 18, 18, 1) 100%);
  isolation: isolate;
}

.event-closing-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.event-closing-media {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -1;
  width: min(58vw, 62%);
  pointer-events: none;
}

.event-closing-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 18, 18, 1) 0%, rgba(17, 18, 18, 0.82) 22%, rgba(17, 18, 18, 0.28) 52%, rgba(17, 18, 18, 0.82) 100%),
    linear-gradient(180deg, rgba(17, 18, 18, 0.18) 0%, rgba(17, 18, 18, 0.1) 42%, rgba(17, 18, 18, 0.6) 100%);
}

.event-closing-media img {
  filter: grayscale(1) contrast(1.04) brightness(0.62);
}

.speaking-intro-section {
  padding: 112px 0;
  background: #141515;
  color: var(--text);
  border-bottom: 1px solid rgba(244, 242, 241, 0.08);
}

.speaking-intro-section .wrap,
.speaking-formats-section .wrap,
.speaking-deep-section .wrap {
  width: min(1760px, calc(100% - 56px));
  padding-inline: clamp(8px, 1.8vw, 24px);
}

.speaking-intro-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 6vw, 112px);
  align-items: stretch;
}

.speaking-intro-copy {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: 18px 0;
}

.speaking-intro-copy h2,
.speaking-formats-head h2,
.speaking-deep-copy h2 {
  margin: 0;
}

.speaking-intro-copy h2 {
  max-width: 14ch;
}

.speaking-intro-copy .prose {
  max-width: 48rem;
  color: rgba(244, 242, 241, 0.72);
}

.speaking-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.speaking-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid rgba(244, 242, 241, 0.16);
  border-radius: 999px;
  color: rgba(244, 242, 241, 0.78);
  font-family: var(--header-font);
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.speaking-intro-media,
.speaking-deep-media {
  position: relative;
  overflow: hidden;
  min-height: clamp(440px, 40vw, 680px);
  border: 1px solid rgba(244, 242, 241, 0.1);
  background: #0d0e0e;
}

.speaking-intro-media::after,
.speaking-deep-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 18, 18, 0.08) 0%, rgba(17, 18, 18, 0.62) 100%),
    linear-gradient(90deg, rgba(17, 18, 18, 0.42) 0%, rgba(17, 18, 18, 0.02) 50%, rgba(17, 18, 18, 0.36) 100%);
}

.speaking-intro-media img,
.speaking-deep-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.18) contrast(1.04) brightness(0.78);
}

.speaking-intro-section--keynote {
  padding: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(var(--accent-rgb), 0.14) 0%, rgba(17, 18, 18, 0.96) 42%, #111212 100%);
  border-top: 1px solid rgba(244, 242, 241, 0.08);
}

.speaking-intro-section--keynote .wrap {
  width: 100%;
  max-width: none;
  padding-inline: 0;
}

.speaking-intro-section--keynote .speaking-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  min-height: 0;
  padding: clamp(68px, 8vw, 124px) clamp(24px, 7vw, 112px);
  border-top: 1px solid rgba(244, 242, 241, 0.08);
  border-bottom: 1px solid rgba(244, 242, 241, 0.08);
  background:
    linear-gradient(180deg, rgba(244, 242, 241, 0.035) 0%, rgba(17, 18, 18, 0.12) 100%),
    rgba(17, 18, 18, 0.62);
}

.speaking-intro-section--keynote .speaking-intro-copy {
  width: min(920px, 100%);
  min-height: 0;
  align-content: center;
  justify-items: center;
  padding: 0;
  text-align: center;
  background: none;
}

.speaking-intro-section--keynote .speaking-intro-copy h2 {
  max-width: 18ch;
}

.speaking-intro-section--keynote .speaking-intro-media {
  display: none;
}

.speaking-intro-section--lectures {
  padding: 0;
  background:
    linear-gradient(90deg, rgba(var(--accent-rgb), 0.1) 0%, rgba(17, 18, 18, 0) 34%),
    #111212;
}

.speaking-intro-section--lectures .wrap {
  width: 100%;
  max-width: none;
  padding-inline: 0;
}

.speaking-intro-section--lectures .speaking-intro-grid {
  grid-template-columns: 1fr;
  gap: 0;
  justify-items: center;
  min-height: 0;
  padding: clamp(68px, 8vw, 124px) clamp(24px, 7vw, 112px);
  border-top: 1px solid rgba(244, 242, 241, 0.08);
  border-bottom: 1px solid rgba(244, 242, 241, 0.08);
  background:
    linear-gradient(135deg, rgba(244, 242, 241, 0.045) 0%, rgba(17, 18, 18, 0.16) 100%),
    rgba(20, 21, 21, 0.72);
}

.speaking-intro-section--lectures .speaking-intro-copy {
  width: min(920px, 100%);
  align-content: center;
  justify-items: center;
  padding: 0;
  border-left: 0;
  text-align: center;
  background: none;
}

.speaking-intro-section--lectures .speaking-intro-copy h2 {
  max-width: 18ch;
}

.speaking-intro-section--keynote .speaking-intro-copy .prose,
.speaking-intro-section--lectures .speaking-intro-copy .prose {
  max-width: 760px;
  margin-inline: auto;
}

.speaking-intro-section--lectures .speaking-intro-media {
  display: none;
}

.speaking-intro-section--keynote .speaking-tags,
.speaking-intro-section--lectures .speaking-tags {
  display: none;
}

.speaking-formats-section {
  padding: 108px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--accent-rgb), 0.14) 0%, transparent 46%),
    linear-gradient(180deg, #3a352d 0%, #151616 54%, #111212 100%);
  color: var(--text);
  border-bottom: 1px solid rgba(244, 242, 241, 0.08);
}

.speaking-note-section {
  padding: 0;
  background: #111212;
  color: var(--text);
  border-top: 1px solid rgba(244, 242, 241, 0.08);
  border-bottom: 1px solid rgba(244, 242, 241, 0.08);
}

.speaking-note-section .wrap {
  width: 100%;
  max-width: none;
  padding-inline: 0;
}

.speaking-note-box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  width: 100%;
  margin: 0;
  padding: clamp(72px, 8vw, 118px) clamp(28px, 7vw, 112px);
  text-align: left;
}

.speaking-note-box h2 {
  max-width: 18ch;
  margin: 0;
}

.speaking-note-heading {
  display: grid;
  gap: clamp(24px, 4vw, 54px);
}

.speaking-note-box .eyebrow {
  margin: 0;
}

.speaking-note-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 6vw, 96px);
  width: 100%;
}

.speaking-note-columns p {
  margin: 0;
  color: rgba(244, 242, 241, 0.72);
  line-height: 1.7;
}

.speaking-note-box--with-media {
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1.18fr);
  grid-template-areas:
    "heading media"
    "columns media";
  column-gap: clamp(44px, 7vw, 118px);
  row-gap: clamp(44px, 6vw, 82px);
  min-height: clamp(600px, 38vw, 760px);
  overflow: hidden;
}

.speaking-note-box--with-media .speaking-note-heading {
  grid-area: heading;
  align-self: end;
  position: relative;
  z-index: 2;
}

.speaking-note-box--with-media h2 {
  max-width: 14ch;
}

.speaking-note-box--with-media .speaking-note-columns {
  grid-area: columns;
  grid-template-columns: 1fr;
  align-self: start;
  gap: 22px;
  max-width: 58ch;
  position: relative;
  z-index: 2;
}

.speaking-note-box--with-media .speaking-note-columns p + p {
  padding-top: 22px;
  border-top: 1px solid rgba(var(--accent-rgb), 0.24);
}

.speaking-note-media {
  grid-area: media;
  position: relative;
  align-self: stretch;
  min-height: 100%;
  margin: calc(clamp(72px, 8vw, 118px) * -1) calc(clamp(28px, 7vw, 112px) * -1) calc(clamp(72px, 8vw, 118px) * -1) 0;
  overflow: hidden;
  clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%);
  isolation: isolate;
}

.speaking-note-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(17, 18, 18, 0.72) 0%, rgba(17, 18, 18, 0.06) 28%, transparent 55%),
    linear-gradient(0deg, rgba(17, 18, 18, 0.42) 0%, transparent 40%);
}

.speaking-note-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(0.78) contrast(1.08);
  transform: scale(1.015);
}

.speaking-note-section--keynote .speaking-note-box {
  background:
    linear-gradient(90deg, rgba(var(--accent-rgb), 0.12) 0%, rgba(17, 18, 18, 0.98) 35%, rgba(17, 18, 18, 1) 100%);
}

.speaking-note-section--keynote .speaking-note-box::after {
  content: "";
  position: absolute;
  top: calc(clamp(72px, 8vw, 118px) + 180px);
  bottom: clamp(72px, 8vw, 118px);
  left: 50%;
  width: 1px;
  background: rgba(var(--accent-rgb), 0.22);
}

.speaking-note-section--lectures .speaking-note-box {
  background:
    linear-gradient(90deg, rgba(17, 18, 18, 1) 0%, rgba(17, 18, 18, 0.96) 56%, rgba(244, 242, 241, 0.04) 100%);
}

.speaking-note-section--lectures .speaking-note-box::before {
  content: "";
  position: absolute;
  top: calc(clamp(72px, 8vw, 118px) + 180px);
  bottom: clamp(72px, 8vw, 118px);
  left: 50%;
  width: 1px;
  background: rgba(244, 242, 241, 0.14);
}

.speaking-note-section--keynote .speaking-note-box--with-media::after,
.speaking-note-section--lectures .speaking-note-box--with-media::before {
  top: 12%;
  bottom: 12%;
  left: 45.5%;
  z-index: 3;
  background: linear-gradient(180deg, transparent 0%, rgba(var(--accent-rgb), 0.7) 22%, rgba(var(--accent-rgb), 0.22) 78%, transparent 100%);
}

.speaking-formats-inner {
  display: grid;
  gap: clamp(42px, 5vw, 72px);
}

.speaking-formats-head {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.speaking-formats-head h2 {
  max-width: 21ch;
}

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

.speaking-format-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 310px;
  padding: 30px 26px;
  border: 1px solid rgba(244, 242, 241, 0.14);
  background:
    linear-gradient(180deg, rgba(244, 242, 241, 0.05) 0%, rgba(17, 18, 18, 0.14) 100%),
    rgba(17, 18, 18, 0.2);
}

.speaking-format-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  color: var(--accent);
  background: rgba(0, 0, 0, 0.12);
  font-size: 1.45rem;
}

.speaking-format-card h3 {
  margin: 0;
  font-family: var(--ui-font);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.speaking-format-card p {
  margin: 0;
  color: rgba(244, 242, 241, 0.72);
  line-height: 1.7;
}

.speaking-deep-section {
  padding: 112px 0;
  background: #111212;
  color: var(--text);
  border-bottom: 1px solid rgba(244, 242, 241, 0.08);
}

.speaking-deep-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1fr);
  gap: clamp(42px, 6vw, 112px);
  align-items: stretch;
}

.speaking-deep-copy {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 16px 0;
}

.speaking-deep-copy h2 {
  max-width: 15ch;
}

.speaking-deep-copy .lead {
  max-width: 48rem;
  margin: 0;
  color: rgba(244, 242, 241, 0.72);
  line-height: 1.7;
}

.speaking-deep-list {
  display: grid;
  gap: 0;
  margin-top: 18px;
  border-top: 1px solid rgba(244, 242, 241, 0.1);
}

.speaking-deep-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(244, 242, 241, 0.1);
}

.speaking-deep-item h3 {
  margin: 0;
  font-size: clamp(1.28rem, 1.8vw, 1.8rem);
}

.speaking-deep-item p {
  margin: 8px 0 0;
  color: rgba(244, 242, 241, 0.66);
  line-height: 1.65;
}

.speaking-closing {
  padding: 0;
  background: #141515;
}

.speaking-closing .wrap {
  width: 100%;
  max-width: none;
  margin: 0;
}

.speaking-closing .story-closing-panel {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: clamp(360px, 30vw, 500px);
  padding: clamp(54px, 6vw, 86px) clamp(24px, 8vw, 112px);
  border-left: 0;
  border-right: 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 48%, rgba(var(--accent-rgb), 0.16) 0%, rgba(17, 18, 18, 0.96) 34%, rgba(17, 18, 18, 1) 72%);
}

.speaking-closing .story-closing-panel h2 {
  max-width: 18ch;
}

.speaking-closing .story-closing-panel .lead {
  margin-inline: auto;
}

.speaking-closing .story-closing-actions {
  justify-content: center;
}

.contact-closing {
  padding: 0;
  background: #141515;
}

.contact-closing .wrap {
  width: 100%;
  max-width: none;
  margin: 0;
}

.contact-closing .story-closing-panel {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: clamp(320px, 28vw, 460px);
  border-left: 0;
  border-right: 0;
  text-align: center;
  padding: clamp(54px, 6vw, 86px) clamp(24px, 8vw, 112px);
  background:
    radial-gradient(circle at 50% 48%, rgba(var(--accent-rgb), 0.16) 0%, rgba(17, 18, 18, 0.96) 34%, rgba(17, 18, 18, 1) 72%);
}

.contact-closing .story-closing-panel h2 {
  max-width: 20ch;
}

.contact-closing .story-closing-panel .lead {
  margin-inline: auto;
}

.contact-closing .story-hero-actions {
  justify-content: center;
}

.speaking-deep-section:has(+ .speaking-closing),
.speaking-formats-section:has(+ .speaking-closing) {
  padding-bottom: 0;
}

.speaking-formats-section--lectures:has(+ .speaking-closing) {
  padding-bottom: 108px;
}

.speaking-deep-section--keynote:has(+ .speaking-closing) {
  padding-bottom: 112px;
}

.event-signal-section {
  padding: 112px 0;
  background:
    linear-gradient(180deg, rgba(17, 18, 18, 1) 0%, rgba(20, 21, 21, 1) 100%);
  color: var(--text);
  border-top: 1px solid rgba(244, 242, 241, 0.08);
  border-bottom: 1px solid rgba(244, 242, 241, 0.08);
}

.event-signal-section .wrap,
.event-private-section .wrap {
  width: min(1760px, calc(100% - 56px));
  padding-inline: clamp(8px, 1.8vw, 24px);
}

.event-signal-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.75fr);
  gap: clamp(36px, 6vw, 104px);
  align-items: stretch;
}

.event-signal-copy {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 20px 32px 20px 8px;
}

.event-signal-copy h2,
.event-private-copy h2 {
  max-width: 15ch;
  margin: 0;
}

.event-signal-copy .lead,
.event-private-copy .lead {
  max-width: 47rem;
  margin: 0;
  color: rgba(244, 242, 241, 0.72);
  line-height: 1.7;
}

.event-signal-list {
  display: grid;
  margin-top: 22px;
  border-top: 1px solid rgba(244, 242, 241, 0.1);
}

.event-signal-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(244, 242, 241, 0.1);
}

.event-signal-number {
  margin: 0;
  color: var(--accent);
  font-family: var(--header-font);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.event-signal-row h3,
.event-private-moment h3 {
  margin: 0;
}

.event-signal-row p:not(.event-signal-number),
.event-private-moment p {
  margin: 8px 0 0;
  color: rgba(244, 242, 241, 0.66);
  line-height: 1.65;
}

.event-signal-media {
  position: relative;
  overflow: hidden;
  min-height: clamp(520px, 42vw, 720px);
  border: 1px solid rgba(244, 242, 241, 0.1);
  background: #0d0e0e;
}

.event-signal-media::after,
.event-private-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 18, 18, 0.04) 0%, rgba(17, 18, 18, 0.68) 100%),
    linear-gradient(90deg, rgba(17, 18, 18, 0.42) 0%, rgba(17, 18, 18, 0.02) 48%, rgba(17, 18, 18, 0.5) 100%);
}

.event-signal-media img,
.event-private-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) contrast(1.04) brightness(0.78);
}

.event-private-section {
  padding: 112px 0;
  background: #141515;
  color: var(--text);
  border-bottom: 1px solid rgba(244, 242, 241, 0.08);
}

.event-private-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(38px, 6vw, 110px);
  align-items: center;
}

.event-private-media {
  position: relative;
  overflow: hidden;
  min-height: clamp(520px, 44vw, 760px);
  border: 1px solid rgba(244, 242, 241, 0.1);
  background: #0d0e0e;
}

.event-private-copy {
  display: grid;
  gap: 22px;
  padding-right: clamp(28px, 5vw, 92px);
}

.event-private-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  max-width: 58rem;
}

.event-private-moment {
  padding: 24px 0;
  border-top: 1px solid rgba(244, 242, 241, 0.1);
}

.event-usecases-section--private {
  background:
    linear-gradient(180deg, rgba(17, 18, 18, 1) 0%, rgba(20, 21, 21, 1) 100%);
}

.event-format-section--virtual {
  background: #111212;
}

.event-gallery-section--private .event-gallery-item {
  height: clamp(380px, 38vw, 620px);
}

@media (max-width: 1180px) {
  .story-metrics-grid,
  .event-metrics-grid,
  .bio-metrics-grid,
  .bio-feature-grid,
  .bio-signature-grid,
  .bio-journey-grid,
  .bio-awards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bio-profile-grid,
  .bio-proof-grid {
    grid-template-columns: 1fr;
  }

  .bio-gallery-carousel {
    padding-inline: clamp(18px, 3.5vw, 42px);
  }

  .bio-gallery-slide {
    width: min(84vw, 980px);
    height: clamp(480px, 66vw, 680px);
  }

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

  .bio-intro-copy {
    grid-column: 1 / -1;
    max-width: 980px;
    padding: 0 0 12px;
  }

  .bio-intro-copy h2 {
    max-width: 15ch;
  }

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

  .bio-feature-card {
    grid-template-columns: 1fr;
  }

  .event-overview-grid,
  .event-format-layout,
  .speaking-intro-grid,
  .speaking-deep-grid {
    grid-template-columns: 1fr;
  }

  .event-overview-copy {
    max-width: 900px;
  }

  .event-section-head-sticky {
    position: static;
  }

  .event-signal-grid,
  .event-private-grid {
    grid-template-columns: 1fr;
  }

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

  .event-signal-media,
  .event-private-media,
  .speaking-intro-media,
  .speaking-deep-media {
    min-height: 420px;
  }

  .speaking-intro-section--keynote .speaking-intro-copy,
  .speaking-intro-section--lectures .speaking-intro-copy {
    width: min(920px, 100%);
  }

  .speaking-intro-section--lectures .speaking-intro-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .speaking-intro-section--lectures .speaking-intro-media {
    min-height: 460px;
    border-right: 0;
    border-bottom: 1px solid rgba(244, 242, 241, 0.1);
  }

  .speaking-intro-section--lectures .speaking-intro-copy {
    border-left: 0;
  }

  .event-usecases-section .wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .event-usecase-content {
    max-width: none;
    padding: clamp(54px, 7vw, 86px) clamp(24px, 5vw, 56px);
  }

  .event-usecases-section .event-section-head {
    margin-bottom: clamp(34px, 5vw, 58px);
  }

  .event-usecase-media {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .bio-feature-grid,
  .event-metrics-grid,
  .event-usecase-grid,
  .bio-metrics-grid,
  .bio-signature-grid,
  .bio-journey-grid,
  .bio-awards-grid,
  .story-metrics-grid {
    grid-template-columns: 1fr;
  }

  .bio-intro-grid {
    grid-template-columns: 1fr;
  }

  .bio-intro-stack {
    gap: 24px;
  }

  .bio-intro,
  .bio-signature-section,
  .bio-gallery-section,
  .bio-awards-section,
  .bio-proof-section {
    padding-top: 64px;
  }

  .bio-gallery-section {
    padding-bottom: 48px;
  }

  .bio-gallery-carousel {
    padding: 0 14px 68px;
  }

  .bio-gallery-slide {
    width: calc(100vw - 28px);
    height: clamp(380px, 112vw, 560px);
  }

  .bio-gallery-zoom {
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .bio-gallery-controls {
    right: 14px;
    left: 14px;
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    gap: 10px;
  }

  .bio-gallery-button {
    width: 46px;
    height: 46px;
  }

  .bio-gallery-pagination .swiper-pagination-bullet {
    width: 16px;
  }

  .bio-gallery-pagination .swiper-pagination-bullet-active {
    width: 32px;
  }

  .bio-profile-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .bio-intro .wrap {
    width: min(100%, calc(100% - 24px));
    padding-inline: 8px;
  }

  .bio-intro-copy {
    max-width: none;
    padding: 0 4px;
  }

  .bio-intro-copy h2,
  .bio-awards-head h2 {
    max-width: none;
  }

  .bio-intro-copy .prose {
    max-width: none;
    font-size: 1.02rem;
  }

  .bio-metric {
    min-height: 0;
    padding: 26px 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(244, 242, 241, 0.08);
  }

  .bio-metric:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .bio-feature-card,
  .bio-signature-card {
    min-height: 0;
  }

  .bio-closing .story-closing-panel {
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 0 0 56px;
    background:
      linear-gradient(180deg, rgba(17, 18, 18, 1) 0%, rgba(17, 18, 18, 1) 100%);
  }

  .bio-closing-media {
    position: relative;
    inset: auto;
    order: 1;
    width: 100%;
    aspect-ratio: 4 / 3.6;
    opacity: 1;
  }

  .bio-closing-media::after {
    background:
      linear-gradient(0deg, rgba(17, 18, 18, 0.92) 0%, rgba(17, 18, 18, 0.68) 52%, rgba(17, 18, 18, 0.16) 100%);
  }

  .bio-closing-copy {
    order: 2;
    width: min(100%, calc(100% - 24px));
    max-width: none;
    margin: 0 auto;
    padding: 24px 8px 0;
  }

  .bio-intro-media {
    min-height: 320px;
  }

  .event-overview-section,
  .event-signal-section,
  .event-private-section,
  .event-text-columns-section,
  .event-format-section,
  .event-gallery-section,
  .speaking-intro-section,
  .speaking-note-section,
  .speaking-formats-section,
  .speaking-deep-section {
    padding: 64px 0;
  }

  .event-overview-section .wrap,
  .event-signal-section .wrap,
  .event-private-section .wrap,
  .event-text-columns-section .wrap,
  .event-gallery-section .wrap,
  .speaking-intro-section .wrap,
  .speaking-note-section .wrap,
  .speaking-formats-section .wrap,
  .speaking-deep-section .wrap {
    width: min(100%, calc(100% - 24px));
    padding-inline: 8px;
  }

  .event-gallery-section .event-section-head,
  .event-gallery-shell {
    padding-inline: 4px;
  }

  .event-overview-grid {
    gap: 28px;
  }

  .event-overview-copy {
    gap: 20px;
    padding: 0 4px;
  }

  .speaking-intro-copy,
  .speaking-deep-copy {
    gap: 20px;
    padding: 0 4px;
  }

  .event-overview-copy h2,
  .event-section-head h2,
  .speaking-intro-copy h2,
  .speaking-formats-head h2,
  .speaking-deep-copy h2 {
    max-width: none;
  }

  .event-overview-copy .prose,
  .speaking-intro-copy .prose,
  .speaking-deep-copy .lead {
    max-width: none;
    font-size: 1.02rem;
  }

  .speaking-format-grid {
    grid-template-columns: 1fr;
  }

  .speaking-format-card {
    min-height: 0;
    padding: 26px 22px;
  }

  .speaking-note-box {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 52px 24px;
    text-align: center;
  }

  .speaking-note-box--with-media {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "media"
      "columns";
    min-height: 0;
    row-gap: 30px;
    overflow: hidden;
    text-align: left;
  }

  .speaking-note-box--with-media .speaking-note-heading {
    align-self: start;
  }

  .speaking-note-box--with-media h2 {
    max-width: none;
    margin-inline: 0;
  }

  .speaking-note-box--with-media .speaking-note-columns {
    max-width: none;
  }

  .speaking-note-media {
    min-height: clamp(280px, 78vw, 430px);
    margin: 4px -24px 0;
    clip-path: polygon(0 7%, 100% 0, 100% 100%, 0 100%);
  }

  .speaking-note-media::after {
    background:
      linear-gradient(180deg, rgba(17, 18, 18, 0.34) 0%, transparent 32%),
      linear-gradient(0deg, rgba(17, 18, 18, 0.5) 0%, transparent 45%);
  }

  .speaking-note-section {
    padding: 0;
  }

  .speaking-note-section .wrap {
    width: 100%;
    padding-inline: 0;
  }

  .speaking-note-box h2 {
    max-width: none;
    margin-inline: auto;
  }

  .speaking-note-columns {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: none;
  }

  .speaking-note-box .eyebrow {
    grid-column: auto;
  }

  .speaking-note-section--keynote .speaking-note-box::after,
  .speaking-note-section--lectures .speaking-note-box::before {
    display: none;
  }

  .event-text-columns-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .event-text-columns-head h2 {
    max-width: none;
  }

  .event-text-columns {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 0;
  }

  .event-text-column {
    padding-top: 22px;
  }

  .event-text-column p {
    max-width: none;
    font-size: 1.02rem;
  }

  .event-overview-media {
    min-height: 320px;
  }

  .event-signal-copy,
  .event-private-copy {
    gap: 18px;
    padding: 0 4px;
  }

  .event-signal-copy h2,
  .event-private-copy h2 {
    max-width: none;
  }

  .event-signal-copy .lead,
  .event-private-copy .lead {
    max-width: none;
    font-size: 1.02rem;
  }

  .event-signal-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }

  .event-signal-media,
  .event-private-media {
    min-height: 340px;
  }

  .event-private-media {
    order: 2;
  }

  .event-private-copy {
    order: 1;
  }

  .event-metric {
    min-height: 0;
    padding: 26px 24px;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(244, 242, 241, 0.08);
  }

  .event-metric:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .event-usecase-card,
  .event-format-card {
    min-height: 0;
    padding: 24px 20px;
  }

  .event-usecase-card {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding: 24px 20px;
  }

  .event-usecase-icon {
    top: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
  }

  .event-usecase-icon i {
    font-size: 1.2rem;
  }

  .event-usecase-grid {
    grid-template-columns: 1fr;
  }

  .event-usecase-card:first-child {
    grid-column: auto;
  }

  .event-usecase-card h3,
  .event-usecase-card p {
    max-width: none;
  }

  .event-usecase-card h3 {
    padding-right: 0;
    margin-top: 58px;
  }

  .event-usecase-media {
    min-height: 320px;
    aspect-ratio: 4 / 3;
  }

  .event-format-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .event-format-number {
    justify-self: start;
    min-width: 0;
    text-align: left;
    transform: none;
  }

  .event-format-card h3 {
    align-self: start;
    transform: none;
  }

  .event-format-card p:not(.event-format-number) {
    margin-top: 4px;
  }

  .event-gallery-carousel {
    width: 100%;
    padding-bottom: 62px;
    overflow: hidden;
  }

  .event-gallery-item,
  .event-gallery-section--private .event-gallery-item {
    height: min(360px, 92vw);
  }

  .event-gallery-controls {
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    gap: 12px;
    right: 4px;
    left: 4px;
  }

  .event-gallery-button {
    width: 46px;
    height: 46px;
  }

  .event-gallery-zoom {
    width: 40px;
    height: 40px;
    right: 14px;
    bottom: 14px;
  }

  .event-closing .story-closing-panel {
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 0 0 56px;
    background:
      linear-gradient(180deg, rgba(17, 18, 18, 1) 0%, rgba(17, 18, 18, 1) 100%);
  }

  .event-closing-media {
    position: relative;
    inset: auto;
    order: 1;
    width: 100%;
    aspect-ratio: 4 / 3.4;
    opacity: 1;
  }

  .event-closing-media::after {
    background:
      linear-gradient(0deg, rgba(17, 18, 18, 0.92) 0%, rgba(17, 18, 18, 0.68) 52%, rgba(17, 18, 18, 0.16) 100%);
  }

  .event-closing-copy {
    order: 2;
    width: min(100%, calc(100% - 24px));
    max-width: none;
    margin: 0 auto;
    padding: 24px 8px 0;
  }

  .speaking-intro-section--keynote {
    padding: 0;
  }

  .speaking-intro-section--keynote .wrap {
    width: 100%;
    padding-inline: 0;
  }

  .speaking-intro-section--keynote .speaking-intro-grid,
  .speaking-intro-section--lectures .speaking-intro-grid {
    min-height: 0;
    padding: 52px 24px;
  }

  .speaking-intro-section--keynote .speaking-intro-copy {
    width: 100%;
    min-height: 0;
    padding: 0;
  }

  .speaking-intro-section--keynote .speaking-intro-media {
    display: none;
  }

  .speaking-intro-section--keynote .speaking-tags,
  .speaking-intro-section--lectures .speaking-tags {
    display: none;
  }

  .speaking-intro-section--lectures {
    padding: 0;
  }

  .speaking-intro-section--lectures .wrap {
    width: 100%;
    padding-inline: 0;
  }

  .speaking-intro-section--lectures .speaking-intro-copy {
    padding: 0;
  }

  .speaking-intro-section--lectures .speaking-intro-media {
    display: none;
  }

  .speaking-formats-section--lectures:has(+ .speaking-closing) {
    padding-bottom: 64px;
  }

  .speaking-deep-section--keynote:has(+ .speaking-closing) {
    padding-bottom: 64px;
  }
}

.editorial-band {
  position: relative;
  overflow: hidden;
  padding: 72px 0 88px;
  background: #111212;
  border-top: 1px solid rgba(244, 242, 241, 0.08);
  border-bottom: 1px solid rgba(244, 242, 241, 0.08);
}

.editorial-band .wrap {
  width: min(1760px, calc(100% - 56px));
}

.editorial-band-media {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(52vw, 50%);
  min-width: 540px;
  max-width: 960px;
  pointer-events: none;
}

.editorial-band-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 18, 18, 0.08) 0%, rgba(17, 18, 18, 0.14) 26%, rgba(17, 18, 18, 0.5) 72%, rgba(17, 18, 18, 0.98) 100%),
    linear-gradient(180deg, rgba(17, 18, 18, 0.58) 0%, rgba(17, 18, 18, 0.34) 48%, rgba(17, 18, 18, 0.72) 100%);
}

.editorial-band-media-image,
.editorial-band-media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(0.82);
  opacity: var(--media-opacity, 0.58);
}

.editorial-band-media.media-tone-color .editorial-band-media-image,
.editorial-band-media.media-tone-color .editorial-band-media-video {
  filter: contrast(1.04) brightness(0.86);
}

.editorial-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: clamp(440px, 52vw, 620px);
  padding-block: clamp(18px, 3vw, 28px);
}

.editorial-band-copy {
  width: min(100%, 760px);
  margin-left: auto;
}

.editorial-band-copy h2 {
  max-width: 24ch;
  margin-bottom: 18px;
}

.editorial-band-copy .lead {
  max-width: 36rem;
  margin: 0 0 20px;
}

.editorial-band-body {
  display: grid;
  gap: 14px;
}

.editorial-band-body p {
  margin: 0;
}

.editorial-box-actions {
  margin-top: 24px;
}

.corporate-columns {
  padding: 56px 0 96px;
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.24) 0%, rgba(var(--accent-rgb), 0.18) 100%);
  border-bottom: 1px solid rgba(16, 14, 12, 0.34);
}

.corporate-columns-inner {
  display: grid;
  gap: 34px;
  padding-block: clamp(18px, 3vw, 28px);
}

.corporate-columns .eyebrow {
  color: rgba(244, 242, 241, 0.72);
}

.corporate-columns-head {
  display: grid;
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.corporate-columns-head h2 {
  max-width: 26ch;
  margin: 0;
  color: rgba(244, 242, 241, 0.94);
}

.corporate-columns-head .lead {
  max-width: 44rem;
  margin: 0;
  color: rgba(244, 242, 241, 0.78);
}

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

.corporate-column {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 280px;
  padding: 28px 24px 26px;
  background: transparent;
  border: 1px solid rgba(244, 242, 241, 0.14);
}

.corporate-column-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  color: var(--accent);
  background: rgba(0, 0, 0, 0.12);
  font-size: 24px;
}

.corporate-column h3 {
  margin: 0;
  font-family: var(--ui-font);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 242, 241, 0.96);
}

.corporate-column p {
  margin: 0;
  color: rgba(244, 242, 241, 0.8);
  line-height: 1.7;
}

.corporate-column-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
  color: rgba(244, 242, 241, 0.94);
  font-family: var(--header-font);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.corporate-column-action i {
  font-size: 1rem;
  transition: transform 160ms ease;
}

.corporate-column-action:hover i,
.corporate-column-action:focus-visible i {
  transform: translateX(3px);
}

.corporate-columns-actions {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.corporate-columns-actions .btn-primary {
  background: rgba(244, 242, 241, 0.08);
  border: 1px solid rgba(244, 242, 241, 0.18);
  color: rgba(244, 242, 241, 0.94);
}

.corporate-columns-actions .btn-primary:hover {
  background: rgba(244, 242, 241, 0.14);
  color: #fff;
}

.logo-wall {
  padding: 0 0 96px;
  background: #111212;
}

.logo-wall-hero {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  padding: 120px 0 180px;
  background: #0f1010;
}

.logo-wall-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.logo-wall-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 11, 0.54) 0%, rgba(10, 10, 11, 0.34) 36%, rgba(10, 10, 11, 0.72) 100%),
    linear-gradient(90deg, rgba(10, 10, 11, 0.24) 0%, rgba(10, 10, 11, 0.08) 50%, rgba(10, 10, 11, 0.24) 100%);
}

.logo-wall-media-image,
.logo-wall-media-video {
  width: 100%;
  height: 115%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.02) brightness(0.42);
  transform: translate3d(0, 0, 0) scale(1.04);
  will-change: transform;
}

.logo-wall-media.media-tone-color .logo-wall-media-image,
.logo-wall-media.media-tone-color .logo-wall-media-video {
  filter: contrast(1.02) brightness(0.5);
}

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

.logo-wall-hero-inner .eyebrow {
  color: var(--accent);
}

.logo-wall-hero-inner h2 {
  max-width: 20ch;
  color: rgba(244, 242, 241, 0.96);
}

.logo-wall-panel-wrap {
  position: relative;
  z-index: 2;
  margin-top: -108px;
}

.logo-wall-panel {
  padding: 42px 40px;
  background: #ffffff;
  border: 1px solid rgba(26, 22, 18, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

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

.logo-wall-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 148px;
  padding: 24px;
  border: 1px solid rgba(26, 22, 18, 0.1);
  background: #ffffff;
  color: rgba(26, 22, 18, 0.72);
  font-family: var(--header-font);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.logo-wall-mark-image {
  display: block;
  max-width: min(100%, 190px);
  max-height: 96px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.logo-wall-mark.media-tone-color .logo-wall-mark-image {
  filter: none;
  opacity: 1;
}

.logo-wall-mark-label {
  display: block;
}

.logo-wall-mark:hover,
.logo-wall-mark:focus-within {
  border-color: rgba(26, 22, 18, 0.16);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.logo-wall-mark:hover .logo-wall-mark-image,
.logo-wall-mark:focus-within .logo-wall-mark-image {
  filter: grayscale(1);
  opacity: 1;
  transform: translateY(-1px);
}

.logo-wall-mark.media-tone-color:hover .logo-wall-mark-image,
.logo-wall-mark.media-tone-color:focus-within .logo-wall-mark-image {
  filter: none;
}

.quotes-section {
  padding: 88px 0 104px;
  background: #161717;
  border-top: 1px solid rgba(244, 242, 241, 0.08);
  overflow: hidden;
}

.hero + .awards-section {
  margin-top: 0;
  padding-top: 12px;
  border-top: none;
}

.awards-section {
  padding: 22px 0 24px;
  background: #111212;
  border-top: 1px solid rgba(244, 242, 241, 0.08);
  overflow: hidden;
}

.section.awards-section {
  padding-top: 22px;
  padding-bottom: 24px;
}

.hero + .section.awards-section {
  padding-top: 12px;
  border-top: none;
}

.awards-section .wrap {
  width: min(1760px, calc(100% - 56px));
}

.awards-section-inner {
  display: block;
}

.awards-carousel-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.awards-arrow {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(244, 242, 241, 0.12);
  background: transparent;
  color: rgba(244, 242, 241, 0.72);
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease;
}

.awards-arrow:hover,
.awards-arrow:focus-visible {
  border-color: rgba(var(--accent-rgb), 0.44);
  color: var(--accent);
  outline: none;
}

.awards-arrow.awards-arrow--off {
  visibility: hidden;
  pointer-events: none;
}

.awards-carousel {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  scroll-padding-inline: 2px;
  touch-action: pan-x pan-y;
}

.awards-carousel::-webkit-scrollbar {
  display: none;
}

.awards-carousel.is-dragging {
  cursor: grabbing;
  user-select: none;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.awards-carousel-track {
  display: flex;
  justify-content: center;
  gap: 8px;
  width: max-content;
  margin: 0 auto;
  padding-bottom: 2px;
}

.awards-slide {
  flex: 0 0 auto;
  width: min(280px, calc(100vw - 120px));
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.awards-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 6px 4px;
}

.awards-card-image {
  display: block;
  max-width: 100%;
  max-height: 62px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
}

.awards-card.media-tone-bw .awards-card-image {
  filter: grayscale(1);
}

.quotes-section-inner {
  display: grid;
  gap: 34px;
}

.quotes-section .wrap {
  width: min(1760px, calc(100% - 56px));
}

.quotes-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.quotes-section-copy {
  max-width: 920px;
  padding-inline: clamp(42px, 6vw, 82px);
  padding-bottom: 24px;
}

.quotes-section-copy h2 {
  max-width: 22ch;
}

.quotes-section-copy .lead {
  max-width: 42rem;
  margin: 14px 0 0;
}

.quotes-carousel-controls {
  display: inline-flex;
  gap: 10px;
}

.quotes-carousel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(244, 242, 241, 0.12);
  background: transparent;
  color: rgba(244, 242, 241, 0.88);
  cursor: pointer;
}

.quotes-carousel-button:hover,
.quotes-carousel-button:focus-visible {
  border-color: rgba(var(--accent-rgb), 0.44);
  color: var(--accent);
  outline: none;
}

.quotes-carousel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.quotes-carousel-track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.quotes-slide {
  display: flex;
  flex: 0 0 calc((100vw - 56px - 24px) / 2.2);
  width: calc((100vw - 56px - 24px) / 2.2);
}

.quotes-card-shell {
  display: flex;
  width: 100%;
}

.quotes-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
  width: 100%;
  background: #191a1a;
  border: 1px solid rgba(244, 242, 241, 0.08);
  overflow: hidden;
}

.quotes-card-copy {
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: 40px 36px 36px 40px;
  min-height: 0;
  background:
    linear-gradient(180deg, rgba(244, 242, 241, 0.02) 0%, rgba(244, 242, 241, 0.01) 100%);
}

.quotes-card blockquote {
  margin: 0;
  color: rgba(244, 242, 241, 0.94);
  font-family: var(--title-font);
  font-size: clamp(1.28rem, 1.7vw, 2rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  max-width: 15ch;
  position: relative;
  font-weight: 400;
}

.quotes-card blockquote::before {
  content: "“";
  position: absolute;
  left: -0.5em;
  top: -0.08em;
  color: rgba(var(--accent-rgb), 0.32);
  font-size: 1.2em;
}

.quotes-card-name,
.quotes-card-role {
  margin: 0;
}

.quotes-card-name {
  color: rgba(244, 242, 241, 0.94);
  font-family: var(--header-font);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quotes-card-role {
  margin-top: 6px;
  color: rgba(244, 242, 241, 0.62);
  font-size: 0.95rem;
}

.quotes-card-media {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 100%;
  place-items: center;
  isolation: isolate;
  background: #111212;
  overflow: hidden;
}

.quotes-card-background,
.quotes-card-media-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.quotes-card-background {
  z-index: -2;
  object-fit: cover;
  filter: grayscale(1) contrast(1.12) brightness(0.56);
  transform: scale(1.01);
}

.quotes-card-media-overlay {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 10, 11, 0.3) 0%, rgba(10, 10, 11, 0.58) 100%),
    radial-gradient(circle at 50% 50%, rgba(10, 10, 11, 0.04) 0%, rgba(10, 10, 11, 0.36) 100%);
}

.quotes-card-logo-wrap {
  display: grid;
  width: 100%;
  height: 100%;
  padding: clamp(28px, 4vw, 64px);
  place-items: center;
}

.quotes-card-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: min(78%, 320px);
  max-height: min(42%, 150px);
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1) drop-shadow(0 8px 28px rgba(0, 0, 0, 0.42));
  opacity: 0.96;
}

.quotes-card-logo-fallback {
  max-width: 12ch;
  color: rgba(244, 242, 241, 0.96);
  font-family: var(--header-font);
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
}

@media (max-width: 1480px) {
  .home-showcase {
    grid-template-columns: 1fr;
  }

  .home-showcase-intro {
    padding: 40px 28px 28px;
  }

  .home-showcase-intro h2,
  .home-showcase-intro .section-copy {
    max-width: none;
  }

  .home-showcase-bands {
    min-height: 0;
  }

  .showcase-band {
    min-height: 420px;
    padding: 0;
  }

  .story-hero {
    min-height: clamp(420px, 58vh, 640px);
    padding: 0;
  }

  .story-hero-inner,
  .story-overview-inner,
  .contact-page-inner,
  .contact-channels-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .story-hero-copy h1,
  .story-overview-head h2,
  .story-closing-panel h2 {
    max-width: none;
  }

  .story-metrics-grid,
  .contact-methods-grid,
  .contact-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .editorial-band {
    padding: 56px 0 72px;
  }

  .editorial-band .wrap {
    width: min(100%, calc(100% - 32px));
  }

  .editorial-band-media {
    inset: 0;
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .editorial-band-copy h2,
  .editorial-band-copy .lead {
    max-width: none;
  }

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

  .corporate-columns-head h2,
  .corporate-columns-head .lead {
    max-width: none;
  }

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

  .awards-section .wrap {
    width: min(100%, calc(100% - 32px));
  }

  .awards-slide {
    width: min(320px, calc(100vw - 128px));
  }

  .quotes-section .wrap {
    width: min(100%, calc(100% - 32px));
  }

  .quotes-slide {
    flex-basis: calc((100vw - 32px - 24px) / 2.15);
    width: calc((100vw - 32px - 24px) / 2.15);
  }
}

@media (max-width: 980px) {
  .quotes-carousel-track {
    gap: 16px;
  }

  .quotes-slide {
    flex-basis: calc((100vw - 32px - 16px) / 2.12);
    width: calc((100vw - 32px - 16px) / 2.12);
  }

  .quotes-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "copy";
    grid-template-rows: clamp(170px, 28vw, 240px) auto;
  }

  .quotes-card-copy {
    grid-area: copy;
    align-content: start;
    gap: 28px;
    padding: 26px 24px 24px;
  }

  .quotes-card blockquote {
    max-width: none;
    font-size: clamp(1.18rem, 2.4vw, 1.7rem);
    line-height: 1.14;
  }

  .quotes-card-media {
    grid-area: media;
    width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0;
    border-radius: 0;
  }

  .quotes-card-logo-wrap {
    padding: 26px 34px;
  }

  .quotes-card-logo {
    max-width: min(72%, 240px);
    max-height: 48%;
  }
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.btn:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand);
  color: #191a1a;
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  background: rgba(244, 242, 241, 0.08);
  color: var(--text);
  border: 1px solid rgba(244, 242, 241, 0.32);
}

.text-link {
  padding: 0;
  min-height: 0;
  color: var(--accent);
  font-weight: 500;
}

.grid {
  display: grid;
  gap: 18px;
}

.cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 28px;
}

.card,
.cta-box,
.faq-item,
.detail-gallery img {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: none;
}

.card {
  overflow: hidden;
  border-radius: 18px;
}

.card-body {
  padding: 20px;
}

.product-card img,
.article-card img,
.article-cover,
.detail-gallery img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.faq-list {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 18px 20px;
  border-radius: 14px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 500;
}

.cta-box {
  border-radius: 18px;
  padding: 32px;
}

.front-section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.front-section-head h1,
.front-section-head h2 {
  margin: 0;
  font-family: var(--title-font);
  font-size: clamp(2.4rem, 7vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.front-section-head h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.front-section-head .lead,
.front-detail-copy .lead {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.55;
}

.front-catalog-hero {
  margin-top: calc(-1 * var(--header-offset));
  padding: calc(var(--header-offset) + clamp(58px, 8vw, 118px)) 0 clamp(46px, 6vw, 78px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(var(--accent-rgb), 0.14), rgba(25, 26, 26, 0) 46%),
    #121313;
}

.front-catalog-hero .front-section-head {
  max-width: 960px;
  margin-bottom: 0;
}

.front-catalog-hero .front-section-head h1 {
  max-width: 12ch;
}

.front-catalog-section {
  padding-top: clamp(42px, 6vw, 76px);
}

.front-catalog-grid {
  display: grid;
  gap: 18px;
}

.front-catalog-card {
  display: grid;
  grid-template-columns: minmax(270px, 0.78fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 76%, transparent);
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}

.front-catalog-card:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--accent-rgb), 0.42);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
}

.front-catalog-media {
  position: relative;
  min-height: 320px;
  background: color-mix(in srgb, var(--surface-alt) 86%, #000);
}

.front-catalog-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 7, 7, 0.04), rgba(6, 7, 7, 0.38));
  pointer-events: none;
}

.front-catalog-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.front-catalog-media span {
  display: grid;
  min-height: 320px;
  place-items: center;
  color: var(--accent);
  font-family: var(--title-font);
  font-size: 4rem;
}

.front-catalog-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(26px, 5vw, 58px);
}

.front-catalog-copy h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--title-font);
  font-size: clamp(2.15rem, 4.6vw, 4.35rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.front-catalog-copy p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.62;
}

.front-detail-hero {
  position: relative;
  display: flex;
  min-height: clamp(620px, 88vh, 900px);
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  margin-top: calc(-1 * var(--header-offset));
  padding: calc(var(--header-offset) + clamp(54px, 7vw, 96px)) 0 clamp(34px, 4.8vw, 62px);
  background: #101111;
}

.front-detail-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 9, 9, 0.48) 0%, rgba(8, 9, 9, 0.18) 34%, rgba(8, 9, 9, 0.82) 100%),
    linear-gradient(90deg, rgba(8, 9, 9, 0.9) 0%, rgba(8, 9, 9, 0.52) 42%, rgba(8, 9, 9, 0.2) 100%),
    radial-gradient(circle at 18% 82%, rgba(var(--accent-rgb), 0.22), transparent 36%);
  pointer-events: none;
}

.front-detail-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(26px, 5vw, 54px);
}

.front-detail-copy {
  max-width: 860px;
}

.front-detail-copy h1 {
  margin: 14px 0 18px;
  max-width: 11ch;
  font-family: var(--title-font);
  font-size: clamp(3.15rem, 7.2vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.front-detail-copy .lead {
  max-width: 58rem;
  color: rgba(244, 242, 241, 0.84);
}

.front-detail-copy .actions {
  margin-top: 28px;
}

.front-back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.front-detail-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #0b0d12;
}

.front-detail-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.18) contrast(1.04) brightness(0.72);
  transform: scale(1.02);
}

.front-detail-meta,
.front-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.front-detail-meta {
  max-width: 1120px;
}

.front-detail-meta article,
.front-info-grid article,
.front-showcase-grid article,
.front-icons-grid article,
.front-request-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
}

.front-detail-meta article,
.front-info-grid article {
  min-height: 106px;
  padding: clamp(17px, 2.2vw, 24px);
}

.front-detail-meta article {
  background: rgba(25, 26, 26, 0.74);
  backdrop-filter: blur(12px);
}

.front-detail-meta span,
.front-info-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.front-detail-meta strong,
.front-info-grid strong {
  display: block;
  font-family: var(--title-font);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.front-rich-text {
  max-width: 920px;
  color: color-mix(in srgb, var(--text) 84%, transparent);
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  line-height: 1.75;
  white-space: normal;
}

.front-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
}

.front-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.2;
}

.front-note-panel {
  max-width: 100%;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
}

.front-note-panel p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.front-showcase-head {
  grid-column: 1 / -1;
  max-width: 760px;
  margin-bottom: 8px;
}

.front-showcase-head h2 {
  margin: 0;
}

.front-showcase-grid article {
  padding: 22px;
}

.front-showcase-grid h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.front-showcase-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.front-icons-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
}

.front-icons-grid h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}

.front-icons-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.front-showcase-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface) 50%, transparent);
}

.front-showcase-cta h2 {
  margin: 0 0 8px;
}

.front-showcase-cta p {
  margin: 0;
  color: var(--muted);
}

.front-showcase-cta .btn {
  flex: 0 0 auto;
}

.front-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.14);
  color: var(--accent);
  font-size: 1.45rem;
}

.front-gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.front-gallery-controls {
  display: flex;
  gap: 8px;
}

.front-gallery-nav {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.front-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 24%);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
}

.front-gallery-slide {
  scroll-snap-align: start;
}

.front-gallery-slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.front-request-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.front-request-grid h2 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.front-request-grid p {
  color: var(--muted);
}

.front-request-panel {
  padding: clamp(22px, 4vw, 36px);
}

.front-request-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.front-request-form label,
.front-field-full,
.front-request-status {
  grid-column: 1;
}

.front-request-form label:not(.front-field-full) {
  grid-column: 1;
}

.front-request-form button {
  grid-column: 1;
}

.front-request-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
}

html.front-lightbox-open,
body.front-lightbox-open {
  overflow: hidden;
  touch-action: none;
}

@media (max-width: 820px) {
  .front-catalog-card,
  .front-request-grid {
    grid-template-columns: 1fr;
  }

  .front-catalog-hero {
    margin-top: calc(-1 * var(--header-offset-compact));
    padding-top: calc(var(--header-offset-compact) + 42px);
  }

  .front-catalog-media,
  .front-catalog-media img,
  .front-catalog-media span {
    min-height: 230px;
  }

  .front-detail-hero {
    min-height: auto;
    margin-top: calc(-1 * var(--header-offset-compact));
    padding-top: calc(var(--header-offset-compact) + 38px);
    padding-bottom: 30px;
  }

  .front-detail-hero-grid {
    gap: 28px;
  }

  .front-detail-copy h1 {
    max-width: 10.5ch;
    font-size: clamp(2.75rem, 15.2vw, 4.35rem);
  }

  .front-detail-copy .lead {
    font-size: 1rem;
  }

  .front-catalog-copy {
    padding: 24px;
  }

  .front-detail-media img {
    aspect-ratio: auto;
  }

  .front-detail-meta,
  .front-info-grid,
  .front-showcase-grid,
  .front-icons-grid {
    grid-template-columns: 1fr;
  }

  .front-detail-meta article {
    min-height: 0;
  }

  .front-showcase-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .front-gallery {
    grid-auto-columns: 84%;
  }

  .front-gallery-controls {
    display: none;
  }

  .front-request-form,
  .front-request-form label:not(.front-field-full),
  .front-request-form label,
  .front-field-full,
  .front-request-form button,
  .front-request-status {
    grid-column: 1 / -1;
  }
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
}

.detail-gallery {
  display: grid;
  gap: 14px;
}

.detail-gallery img {
  border-radius: 16px;
}

.article-wrap {
  max-width: 820px;
}

.article-cover {
  width: 100%;
  margin: 24px 0 28px;
  border-radius: 18px;
  box-shadow: none;
}

.prose p,
.prose ul,
.prose ol {
  margin: 0 0 1em;
}

.legal-hero .story-hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 9, 10, 0.92), rgba(9, 9, 10, 0.58)),
    radial-gradient(circle at 82% 12%, rgba(var(--accent-rgb), 0.25), transparent 38%);
}

.legal-page-section {
  padding: clamp(42px, 6vw, 84px) 0 clamp(72px, 9vw, 130px);
  color: #26211c;
  background:
    linear-gradient(180deg, #e8e2d8 0%, #f1ede6 42%, #e8e2d8 100%);
}

.legal-page-shell {
  width: min(1120px, calc(100% - 40px));
}

.legal-page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.legal-page-nav a {
  display: inline-flex;
  padding: 10px 15px;
  border: 1px solid rgba(38, 33, 28, 0.22);
  border-radius: 999px;
  color: #26211c;
  background: rgba(255, 255, 255, 0.34);
  font-family: var(--header-font);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.legal-page-nav a:hover,
.legal-page-nav a:focus-visible,
.legal-page-nav a[aria-current="page"] {
  border-color: var(--accent);
  color: #111;
  background: var(--accent);
}

.legal-document {
  padding: clamp(28px, 5vw, 68px);
  border: 1px solid rgba(38, 33, 28, 0.13);
  border-radius: 4px;
  background: rgba(251, 249, 245, 0.96);
  box-shadow: 0 28px 90px rgba(38, 33, 28, 0.11);
}

.legal-document h2 {
  margin: 42px 0 16px;
  color: #181512;
  font-size: clamp(1.55rem, 2.8vw, 2.3rem);
  line-height: 1.15;
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document p,
.legal-document li {
  color: #514940;
  font-family: var(--body-font);
  font-size: clamp(1rem, 1.45vw, 1.08rem);
  line-height: 1.78;
}

.legal-document p {
  margin: 0 0 20px;
}

.legal-document ul {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding-left: 24px;
}

.legal-document-updated {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(var(--accent-rgb), 0.36);
  border-radius: 999px;
  color: #2d271f !important;
  background: rgba(var(--accent-rgb), 0.14);
  font-family: var(--header-font) !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.03em;
}

@media (max-width: 640px) {
  .legal-page-shell {
    width: min(100% - 24px, 1120px);
  }

  .legal-document {
    padding: 26px 20px;
  }
}

.site-footer {
  padding: 104px 0 42px;
  background:
    linear-gradient(180deg, rgba(17, 18, 18, 0.96) 0%, rgba(12, 13, 13, 1) 100%);
  border-top: 1px solid rgba(244, 242, 241, 0.08);
}

.lv-prefooter {
  padding: clamp(64px, 8vw, 112px) 0;
  color: #fff;
  background: #1a1a1a;
}
.lv-prefooter-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.4fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}
.lv-prefooter-copy h2 {
  margin: 10px 0 18px;
  max-width: 14ch;
  font-family: var(--title-font);
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  line-height: 0.98;
}
.lv-prefooter-copy > p:last-of-type {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.72);
}
.lv-prefooter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.lv-prefooter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.lv-prefooter-card {
  position: relative;
  min-height: 340px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #fff;
  background: #282828;
  text-decoration: none;
}
.lv-prefooter-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,.86)), var(--lv-prefooter-image);
  background-position: center;
  background-size: cover;
  transition: transform .35s ease;
}
.lv-prefooter-card:hover::before {
  transform: scale(1.035);
}
.lv-prefooter-card > * {
  position: relative;
  z-index: 1;
}
.lv-prefooter-card span,
.lv-prefooter-card em {
  font-family: var(--header-font);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.lv-prefooter-card strong {
  margin: 8px 0 20px;
  font-family: var(--title-font);
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  line-height: 1;
}
@media (max-width: 820px) {
  .lv-prefooter-inner,
  .lv-prefooter-grid {
    grid-template-columns: 1fr;
  }
  .lv-prefooter-card {
    min-height: 280px;
  }
}

.site-footer .wrap {
  width: min(1760px, calc(100% - 56px));
  padding-inline: 18px;
}

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

.site-footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr);
  gap: 52px;
  align-items: start;
}

.site-footer-intro {
  max-width: 37rem;
}

.site-footer-intro h2 {
  max-width: 16ch;
  margin-bottom: 20px;
}

.site-footer-intro .lead {
  max-width: 34rem;
  margin: 0;
}

.site-footer-intro-actions {
  margin-top: 28px;
}

.site-footer-minimal {
  padding-top: 72px;
}

.site-footer-minimal .site-footer-inner {
  gap: 34px;
}

.site-footer-minimal .site-footer-top {
  display: block;
}

.site-footer-minimal .site-footer-intro {
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
}

.site-footer-minimal .site-footer-intro h2,
.site-footer-minimal .site-footer-intro .lead {
  max-width: none;
}

.site-footer-minimal .site-footer-intro-actions {
  display: flex;
  justify-content: center;
}

.site-footer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 34px;
}

.site-footer-column {
  display: grid;
  align-content: start;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(244, 242, 241, 0.12);
}

.site-footer-column-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  cursor: default;
  pointer-events: none;
}

.site-footer-column-summary::-webkit-details-marker {
  display: none;
}

.site-footer-column h3 {
  margin: 0;
  font-family: var(--header-font);
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 242, 241, 0.94);
}

.site-footer-column-toggle {
  display: none;
  flex: 0 0 auto;
  font-size: 1rem;
  color: rgba(244, 242, 241, 0.72);
  transition: transform 180ms ease, color 180ms ease;
}

.site-footer-column-body {
  display: grid;
  gap: 12px;
}

.site-footer-column-body a,
.site-footer-column-body p {
  margin: 0;
  color: rgba(244, 242, 241, 0.68);
  line-height: 1.72;
}

.site-footer-column-body a:hover,
.site-footer-column-body a:focus-visible {
  color: var(--accent);
  outline: none;
}

.site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 242, 241, 0.08);
}

.site-footer-bottom p {
  margin: 0;
  color: rgba(244, 242, 241, 0.58);
}

.site-footer-bottom span {
  color: rgba(244, 242, 241, 0.82);
}

.site-footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer-bottom-links a {
  color: rgba(244, 242, 241, 0.72);
}

.site-footer-bottom-links a:hover,
.site-footer-bottom-links a:focus-visible {
  color: var(--accent);
  outline: none;
}

.lv-whatsapp-fab {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 56px;
  min-height: 56px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #25d366;
  color: #07140b;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
  font-family: var(--header-font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.lv-whatsapp-fab-left {
  right: auto;
  left: 24px;
}

.lv-whatsapp-fab-icon {
  width: 56px;
  height: 56px;
  padding: 0;
}

.lv-whatsapp-fab i {
  font-size: 1.55rem;
  line-height: 1;
}

.lv-whatsapp-fab:hover {
  color: #07140b;
  transform: translateY(-2px);
}

@media (max-width: 1180px) {
  :root {
    --header-offset: 86px;
    --header-offset-compact: 72px;
  }

  .site-header .wrap {
    width: min(100%, calc(100% - 32px));
  }

  .site-header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 16px;
  }

  .site-menu-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    justify-self: end;
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid rgba(244, 242, 241, 0.1);
    border-radius: 999px;
    background: transparent;
    color: var(--text);
    font-family: var(--header-font);
    font-size: 0.98rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    z-index: 27;
  }

  .site-menu-button-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
  }

  .site-menu-button-icon i {
    position: absolute;
    font-size: 1.1rem;
    line-height: 1;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-menu-icon-close {
    opacity: 0;
    transform: scale(0.8);
  }

  .site-header.is-menu-open .site-menu-icon-menu {
    opacity: 0;
    transform: scale(0.8);
  }

  .site-header.is-menu-open .site-menu-icon-close {
    opacity: 1;
    transform: scale(1);
  }

  .site-menu-panel {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(560px, 100vw);
    flex-direction: column;
    gap: 18px;
    padding: 96px 32px 24px;
    border-left: 1px solid rgba(244, 242, 241, 0.1);
    border-radius: 0;
    background: #0f1010;
    box-shadow: none;
    transform: translateX(calc(100% + 24px));
    transition: transform 220ms ease;
    z-index: 25;
    overflow-y: auto;
  }

  .site-header.is-menu-open .site-menu-panel {
    transform: translateX(0);
  }

  .site-menu-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, visibility 180ms ease;
    z-index: 24;
    cursor: pointer;
  }

  .site-header.is-menu-open .site-menu-backdrop {
    opacity: 1;
    visibility: visible;
  }

  .site-nav {
    display: grid;
    justify-content: stretch;
    gap: 4px;
    overflow: visible;
    font-size: 1.08rem;
    white-space: normal;
    counter-reset: mobile-menu-item;
  }

  .site-nav-item,
  .site-nav-link,
  .site-nav-toggle {
    width: 100%;
  }

  .site-nav-item {
    counter-increment: mobile-menu-item;
  }

  .site-nav-link,
  .site-nav-toggle {
    position: relative;
    justify-content: space-between;
    min-height: 74px;
    padding: 0 0 0 4px;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-family: var(--title-font);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
  }

  .site-nav-link::before,
  .site-nav-toggle::before {
    content: "";
    flex: 1 1 auto;
    margin: 0 14px 0 18px;
    border-bottom: 1px dotted rgba(244, 242, 241, 0.32);
    transform: translateY(6px);
  }

  .site-nav-link::after,
  .site-nav-toggle::after {
    content: counter(mobile-menu-item, decimal-leading-zero);
    color: rgba(244, 242, 241, 0.68);
    font-family: var(--header-font);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .site-nav-caret {
    display: none;
  }

  .site-submenu {
    position: static;
    min-width: 0;
    margin-top: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 220ms ease;
    pointer-events: auto;
  }

  .site-nav-item.is-open .site-submenu {
    max-height: 420px;
    margin: 4px 0 10px;
    padding: 6px 0 0 4px;
    border: 0;
    background: transparent;
  }

  .submenu-link {
    padding: 10px 0;
    border-radius: 0;
  }

  .submenu-link + .submenu-link {
    margin-top: 0;
    border-top: 1px solid rgba(244, 242, 241, 0.08);
  }

  .submenu-label {
    font-size: 1.18rem;
  }

  .submenu-description {
    margin-top: 2px;
    font-size: 0.88rem;
    color: rgba(244, 242, 241, 0.56);
  }

  .site-languages {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    margin-top: auto;
    padding-top: 8px;
    font-size: 1rem;
  }

  .site-languages::before {
    display: none;
  }

  .site-languages a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(244, 242, 241, 0.12);
    background: transparent;
  }

  .site-footer-inner,
  .detail-layout {
    display: grid;
    grid-template-columns: 1fr;
  }

  .story-metrics-grid,
  .contact-channels-grid,
  .contact-methods-grid,
  .contact-process-grid,
  .media-video-grid,
  .media-download-grid,
  .media-photo-grid {
    grid-template-columns: 1fr;
  }

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

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

  .media-video-card,
  .media-download-card,
  .media-photo-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .site-footer-top {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .site-footer .wrap {
    width: min(100%, calc(100% - 32px));
    padding-inline: 10px;
  }

  .site-footer-columns {
    gap: 24px 24px;
  }

  .site-footer-intro {
    max-width: 44rem;
  }

  .brand-logo {
    height: clamp(30px, 5vw, 38px);
  }

  .corporate-column {
    min-height: 0;
  }

  .editorial-band-inner {
    min-height: 420px;
  }

  .logo-wall-hero {
    min-height: 400px;
    padding: 112px 0 156px;
  }

  .logo-wall-panel-wrap {
    margin-top: -84px;
  }

  .logo-wall-panel {
    padding: 28px 24px;
  }

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

  .quotes-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-showcase {
    grid-template-columns: 1fr;
  }

  .home-showcase-intro {
    padding: 36px 18px 28px;
  }

  .home-showcase-intro h2 {
    max-width: none;
  }

  .home-showcase-bands {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .story-cards-grid {
    grid-template-columns: 1fr;
  }

  .showcase-band {
    min-height: 420px;
    padding: 0;
    border-left: 0;
    border-top: 1px solid rgba(244, 242, 241, 0.08);
  }

  .showcase-band-content {
    padding: 24px 18px 52px;
  }
}

@media (max-width: 760px) {
  .story-hero {
    min-height: clamp(320px, 52vh, 460px);
    padding: 0;
  }

  .story-hero-copy .eyebrow {
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.72rem;
    letter-spacing: 0.24em;
  }

  .story-hero-copy .eyebrow::before,
  .story-hero-copy .eyebrow::after {
    width: 28px;
  }

  .story-overview,
  .contact-page {
    padding-top: 72px;
  }

  .contact-form-section,
  .media-video-section,
  .media-download-section,
  .media-photo-section {
    padding: 72px 0;
  }

  .contact-form-row,
  .media-section-inner {
    width: min(100%, calc(100% - 24px));
    padding-inline: 8px;
  }

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

  .contact-form label,
  .contact-form label:not(.contact-form-field--full),
  .contact-form-field--full,
  .contact-form-status {
    grid-column: auto;
  }

  .media-section-head {
    text-align: left;
    justify-items: start;
  }

  .media-section-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .media-video-grid,
  .media-download-grid,
  .media-photo-grid {
    grid-template-columns: 1fr;
  }

  .media-video-card,
  .media-download-card,
  .media-photo-card {
    flex-basis: 100%;
  }

  .media-video-card,
  .media-photo-card {
    min-height: 300px;
  }

  .media-download-card {
    min-height: 0;
    padding: 28px 24px;
  }

  .media-closing .story-closing-panel {
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 0 0 56px;
    background:
      linear-gradient(180deg, rgba(17, 18, 18, 1) 0%, rgba(17, 18, 18, 1) 100%);
  }

  .media-closing-media {
    position: relative;
    inset: auto;
    order: 1;
    width: 100%;
    aspect-ratio: 4 / 3.6;
    opacity: 1;
  }

  .media-closing-media::after {
    background:
      linear-gradient(0deg, rgba(17, 18, 18, 0.92) 0%, rgba(17, 18, 18, 0.68) 52%, rgba(17, 18, 18, 0.16) 100%);
  }

  .media-closing-copy {
    order: 2;
    width: min(100%, calc(100% - 24px));
    max-width: none;
    margin: 0 auto;
    padding: 24px 8px 0;
  }

  .story-closing {
    padding-bottom: 84px;
  }

  .story-card,
  .contact-method-card,
  .contact-process-step,
  .contact-sidebar,
  .story-closing-panel {
    padding: 24px 20px;
  }

  .site-footer {
    padding: 84px 0 34px;
  }

  .awards-section {
    padding: 18px 0 20px;
  }

  .awards-section .wrap {
    width: min(100%, calc(100% - 24px));
  }

  .awards-slide {
    width: min(260px, calc(100vw - 84px));
  }

  .awards-card {
    min-height: 86px;
    padding: 4px 2px;
  }

  .awards-card-image {
    max-height: 54px;
  }

  .site-footer .wrap {
    width: min(100%, calc(100% - 24px));
    padding-inline: 6px;
  }

  .site-footer-inner {
    gap: 36px;
  }

  .site-footer-columns {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .site-footer-column {
    gap: 0;
    padding-top: 0;
  }

  .site-footer-column-summary {
    min-height: 52px;
    cursor: pointer;
    pointer-events: auto;
  }

  .site-footer-column-toggle {
    display: inline-flex;
  }

  .site-footer-column .site-footer-column-body {
    display: none;
    padding: 4px 0 8px;
  }

  .site-footer-column[open] .site-footer-column-toggle {
    transform: rotate(45deg);
    color: var(--accent);
  }

  .site-footer-column[open] .site-footer-column-body {
    display: grid;
  }

  .site-footer-intro h2,
  .site-footer-intro .lead {
    max-width: none;
  }

  .site-footer-intro-actions {
    margin-top: 24px;
  }

  .site-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer-bottom-links {
    gap: 14px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-offset: 78px;
    --header-offset-compact: 66px;
  }

  .story-hero-copy h1 {
    width: auto;
    max-width: calc(100% - 24px);
    font-size: clamp(1.45rem, 7vw, 2.1rem);
    line-height: 1.08;
    overflow-wrap: break-word;
    hyphens: manual;
  }

  .story-hero-copy .lead,
  .story-closing-panel .lead {
    font-size: 1rem;
  }

  .site-header-inner {
    min-height: var(--header-offset);
  }

  .site-menu-button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .site-menu-button-label {
    display: none;
  }

  .site-menu-panel {
    width: 100vw;
    padding: 86px 18px 18px;
  }

  .site-nav {
    font-size: 1rem;
  }

  .submenu-description {
    font-size: 0.9rem;
  }

  .hero {
    min-height: min(100svh, 920px);
    align-items: flex-start;
    padding-bottom: 120px;
  }

  body.layout-header-overlay .hero {
    padding-top: calc(var(--header-offset) + 48px);
  }

  body.layout-header-solid .hero {
    padding-top: 48px;
  }

  .hero-media-viewport-desktop,
  .hero-split-media-viewport-desktop {
    display: none;
  }

  .hero-media-viewport-mobile,
  .hero-split-media-viewport-mobile {
    display: block;
  }

  .hero-split {
    min-height: auto;
    padding: 96px 0 28px;
  }

  .hero-split-shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    width: min(100%, calc(100% - 24px));
    min-height: auto;
  }

  .hero-split-media-stage {
    position: relative;
    order: 1;
    min-height: 0;
  }

  .hero-split-media-viewport-desktop,
  .hero-split-media-viewport-mobile {
    position: relative;
    inset: auto;
    width: 100%;
    height: 100%;
  }

  .hero.hero-split .hero-copy.hero-split-copy {
    order: 2;
    max-width: 100%;
    width: 100%;
    text-align: left;
    padding: 40px 20px 20px;
  }

  .hero-split-copy .actions,
  .hero-split-copy .hero-highlights {
    justify-content: flex-start;
  }

  .hero-split-copy::before {
    display: none;
  }

  .hero-split-media {
    position: relative;
    inset: auto;
    width: 100%;
    min-width: 0;
    max-width: none;
    aspect-ratio: 4 / 4.6;
  }

  .hero-split-media::after {
    background:
      linear-gradient(180deg, rgba(17, 18, 18, 0.08) 0%, rgba(17, 18, 18, 0.12) 26%, rgba(17, 18, 18, 0.42) 100%),
      linear-gradient(90deg, rgba(17, 18, 18, 0.08) 0%, rgba(17, 18, 18, 0.02) 28%, rgba(17, 18, 18, 0.12) 100%);
  }

  .hero-inner {
    justify-content: flex-start;
    padding-inline: 18px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 9.8vw, 4.2rem);
  }

  .hero-highlights {
    gap: 8px 18px;
    font-size: 0.78rem;
  }

  .editorial-band .wrap {
    width: min(100%, calc(100% - 24px));
  }

  .editorial-band {
    padding: 0 0 56px;
  }

  .editorial-band-media {
    position: relative;
    inset: auto;
    width: 100%;
    min-width: 0;
    max-width: none;
    aspect-ratio: 4 / 3.6;
  }

  .editorial-band-media::after {
    background: linear-gradient(0deg, rgba(17, 18, 18, 0.92) 0%, rgba(17, 18, 18, 0.68) 52%, rgba(17, 18, 18, 0.16) 100%);
  }

  .editorial-band-inner {
    min-height: 0;
    justify-content: flex-start;
    align-items: flex-start;
    padding-block: 24px 0;
  }

  .editorial-band-copy {
    width: 100%;
    margin-left: 0;
    padding-inline: 8px;
  }

  .corporate-columns {
    padding-bottom: 72px;
  }

  .corporate-columns-head {
    margin: 0;
    text-align: left;
  }

  .corporate-columns-head h2,
  .corporate-columns-head .lead {
    max-width: none;
  }

  .logo-wall {
    padding-bottom: 72px;
  }

  .logo-wall-hero {
    min-height: 0;
    padding: 96px 0 138px;
  }

  .logo-wall-hero-inner h2 {
    max-width: 100%;
  }

  .logo-wall-panel-wrap {
    margin-top: -64px;
  }

  .logo-wall-panel {
    padding: 20px 18px;
  }

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

  .logo-wall-mark {
    min-height: 108px;
    font-size: 1.15rem;
  }

  .logo-wall-mark-image {
    max-height: 88px;
  }

  .quotes-section {
    padding: 72px 0 84px;
  }

  .quotes-section .wrap {
    width: min(100%, calc(100% - 24px));
  }

  .quotes-section-head {
    gap: 18px;
  }

  .quotes-carousel-controls {
    width: 100%;
    justify-content: flex-start;
  }

  .quotes-slide {
    flex-basis: calc((100vw - 24px - 12px) / 1.12);
    width: calc((100vw - 24px - 12px) / 1.12);
  }

  .quotes-card-shell {
    width: 100%;
  }

  .quotes-card {
    grid-template-rows: 210px auto;
  }

  .quotes-card-copy {
    gap: 24px;
    padding: 22px 20px 20px;
  }

  .quotes-card blockquote {
    font-size: clamp(1.08rem, 5.2vw, 1.4rem);
    max-width: none;
  }

  .quotes-card-media {
    width: 100%;
    height: 100%;
    margin: 0;
  }

  .quotes-card-logo-wrap {
    padding: 24px 32px;
  }

  .quotes-card-logo {
    max-width: min(78%, 230px);
    max-height: 52%;
  }

  .corporate-columns-inner {
    gap: 24px;
  }

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

  .corporate-column {
    gap: 14px;
    padding: 22px 18px 20px;
  }

}

/* Responsive polish shared by the custom PHP pages. */
@media (min-width: 761px) and (max-width: 1180px) {
  .bio-metrics-grid,
  .bio-signature-grid,
  .bio-journey-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bio-metric {
    padding-inline: clamp(24px, 3.5vw, 42px);
  }
}

@media (max-width: 760px) {
  .bio-metrics-band {
    padding: 16px 0;
  }

  .bio-metrics-band .wrap {
    width: calc(100% - 32px);
    margin-inline: auto;
  }

  .bio-metrics-grid {
    overflow: hidden;
    border: 1px solid rgba(244, 242, 241, 0.08);
  }

  .bio-metric {
    padding: 28px 22px;
  }

  .event-usecases-section .wrap,
  .event-usecase-media {
    min-width: 0;
    width: 100%;
  }

  .event-usecase-media img {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .hero.hero-split .hero-copy.hero-split-copy {
    min-width: 0;
  }
}

@media (min-width: 721px) {
  .hero.hero-split .hero-split-copy h1 {
    width: 100%;
    max-width: min(24ch, 54vw);
    font-size: clamp(2.75rem, 3.2vw, 3.65rem);
    line-height: 0.98;
  }

  .hero.hero-split .hero-split-copy .lead {
    margin-inline: 0;
  }
}
/* Consent field and fallback cookie preferences */
.front-request-form .front-legal-consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 0;
  color: var(--text-muted, #5f6670);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
}

.front-request-form .front-legal-consent input[type="checkbox"] {
  flex: 0 0 19px;
  width: 19px;
  height: 19px;
  min-height: 19px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--accent, #bfa37a);
  cursor: pointer;
}

.front-request-form .front-legal-consent a {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.front-request-form .front-legal-consent strong {
  color: var(--accent, #bfa37a);
}

.front-request-form .front-turnstile {
  grid-column: 1 / -1;
  min-height: 65px;
}

.site-cookie-consent {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 9999;
  width: min(430px, calc(100vw - 28px));
  padding: 24px;
  border: 1px solid rgba(var(--accent-rgb, 191, 163, 122), 0.52);
  border-radius: 16px;
  background: #171717;
  color: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  font-family: var(--body-font, inherit);
}

.site-cookie-consent h2 {
  margin: 0 38px 10px 0;
  color: #ffffff;
  font: inherit;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.site-cookie-consent > p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.55;
}

.site-cookie-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: transparent;
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.site-cookie-policy {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--accent, #bfa37a);
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-cookie-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.site-cookie-actions[hidden],
.site-cookie-preferences[hidden] {
  display: none;
}

.site-cookie-actions button,
.site-cookie-save {
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.site-cookie-accept,
.site-cookie-save {
  border: 1px solid var(--accent, #bfa37a);
  background: var(--accent, #bfa37a);
  color: #171717;
}

.site-cookie-reject {
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: transparent;
  color: #ffffff;
}

.site-cookie-customize {
  grid-column: 1 / -1;
  border: 0;
  background: transparent;
  color: var(--accent, #bfa37a);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-cookie-preferences {
  display: grid;
  gap: 12px;
  margin-top: 15px;
}

.site-cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  color: #ffffff;
  cursor: pointer;
}

.site-cookie-option input {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--accent, #bfa37a);
}

.site-cookie-option span,
.site-cookie-option strong,
.site-cookie-option small {
  display: block;
}

.site-cookie-option strong {
  margin-bottom: 3px;
  font-size: 14px;
}

.site-cookie-option small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.45;
}

.site-cookie-settings {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 9980;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(var(--accent-rgb, 191, 163, 122), 0.65);
  border-radius: 999px;
  background: #171717;
  color: #ffffff;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 575px) {
  .site-cookie-consent {
    right: 14px;
    bottom: 82px;
    width: calc(100vw - 28px);
    padding: 20px;
  }

  .site-cookie-settings {
    right: 14px;
    bottom: 82px;
  }
}
