/* Production asset: hero audio control refresh. */
:root {
  --page: #14181b;
  --paper: #f4f5f2;
  --ink: #e8eae6;
  --secondary: #9aa3a8;
  --accent: #e4574b;
  --accent-dark: #8b140c;
  --cta: #a81b12;
  --mist: #2a3130;
  --separator: #4a5254;
  --hero-muted: #c9cec8;
  --image-well: #171c1f;
  --hero-bg: #171a1c;
  --tarmac: #1b2124;
  --tarmac-text: #e8eae6;
  --dark-accent: #e4574b;
  --display: "Bodoni Moda", Didot, "Bodoni MT", serif;
  --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "IBM Plex Mono", Menlo, Monaco, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

a:hover {
  color: var(--accent);
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
video,
svg {
  display: block;
}

[hidden] {
  display: none !important;
}

::selection {
  background: var(--cta);
  color: var(--paper);
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--page);
  font-family: var(--mono);
  font-size: 12px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.brand-logo {
  display: block;
  width: auto;
  flex: none;
  object-fit: contain;
}

.brand-logo--paper {
  height: 17px;
}

.brand-logo--ink,
.brand-logo--footer {
  height: 15px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 94vh;
  background: var(--hero-bg);
}

.hero__video,
.hero__overlay,
.hero__grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  object-fit: cover;
  filter: sepia(0.24) hue-rotate(-10deg) saturate(1.25) contrast(1.08) brightness(0.9);
}

.hero__overlay {
  background: linear-gradient(180deg, rgb(23 26 28 / 62%) 0%, rgb(23 26 28 / 28%) 42%, rgb(23 26 28 / 74%) 100%);
  pointer-events: none;
}

.hero__grain {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20width=%22240%22%20height=%22240%22%3E%3Cfilter%20id=%22n%22%3E%3CfeTurbulence%20type=%22fractalNoise%22%20baseFrequency=%220.8%22%20numOctaves=%222%22%20stitchTiles=%22stitch%22/%3E%3CfeColorMatrix%20type=%22saturate%22%20values=%220%22/%3E%3C/filter%3E%3Crect%20width=%22240%22%20height=%22240%22%20filter=%22url(%23n)%22/%3E%3C/svg%3E");
  background-size: 240px 240px;
  mix-blend-mode: overlay;
  opacity: 0.22;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: flex;
  min-height: min(94svh, 1000px);
  flex-direction: column;
}

.hero__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(20px, 5vw, 44px);
}

.hero__utilities {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.hero__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.mobile-nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgb(244 245 242 / 40%);
  background: rgb(23 26 28 / 40%);
  color: var(--paper);
  cursor: pointer;
  padding: 0;
}

