:root {
  --ink: #08141f;
  --ink-soft: #122432;
  --paper: #f5f0e7;
  --paper-deep: #ebe3d7;
  --white: #fffdfa;
  --orange: #f36a2d;
  --orange-dark: #d95019;
  --sky: #9bc9d8;
  --muted: #66717a;
  --line: rgba(8, 20, 31, 0.15);
  --shadow: 0 28px 80px rgba(4, 14, 22, 0.18);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --shell: min(1200px, calc(100vw - 48px));
  --header-height: 156px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

button {
  color: inherit;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: clamp(90px, 10vw, 150px);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 4px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: var(--white);
  transition:
    height 260ms ease,
    background-color 260ms ease,
    box-shadow 260ms ease;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  content: "";
}

.site-header.is-scrolled,
.site-header.menu-active {
  height: 96px;
  background: rgba(8, 20, 31, 0.96);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 144px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
  transition: width 260ms ease;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(0.98);
}

.site-header.is-scrolled .brand-logo,
.site-header.menu-active .brand-logo {
  width: 84px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.site-header .brand-copy strong {
  display: flex;
  align-items: baseline;
  gap: 9px;
  font-size: 38px;
  line-height: 0.9;
}

.site-header .brand-first-name,
.site-header .brand-last-name {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1em;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 0.9;
}

.site-header .brand-first-name {
  color: var(--white);
}

.site-header .brand-last-name {
  color: var(--orange);
}

.brand-copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-header .brand-copy small {
  color: var(--sky);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.085em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.site-nav a:not(.nav-cta)::after {
  display: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--white);
  border-color: rgba(155, 201, 216, 0.68);
  background: rgba(155, 201, 216, 0.12);
  transform: translateY(-2px);
}

.site-nav a.is-active {
  border-color: var(--orange);
  box-shadow: inset 0 -3px 0 var(--orange);
}

.site-nav .nav-cta {
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.site-nav .nav-cta.is-active {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 0 0 3px rgba(243, 106, 45, 0.2);
}

.menu-toggle {
  display: none;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: var(--orange);
  background: var(--orange);
  transform: scale(1.04);
}

.menu-toggle span {
  position: absolute;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform 220ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 820px;
  height: max(780px, 100svh);
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-media,
.hero-shade,
.court-lines {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% center;
  animation: hero-drift 18s ease-out both;
}

@keyframes hero-drift {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 14, 22, 0.1) 0%, rgba(5, 14, 22, 0.24) 43%, rgba(5, 14, 22, 0.93) 72%, #08141f 100%),
    linear-gradient(0deg, rgba(5, 14, 22, 0.9) 0%, transparent 40%);
}

.court-lines {
  pointer-events: none;
  opacity: 0.12;
}

.court-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 370px;
  aspect-ratio: 1;
  border: 1px solid var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.court-arc {
  position: absolute;
  top: 50%;
  right: -190px;
  width: 460px;
  aspect-ratio: 1;
  border: 1px solid var(--white);
  border-radius: 50%;
  transform: translateY(-50%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  padding-top: 100px;
  padding-bottom: 40px;
}

.hero-copy {
  grid-column: 2;
  max-width: 610px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 32px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.75);
}

.eyebrow-orange {
  color: var(--orange);
}

.eyebrow-dark {
  color: var(--ink);
}

.hero h1,
.section-heading h2,
.milestone h2,
.contact h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.83;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(94px, 10vw, 158px);
}

.hero-disciplines {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.hero-disciplines li {
  padding: 8px 12px;
  border: 1px solid rgba(155, 201, 216, 0.56);
  border-radius: 4px;
  background: rgba(8, 20, 31, 0.72);
  color: var(--sky);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.14);
}

.hero-disciplines li:first-child {
  color: var(--sky);
}

.hero-disciplines li:nth-child(even) {
  border-color: rgba(243, 106, 45, 0.7);
  color: #ff8a55;
}

.hero .eyebrow-light {
  color: var(--orange);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero h1 em,
.section-heading h2 em,
.contact h2 em {
  color: var(--orange);
  font-style: italic;
  font-weight: 600;
}

.hero-lead {
  max-width: 530px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

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

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: #ff7f42;
}

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

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--ink-soft);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  font-size: 18px;
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(3px, -3px);
}

.text-link-light {
  color: rgba(255, 255, 255, 0.84);
}

.hero-rail {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(8, 20, 31, 0.58);
  backdrop-filter: blur(14px);
}

.hero-rail-inner {
  display: grid;
  min-height: 116px;
  grid-template-columns: 0.7fr 1fr 1fr 1.2fr;
  align-items: center;
}

.hero-stat {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 13px;
  padding-inline: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-stat:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-stat strong {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-stat sup {
  color: var(--orange);
  font-size: 16px;
  vertical-align: super;
}

.hero-stat span,
.hero-location {
  max-width: 110px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.55;
  text-transform: uppercase;
}

.hero-location {
  display: flex;
  max-width: none;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.hero-location svg {
  width: 20px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.5;
}

.scroll-cue {
  position: absolute;
  bottom: 155px;
  left: 22px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: left center;
}

.scroll-cue i {
  display: inline-block;
  width: 50px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.scroll-cue i::after {
  display: block;
  width: 60%;
  height: 100%;
  background: var(--orange);
  content: "";
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(180%);
  }
}

.section-heading {
  margin-bottom: clamp(55px, 7vw, 92px);
}

.section-heading h2 {
  max-width: 790px;
  font-size: clamp(60px, 7vw, 100px);
  line-height: 0.94;
}

.section-heading h2 em {
  color: var(--orange-dark);
}

.split-heading,
.career-heading,
.courses-heading,
.press-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.7fr);
  align-items: end;
  gap: clamp(50px, 8vw, 130px);
}

.heading-note,
.career-heading > p,
.courses-heading > p,
.press-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: start;
  gap: clamp(55px, 8vw, 120px);
}

.framed-photo {
  position: relative;
  margin: 0;
}

.story-portrait::before {
  position: absolute;
  inset: -18px 22px 18px -18px;
  z-index: -1;
  border: 1px solid rgba(8, 20, 31, 0.25);
  content: "";
}

.story-portrait img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
}

