@font-face {
  font-family: Manrope;
  src: url('/assets/manrope.woff2') format('woff2');
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: Mono;
  src: url('/assets/dm-mono.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
:root {
  --teal: #005461;
  --deep: #002d35;
  --orange: #ff8438;
  --paper: #f5f4ee;
  --muted: #536b6c;
  --line: #cad4d0;
  --font: Manrope, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--deep);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
button {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: -0.055em;
}
h1,
h2 {
  font-weight: 600;
}
h2 {
  font-size: clamp(40px, 4.6vw, 70px);
}
h3 {
  font-size: 24px;
  letter-spacing: -0.035em;
}
p + p {
  margin-top: 18px;
}
em {
  font-style: normal;
  color: var(--teal);
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 5px;
}
.skip {
  position: fixed;
  top: -70px;
  left: 20px;
  padding: 12px 20px;
  background: white;
  z-index: 100;
}
.skip:focus {
  top: 10px;
}
.header {
  height: 100px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  gap: 38px;
  background: var(--deep);
  color: white;
  position: relative;
  z-index: 20;
  border-bottom: 1px solid #ffffff20;
}
.brand {
  margin-right: auto;
}
.brand img {
  width: 174px;
  height: 57px;
  object-fit: contain;
}
.desktop-nav {
  display: flex;
  gap: 30px;
  font-size: 14px;
}
.desktop-nav a {
  text-decoration: none;
  white-space: nowrap;
}
.desktop-nav a:hover {
  color: var(--orange);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 58px;
  padding: 15px 26px;
  background: var(--orange);
  color: var(--deep);
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid var(--orange);
  border-radius: 4px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #ffa36a;
  transform: translateY(-3px);
}
.button span {
  font-size: 24px;
  line-height: 1;
}
.button.small {
  min-height: 46px;
  padding: 9px 19px;
  font-size: 13px;
}
.button.outline {
  background: transparent;
  border-color: var(--teal);
  color: var(--teal);
}
.button.outline:hover {
  background: #dce6df;
}
.text-link {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid #ffffff50;
  padding-bottom: 6px;
}
.text-link span {
  font-size: 22px;
}
.text-link.dark {
  color: var(--deep);
  border-color: #002d3550;
}
.text-link:hover {
  border-color: var(--orange);
}
.eyebrow,
.meta-label,
.ticket-tag,
.art-label,
.session-type,
.schedule-header,
.index,
.topic > span {
  font-family: Mono, monospace;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 30px;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}
.hero {
  background: var(--deep);
  color: white;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  padding: 76px 5% 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(#9dc9c909 1px, transparent 1px),
    linear-gradient(90deg, #9dc9c909 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent, #000);
}
.hero-content {
  z-index: 2;
  padding-bottom: 75px;
}
.hero h1 {
  font-size: clamp(52px, 6.3vw, 96px);
  line-height: 1.035;
  letter-spacing: -0.065em;
  margin-bottom: 30px;
}
.hero h1 em {
  color: var(--orange);
}
.hero-name {
  font-weight: 700;
  font-size: 17px;
}
.hero-description {
  max-width: 510px;
  font-size: 16px;
  color: #bed1d1;
  margin-top: 13px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.ticket-note {
  color: #c0d0cf;
  font-size: 11px;
  margin-top: 20px;
}
.ticket-note span {
  padding: 0 9px;
}
.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  align-self: center;
  aspect-ratio: 1;
  transform: translateY(-30px);
}
.orbit {
  position: absolute;
  border: 1px solid #b0dddd28;
  border-radius: 50%;
  width: 95%;
  aspect-ratio: 1;
}
.orbit-one:before,
.orbit-two:after {
  content: '';
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--orange);
  top: 22%;
  left: 7%;
}
.orbit-two {
  width: 78%;
  border-style: dashed;
  border-color: #b0dddd45;
  transform: rotate(120deg);
}
.orbit-three {
  width: 112%;
  border-color: #b0dddd15;
}
.brand-disc {
  width: 61%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #126f78, #004550 75%);
  box-shadow:
    inset 0 0 60px #ffffff07,
    0 30px 100px #001b2066;
  border: 1px solid #b1dedd33;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.brand-disc img {
  width: 59%;
  height: auto;
  filter: drop-shadow(0 5px 15px #001d2240);
}
.disc-year {
  font:
    400 clamp(25px, 3.4vw, 54px)/1 Mono,
    monospace;
  letter-spacing: 0.14em;
  margin-top: 24px;
  color: #eef6ed;
}
.disc-year span {
  color: var(--orange);
}
.cross {
  position: absolute;
  color: var(--orange);
  font:
    24px Mono,
    monospace;
}
.cross-one {
  left: 8%;
  top: 14%;
}
.cross-two {
  right: 9%;
  bottom: 15%;
}
.art-label {
  position: absolute;
  color: #97bdbc;
  font-size: 9px;
}
.label-top {
  top: 3%;
  right: 5%;
  writing-mode: vertical-rl;
}
.label-bottom {
  bottom: 0;
  left: 10%;
  right: 0;
  display: flex;
  justify-content: space-between;
}
.event-strip {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1.3fr 0.7fr 1fr;
  border-top: 1px solid #ffffff30;
  padding: 28px 0 34px;
  gap: 25px;
}
.event-strip .meta-label {
  display: block;
  color: #9fbfbf;
  font-size: 9px;
  margin-bottom: 8px;
}
.event-strip strong {
  font-size: 15px;
  font-weight: 600;
}
.event-strip > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  text-decoration: none;
  border-left: 1px solid #ffffff30;
  padding-left: 30px;
  color: var(--orange);
}
.event-strip > a span {
  font-size: 30px;
}
.endorsement {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 27px 5%;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.asterisk {
  font-size: 40px;
  color: var(--teal);
  line-height: 1;
}
.endorsement p {
  max-width: 720px;
}
.endorsement > a {
  margin-left: auto;
  white-space: nowrap;
  font-size: 12px;
}
.section {
  padding: 100px 5%;
}
.section-heading {
  margin-bottom: 48px;
}
.section-heading > p:last-child:not(.eyebrow) {
  max-width: 430px;
  margin-top: 26px;
  color: var(--muted);
}
.intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10%;
  align-items: center;
}
.lead {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.intro-copy > p:not(.lead) {
  color: var(--muted);
  max-width: 390px;
}
.intro-copy .text-link {
  margin-top: 28px;
}
.event-photo {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.event-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.6;
  object-fit: cover;
}
.event-photo figcaption {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  background: var(--deep);
  color: white;
  padding: 15px 20px;
  font-size: 10px;
}
.event-photo figcaption span:last-child {
  color: #a9c8c7;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 70px;
}
.audience {
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.index {
  color: var(--teal);
  display: block;
  margin-bottom: 28px;
}
.audience h3 {
  margin-bottom: 15px;
}
.audience p {
  color: var(--muted);
  font-size: 14px;
  max-width: 335px;
}
.themes-section {
  background: var(--teal);
  color: white;
  position: relative;
}
.section-heading.light em {
  color: #a9d4cd;
}
.section-heading.light > p:last-child {
  color: #bed6d4;
}
.themes-section .section-heading {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 0 8%;
  align-items: end;
}
.themes-section .eyebrow {
  grid-column: 1/-1;
}
.topics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.topic {
  padding: 35px 30px 25px;
  background: #ffffff09;
  border: 1px solid #ffffff30;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  transition:
    background 0.3s,
    transform 0.3s;
}
.topic:hover {
  background: #ffffff12;
  transform: translateY(-6px);
}
.topic > span {
  color: #b5d3ce;
}
.topic h3 {
  font-size: 32px;
  line-height: 1.13;
  margin: 40px 0 22px;
}
.topic p {
  color: #c5d9d6;
  font-size: 14px;
  max-width: 275px;
}
.topic .topic-symbol {
  display: block;
  color: var(--orange);
  font: 55px/1 var(--font);
  text-align: right;
  margin-top: 30px;
}
.programme {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 9%;
  align-items: start;
}
.programme-intro {
  position: sticky;
  top: 40px;
}
.programme-intro > p:not(.eyebrow) {
  max-width: 300px;
  color: var(--muted);
  margin-top: 25px;
}
.programme-intro .text-link {
  margin-top: 25px;
}
.pre-event {
  padding: 28px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  margin-top: 55px;
  max-width: 370px;
}
.pre-event h3 {
  font-size: 22px;
  margin: 16px 0;
}
.pre-event p {
  font-size: 13px;
  color: var(--muted);
}
.fine {
  font-size: 12px !important;
  line-height: 1.65;
  color: var(--muted);
}
.schedule-header {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 2px solid var(--teal);
}
.time-notice {
  font-size: 12px;
  color: var(--muted);
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.agenda-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.agenda-list li {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 15px;
  align-items: start;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}
.agenda-list time {
  font:
    13px/1.65 Mono,
    monospace;
  color: var(--teal);
}
.agenda-list h3 {
  font-size: 18px;
  letter-spacing: -0.025em;
  line-height: 1.45;
}
.agenda-list p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 5px;
}
.session-type {
  color: var(--teal);
  font-size: 8px;
  display: block;
  margin-bottom: 7px;
}
.agenda-list .break {
  background: #dfe6df66;
  padding-left: 12px;
  padding-right: 12px;
}
.agenda-list .break h3 {
  font-size: 15px;
}
.agenda-note {
  margin-top: 18px;
}
.community {
  min-height: 620px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--deep);
  color: white;
  display: flex;
  align-items: center;
}
.community > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: -3;
}
.community-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #001f29f5, #002d3590 60%, #002d3520);
  z-index: -2;
}
.community-copy {
  padding: 75px 5%;
  max-width: 710px;
}
.community h2 {
  font-size: clamp(40px, 5vw, 76px);
}
.community h2 em {
  color: var(--orange);
}
.community p:not(.eyebrow) {
  max-width: 380px;
  margin: 25px 0 30px;
  color: #d0dfdc;
}
.photo-credit {
  position: absolute;
  bottom: 23px;
  right: 5%;
  font:
    9px Mono,
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tickets-section {
  background: #e8ece4;
}
.ticket-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.ticket-card {
  border: 1px solid #b9c9c3;
  border-radius: 6px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ticket-card.member {
  background: var(--deep);
  color: white;
  border-color: var(--deep);
}
.ticket-tag {
  font-size: 10px;
}
.member .ticket-tag {
  color: var(--orange);
}
.ticket-card h3 {
  margin: 28px 0 25px;
  font-size: 30px;
  max-width: 340px;
}
.price {
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.07em;
  font-weight: 600;
  margin-bottom: 25px;
}
.price span {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
}
.ticket-card > p:not(.price) {
  font-size: 14px;
  max-width: 410px;
  color: var(--muted);
}
.ticket-card.member > p:not(.price) {
  color: #bcd0cd;
}
.ticket-card .button {
  width: 100%;
  margin-top: 35px;
}
.ticket-card .sub-link {
  font-size: 11px;
  margin-top: 18px;
}
.ticket-card > .fine {
  margin-top: 18px;
}
.booking-note {
  display: flex;
  gap: 30px;
  max-width: 800px;
  margin: 40px auto 0;
}
.booking-note .index {
  font-size: 35px;
  margin: 0;
}
.booking-note h3 {
  font-size: 17px;
  margin: 0 0 12px;
}
.booking-note p {
  font-size: 12px;
  color: var(--muted);
}
.plan-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
}
.plan-section .lead {
  margin-top: 35px;
}
.plan-section > div > p:not(.eyebrow):not(.lead) {
  max-width: 330px;
  color: var(--muted);
  font-size: 14px;
}
.plan-section .text-link {
  margin-top: 30px;
}
.travel-grid article {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px 20px;
}
.travel-grid h3 {
  font-size: 23px;
}
.travel-grid p {
  grid-column: 2;
  font-size: 13px;
  color: var(--muted);
}
.travel-grid .index {
  margin: 0;
}
.faq-section {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 12%;
  padding-top: 75px;
}
.faq-section > div > p:last-child {
  margin-top: 28px;
  font-size: 13px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  font-size: 22px;
  font-weight: 400;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list details p {
  padding: 0 35px 24px 0;
  font-size: 13px;
  color: var(--muted);
}
.faq-list > .text-link {
  margin-top: 26px;
}
.closing {
  padding: 95px 5%;
  text-align: center;
  background: var(--teal);
  color: white;
}
.closing .eyebrow {
  justify-content: center;
}
.closing h2 {
  font-size: clamp(42px, 5.8vw, 86px);
}
.closing em {
  color: var(--orange);
}
.closing .button {
  margin-top: 40px;
}
footer {
  background: var(--deep);
  color: #afcac5;
  padding: 55px 5% 30px;
  font-size: 12px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 50px;
}
.footer-top > img {
  width: 180px;
  height: auto;
}
.footer-top p {
  font-size: 12px;
  line-height: 2;
}
.socials {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.socials a {
  text-decoration: none;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff25;
  padding-top: 22px;
  font-size: 10px;
  gap: 20px;
}
.footer-bottom > div {
  display: flex;
  gap: 25px;
}
.mobile-ticket {
  display: none;
}
.menu-toggle {
  background: none;
  color: white;
  border: 0;
  padding: 8px;
}
.mobile-menu[hidden] {
  display: none;
}
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--deep);
  padding: 20px 5%;
  border-top: 1px solid #ffffff20;
  box-shadow: 0 20px 25px #001b2030;
}
.mobile-menu a {
  display: block;
  padding: 10px;
  text-decoration: none;
}
@media (min-width: 761px) {
  .menu-toggle,
  .mobile-menu {
    display: none;
  }
}
@media (min-width: 1600px) {
  .header,
  .hero,
  .section,
  .endorsement,
  footer {
    padding-left: max(5%, calc((100vw - 1440px) / 2));
    padding-right: max(5%, calc((100vw - 1440px) / 2));
  }
}
@media (max-width: 1000px) {
  .header {
    gap: 22px;
  }
  .desktop-nav {
    gap: 20px;
    font-size: 12px;
  }
  .brand img {
    width: 145px;
  }
  .hero {
    padding-top: 60px;
    grid-template-columns: 1.3fr 1fr;
  }
  .hero h1 {
    font-size: 7vw;
  }
  .hero-art {
    margin-right: -10%;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero-actions .text-link {
    font-size: 12px;
  }
  .event-strip {
    grid-template-columns: 1fr 1.4fr 0.75fr;
  }
  .event-strip > a {
    display: none;
  }
  .section {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .topic {
    padding: 25px 20px;
  }
  .topic h3 {
    font-size: 27px;
  }
  .programme {
    gap: 5%;
    grid-template-columns: 1fr 1.25fr;
  }
  .footer-top {
    gap: 30px;
  }
  .socials {
    gap: 10px;
  }
  .faq-section {
    gap: 7%;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 30px;
  }
  .header {
    height: 82px;
    padding: 0 6%;
    gap: 16px;
  }
  .brand img {
    width: 139px;
    height: 46px;
  }
  .desktop-nav {
    display: none;
  }
  .header > .button {
    margin-left: auto;
    gap: 16px;
    font-size: 11px;
    padding: 7px 12px;
    min-height: 40px;
  }
  .menu-toggle:not([hidden]) {
    display: block;
    font-size: 12px;
    padding: 8px 0;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 50px 6% 0;
  }
  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 0.035em;
    margin-bottom: 26px;
  }
  .hero h1 {
    font-size: clamp(44px, 10.6vw, 78px);
    letter-spacing: -0.065em;
  }
  .hero-name {
    font-size: 15px;
    max-width: 320px;
  }
  .hero-description {
    font-size: 14px;
    max-width: 470px;
  }
  .hero-content {
    padding-bottom: 20px;
  }
  .hero-art {
    max-width: 410px;
    width: 90%;
    margin: 15px auto 30px;
    transform: none;
  }
  .disc-year {
    font-size: 38px;
    margin-top: 18px;
  }
  .label-bottom {
    font-size: 8px;
  }
  .event-strip {
    grid-template-columns: 1fr 1.3fr;
    gap: 24px 16px;
    padding: 26px 0;
  }
  .event-strip > div:last-of-type {
    grid-column: 1/-1;
  }
  .event-strip strong {
    font-size: 13px;
  }
  .hero-actions {
    gap: 22px;
    margin-top: 26px;
  }
  .hero-actions .button {
    min-height: 52px;
    padding: 13px 20px;
  }
  .ticket-note {
    font-size: 10px;
  }
  .ticket-note span {
    padding: 0 5px;
  }
  .endorsement {
    padding: 22px 6%;
    gap: 15px;
    font-size: 11px;
    align-items: flex-start;
  }
  .endorsement > a {
    display: none;
  }
  .asterisk {
    font-size: 32px;
  }
  .section {
    padding: 64px 6%;
  }
  .section-heading {
    margin-bottom: 32px;
  }
  .eyebrow {
    font-size: 9px;
    margin-bottom: 22px;
  }
  h2 {
    font-size: clamp(36px, 7vw, 54px);
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .intro-copy > p:not(.lead) {
    max-width: 550px;
    font-size: 14px;
  }
  .lead {
    font-size: 22px;
  }
  .event-photo figcaption {
    padding: 13px;
    font-size: 8px;
  }
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 40px;
  }
  .audience {
    padding-top: 20px;
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 10px;
  }
  .audience .index {
    margin: 0;
  }
  .audience h3 {
    font-size: 21px;
    margin: 0;
  }
  .audience p {
    grid-column: 2;
    max-width: 450px;
    font-size: 13px;
  }
  .themes-section .section-heading {
    display: block;
  }
  .themes-section .section-heading > p:last-child {
    margin-top: 20px;
    font-size: 14px;
  }
  .topics {
    grid-template-columns: 1fr;
  }
  .topic {
    padding: 25px;
    display: grid;
    grid-template-columns: 1fr 70px;
  }
  .topic > span:first-child,
  .topic h3,
  .topic p {
    grid-column: 1;
  }
  .topic h3 {
    margin: 25px 0 15px;
    font-size: 30px;
  }
  .topic .topic-symbol {
    grid-column: 2;
    grid-row: 2/4;
    align-self: end;
  }
  .topic p {
    max-width: 400px;
    font-size: 13px;
  }
  .programme {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .programme-intro {
    position: static;
  }
  .programme-intro > p:not(.eyebrow) {
    max-width: none;
    font-size: 14px;
  }
  .pre-event {
    max-width: none;
    margin-top: 30px;
    padding: 25px;
  }
  .schedule-header {
    font-size: 10px;
  }
  .agenda-list li {
    grid-template-columns: 60px 1fr;
  }
  .agenda-list h3 {
    font-size: 16px;
  }
  .community {
    min-height: 540px;
  }
  .community-copy {
    padding: 70px 6%;
    max-width: 600px;
  }
  .community-shade {
    background: linear-gradient(90deg, #001f29eb, #002d3590);
  }
  .community-copy p:not(.eyebrow) {
    max-width: 310px;
    font-size: 14px;
  }
  .community h2 {
    font-size: clamp(39px, 8vw, 60px);
  }
  .photo-credit {
    font-size: 8px;
  }
  .ticket-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ticket-card {
    padding: 30px;
  }
  .ticket-card h3 {
    font-size: 26px;
  }
  .price {
    font-size: 64px;
  }
  .booking-note {
    gap: 20px;
  }
  .plan-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .travel-grid article {
    grid-template-columns: 24px 1fr;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-list summary {
    font-size: 14px;
    padding: 20px 0;
  }
  .closing {
    padding: 65px 6%;
  }
  .closing h2 {
    font-size: clamp(36px, 7.8vw, 60px);
  }
  footer {
    padding: 40px 6% 100px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 32px;
  }
  .footer-top > img {
    width: 160px;
  }
  .socials {
    gap: 22px;
  }
  .footer-bottom {
    display: block;
    font-size: 9px;
  }
  .footer-bottom > div {
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
  }
  .mobile-ticket {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #002d35f5;
    backdrop-filter: blur(14px);
    z-index: 30;
    padding: 12px 6% max(12px, env(safe-area-inset-bottom));
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ffffff30;
    color: white;
  }
  .mobile-ticket > span {
    font:
      11px Mono,
      monospace;
  }
  .mobile-ticket small {
    display: block;
    font: 10px var(--font);
    color: #bcd2cd;
    margin-top: 4px;
  }
  .mobile-ticket .button {
    min-height: 42px;
    font-size: 12px;
  }
  .section-heading > p:last-child:not(.eyebrow) {
    font-size: 14px;
  }
}
@media (max-width: 370px) {
  .header {
    gap: 11px;
  }
  .brand img {
    width: 107px;
  }
  .header > .button {
    font-size: 10px;
    padding: 6px 9px;
    gap: 8px;
  }
  .menu-toggle:not([hidden]) {
    font-size: 10px;
  }
  .hero-actions {
    gap: 17px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero-art {
    width: 96%;
  }
  .hero .eyebrow {
    font-size: 8px;
  }
  .ticket-note {
    font-size: 9px;
  }
  .ticket-note span {
    padding: 0 2px;
  }
  .ticket-card {
    padding: 25px;
  }
  .ticket-card .button {
    font-size: 13px;
    padding: 13px 17px;
    gap: 16px;
  }
  .topic {
    grid-template-columns: 1fr 35px;
  }
  .topic .topic-symbol {
    font-size: 38px;
  }
  .event-strip {
    grid-template-columns: 1fr;
  }
  .event-strip > div:last-of-type {
    grid-column: auto;
  }
  .button {
    gap: 20px;
  }
  .label-bottom span {
    display: none;
  }
}
@media (max-width: 760px) {
  .header > .button {
    white-space: nowrap;
    flex-shrink: 0;
  }
  .brand img {
    width: 120px;
  }
  .menu-toggle {
    white-space: nowrap;
  }
  .header {
    gap: 13px;
  }
}
@media (max-width: 370px) {
  .brand img {
    width: 101px;
  }
  .header {
    gap: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .button:hover,
  .topic:hover {
    transform: none;
  }
}
