:root {
  color-scheme: only light;
  --space: #000a32;
  --midnight: #071226;
  --navy: #0b1c3d;
  --ink: #07101f;
  --blue: #0f64b9;
  --sky: #87b9e1;
  --green: #8cbe32;
  --dark-green: #195019;
  --lime: #d2eb50;
  --yellow: #ffcd19;
  --paper: #f4f1e8;
  --mist: #e8eff3;
  --white: #ffffff;
  --line: rgba(7, 16, 31, 0.18);
  --page-pad: clamp(1.25rem, 4.5vw, 5rem);
  --section-space: clamp(3.5rem, 6vw, 5.5rem);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  min-width: 20rem;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin: 0;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  transform: translateY(-160%);
  background: var(--yellow);
  color: var(--space);
  font-weight: 800;
}

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

a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 5rem;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 10, 50, 0.94);
  color: var(--white);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand img {
  width: 4rem;
  height: 4rem;
}

.brand {
  gap: 0.85rem;
  font-size: 0.96rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2.2rem);
  padding: 0 1.5rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.site-nav a,
.text-link,
.contact-details a,
.committee-card a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.32em;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.contact-details a:hover,
.contact-details a:focus-visible,
.committee-card a:hover,
.committee-card a:focus-visible {
  text-decoration-line: underline;
}

.header-action {
  min-width: max-content;
  padding: 0.76rem 1rem;
  background: var(--yellow);
  color: var(--space);
  font-size: 0.76rem;
  font-weight: 800;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.header-action:hover,
.header-action:focus-visible {
  background: var(--lime);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: calc(100svh - 5rem);
  place-items: center;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 8rem) var(--page-pad)
    clamp(4rem, 7vw, 7rem);
  background:
    radial-gradient(
      circle at 50% -12%,
      rgba(15, 100, 185, 0.46),
      transparent 42rem
    ),
    radial-gradient(
      circle at 92% 78%,
      rgba(140, 190, 50, 0.16),
      transparent 24rem
    ),
    var(--space);
  color: var(--white);
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 24%;
  left: -7rem;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: rgba(255, 205, 25, 0.06);
  content: "";
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(135, 185, 225, 0.24);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  top: 9%;
  left: 50%;
  width: min(94vw, 82rem);
  height: min(94vw, 82rem);
  transform: translateX(-50%) rotate(-9deg) scaleY(0.3);
}

.orbit-two {
  right: -9rem;
  bottom: -3rem;
  width: 34rem;
  height: 34rem;
  border-color: rgba(210, 235, 80, 0.18);
  transform: rotate(23deg) scaleY(0.47);
}

