@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/BarlowCondensed-Regular.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/BarlowCondensed-Bold.woff2') format('woff2');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Variable.woff2') format('woff2');
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --yellow: #fcd102;
  --ink: #111111;
  --paper: #f3f0e8;
  --white: #ffffff;
  --gray: #6b6b6b;
  --content: 1180px;
  --pad: clamp(24px, 5vw, 72px);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  background: var(--yellow);
  color: var(--ink);
  padding: 12px 18px;
  font-weight: 800;
}

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

.site-header {
  position: relative;
  z-index: 100;
  min-height: 80px;
  background: var(--ink);
  color: var(--white);
}

.site-header__inner {
  width: min(100% - 40px, 1320px);
  min-height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-logo { flex: 0 0 auto; }
.site-logo img { width: 178px; height: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(19px, 2.2vw, 34px);
}

.site-nav a {
  position: relative;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:not(.site-nav__cta)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--yellow);
  transition: right .18s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after { right: 0; }

.site-nav__cta {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  background: var(--yellow);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  padding: 12px;
}

.menu-toggle__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.menu-toggle__icon { display: grid; gap: 5px; }
.menu-toggle__icon i { display: block; width: 26px; height: 2px; background: currentColor; }

.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: minmax(0, 52fr) minmax(0, 48fr);
  background: var(--paper);
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: clamp(68px, 7vw, 112px);
  padding-right: clamp(42px, 5vw, 76px);
  padding-bottom: clamp(76px, 8vw, 124px);
  padding-left: max(var(--pad), calc((100vw - var(--content)) / 2));
}

.eyebrow {
  margin: 0 0 30px;
  padding-left: 42px;
  position: relative;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 28px;
  height: 4px;
  background: var(--yellow);
}

.hero h1 {
  margin: 0 0 30px;
  font: 400 clamp(68px, 6.3vw, 94px)/.84 'Barlow Condensed', Arial Narrow, sans-serif;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.hero h1 span { border-bottom: 8px solid var(--yellow); }

.hero__copy > p:not(.eyebrow) { max-width: 660px; margin: 0 0 18px; }
.hero__lead { font-size: clamp(18px, 1.45vw, 21px); font-weight: 750; line-height: 1.55; }

.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 18px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 24px;
  border: 2px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: background .18s ease, color .18s ease;
}
.button--dark { background: var(--ink); color: var(--white); }
.button--dark:hover, .button--dark:focus-visible { background: var(--yellow); color: var(--ink); }
.button--outline:hover, .button--outline:focus-visible { background: var(--ink); color: var(--white); }

.hero__visual {
  position: relative;
  min-height: 720px;
  margin: 0;
  overflow: hidden;
  background: var(--yellow);
}

