:root {
  color-scheme: dark;
  --bg: #03110c;
  --bg-deep: #010705;
  --text: #f6f1e7;
  --muted: rgba(246, 241, 231, 0.7);
  --line: rgba(231, 190, 103, 0.34);
  --gold: #e7be67;
  --mint: #92e6ad;
  --glass: rgba(1, 15, 10, 0.58);
  --glass-strong: rgba(3, 22, 15, 0.78);
}

* {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  background: var(--bg-deep);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem clamp(1.25rem, 4vw, 5.5rem);
  background: linear-gradient(180deg, rgba(1, 7, 5, 0.76), rgba(1, 7, 5, 0));
}

.brand {
  color: var(--text);
  font-family: "Didot", "Bodoni 72", Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.85rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.8vw, 3rem);
  color: var(--text);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  gap: 0.45rem;
  padding-bottom: 0.45rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links .is-active::after {
  transform: scaleX(1);
}

.nav-links span,
.talk-link {
  color: var(--gold);
}

.talk-link {
  justify-self: end;
  padding: 0.62rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(231, 190, 103, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(24rem, 0.67fr) minmax(24rem, 0.53fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  overflow: hidden;
  padding: 6.5rem clamp(1.25rem, 4vw, 5.5rem) 1.5rem;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero-photo-stage {
  position: absolute;
  inset: -4%;
  z-index: -4;
  overflow: hidden;
  background: #020a07;
}

.hero-photo-blur {
  position: absolute;
  z-index: 0;
  inset: -12%;
  background-image: var(--hero-photo, url("assets/hero-01.jpg"));
  background-repeat: no-repeat;
  background-position: var(--hero-photo-position, 50% 48%);
  background-size: cover;
  filter: blur(28px) saturate(1.05) contrast(1.04) brightness(0.82);
  transform: scale(1.08);
  transition: background-image 260ms ease, background-position 260ms ease;
}

.hero-photo {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  height: min(120vh, 80rem);
  width: auto;
  max-width: min(61vw, 57rem);
  filter: saturate(1.08) contrast(1.12) brightness(1) drop-shadow(0 2rem 4rem rgba(0, 0, 0, 0.38));
  opacity: 0.98;
  transform: translate(-50%, -50%);
  object-fit: contain;
  object-position: center;
  transition: opacity 220ms ease, filter 220ms ease;
  -webkit-mask-image:
    radial-gradient(ellipse 58% 74% at 50% 50%, #000 64%, rgba(0, 0, 0, 0.82) 78%, transparent 100%);
  mask-image:
    radial-gradient(ellipse 58% 74% at 50% 50%, #000 64%, rgba(0, 0, 0, 0.82) 78%, transparent 100%);
}

.hero.is-wide-photo .hero-photo {
  width: min(70vw, 76rem);
  height: auto;
  max-width: none;
  -webkit-mask-image:
    radial-gradient(ellipse 72% 70% at 50% 50%, #000 66%, rgba(0, 0, 0, 0.82) 80%, transparent 100%);
  mask-image:
    radial-gradient(ellipse 72% 70% at 50% 50%, #000 66%, rgba(0, 0, 0, 0.82) 80%, transparent 100%);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 52% 42%, rgba(3, 17, 12, 0), rgba(1, 7, 5, 0.05) 36%, rgba(1, 7, 5, 0.62) 88%),
    linear-gradient(90deg, rgba(1, 7, 5, 0.72), rgba(1, 7, 5, 0.16) 28%, rgba(1, 7, 5, 0.06) 54%, rgba(1, 7, 5, 0.68)),
    linear-gradient(180deg, rgba(1, 7, 5, 0.1), rgba(1, 7, 5, 0.7));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 16rem;
  background: linear-gradient(180deg, transparent, rgba(1, 7, 5, 0.94));
}

.hero-name {
  align-self: center;
  min-width: 0;
}

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

h1 {
  margin: 0;
  max-width: 44rem;
  font-family: "Didot", "Bodoni 72", Georgia, "Times New Roman", serif;
  font-size: clamp(8rem, 20vw, 20rem);
  font-weight: 900;
  line-height: 0.76;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  text-shadow: 0 1.2rem 4rem rgba(0, 0, 0, 0.36);
}

.hero-press {
  position: absolute;
  z-index: 4;
  left: clamp(1.25rem, 4vw, 5.5rem);
  bottom: clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(8rem, 1fr));
  gap: 0.55rem;
  width: min(43rem, calc(100vw - 42rem));
}

.hero-press a {
  min-height: 4.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.18rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(231, 190, 103, 0.28);
  border-radius: 0.45rem;
  background: rgba(1, 7, 5, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.hero-press span {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-press strong {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1;
}

.feature-logo {
  display: block;
  height: auto;
  max-height: 0.86rem;
  object-fit: contain;
}

.feature-logo-fortune {
  width: min(5.9rem, 100%);
}

.feature-logo-36kr {
  width: min(2.65rem, 100%);
}

.feature-logo-whale {
  width: min(5.5rem, 100%);
}

.feature-wordmark {
  display: block;
  color: var(--text);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.feature-wordmark-fortune {
  font-size: clamp(1rem, 1.8vw, 1.55rem);
  letter-spacing: 0.05em;
}

.feature-wordmark-36kr {
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  letter-spacing: -0.04em;
}

.intro-panel {
  position: relative;
  align-self: center;
  max-width: 36rem;
  margin-left: auto;
  padding: clamp(0.75rem, 1.3vw, 1.1rem);
  border: 1px solid rgba(231, 190, 103, 0.38);
  border-radius: 0.65rem;
  background:
    radial-gradient(circle at 12% 0%, rgba(231, 190, 103, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(146, 230, 173, 0.08), transparent 42%),
    var(--glass);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 2.2rem rgba(146, 230, 173, 0.045),
    0 0 1.4rem rgba(231, 190, 103, 0.2),
    0 0 4.5rem rgba(146, 230, 173, 0.11),
    0 2rem 5rem rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.88rem, 1vw, 1.04rem);
  line-height: 1.34;
}

.intro-panel::before,
.intro-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
}

.intro-panel::before {
  inset: -1.35rem;
  z-index: -1;
  background:
    radial-gradient(circle at 72% 15%, rgba(231, 190, 103, 0.2), transparent 34%),
    radial-gradient(circle at 20% 85%, rgba(146, 230, 173, 0.14), transparent 38%);
  filter: blur(18px);
  opacity: 0.86;
}

.intro-panel::after {
  inset: -1px;
  border: 1px solid rgba(146, 230, 173, 0.24);
  box-shadow:
    0 0 0.95rem rgba(231, 190, 103, 0.22),
    0 0 2.2rem rgba(146, 230, 173, 0.1);
}

.intro-panel p {
  margin-bottom: 0;
}

.intro-card {
  position: relative;
  padding: clamp(0.72rem, 1.1vw, 1rem);
  border: 1px solid rgba(231, 190, 103, 0.26);
  border-radius: 0.5rem;
  background:
    linear-gradient(135deg, rgba(231, 190, 103, 0.035), transparent),
    rgba(1, 7, 5, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 0 1.2rem rgba(231, 190, 103, 0.035);
}

.intro-card + .intro-card {
  margin-top: 1.05rem;
}

.intro-card + .intro-card::before {
  content: "✦";
  position: absolute;
  top: -0.85rem;
  left: 50%;
  color: var(--gold);
  transform: translateX(-50%);
}

.intro-lead {
  margin-top: 0.75rem;
  font-size: clamp(0.98rem, 1.12vw, 1.16rem);
}

.intro-card > span {
  display: block;
  margin-bottom: 0.42rem;
  color: var(--mint);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.intro-panel a {
  color: var(--mint);
  text-decoration: underline;
  text-decoration-color: rgba(146, 230, 173, 0.42);
  text-underline-offset: 0.18em;
}

.photo-switcher {
  position: absolute;
  z-index: 5;
  right: clamp(1.25rem, 4vw, 5.5rem);
  bottom: 1.35rem;
  display: flex;
  gap: 0.55rem;
  padding: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(1, 7, 5, 0.58);
  backdrop-filter: blur(12px);
}

.photo-choice {
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 900;
}

.photo-choice:hover,
.photo-choice.is-active {
  border-color: var(--gold);
  background: rgba(231, 190, 103, 0.16);
  color: var(--text);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.9rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.social-impact,
.work-section,
.contact-section {
  scroll-margin-top: 5rem;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 5.5rem);
  background:
    radial-gradient(circle at 8% 0%, rgba(20, 102, 69, 0.32), transparent 22rem),
    linear-gradient(180deg, #03110c, #010705);
  border-bottom: 1px solid var(--line);
}

.work-section {
  min-height: 100vh;
  padding-top: clamp(3rem, 5vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
}

.section-row {
  display: grid;
  grid-template-columns: minmax(10rem, 15rem) 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.work-section .section-row {
  margin-bottom: clamp(1.2rem, 2vw, 1.8rem);
}

.section-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  max-width: 72rem;
  font-family: "Didot", "Bodoni 72", Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 7vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

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

.metric {
  min-height: clamp(13rem, 22vw, 20rem);
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
  padding: clamp(1rem, 2vw, 1.8rem);
  background: rgba(1, 15, 10, 0.42);
  text-align: center;
}

.metric + .metric {
  border-left: 1px solid var(--line);
}

.metric strong {
  display: block;
  color: var(--text);
  font-family: "Didot", "Bodoni 72", Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 7vw, 8.8rem);
  font-weight: 900;
  line-height: 0.75;
  letter-spacing: -0.035em;
  font-variant-numeric: lining-nums tabular-nums;
  text-shadow: 0 0 2.5rem rgba(146, 230, 173, 0.2);
  white-space: nowrap;
}

.metric > span:last-child {
  color: var(--text);
  font-size: clamp(0.74rem, 1vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.55em;
  text-transform: uppercase;
}

.metric {
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.metric:hover {
  transform: translateY(-0.25rem);
  background:
    radial-gradient(circle at 50% 20%, rgba(231, 190, 103, 0.12), transparent 38%),
    rgba(1, 15, 10, 0.56);
  box-shadow: inset 0 0 0 1px rgba(231, 190, 103, 0.08);
}

.metric:hover strong {
  text-shadow:
    0 0 1.4rem rgba(231, 190, 103, 0.2),
    0 0 3rem rgba(146, 230, 173, 0.2);
}

.social-wall {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-wall a,
.contact-links a,
.contact-disabled {
  position: relative;
  overflow: hidden;
  min-height: 6rem;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: space-between;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background:
    linear-gradient(135deg, rgba(231, 190, 103, 0.13), transparent),
    rgba(1, 15, 10, 0.6);
  color: var(--text);
  font-size: clamp(1.2rem, 2.4vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.social-wall a::before,
.contact-links a::before,
.contact-disabled::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(231, 190, 103, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(146, 230, 173, 0.16), rgba(231, 190, 103, 0.04));
  opacity: 0;
  transition: opacity 220ms ease;
}

.social-wall a > *,
.contact-links a > *,
.contact-disabled > * {
  position: relative;
  z-index: 1;
}

.social-wall a:hover {
  transform: translateY(-0.7rem) scale(1.012);
  border-color: rgba(231, 190, 103, 0.78);
  background:
    linear-gradient(135deg, rgba(231, 190, 103, 0.28), rgba(146, 230, 173, 0.08)),
    rgba(28, 31, 19, 0.86);
  box-shadow:
    0 1.4rem 3rem rgba(0, 0, 0, 0.32),
    0 0 2.6rem rgba(231, 190, 103, 0.12);
}

.social-wall a:hover::before {
  opacity: 1;
}

.social-wall a:hover .social-logo {
  opacity: 1;
  filter: drop-shadow(0 0 1rem rgba(231, 190, 103, 0.48));
  transform: translateY(-0.16rem) scale(1.05);
}

.social-logo {
  align-self: flex-start;
  width: 3.35rem;
  height: 3.35rem;
  object-fit: contain;
  opacity: 0.95;
  transition: transform 220ms ease, filter 220ms ease, opacity 220ms ease;
}

.social-logo-wide {
  width: 4.5rem;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.55rem, 1vw, 0.9rem);
  perspective: 1200px;
  transform-origin: center top;
}

.poster-grid.is-turning {
  animation: pageTurn 360ms ease both;
}

.poster[hidden] {
  display: none;
}

.work-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 1.5rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.work-page-button {
  min-height: 2.35rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(231, 190, 103, 0.08), rgba(146, 230, 173, 0.02)),
    rgba(1, 7, 5, 0.52);
  color: var(--text);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.work-page-button:hover {
  transform: translateY(-0.12rem);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 1.8rem rgba(231, 190, 103, 0.12);
}

.work-page-button:disabled {
  opacity: 0.36;
  cursor: default;
}

.work-page-button:disabled:hover {
  border-color: var(--line);
  color: var(--text);
}

.poster {
  min-height: 0;
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  background: rgba(1, 15, 10, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 1.2rem 3rem rgba(0, 0, 0, 0.24);
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.poster::after {
  content: "";
  position: absolute;
  inset: -45% -70%;
  background: linear-gradient(115deg, transparent 42%, rgba(231, 190, 103, 0.32), transparent 56%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-40%) rotate(8deg);
  transition: opacity 220ms ease, transform 560ms ease;
}

.poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.poster span {
  display: none;
}

.poster:hover img {
  filter: brightness(1.08);
  transform: scale(1.035);
}

.poster:hover {
  z-index: 2;
  border-color: rgba(231, 190, 103, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 1.6rem 3.4rem rgba(0, 0, 0, 0.34),
    0 0 2.4rem rgba(231, 190, 103, 0.12);
  transform: translateY(-0.42rem) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
}

.poster:hover::after {
  opacity: 1;
  transform: translateX(42%) rotate(8deg);
}

.contact-section h2 {
  max-width: 82rem;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2.5rem;
}

.contact-links a,
.contact-disabled {
  align-items: flex-start;
  justify-content: center;
  line-height: 0.98;
  overflow-wrap: anywhere;
  font-size: clamp(0.95rem, 1.5vw, 1.75rem);
  text-transform: none;
}

.contact-email {
  font-size: clamp(0.95rem, 1.5vw, 1.75rem);
  letter-spacing: 0.02em;
  white-space: nowrap;
  user-select: text;
  cursor: text;
}

.reveal {
  opacity: 0;
  transform: translateY(1.35rem);
  transition: opacity 560ms ease, transform 560ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes pageTurn {
  0% {
    opacity: 0.72;
    transform: rotateX(4deg) translateY(0.45rem);
  }

  100% {
    opacity: 1;
    transform: rotateX(0) translateY(0);
  }
}

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

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

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

  .nav-links {
    order: 3;
    overflow-x: auto;
  }

  .talk-link {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 8.5rem;
  }

  .hero-photo {
    left: 56%;
    height: min(100vh, 52rem);
    max-width: 82vw;
  }

  .hero.is-wide-photo .hero-photo {
    width: min(92vw, 58rem);
    height: auto;
  }

  .intro-panel {
    margin-left: 0;
  }

  .hero-press {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1rem;
  }

  .metrics-grid,
  .poster-grid,
  .social-wall,
  .contact-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-wall a:last-child {
    grid-column: 1 / -1;
  }

  .metric:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 1rem;
    background: rgba(1, 7, 5, 0.84);
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.72rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

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

  .hero {
    min-height: auto;
    padding: 8.5rem 1rem 5.5rem;
  }

  h1 {
    font-size: clamp(6rem, 34vw, 11rem);
  }

  .intro-panel {
    font-size: 0.98rem;
    max-width: 100%;
    border-color: rgba(231, 190, 103, 0.32);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      inset 0 0 1.4rem rgba(146, 230, 173, 0.04),
      0 0 0.9rem rgba(231, 190, 103, 0.16),
      0 0 2.4rem rgba(146, 230, 173, 0.08),
      0 1.6rem 4rem rgba(0, 0, 0, 0.36);
  }

  .intro-panel::before {
    inset: -0.8rem;
    filter: blur(14px);
    opacity: 0.72;
  }

  .hero-press {
    grid-template-columns: 1fr;
  }

  .photo-switcher {
    left: 1rem;
    right: auto;
  }

  .scroll-cue {
    display: none;
  }

  .section-row,
  .metrics-grid,
  .poster-grid,
  .social-wall,
  .contact-links {
    grid-template-columns: 1fr;
  }

  .social-wall a:last-child {
    grid-column: auto;
  }

  .metric,
  .metric + .metric,
  .metric:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .metric:first-child {
    border-top: 0;
  }

  .contact-email {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}