.mobile-nav-toggle span,
.mobile-nav-toggle span::before,
.mobile-nav-toggle span::after {
  display: block;
  width: 16px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-nav-toggle span {
  position: relative;
}

.mobile-nav-toggle span::before,
.mobile-nav-toggle span::after {
  position: absolute;
  left: 0;
}

.mobile-nav-toggle span::before {
  top: -5px;
}

.mobile-nav-toggle span::after {
  top: 5px;
}

.mobile-nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.mobile-nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.language-toggle {
  display: grid;
  flex: none;
  grid-template-columns: repeat(2, 30px);
  border: 1px solid rgb(244 245 242 / 40%);
  background: rgb(23 26 28 / 40%);
}

.language-toggle__button {
  width: 30px;
  height: 28px;
  border: 0;
  background: transparent;
  color: var(--hero-muted);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  padding: 0;
}

.language-toggle__button:hover {
  color: var(--dark-accent);
}

.language-toggle__button[aria-pressed="true"] {
  background: var(--paper);
  color: var(--page);
}

.hero__header-link {
  color: var(--hero-muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
}

.hero__header-link:hover {
  color: var(--dark-accent);
}

.hero__content {
  display: flex;
  width: 100%;
  max-width: 880px;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 56px clamp(20px, 5vw, 40px) 96px;
}

.section-kicker,
.experience__label,
.experience-strip,
.ladder__title,
.ladder__heading,
.buyout-note,
.calendar-card__label,
.calendar-card__places,
.field > span,
.form-hint,
.form-confirmation > p:first-child,
.footer,
.elevation__captions,
.hero__footage-note,
.sound-toggle,
.button {
  font-family: var(--mono);
  letter-spacing: 0;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
}

h1 {
  margin: 26px 0 0;
  color: var(--paper);
  font-size: 52px;
  line-height: 1.02;
  text-wrap: balance;
}

.hero__content > h1 {
  margin-top: 0;
}

.hero__subhead {
  max-width: 600px;
  margin: 30px 0 0;
  color: #d6dad4;
  font-size: 19px;
  line-height: 1.62;
  text-wrap: pretty;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--cta);
  color: var(--paper);
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  padding: 18px 34px;
  text-decoration: none;
}

.button:hover {
  background: var(--accent-dark);
  color: var(--paper);
}

.button:active {
  background: #731009;
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.hero__cta {
  align-self: flex-start;
  margin-top: 42px;
}

.urgency-line {
  max-width: 100%;
  margin: 0;
  color: var(--secondary);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
  text-wrap: balance;
}

.urgency-line--hero {
  align-self: flex-start;
  margin-top: 14px;
  color: rgb(244 245 242 / 72%);
}

.hero__audio {
  position: absolute;
  right: clamp(20px, 5vw, 44px);
  bottom: 30px;
  display: flex;
  max-width: min(320px, calc(100% - 40px));
  align-items: flex-end;
  flex-direction: column;
  gap: 10px;
}

.sound-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgb(244 245 242 / 40%);
  background: rgb(23 26 28 / 40%);
  backdrop-filter: blur(8px);
  color: var(--paper);
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  padding: 11px 16px;
}

.hero__footage-note {
  max-width: 100%;
  margin: 0;
  color: rgb(244 245 242 / 68%);
  font-size: 10px;
  line-height: 1.45;
  text-align: right;
  text-wrap: balance;
}

.sound-toggle:hover {
  border-color: var(--dark-accent);
  color: var(--dark-accent);
}

.sound-toggle__dot {
  width: 6px;
  height: 6px;
  flex: none;
  border-radius: 50%;
  background: #8a9297;
}

.sound-toggle[aria-pressed="true"] .sound-toggle__dot {
  background: var(--dark-accent);
}

.elevation {
  padding-top: clamp(40px, 7vh, 72px);
}

.elevation__line {
  width: 100%;
  height: clamp(90px, 13vw, 160px);
}

.elevation__line path {
  animation: draw-line 2.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
  fill: none;
  stroke: var(--accent);
  stroke-dasharray: 2600;
  stroke-width: 1.75;
  vector-effect: non-scaling-stroke;
}

@keyframes draw-line {
  from { stroke-dashoffset: 2600; }
  to { stroke-dashoffset: 0; }
}

.elevation__captions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(20px, 5vw, 44px) 0;
  color: var(--secondary);
  font-size: 10px;
  line-height: 1.5;
}

.elevation__captions span:last-child {
  text-align: right;
}

.content-section {
  max-width: 880px;
  margin: 0 auto;
  padding: 96px clamp(20px, 5vw, 40px) 0;
}

.section-rule {
  display: flex;
  align-items: center;
  gap: 18px;
}

.section-rule svg {
  width: 48px;
  height: 14px;
  flex: none;
}

.section-rule path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
}

.section-rule span {
  height: 1px;
  flex: 1;
  background: var(--mist);
}

.section-kicker {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 26px 0 0;
  color: var(--secondary);
  font-size: 11px;
  font-weight: 500;
}

.section-kicker span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}

h2 {
  margin: 18px 0 26px;
  font-size: 34px;
  line-height: 1.12;
  text-wrap: balance;
}

h2 em {
  color: var(--accent);
  font-style: normal;
}

.prose {
  max-width: 640px;
}

.prose p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  text-wrap: pretty;
}

.prose p + p {
  margin-top: 18px;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  margin-top: 36px;
}

.experience {
  border-top: 1px solid var(--mist);
  padding-top: 22px;
}

.experience__label {
  margin: 0;
  color: var(--secondary);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
}

.experience__label strong {
  color: var(--ink);
  font-weight: 600;
}

.experience__label span {
  color: var(--accent);
}

.experience__label .experience__status {
  color: var(--accent);
}

.film-media {
  position: relative;
  overflow: hidden;
  background: var(--image-well);
}

.film-media::before,
.film-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.film-media::before {
  z-index: 1;
  background: radial-gradient(120% 90% at 12% 88%, rgb(168 27 18 / 34%), transparent 55%);
  mix-blend-mode: screen;
}

.film-media::after {
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20width=%22240%22%20height=%22240%22%3E%3Cfilter%20id=%22n%22%3E%3CfeTurbulence%20type=%22fractalNoise%22%20baseFrequency=%220.8%22%20numOctaves=%222%22%20stitchTiles=%22stitch%22/%3E%3CfeColorMatrix%20type=%22saturate%22%20values=%220%22/%3E%3C/filter%3E%3Crect%20width=%22240%22%20height=%22240%22%20filter=%22url(%23n)%22/%3E%3C/svg%3E");
  background-size: 240px 240px;
  mix-blend-mode: overlay;
  opacity: 0.3;
}

.film-media img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.28) hue-rotate(-10deg) saturate(1.3) contrast(1.08) brightness(0.88);
}