.hero__visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.stamp-note {
  position: absolute;
  left: 8%;
  bottom: 8%;
  transform: rotate(-2.5deg);
  border: 3px solid var(--ink);
  background: var(--yellow);
  padding: 14px 24px 12px;
  color: var(--ink);
  font: 700 clamp(20px, 2vw, 30px)/1 'Barlow Condensed', sans-serif;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.stamp-note small { display: block; margin-bottom: 7px; font: 700 10px/1 'Inter', sans-serif; letter-spacing: .15em; }

.container { width: min(calc(100% - 48px), var(--content)); margin: 0 auto; }
.section { padding: clamp(84px, 9vw, 120px) 0; scroll-margin-top: 20px; }
.section h2,
.legal-page h1 {
  margin: 0;
  font: 400 clamp(56px, 7vw, 82px)/.92 'Barlow Condensed', Arial Narrow, sans-serif;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.section h3 { font-family: 'Barlow Condensed', Arial Narrow, sans-serif; }
.section-heading--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.section-heading .eyebrow { margin-bottom: 24px; }
.eyebrow--light { color: var(--white); }

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

.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #515151;
  color: var(--white);
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}
.social-links a:hover,
.social-links a:focus-visible { border-color: var(--yellow); color: var(--yellow); }
.social-links--header { gap: 6px; }
.social-links--header a { width: 36px; height: 36px; }
.site-nav .social-links a::after { display: none; }

.schedule { background: var(--yellow); }
.schedule .eyebrow::before { background: var(--ink); }
.calendar-icon { position: relative; width: 52px; height: 48px; border: 3px solid var(--ink); border-radius: 6px; margin-bottom: 8px; }
.calendar-icon::before,
.calendar-icon::after { content: ''; position: absolute; top: -8px; width: 4px; height: 13px; background: var(--ink); }
.calendar-icon::before { left: 10px; }
.calendar-icon::after { right: 10px; }
.calendar-icon i,
.calendar-icon i::before { position: absolute; content: ''; left: 8px; right: 8px; height: 3px; background: var(--ink); }
.calendar-icon i { top: 11px; }
.calendar-icon i::before { top: 10px; left: 4px; right: 4px; box-shadow: 0 10px var(--ink); }

.event {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  margin-top: 48px;
  padding: 30px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.event__date { display: flex; align-items: center; gap: 18px; padding-right: 28px; border-right: 2px solid var(--ink); }
.event__date strong { font: 700 76px/.82 'Barlow Condensed', sans-serif; }
.event__date span { font-size: 13px; font-weight: 800; line-height: 1.15; text-transform: uppercase; }
.event__place p { margin: 0 0 5px; font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.event__place h3 { margin: 0 0 5px; font-size: clamp(28px, 3vw, 40px); font-weight: 400; line-height: 1; text-transform: uppercase; }
.event__place span { font-size: 15px; }
.schedule__note { margin: 24px 0 0; font-size: 13px; font-weight: 750; }

.program { background: var(--ink); color: var(--white); overflow: hidden; }
.program__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: center; gap: clamp(52px, 7vw, 100px); }
.program__copy { max-width: 510px; }
.program-mark { display: flex; flex-wrap: wrap; gap: .12em; margin: 34px 0 44px !important; font-weight: 700 !important; line-height: .82 !important; color: var(--yellow); }
.program-mark span { color: var(--white); }
.program__lead { margin-top: 0; font-size: clamp(20px, 2vw, 25px); font-weight: 760; line-height: 1.45; }
.program__copy > p:not(.eyebrow) { margin-bottom: 7px; color: #d1d1d1; }
.program__copy .program__lead { color: var(--white) !important; }
.program__visual { position: relative; margin: 0; }
.program__visual::after { content: ''; position: absolute; z-index: 0; inset: 14px -14px -14px 14px; background: var(--yellow); }
.program__visual img { position: relative; z-index: 1; width: 100%; aspect-ratio: 16/9; object-fit: cover; border: 2px solid var(--white); }
.paper-note { position: absolute; z-index: 2; right: -16px; bottom: -24px; transform: rotate(2.5deg); padding: 15px 22px; border: 2px solid var(--ink); background: var(--white); color: var(--ink); font: 700 26px/1 'Barlow Condensed', sans-serif; text-transform: uppercase; }
.paper-note small { display: block; margin-bottom: 7px; font: 750 10px/1 'Inter', sans-serif; letter-spacing: .16em; }

.press-quote { margin: 0; padding: clamp(80px, 9vw, 120px) 24px; background: var(--yellow); text-align: center; }
.press-quote blockquote { max-width: 1080px; margin: 0 auto; font: 400 clamp(40px, 5vw, 68px)/.98 'Barlow Condensed', sans-serif; letter-spacing: -.01em; text-transform: uppercase; }
.press-quote figcaption { margin-top: 36px; font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }

.duo { background: var(--white); }
.duo__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: center; gap: clamp(58px, 8vw, 110px); }
.duo__visual { position: relative; margin: 0; }
.duo__visual img { width: 100%; height: auto; aspect-ratio: 1920 / 1281; object-fit: contain; border: 2px solid var(--ink); }
.duo__visual figcaption { position: absolute; right: -20px; bottom: -18px; transform: rotate(-2deg); padding: 14px 20px; border: 2px solid var(--ink); background: var(--yellow); font-size: 13px; font-weight: 800; }
.duo__copy .eyebrow { margin-bottom: 26px; }
.duo__copy h2 { font-size: clamp(54px, 6vw, 76px); }
.duo__lead { margin: 34px 0 6px; font-size: 19px; font-weight: 760; }
.duo__copy > p:not(.eyebrow) { max-width: 650px; }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); margin: 36px 0 0; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.facts div { min-width: 0; padding: 18px 14px; }
.facts div + div { border-left: 1px solid var(--ink); }
.facts dt { margin-bottom: 9px; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.facts dd { margin: 0; font: 400 clamp(24px, 2.5vw, 34px)/1 'Barlow Condensed', sans-serif; text-transform: uppercase; }

.videos { background: var(--ink); color: var(--white); }
.videos__heading { display: grid; grid-template-columns: minmax(0, 2fr) minmax(220px, .7fr); align-items: end; gap: 40px; }
.videos__heading h2 { font-size: clamp(58px, 7vw, 88px); }
.videos__heading > p { margin: 0 0 12px; color: #a7a7a7; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 68px; }
.video-card h3 { margin: 0 0 12px; font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.video-placeholder { position: relative; aspect-ratio: 9/16; overflow: hidden; border: 1px solid #3b3b3b; background: #1e1e1e; }
.video-placeholder > img { width: 100%; height: 100%; object-fit: cover; }
.case-tab { position: absolute; top: 18px; left: 16px; padding: 8px 12px; border: 1px solid var(--yellow); background: var(--ink); color: var(--white); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.video-play { position: absolute; top: 48%; left: 50%; width: 62px; height: 62px; transform: translate(-50%, -50%); border: 3px solid var(--white); background: rgba(17,17,17,.82); color: var(--white); font-size: 22px; cursor: pointer; }
.video-play:hover,
.video-play:focus-visible { border-color: var(--yellow); color: var(--yellow); }
.video-placeholder iframe { width: 100%; height: 100%; border: 0; }
.text-link { display: inline-block; margin-top: 28px; padding-bottom: 7px; border-bottom: 2px solid var(--yellow); color: inherit; text-decoration: none; font-size: 13px; font-weight: 800; }

.archives { background: var(--paper); }
.archives__intro { display: grid; grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr); gap: 60px; align-items: center; }
.archives__intro p { margin: 0; font-size: clamp(18px, 2vw, 23px); font-weight: 750; line-height: 1.55; }
.archive-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 38px; margin-top: 66px; }
.archive-card figure { position: relative; margin: 0; border: 2px solid var(--ink); border-bottom: 8px solid var(--yellow); overflow: hidden; }
.archive-card figure::after { content: 'Status: abgeschlossen'; position: absolute; top: 18px; right: 18px; padding: 10px 14px; background: var(--yellow); font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.archive-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; filter: saturate(.55); }
.archive-card__number { margin: 24px 0 4px !important; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.archive-card h3 { margin: 0; font-size: clamp(36px, 4vw, 54px); font-weight: 400; line-height: .95; text-transform: uppercase; }
.archive-card > p:last-child { margin: 6px 0 0; }

.booking { position: relative; overflow: hidden; background: var(--yellow); }
.booking .eyebrow::before { background: var(--ink); }
.booking__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(300px, .65fr); gap: clamp(50px, 8vw, 110px); align-items: center; }
.booking h2 { font-size: clamp(62px, 8vw, 94px); margin-bottom: 28px; }
.booking__grid > div > p:not(.eyebrow) { max-width: 690px; margin: 0 0 6px; font-size: 18px; }
.contact-card { position: relative; z-index: 2; padding: 32px 34px; background: var(--ink); color: var(--white); box-shadow: 10px 10px 0 var(--white); }
.contact-card > p { margin: 0 0 24px; color: var(--yellow); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.contact-card a { display: flex; align-items: center; gap: 15px; padding: 20px 0; border-top: 1px solid #4a4a4a; color: var(--white); text-decoration: none; font: 400 clamp(20px, 2.2vw, 29px)/1.08 'Barlow Condensed', sans-serif; overflow-wrap: anywhere; }
.contact-card a:hover,
.contact-card a:focus-visible { color: var(--yellow); }
.contact-card small { display: flex; align-items: center; gap: 10px; margin-top: 24px; font-size: 11px; font-weight: 750; }
.contact-card small b { width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; background: var(--yellow); color: var(--ink); }
.booking__sloth { position: absolute; z-index: 0; right: -45px; bottom: -92px; width: 330px; opacity: .12; }

.site-footer { padding: 60px 0 26px; background: var(--ink); color: var(--white); }
.site-footer__main { display: grid; grid-template-columns: 250px 1fr auto; align-items: center; gap: 40px; }
.site-footer__logo img { width: 200px; height: auto; }
.site-footer__contact { padding-left: 38px; border-left: 1px solid #474747; }
.site-footer__contact p { margin: 0 0 7px; color: #9a9a9a; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.site-footer__contact a { text-decoration: none; font-weight: 750; }
.site-footer__legal { display: flex; justify-content: space-between; align-items: center; gap: 30px; margin-top: 52px; padding-top: 24px; border-top: 1px solid #343434; color: #888; font-size: 11px; }
.site-footer__legal nav { display: flex; flex-wrap: wrap; gap: 28px; }
.site-footer__legal a { text-decoration: none; }
.cookie-settings { border: 0; padding: 0; background: transparent; color: inherit; font: inherit; cursor: pointer; }
.site-footer__legal a:hover,
.site-footer__legal a:focus-visible,
.cookie-settings:hover,
.cookie-settings:focus-visible { color: var(--yellow); }

.legal-page { min-height: 60vh; padding: 100px 24px 120px; background: var(--paper); }
.legal-page__inner { width: min(100%, 820px); min-width: 0; margin: 0 auto; }
.legal-page h1 { margin-bottom: 56px; font-size: clamp(52px, 8.5vw, 92px); hyphens: auto; overflow-wrap: anywhere; }
.legal-page h2 { margin: 50px 0 14px; font: 700 28px/1.05 'Barlow Condensed', sans-serif; text-transform: uppercase; }
.legal-page p,
.legal-page li { max-width: 760px; }
.legal-page a { text-decoration-thickness: 2px; text-underline-offset: 3px; }

.consent-banner { position: fixed; z-index: 500; left: 24px; right: 24px; bottom: 24px; max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 30px; padding: 24px; border: 2px solid var(--white); background: var(--ink); color: var(--white); box-shadow: 8px 8px 0 rgba(252,209,2,.9); }
.consent-banner[hidden] { display: none; }
.consent-banner h2,
.consent-dialog h2 { margin: 0 0 6px; font: 700 30px/1 'Barlow Condensed', sans-serif; text-transform: uppercase; }
.consent-banner p { max-width: 680px; margin: 0; color: #d0d0d0; font-size: 14px; }
.consent-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.consent-actions .button { cursor: pointer; }
.consent-dialog { width: min(calc(100% - 36px), 640px); padding: 34px; border: 2px solid var(--ink); background: var(--paper); color: var(--ink); }
.consent-dialog::backdrop { background: rgba(0,0,0,.74); }
.consent-dialog__close { position: absolute; top: 12px; right: 14px; border: 0; background: transparent; font-size: 32px; cursor: pointer; }
.consent-dialog p { margin: 0 0 20px; }
.consent-dialog .text-link { margin-top: 20px; }
.consent-status { min-height: 24px; margin-bottom: 10px; font-size: 13px; font-weight: 700; }

@media (max-width: 1050px) {
  .site-nav { gap: 17px; }
  .hero__copy { padding-left: 42px; padding-right: 42px; }
  .program__grid,
  .duo__grid { gap: 48px; }
  .event { grid-template-columns: 165px minmax(0, 1fr) auto; gap: 22px; }
}

@media (max-width: 900px) {
  .site-header, .site-header__inner { min-height: 70px; }
  .site-header__inner { width: calc(100% - 32px); }
  .site-logo img { width: 152px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 70px 0 0;
    display: none;
    padding: 34px 24px;
    background: var(--ink);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 18px 4px; border-bottom: 1px solid #3b3b3b; font-size: 20px; }
  .site-nav__cta { margin-top: 20px; }
  .site-nav .social-links { display: flex; gap: 10px; padding: 24px 0 8px; }
  .site-nav .social-links a { width: 44px; height: 44px; padding: 0; border: 1px solid #515151; font-size: 18px; }
  .hero { min-height: 0; grid-template-columns: 1fr; }
  .hero__copy { padding: 60px 24px 64px; }
  .hero h1 { font-size: clamp(56px, 15vw, 72px); }
  .hero__visual { min-height: 520px; }
  .section { padding: 82px 0; }
  .container { width: min(calc(100% - 40px), var(--content)); }
  .event { grid-template-columns: 145px minmax(0, 1fr); }
  .event .button { grid-column: 1 / -1; }
  .program__grid,
  .duo__grid,
  .booking__grid { grid-template-columns: 1fr; }
  .program__copy { max-width: 680px; }
  .program__visual { margin-top: 16px; }
  .duo__copy { order: -1; }
  .duo__visual { max-width: 640px; }
  .videos__heading { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .video-card:last-child { grid-column: 1 / -1; width: calc(50% - 12px); }
  .archives__intro { grid-template-columns: 1fr; gap: 26px; }
  .booking__grid { gap: 42px; }
  .contact-card { max-width: 560px; }
  .site-footer__main { grid-template-columns: 1fr auto; }
  .site-footer__contact { grid-column: 1 / -1; grid-row: 2; padding: 24px 0 0; border-top: 1px solid #474747; border-left: 0; }
  .consent-banner { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .hero__copy { padding-top: 54px; }
  .eyebrow { margin-bottom: 24px; }
  .hero h1 { font-size: clamp(58px, 18vw, 74px); }
  .hero__lead { font-size: 18px; }
  .button-row { width: 100%; flex-direction: column; }
  .button { width: 100%; }
  .hero__visual { min-height: 460px; }
  .hero__visual img { object-position: 51% center; }
  .stamp-note { left: 7%; right: auto; bottom: 6%; }
  .container { width: calc(100% - 32px); }
  .section { padding: 68px 0; }
  .section h2 { font-size: 54px; }
  .section-heading--split { align-items: center; }
  .calendar-icon { flex: 0 0 auto; width: 45px; height: 42px; }
  .event { grid-template-columns: 92px minmax(0, 1fr); gap: 18px; margin-top: 34px; padding: 24px 0; }
  .event__date { gap: 11px; padding-right: 16px; }
  .event__date strong { font-size: 60px; }
  .event__date span { font-size: 11px; }
  .event__place h3 { font-size: 29px; line-height: 1.05; }
  .event__place p { font-size: 10px; }
  .event .button { width: 100%; }
  .program__grid,
  .duo__grid { gap: 46px; }
  .program-mark { margin: 30px 0 36px !important; font-size: 65px !important; }
  .program__lead { font-size: 20px; }
  .program__visual::after { inset: 8px -8px -8px 8px; }
  .paper-note { right: -8px; bottom: -20px; font-size: 22px; }
  .press-quote { padding: 72px 20px; }
  .press-quote blockquote { font-size: 42px; }
  .duo__copy h2 { font-size: 55px; }
  .duo__lead { margin-top: 26px; }
  .duo__visual figcaption { right: -8px; max-width: 88%; }
  .facts { grid-template-columns: 1fr; }
  .facts div { display: flex; align-items: center; justify-content: space-between; min-height: 76px; padding: 16px; }
  .facts div + div { border-top: 1px solid var(--ink); border-left: 0; }
  .facts dt { margin: 0; }
  .facts dd { font-size: 32px; }
  .videos__heading h2 { font-size: 55px; }
  .video-grid { grid-template-columns: 1fr; gap: 34px; margin-top: 48px; }
  .video-card:last-child { grid-column: auto; width: auto; }
  .archive-grid { grid-template-columns: 1fr; gap: 46px; margin-top: 48px; }
  .archives__intro p { font-size: 18px; }
  .archive-card figure::after { top: 10px; right: 10px; }
  .booking h2 { font-size: 58px; }
  .booking__grid > div > p:not(.eyebrow) { font-size: 16px; }
  .contact-card { padding: 28px 24px; box-shadow: 7px 7px 0 var(--white); }
  .contact-card a { font-size: 23px; }
  .booking__sloth { right: -80px; width: 230px; }
  .site-footer { padding-top: 48px; }
  .site-footer__main { grid-template-columns: 1fr; }
  .site-footer__logo img { width: 190px; }
  .site-footer__contact { grid-column: auto; grid-row: auto; }
  .site-footer__legal { flex-direction: column; align-items: flex-start; }
  .site-footer__legal nav { flex-direction: column; gap: 14px; }
  .legal-page { padding: 72px 20px 90px; }
  .legal-page h1 { margin-bottom: 44px; font-size: clamp(32px, 10.4vw, 54px); }
  .legal-page h2 { margin-top: 42px; }
  .consent-banner { left: 12px; right: 12px; bottom: 12px; padding: 20px; }
  .consent-actions { flex-direction: column; }
  .consent-actions .button { width: 100%; }
  .consent-dialog { padding: 30px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