.hero-inner {
  display: flex;
  width: min(100%, 94rem);
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eyebrow {
  color: var(--dark-green);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-eyebrow {
  margin-bottom: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--sky);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
}

.event-logo {
  width: min(91vw, 68rem);
  height: auto;
}

.hero-title {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3em;
  width: 100%;
  margin-top: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--white);
  font-size: clamp(1.2rem, 1.9vw, 2.1rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.hero-title-heavy,
.hero-title-light {
  font-weight: 520;
  letter-spacing: 0.03em;
}

.date-lockup {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25em;
  margin-top: clamp(1.75rem, 3.5vw, 3.25rem);
  color: var(--sky);
  font-size: clamp(2.7rem, 5.2vw, 5.25rem);
  line-height: 1;
}

.date-days,
.date-month {
  color: inherit;
  font-size: 1em;
  font-weight: 520;
  letter-spacing: -0.045em;
}

.hero-scroll {
  display: inline-flex;
  gap: 0.6rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  padding-bottom: 0.3rem;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-scroll:hover,
.hero-scroll:focus-visible {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

.key-dates {
  display: grid;
  grid-template-columns: minmax(12rem, 0.65fr) minmax(0, 2.35fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(2.5rem, 4.5vw, 4rem) var(--page-pad);
  background: var(--blue);
  color: var(--white);
}

.key-dates .eyebrow {
  margin-bottom: 0.65rem;
  color: var(--sky);
}

.key-dates h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
}

.key-dates-action {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding: 0.78rem 1rem;
  background: var(--yellow);
  color: var(--space);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.key-dates-action:hover,
.key-dates-action:focus-visible {
  background: var(--lime);
  transform: translateY(-2px);
}

.dates-list {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.date-item {
  min-width: 0;
  padding: 1rem 1.1rem 0;
  border-left: 1px solid rgba(255, 255, 255, 0.34);
}

.date-item dt {
  margin-bottom: 1.1rem;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.date-item dd {
  font-size: clamp(0.88rem, 1.2vw, 1.05rem);
  font-weight: 700;
  line-height: 1.25;
}

.date-item-featured {
  background: var(--space);
  color: var(--white);
  border-left: 0;
  padding-bottom: 1rem;
}

.date-item-featured dt {
  color: var(--sky);
}

.section {
  padding: var(--section-space) var(--page-pad);
}

.about-scope-section {
  background: var(--paper);
}

.about-scope-heading {
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.about-scope-heading > .eyebrow {
  margin-bottom: 1.3rem;
}

.about-scope-copy h2 {
  max-width: none;
  font-size: clamp(2rem, 3.1vw, 3.25rem);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 0.98;
  white-space: nowrap;
}

.about-scope-copy p {
  margin-top: 1.4rem;
  color: rgba(7, 16, 31, 0.68);
  font-size: 1rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(10rem, 0.72fr) minmax(18rem, 1.55fr) minmax(
      12rem,
      0.73fr
    );
  align-items: end;
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-bottom: clamp(3.25rem, 6vw, 5.5rem);
}

.section-heading h2,
.programme-copy h2,
.registration-section h2,
.location-section h2,
.accommodation-section h2,
.contact-section h2 {
  font-size: clamp(2.2rem, 4.2vw, 4.65rem);
  font-weight: 520;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.section-heading > p:last-child {
  color: rgba(7, 16, 31, 0.66);
}

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

.scope-card {
  display: flex;
  min-height: 18rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 1.45rem calc(1.8rem + 0.5cm) 1.45rem 1.9rem;
  border-top: 0.5rem solid var(--blue);
  border-right: 1px solid var(--line);
  text-align: left;
}

.scope-card:last-child {
  border-right: 0;
}

.scope-card-green {
  border-top-color: var(--green);
}

.scope-card-yellow {
  border-top-color: var(--yellow);
}

.scope-card-sky {
  border-top-color: var(--sky);
}

.scope-card-dark-green {
  border-top-color: var(--dark-green);
}

.scope-card h3 {
  max-width: 12ch;
  margin: 0 0 1.1rem;
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
  font-weight: 640;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.scope-card p {
  max-width: none;
  color: rgba(7, 16, 31, 0.68);
  font-size: 1rem;
}

.sail-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2.2rem;
}

.sail-types span {
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10rem;
  font-size: 0.73rem;
  font-weight: 750;
}

.programme-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.9fr);
  gap: clamp(3rem, 7vw, 6rem);
  background: var(--yellow);
  color: var(--space);
}

.eyebrow-light {
  margin-bottom: 1.35rem;
  color: var(--space);
}

.programme-copy h2 {
  max-width: 13ch;
}

.programme-status {
  align-self: center;
  border-top: 1px solid rgba(0, 10, 50, 0.34);
}

.status-row {
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(0, 10, 50, 0.34);
}

.status-row span {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
}

.status-row strong {
  padding: 0.42rem 0.68rem;
  border-radius: 10rem;
  background: var(--space);
  color: var(--white);
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.registration-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.9fr);
  align-items: end;
  gap: clamp(3rem, 7vw, 6rem);
  background: var(--green);
  color: var(--space);
}

.registration-section .eyebrow {
  margin-bottom: 1.3rem;
  color: var(--space);
}

.registration-section h2 {
  max-width: 13ch;
}

.registration-details {
  padding-top: 1.7rem;
  border-top: 1px solid rgba(0, 10, 50, 0.36);
}

.registration-details p {
  margin: 1.7rem 0 0;
  font-size: 1.02rem;
}

.registration-status {
  display: inline-block;
  padding: 0.55rem 0.8rem;
  border-radius: 10rem;
  background: var(--space);
  color: var(--white);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.venue-section {
  padding: 0;
  background: var(--navy);
}

.venue-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.85fr);
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.venue-photo {
  position: relative;
  min-height: 100%;
  margin: 0;
}

.venue-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(0, 10, 50, 0.62));
  content: "";
  pointer-events: none;
}

.venue-photo img {
  width: 100%;
  height: 100%;
  min-height: 35rem;
  object-fit: cover;
  object-position: center;
}

.venue-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 1.4rem;
  bottom: 1.2rem;
  left: 1.4rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-label {
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.venue-details {
  padding: var(--section-space) clamp(2.2rem, 5vw, 5rem);
}

.venue-eyebrow {
  margin-bottom: 1.3rem;
  color: var(--sky);
}

.venue-details h2 {
  max-width: 13ch;
  margin: 0 0 1.4rem;
  font-size: clamp(2.05rem, 3.7vw, 4.1rem);
  font-weight: 520;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.venue-details > p:not(.card-label):not(.venue-eyebrow) {
  max-width: 39rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.venue-facts {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.venue-facts div {
  display: grid;
  grid-template-columns: minmax(6rem, 0.75fr) minmax(0, 1.25fr);
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.venue-facts dt {
  color: var(--sky);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.venue-facts dd {
  font-size: 0.84rem;
  font-weight: 650;
}

.venue-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.2rem;
  margin-top: 2rem;
}

.venue-links a {
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.32em;
}

.location-section {
  display: grid;
  grid-template-columns:
    minmax(15rem, 0.78fr) minmax(21rem, 1.17fr) minmax(19rem, 0.85fr);
  align-items: start;
  gap: clamp(1.75rem, 3.2vw, 3.75rem);
  background: var(--white);
}

.location-section .eyebrow {
  margin-bottom: 1.3rem;
}

.location-section h2 {
  max-width: 11ch;
}

.location-lead {
  max-width: 34rem;
  margin: 2.2rem 0 1.2rem;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 520;
  letter-spacing: -0.025em;
  line-height: 1.28;
}

.location-intro > p:not(.eyebrow, .location-lead) {
  max-width: 34rem;
  color: rgba(7, 16, 31, 0.68);
}

.location-link {
  display: inline-block;
  margin-top: 2rem;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.location-photo {
  min-width: 0;
  margin: 0;
}

.location-photo img {
  width: 100%;
  height: clamp(30rem, 42vw, 39rem);
  object-fit: cover;
  object-position: center;
}

.location-photo figcaption {
  padding-top: 0.7rem;
  color: rgba(7, 16, 31, 0.58);
  font-size: 0.62rem;
  line-height: 1.45;
}

.location-photo figcaption a {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

.travel-panel {
  align-self: start;
}

.travel-heading {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 2rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.travel-heading > p:last-child {
  color: rgba(7, 16, 31, 0.58);
  font-size: 0.78rem;
}

.travel-route {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 1rem;
  padding: 1.65rem 1rem 1.65rem 1.4rem;
  border-bottom: 1px solid var(--line);
  border-left: 0.5rem solid var(--blue);
  background: var(--paper);
}

.travel-route-green {
  border-left-color: var(--green);
}

.travel-route-yellow {
  border-left-color: var(--yellow);
}

.route-number,
.route-label {
  color: var(--blue);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.travel-route-green .route-number,
.travel-route-green .route-label {
  color: var(--dark-green);
}

.travel-route-yellow .route-number,
.travel-route-yellow .route-label {
  color: #7b5f00;
}

.travel-route h3 {
  margin: 0.35rem 0 0.25rem;
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
  font-weight: 620;
  letter-spacing: -0.045em;
  line-height: 1;
}

.travel-route div > p:not(.route-label) {
  color: rgba(7, 16, 31, 0.65);
  font-size: 0.88rem;
}

.travel-route a {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration-line: underline;
  text-underline-offset: 0.3em;
}

.accommodation-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.9fr);
  align-items: end;
  gap: clamp(3rem, 7vw, 6rem);
  background: var(--sky);
  color: var(--space);
}

.accommodation-section .eyebrow {
  margin-bottom: 1.3rem;
  color: var(--space);
}

.accommodation-section h2 {
  max-width: 15ch;
}

.accommodation-copy {
  padding-top: 1.7rem;
  border-top: 1px solid rgba(0, 10, 50, 0.36);
}

.accommodation-copy p {
  margin-top: 2rem;
  font-size: 1.05rem;
}

.tbc-pill {
  display: inline-block;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(0, 10, 50, 0.5);
  border-radius: 10rem;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.committee-section {
  background: var(--paper);
}

.committee-heading {
  display: block;
}

.committee-heading .eyebrow {
  margin-bottom: 1.3rem;
}

.committee-heading h2 {
  max-width: 14ch;
}

.committee-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(20rem, 1fr);
  align-items: start;
  gap: 1rem;
}

.committee-card {
  display: grid;
  min-height: 27rem;
  grid-template-columns: 1fr;
  align-items: end;
  padding: clamp(1.75rem, 4vw, 3.5rem);
  background: var(--space);
  color: var(--white);
}

.committee-card-local {
  background: var(--blue);
}

.committee-card h3 {
  max-width: 13ch;
  margin: 0 0 1.2rem;
  font-size: clamp(2rem, 4vw, 4.3rem);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.committee-card p:not(.card-label) {
  max-width: 35rem;
  color: rgba(255, 255, 255, 0.72);
}

.committee-card a {
  display: inline-block;
  margin-top: 1.4rem;
  font-weight: 750;
  text-decoration-line: underline;
}

.committee-list {
  margin: 1.5rem 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  list-style: none;
}

.committee-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.committee-role {
  padding: 0.3rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 10rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.committee-list-international {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(1.25rem, 3vw, 2.5rem);
}

.committee-list-international li {
  display: block;
}

.committee-list-international .committee-chair-member {
  position: relative;
  display: block;
}

.committee-chair-member > strong {
  padding-right: 4.5rem;
}

.committee-chair-member > .committee-role {
  position: absolute;
  top: 0.8rem;
  right: 0;
}

.committee-list-international strong {
  display: block;
  line-height: 1.25;
}

.committee-affiliation {
  display: block;
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
  line-height: 1.35;
}

.contact-section {
  background: var(--yellow);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 9rem);
}

.contact-section .eyebrow {
  margin-bottom: 1.3rem;
  color: var(--space);
}

.contact-section h2 {
  max-width: none;
}

.contact-title span {
  display: block;
}

.contact-title span:last-child {
  white-space: nowrap;
}

.contact-details {
  align-self: center;
  padding-top: 0;
}

.contact-details > p:not(.card-label) {
  margin: 2rem 0;
}

.contact-details .card-label {
  margin-bottom: 0.35rem;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  letter-spacing: 0.11em;
}

.contact-details a {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 800;
  text-decoration-line: underline;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2.4rem var(--page-pad);
  background: var(--space);
  color: var(--white);
  font-size: 0.74rem;
}

.footer-brand img {
  width: 3.25rem;
  height: 3.25rem;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex-wrap: wrap;
}

.footer-credit {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  white-space: nowrap;
}

.organisers-section {
  display: grid;
  grid-template-columns: minmax(11rem, 0.55fr) minmax(0, 1.45fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
  padding: var(--section-space) var(--page-pad);
  background: var(--white);
  color: var(--space);
}

.organisers-heading .eyebrow {
  margin-bottom: 0.65rem;
}

.organisers-heading h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
  font-weight: 560;
  letter-spacing: -0.045em;
  line-height: 1;
}

.organiser-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.organiser-logos a,
.organiser-logo-static {
  display: grid;
  min-height: 7.5rem;
  place-items: center;
  padding: 1rem;
}

.organiser-logos img {
  width: 100%;
  height: auto;
  max-height: 7rem;
  object-fit: contain;
}

.organiser-logos .uos-logo {
  max-width: 38rem;
}

.organiser-logos > a:first-child {
  transform: translateX(-0.65rem);
}

.organiser-logos > a:nth-child(2) {
  transform: translateX(1.45rem);
}

.organiser-logos .ssc-logo {
  max-width: 26rem;
  max-height: 8.5rem;
}

.stag-lockup {
  justify-content: center;
  transform: translateX(-0.75rem);
}

.organiser-logos .stag-emblem {
  width: clamp(9rem, 10.5vw, 10.5rem);
  height: auto;
  max-height: none;
}

@media (min-width: 1181px) {
  .location-photo {
    position: relative;
    align-self: stretch;
    min-height: 0;
  }

  .location-photo img {
    height: 100%;
    min-height: 0;
  }

  .location-photo figcaption {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
  }
}

@media (max-width: 1180px) {
  html {
    scroll-padding-top: 6.25rem;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-top: 0.55rem;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .header-action {
    grid-column: 2;
    grid-row: 1;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 1.55rem;
    margin-top: 0.35rem;
    padding: 0.7rem 0 0.8rem;
    overflow-x: auto;
    scrollbar-width: none;
  }

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

  .site-nav a {
    flex: none;
  }

  .key-dates {
    grid-template-columns: 1fr;
  }

  .location-section {
    grid-template-columns: minmax(0, 1.08fr) minmax(19rem, 0.92fr);
  }

  .location-photo {
    grid-column: 1;
    grid-row: 2;
  }

  .location-photo img {
    height: clamp(20rem, 35vw, 26rem);
  }

  .travel-panel {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .section-heading {
    grid-template-columns: minmax(10rem, 0.65fr) minmax(0, 1.35fr);
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

  .scope-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .scope-card:nth-child(even) {
    border-right: 0;
  }

  .scope-card:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }

  .scope-card:last-child {
    grid-column: 1 / -1;
  }

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

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

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

@media (max-width: 780px) {
  html {
    scroll-padding-top: 5.9rem;
  }

  .site-header {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .brand img {
    width: 3.25rem;
    height: 3.25rem;
  }

  .header-action {
    padding: 0.67rem 0.75rem;
    font-size: 0.68rem;
  }

  .hero {
    min-height: auto;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .event-logo {
    width: min(96vw, 40rem);
  }

  .hero-title {
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    font-size: clamp(1.15rem, 5.7vw, 1.9rem);
    line-height: 1.08;
  }

  .hero-title-light {
    max-width: 16ch;
  }

  .date-lockup {
    flex-flow: row wrap;
    align-items: center;
    gap: 0.25em;
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .date-days,
  .date-month {
    font-size: 1em;
  }

  .dates-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .date-item {
    min-height: 8.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  }

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

  .programme-section,
  .registration-section,
  .location-section,
  .accommodation-section,
  .organisers-section {
    grid-template-columns: 1fr;
  }

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

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    grid-column: 1;
  }

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

  .scope-card {
    min-height: 16rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .programme-section,
  .registration-section {
    gap: 2.75rem;
  }

  .status-row {
    grid-template-columns: 1.5rem 1fr;
  }

  .status-row strong {
    grid-column: 2;
    justify-self: start;
  }

  .venue-layout {
    grid-template-columns: 1fr;
  }

  .venue-photo img {
    min-height: 20rem;
    max-height: 29rem;
  }

  .location-section {
    gap: 4rem;
  }

  .location-intro,
  .location-photo,
  .travel-panel {
    grid-column: auto;
    grid-row: auto;
  }

  .location-photo img {
    height: auto;
    max-height: 34rem;
    aspect-ratio: 4 / 5;
  }

  .travel-heading {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

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

  .committee-card {
    min-height: 23rem;
    grid-template-columns: 1fr;
  }

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

  .organiser-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }

  .stag-lockup {
    grid-column: auto;
    justify-self: center;
  }
}

@media (max-width: 480px) {
  .about-scope-copy h2 {
    white-space: normal;
  }

  .brand span {
    display: none;
  }

  .dates-list {
    grid-template-columns: 1fr;
  }

  .date-item {
    border-left: 0;
  }

  .committee-list-international {
    grid-template-columns: 1fr;
  }

  .organiser-logos {
    grid-template-columns: 1fr;
  }

  .organiser-logos a {
    min-height: 5.5rem;
    padding: 0.5rem;
  }

  .organiser-logos > a:first-child {
    transform: none;
  }

  .organiser-logos > a:nth-child(2) {
    transform: none;
  }

  .stag-lockup {
    transform: none;
  }
}

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