.story-portrait figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-copy {
  padding-top: 14px;
}

.story-copy > p {
  margin: 0 0 25px;
  color: #43505a;
  font-size: 15px;
}

.story-copy .dropcap {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.75;
}

.dropcap::first-letter {
  float: left;
  margin: 8px 11px 0 0;
  color: var(--orange-dark);
  font-family: var(--font-display);
  font-size: 68px;
  font-weight: 700;
  line-height: 0.7;
}

.story-copy blockquote {
  position: relative;
  margin: 45px 0 35px;
  padding: 28px 0 28px 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-copy blockquote > span {
  position: absolute;
  top: 17px;
  left: 0;
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 54px;
  line-height: 1;
}

.story-copy blockquote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 33px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}

.story-copy blockquote cite {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.milestone {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.milestone::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 20, 31, 0) 20%, var(--ink) 68%);
  content: "";
}

.milestone-photo {
  position: absolute;
  inset: 0 43% 0 0;
}

.milestone-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 20, 31, 0.55), transparent 55%);
  content: "";
}

.milestone-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) contrast(1.08);
}

.milestone-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 760px;
  align-items: center;
  justify-content: flex-end;
}

.milestone-card {
  position: relative;
  width: 49%;
  padding-left: clamp(40px, 6vw, 90px);
}

.milestone-number {
  position: absolute;
  top: -140px;
  right: -10px;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--font-display);
  font-size: 260px;
  font-weight: 800;
  line-height: 1;
}

.milestone h2 {
  position: relative;
  max-width: 570px;
  font-size: clamp(56px, 6vw, 88px);
  line-height: 0.92;
}

.milestone-card > p:not(.eyebrow) {
  max-width: 540px;
  margin: 35px 0 40px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 15px;
}

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

.timeline {
  position: relative;
  max-width: 980px;
  margin-inline: auto;
}

.timeline::before {
  position: absolute;
  top: 16px;
  bottom: 50px;
  left: 162px;
  width: 1px;
  background: var(--line);
  content: "";
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 130px 65px 1fr;
  min-height: 190px;
  align-items: start;
}

.timeline-year {
  padding-top: 2px;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: right;
}

.timeline-dot {
  position: relative;
  z-index: 1;
  width: 13px;
  height: 13px;
  margin: 9px auto 0;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}

.timeline-body {
  max-width: 650px;
  padding: 0 0 58px 25px;
}