.experience__media {
  aspect-ratio: 4 / 3;
  margin-top: 20px;
}

.experience > p:last-child {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.7;
  text-wrap: pretty;
}

.standard__media {
  aspect-ratio: 16 / 8;
  margin-top: 36px;
}

.experience-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
  margin-top: 56px;
  border: 1px solid var(--mist);
  padding: 24px 30px;
  background: var(--tarmac);
  color: var(--tarmac-text);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.experience-strip strong {
  color: var(--accent);
  font-weight: 500;
}

.experience-strip i {
  color: #5a6266;
  font-style: normal;
}

.image-band {
  margin-top: 96px;
}

.image-band__media {
  height: clamp(320px, 56vh, 560px);
}

.ladder {
  margin-top: 48px;
}

.ladder-section .ladder {
  margin-top: 0;
}

.ladder__title {
  margin: 0;
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
}

.ladder__intro {
  max-width: 640px;
  margin: 12px 0 0;
  color: var(--secondary);
  font-size: 15px;
  line-height: 1.6;
  text-wrap: pretty;
}

.ladder__rows {
  margin-top: 20px;
  border-top: 1px solid var(--mist);
}

.ladder__row {
  padding: 20px 0;
  border-bottom: 1px solid var(--mist);
}

.ladder__heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}

.ladder__heading p {
  margin: 0;
}

.ladder__level strong {
  color: var(--accent);
  font-weight: 600;
}

.ladder__level span,
.ladder__price span {
  color: var(--secondary);
  font-weight: 500;
}

.ladder__heading i,
.buyout-note i {
  color: var(--separator);
  font-style: normal;
}

.ladder__price {
  color: var(--ink);
  font-weight: 600;
}

.ladder__description {
  max-width: 640px;
  margin: 10px 0 0;
  color: var(--secondary);
  font-size: 15px;
  line-height: 1.6;
  text-wrap: pretty;
}

.ladder__liability {
  margin: 16px 0 0;
  color: var(--secondary);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.6;
}

.buyout-note {
  margin: 26px 0 0;
  color: var(--secondary);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.9;
}

.calendar-section h2 {
  margin-bottom: 34px;
}

.calendar-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calendar-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  border: 1px solid var(--mist);
}

.calendar-card__media {
  height: 100%;
  min-height: 300px;
}

.calendar-card__media img,
.calendar-card__media video {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.calendar-card__media .calendar-card__image--ice {
  object-position: center 62%;
  filter: sepia(0.24) hue-rotate(-10deg) saturate(1.25) contrast(1.12) brightness(0.78);
}

.calendar-card__media .calendar-card__video--spa {
  object-position: 40% center;
}

.calendar-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 32px 34px;
}

.calendar-card__label {
  margin: 0;
  color: var(--secondary);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.8;
}

.calendar-card__label strong {
  color: var(--accent);
  font-weight: 600;
}

.calendar-card__description {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  text-wrap: pretty;
}

.calendar-card__places {
  align-self: flex-start;
  border: 1px solid var(--mist);
  color: var(--ink);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  padding: 8px 14px;
}

.calendar-card__places--accent {
  color: var(--accent);
}

.calendar-card__chip {
  align-self: flex-start;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.5;
}

.calendar-card--teaser {
  margin-top: 36px;
}

.calendar__note {
  margin: 26px 0 0;
  color: var(--secondary);
  font-size: 15px;
  line-height: 1.6;
}

.calendar__note + .calendar__note {
  margin-top: 6px;
}

.footer i {
  color: var(--separator);
  font-style: normal;
}

.invitation {
  padding-bottom: 120px;
}

.invitation__subhead {
  max-width: 640px;
  margin: 18px 0 42px;
  color: var(--secondary);
  font-size: 16px;
  line-height: 1.65;
  text-wrap: pretty;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px 40px;
}

.field {
  display: block;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.field--full {
  margin-top: 36px;
}

.field--sender {
  max-width: 420px;
  margin-top: 36px;
}

.field > span {
  display: block;
  color: var(--secondary);
  font-size: 10px;
  font-weight: 500;
}

.field small {
  color: #9aa19b;
  font: inherit;
}

.field input,
.field textarea {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--mist);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  padding: 12px 0 10px;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--ink);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 44px;
}

.urgency-line--form {
  margin-top: 14px;
}

.form-hint {
  color: var(--accent);
  font-size: 10px;
}

.form-confirmation {
  max-width: 520px;
  border-top: 1px solid var(--mist);
  outline: 0;
  padding-top: 28px;
}

.form-confirmation > p:first-child {
  margin: 0;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}

.footer {
  border-top: 1px solid var(--mist);
  color: var(--secondary);
  padding: 64px clamp(20px, 5vw, 44px) 72px;
}