.timeline-body > span {
  color: var(--orange-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.timeline-body h3 {
  margin: 7px 0 8px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.timeline-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.timeline-featured .timeline-year {
  color: var(--orange-dark);
}

.timeline-featured .timeline-dot {
  width: 19px;
  height: 19px;
  margin-top: 6px;
  background: var(--orange);
  box-shadow:
    0 0 0 1px var(--orange),
    0 0 0 7px rgba(243, 106, 45, 0.12);
}

.timeline-featured .timeline-body {
  position: relative;
  margin-top: -20px;
  padding: 26px 30px 28px;
  background: var(--paper);
}

.courses {
  position: relative;
  overflow: hidden;
  background: var(--orange);
}

.courses::before {
  position: absolute;
  top: -360px;
  right: -240px;
  width: 720px;
  aspect-ratio: 1;
  border: 1px solid rgba(8, 20, 31, 0.15);
  border-radius: 50%;
  content: "";
}

.courses-heading h2 {
  color: var(--ink);
}

.courses-heading h2 em {
  color: var(--white);
}

.courses-heading > p {
  color: rgba(8, 20, 31, 0.7);
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.course-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(8, 20, 31, 0.16);
  background: var(--paper);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.course-card:hover {
  z-index: 1;
  box-shadow: var(--shadow);
  transform: translateY(-9px);
}

.course-card-dark {
  background: var(--ink);
  color: var(--white);
}

.course-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.course-index {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
}

.course-status {
  padding: 5px 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.course-icon {
  display: grid;
  width: 106px;
  aspect-ratio: 1;
  margin: 53px 0 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.course-card-dark .course-icon {
  border-color: rgba(255, 255, 255, 0.15);
}

.course-icon svg {
  width: 64px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.course-type {
  margin: 0 0 10px;
  color: var(--orange-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.course-card-dark .course-type {
  color: var(--orange);
}

.course-card h3 {
  max-width: 300px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  line-height: 0.98;
  text-transform: uppercase;
}

.course-card > p:not(.course-type) {
  margin: 17px 0 30px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.course-card-dark > p:not(.course-type) {
  color: rgba(255, 255, 255, 0.58);
}

.course-link {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 16px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
}

.course-card-dark .course-link {
  border-top-color: rgba(255, 255, 255, 0.15);
}

.course-link span {
  font-size: 20px;
  transition: transform 180ms ease;
}

.course-link:hover span,
.course-link:focus-visible span {
  transform: translate(3px, -3px);
}

.club-offer {
  display: grid;
  grid-template-columns: auto 1.25fr 1fr auto;
  align-items: center;
  gap: 35px;
  margin-top: 16px;
  padding: 38px;
  background: var(--paper);
}

.club-offer-icon {
  display: grid;
  width: 70px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
}

.club-offer-icon svg {
  width: 38px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.club-offer .eyebrow {
  margin-bottom: 6px;
}

.club-offer h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 29px;
  line-height: 1;
  text-transform: uppercase;
}

.club-offer > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.quote-section {
  position: relative;
  display: grid;
  min-height: 700px;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.quote-background {
  position: absolute;
  inset: 0;
}

.quote-background::after {
  position: absolute;
  inset: 0;
  background: rgba(5, 14, 22, 0.76);
  content: "";
}

.quote-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.75) contrast(1.15);
  transform: scale(1.04);
}

.quote-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 100px minmax(0, 850px);
  justify-content: center;
  gap: 30px;
}

.quote-mark {
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 150px;
  line-height: 0.76;
}

.quote-content blockquote {
  margin: 0;
}

.quote-content blockquote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 5.1vw, 74px);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.02;
  text-transform: uppercase;
}

.quote-content cite {
  display: block;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.press {
  background: var(--paper);
}

.press-list {
  border-top: 1px solid var(--line);
}

.press-item {
  position: relative;
  display: grid;
  grid-template-columns: 180px minmax(300px, 1.2fr) minmax(260px, 0.8fr) 50px;
  align-items: center;
  gap: 32px;
  padding: 31px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition:
    background-color 180ms ease,
    padding 180ms ease;
}

.press-item:hover,
.press-item:focus-visible {
  padding-inline: 20px;
  background: var(--white);
}

.press-meta {
  color: var(--orange-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.press-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.press-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.press-arrow {
  font-size: 26px;
  text-align: right;
  transition: transform 180ms ease;
}

.press-item:hover .press-arrow,
.press-item:focus-visible .press-arrow {
  color: var(--orange-dark);
  transform: translate(4px, -4px);
}

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

.contact-orbit {
  position: absolute;
  top: 50%;
  left: -250px;
  width: 600px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transform: translateY(-50%);
}

.contact-orbit::before,
.contact-orbit::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.contact-orbit::before {
  inset: 100px -80px;
}

.contact-orbit::after {
  inset: -80px 100px;
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(70px, 10vw, 150px);
}

.contact h2 {
  max-width: 480px;
  font-size: clamp(65px, 7vw, 98px);
  line-height: 0.92;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 460px;
  margin: 32px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.contact-topics {
  display: flex;
  max-width: 430px;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-topics span {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form {
  padding: clamp(28px, 4vw, 50px);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.24);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-form label {
  display: block;
  margin-bottom: 23px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 7px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(8, 20, 31, 0.23);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  transition: border-color 180ms ease;
}

.contact-form input,
.contact-form select {
  height: 48px;
}

.contact-form textarea {
  padding-block: 10px;
  resize: vertical;
}

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

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 6px;
}

.form-footer p {
  max-width: 230px;
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.form-footer p.is-success {
  color: #266c46;
  font-weight: 700;
}

.site-footer {
  background: #050e16;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding-block: 52px;
}

.brand-footer .brand-copy small {
  color: var(--sky);
  font-size: 10px;
  letter-spacing: 0.15em;
}

.brand-footer .brand-logo {
  width: 150px;
}

.brand-footer .brand-copy strong {
  display: flex;
  gap: 7px;
  font-size: 30px;
}

.brand-footer .brand-first-name {
  color: var(--white);
}

.brand-footer .brand-last-name {
  color: var(--orange);
}

.footer-main > p {
  max-width: 320px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
}

.footer-main nav a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.footer-legal {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.35);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-legal button {
  padding: 5px 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.footer-legal button:hover,
.footer-legal button:focus-visible {
  color: var(--orange);
}

.course-dialog,
.credits-dialog {
  width: min(620px, calc(100vw - 32px));
  max-height: min(760px, calc(100dvh - 32px));
  overflow: auto;
  padding: clamp(35px, 5vw, 62px);
  border: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.38);
}

.course-dialog::backdrop,
.credits-dialog::backdrop {
  background: rgba(5, 14, 22, 0.82);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 40px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.dialog-close:hover,
.dialog-close:focus-visible {
  border-color: var(--orange-dark);
  color: var(--orange-dark);
}

.dialog-kicker {
  margin-bottom: 12px;
  color: var(--orange-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.course-dialog h2,
.credits-dialog h2 {
  max-width: 460px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 68px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-transform: uppercase;
}

.course-dialog > p,
.credits-dialog > p {
  margin: 25px 0;
  color: var(--muted);
  font-size: 14px;
}

.dialog-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 30px 0;
}

.dialog-details > div {
  padding: 17px;
  border: 1px solid var(--line);
}

.dialog-details span {
  display: block;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dialog-details strong {
  display: block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 20px;
  text-transform: uppercase;
}

.course-dialog h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 23px;
  text-transform: uppercase;
}

.course-dialog ul,
.credits-dialog ul {
  margin: 0 0 30px;
  padding-left: 19px;
  color: var(--muted);
  font-size: 13px;
}

.course-dialog li,
.credits-dialog li {
  margin-bottom: 6px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.65, 0.3, 1),
    transform 700ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

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

@media (max-width: 1080px) {
  :root {
    --header-height: 110px;
  }

  .brand-logo {
    width: 94px;
  }

  .site-header .brand-copy strong {
    gap: 7px;
    font-size: 32px;
  }

  .site-nav {
    gap: 6px;
  }

  .site-nav a {
    min-height: 44px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .site-nav .nav-cta {
    min-height: 46px;
    padding-inline: 17px;
  }

  .hero-inner {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .hero-rail-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-location {
    display: none;
  }

  .story-grid {
    gap: 55px;
  }

  .milestone-photo {
    right: 37%;
  }

  .milestone-card {
    width: 56%;
  }

  .course-card {
    min-height: 500px;
    padding: 24px;
  }

  .club-offer {
    grid-template-columns: auto 1fr auto;
  }

  .club-offer > p {
    display: none;
  }

  .press-item {
    grid-template-columns: 150px minmax(300px, 1fr) 42px;
  }

  .press-item p {
    display: none;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 0.75fr) minmax(470px, 1.25fr);
    gap: 60px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 36px, 720px);
    --header-height: 104px;
  }

  .brand {
    position: relative;
    z-index: 3;
  }

  .brand-logo {
    width: 90px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    min-height: 100dvh;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    padding: 128px max(28px, calc((100vw - 720px) / 2)) 34px;
    background:
      radial-gradient(circle at 86% 12%, rgba(155, 201, 216, 0.14), transparent 260px),
      var(--ink);
    counter-reset: menu-item;
    opacity: 0;
    transform: translateY(-15px);
    transition:
      opacity 220ms ease,
      visibility 220ms ease,
      transform 220ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav::before {
    display: block;
    margin: 0 0 10px 5px;
    color: var(--orange);
    content: "Menú principal";
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .site-nav a {
    width: 100%;
    min-height: 0;
    justify-content: flex-start;
    padding: 16px 5px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    background: transparent;
    counter-increment: menu-item;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(32px, 7vw, 48px);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1;
  }

  .site-nav a::before {
    width: 34px;
    flex: 0 0 auto;
    color: var(--orange);
    content: "0" counter(menu-item);
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
  }

  .site-nav a:not(.nav-cta)::after {
    position: absolute;
    top: 50%;
    right: 7px;
    bottom: auto;
    left: auto;
    display: block;
    width: 10px;
    height: 10px;
    border: solid rgba(255, 255, 255, 0.52);
    border-width: 1px 1px 0 0;
    background: transparent;
    content: "";
    transform: translateY(-50%) rotate(45deg);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a.is-active {
    padding-left: 13px;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
    transform: none;
  }

  .site-nav .nav-cta {
    min-height: 54px;
    justify-content: center;
    margin-top: 22px;
    padding: 12px 20px;
    border: 1px solid var(--orange);
    border-radius: 999px;
    background: var(--orange);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .site-nav .nav-cta::before {
    width: auto;
    margin-right: 10px;
    color: var(--ink);
  }

  .hero {
    min-height: 800px;
  }

  .hero-media img {
    object-position: 34% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 14, 22, 0.28), rgba(5, 14, 22, 0.66)),
      linear-gradient(0deg, #08141f 0%, rgba(5, 14, 22, 0.08) 73%);
  }

  .hero-inner {
    display: block;
    padding-top: 180px;
    padding-bottom: 150px;
  }

  .hero-copy {
    max-width: 570px;
    margin-left: auto;
  }

  .hero h1 {
    font-size: clamp(92px, 20vw, 140px);
  }

  .hero-lead {
    max-width: 500px;
  }

  .hero-rail-inner {
    min-height: 98px;
  }

  .hero-stat {
    padding-inline: 16px;
  }

  .hero-stat strong {
    font-size: 38px;
  }

  .scroll-cue {
    display: none;
  }

  .split-heading,
  .career-heading,
  .courses-heading,
  .press-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .heading-note,
  .career-heading > p,
  .courses-heading > p,
  .press-heading > p {
    max-width: 540px;
  }

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

  .story-portrait {
    max-width: 650px;
  }

  .story-copy {
    max-width: 610px;
    margin-left: auto;
  }

  .milestone,
  .milestone-content {
    min-height: 760px;
  }

  .milestone::after {
    background: linear-gradient(0deg, var(--ink) 0%, rgba(8, 20, 31, 0.88) 55%, rgba(8, 20, 31, 0.22) 100%);
  }

  .milestone-photo {
    inset: 0 0 38% 0;
  }

  .milestone-photo img {
    object-position: center 42%;
  }

  .milestone-content {
    align-items: flex-end;
    justify-content: flex-start;
    padding-bottom: 75px;
  }

  .milestone-card {
    width: 100%;
    max-width: 650px;
    padding-left: 0;
  }

  .milestone-number {
    top: -80px;
    right: 0;
    font-size: 180px;
  }

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

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

  .course-icon {
    margin: 35px 0 27px;
  }

  .club-offer {
    grid-template-columns: auto 1fr;
  }

  .club-offer .button {
    grid-column: 1 / -1;
  }

  .quote-content {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 15px;
  }

  .quote-mark {
    font-size: 110px;
  }

  .press-item {
    grid-template-columns: 145px 1fr 35px;
    gap: 20px;
  }

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

  .contact-copy {
    max-width: 650px;
  }

  .contact-form {
    max-width: 650px;
    margin-left: auto;
  }

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

  .footer-main > p {
    display: none;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 30px);
    --header-height: 108px;
  }

  .section {
    padding-block: 80px;
  }

  .site-header.is-scrolled,
  .site-header.menu-active {
    height: 86px;
  }

  .brand-logo {
    width: 92px;
  }

  .site-header.is-scrolled .brand-logo,
  .site-header.menu-active .brand-logo {
    width: 72px;
  }

  .brand-footer .brand-logo {
    width: 110px;
  }

  .brand-copy strong {
    font-size: 21px;
  }

  .site-header .brand-copy strong {
    gap: 5px;
    font-size: 28px;
  }

  .brand-copy small {
    display: none;
  }

  .site-header .brand-copy small {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    letter-spacing: 0.1em;
  }

  .hero {
    min-height: 760px;
    height: 100svh;
  }

  .hero-media img {
    object-position: 38% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 14, 22, 0.25), rgba(5, 14, 22, 0.44)),
      linear-gradient(0deg, #08141f 2%, rgba(5, 14, 22, 0.18) 76%);
  }

  .hero-inner {
    display: flex;
    height: 100%;
    align-items: flex-end;
    padding-top: 150px;
    padding-bottom: 130px;
  }

  .hero h1 {
    font-size: clamp(88px, 28vw, 120px);
  }

  .hero-disciplines {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 18px;
  }

  .hero-disciplines li,
  .hero-disciplines li:first-child {
    display: flex;
    min-height: 38px;
    align-items: center;
    padding: 7px 9px;
    border: 1px solid rgba(155, 201, 216, 0.6);
    color: var(--sky);
    font-size: 10px;
    letter-spacing: 0.055em;
  }

  .hero-disciplines li:nth-child(even) {
    border-color: rgba(243, 106, 45, 0.78);
    color: #ff9565;
  }

  .hero .eyebrow-light {
    font-size: 16px;
    letter-spacing: 0.08em;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 22px;
  }

  .hero-rail-inner {
    min-height: 84px;
  }

  .hero-stat {
    display: block;
    padding-inline: 9px;
  }

  .hero-stat strong {
    display: block;
    font-size: 29px;
  }

  .hero-stat span {
    display: block;
    max-width: 85px;
    font-size: 7px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 9px;
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .section-heading h2 {
    font-size: clamp(52px, 17vw, 74px);
  }

  .story-grid {
    gap: 42px;
  }

  .story-portrait::before {
    inset: -9px 12px 9px -9px;
  }

  .story-copy .dropcap {
    font-size: 16px;
  }

  .story-copy blockquote p {
    font-size: 29px;
  }

  .milestone,
  .milestone-content {
    min-height: 720px;
  }

  .milestone-photo {
    bottom: 43%;
  }

  .milestone-content {
    padding-bottom: 55px;
  }

  .milestone h2 {
    font-size: 52px;
  }

  .milestone-card > p:not(.eyebrow) {
    margin: 25px 0 30px;
    font-size: 13px;
  }

  .timeline::before {
    left: 10px;
  }

  .timeline-item {
    grid-template-columns: 22px 1fr;
    min-height: 0;
  }

  .timeline-year {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 8px;
    font-size: 26px;
    text-align: left;
  }

  .timeline-dot {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin: 8px 0 0 4px;
  }

  .timeline-body {
    grid-column: 2;
    grid-row: 2;
    padding: 0 0 48px 0;
  }

  .timeline-body h3 {
    font-size: 27px;
  }

  .timeline-featured .timeline-body {
    margin: 0 0 40px;
    padding: 22px;
  }

  .timeline-featured .timeline-dot {
    margin-top: 5px;
    transform: translateX(-3px);
  }

  .course-card {
    min-height: 460px;
  }

  .club-offer {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 26px;
  }

  .club-offer-icon {
    width: 58px;
  }

  .club-offer .button {
    grid-column: auto;
  }

  .quote-section {
    min-height: 630px;
  }

  .quote-content {
    display: block;
  }

  .quote-mark {
    display: block;
    height: 78px;
  }

  .quote-content blockquote p {
    font-size: 40px;
  }

  .press-item {
    grid-template-columns: 1fr 30px;
    gap: 10px 20px;
    padding-block: 25px;
  }

  .press-meta {
    grid-column: 1 / -1;
  }

  .press-item h3 {
    font-size: 24px;
  }

  .contact h2 {
    font-size: 58px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-main nav {
    justify-content: flex-start;
  }

  .footer-legal {
    min-height: 78px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
  }

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

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