.footer__inner {
  display: flex;
  max-width: 880px;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
}

.footer__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
}

.footer__row--primary {
  align-items: center;
  font-size: 11px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.footer a {
  color: var(--secondary);
  text-decoration: none;
}

.footer a:hover {
  color: var(--accent);
}

@media (min-width: 600px) {
  h1 { font-size: 66px; }
  h2 { font-size: 38px; }
  .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 720px) {
  .experience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 900px) {
  h1 { font-size: 84px; }
  h2 { font-size: 42px; }
}

@media (min-width: 1200px) {
  h1 { font-size: 98px; }
  h2 { font-size: 44px; }
}

@media (max-width: 599px) {
  body.nav-open {
    overflow: hidden;
  }

  .hero__header {
    position: relative;
    gap: 16px;
    padding: calc(18px + env(safe-area-inset-top)) max(20px, env(safe-area-inset-right)) 18px max(20px, env(safe-area-inset-left));
  }

  .hero__utilities {
    flex: none;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .language-toggle {
    grid-template-columns: repeat(2, 36px);
  }

  .language-toggle__button {
    width: 36px;
    height: 38px;
  }

  .mobile-nav-toggle {
    display: grid;
  }

  .hero__nav {
    position: absolute;
    z-index: 20;
    top: calc(100% - 4px);
    right: max(20px, env(safe-area-inset-right));
    left: max(20px, env(safe-area-inset-left));
    display: none;
    width: auto;
    align-items: stretch;
    justify-content: stretch;
    justify-items: stretch;
    border: 1px solid rgb(244 245 242 / 28%);
    background: rgb(23 26 28 / 96%);
    box-shadow: 0 24px 60px rgb(0 0 0 / 36%);
    gap: 0;
    padding: 8px;
    backdrop-filter: blur(12px);
  }

  .hero__nav[data-open="true"] {
    display: grid;
  }

  .hero__header-link {
    display: flex;
    min-height: 44px;
    max-width: none;
    align-items: center;
    border-bottom: 1px solid rgb(244 245 242 / 16%);
    padding: 0 12px;
    line-height: 1.4;
    text-align: left;
  }

  .hero__header-link:last-child {
    border-bottom: 0;
  }

  .hero__content {
    padding: 24px 20px 128px;
  }

  h1 {
    margin-top: 18px;
    font-size: 48px;
  }

  .hero__subhead {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero__cta {
    min-height: 48px;
    margin-top: 26px;
  }

  .button {
    max-width: 100%;
    padding-inline: 24px;
  }

  .hero__audio {
    right: max(20px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    left: max(20px, env(safe-area-inset-left));
    max-width: none;
  }

  .sound-toggle {
    padding: 10px 14px;
  }

  .elevation__captions span {
    max-width: 48%;
  }

  .content-section {
    padding-top: 80px;
  }

  .experience-strip {
    padding: 22px 20px;
    font-size: 11px;
  }

  .calendar-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .calendar-card__media {
    order: -1;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .calendar-card__content {
    order: 0;
  }

  .image-band {
    display: none;
  }

  .invitation {
    padding-bottom: 96px;
  }

  .footer {
    padding-top: 52px;
    padding-bottom: max(56px, calc(36px + env(safe-area-inset-bottom)));
  }
}

@media (max-width: 359px) {
  .brand-logo--paper {
    height: 15px;
  }

  .hero__header {
    gap: 12px;
  }

  .hero__content {
    padding-top: 18px;
  }

  h1 {
    font-size: 44px;
  }

  .hero__subhead {
    font-size: 15.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .elevation__line path {
    stroke-dashoffset: 0 !important;
  }
}

/* Disciplines + Beyond the circuit */
.experience--full { margin-top: 36px; }
.experience__media--wide { aspect-ratio: 21 / 9; }
.disciplines { display: grid; grid-template-columns: 1fr; gap: 36px 40px; margin-top: 28px; }
.discipline { border-top: 1px solid var(--mist); padding-top: 18px; }
.discipline__body { margin: 14px 0 0; font-size: 15.5px; line-height: 1.65; text-wrap: pretty; }
@media (min-width: 720px) { .disciplines { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.beyond__rows { margin-top: 36px; }
.beyond__status { margin: 0; font-size: 11px; font-weight: 600; color: var(--secondary); }
.beyond__status--soon { color: var(--accent); }
.beyond__cta { margin-top: 36px; border: 1px solid var(--ink); background: transparent; color: var(--ink); }
.beyond__cta:hover { border-color: var(--accent); background: transparent; color: var(--accent); }

/* Calendar video treatment */
.film-media video { z-index: 0; filter: sepia(0.28) hue-rotate(-10deg) saturate(1.3) contrast(1.08) brightness(0.88); }
