:root {
  --color-plaster: #f4f0e7;
  --color-lime: #fcfaf6;
  --color-sgraffito: #1f1c19;
  --color-stone: #6c665f;
  --color-reed: #667367;
  --color-terracotta: #9a5e48;
  --color-bronze-brand: #a48f5a;
  --color-bronze-action: #87603f;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-text: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  --step--1: clamp(0.88rem, 0.84rem + 0.16vw, 0.98rem);
  --step-0: clamp(1rem, 0.95rem + 0.22vw, 1.12rem);
  --step-1: clamp(1.25rem, 1.12rem + 0.55vw, 1.58rem);
  --step-2: clamp(1.58rem, 1.32rem + 1.05vw, 2.2rem);
  --step-3: clamp(2rem, 1.55rem + 1.8vw, 3.2rem);
  --step-4: clamp(2.5rem, 1.8rem + 3vw, 4.8rem);
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 7rem;
  --radius: 0.25rem;
  --shell: 90rem;
  --page-gutter: 4.5rem;
  --header-height: 5.5rem;
}
*,
:before,
:after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}
body {
  background: var(--color-lime);
  color: var(--color-sgraffito);
  font-family: var(--font-text);
  font-size: var(--step-0);
  margin: 0;
  line-height: 1.58;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 0.08em;
}
button,
input,
select,
textarea {
  font: inherit;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  text-wrap: balance;
  margin: 0 0 0.55em;
  font-weight: 600;
  line-height: 1.08;
}
h1 {
  font-size: var(--step-4);
}
h2 {
  font-size: var(--step-3);
}
h3 {
  font-size: var(--step-2);
}
p {
  margin: 0 0 1.15em;
}
.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin-inline: auto;
}
.section {
  padding-block: var(--space-8);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: var(--step--1);
  color: var(--color-bronze-action);
  margin-bottom: var(--space-3);
  font-weight: 600;
}
.sr-only {
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  position: absolute !important;
}
.skip-link {
  z-index: 1000;
  background: var(--color-sgraffito);
  color: #fff;
  padding: 0.75rem 1rem;
  position: fixed;
  top: 1rem;
  left: 1rem;
  transform: translateY(-200%);
}
.skip-link:focus {
  transform: none;
}
:focus-visible {
  outline: 3px solid var(--color-terracotta);
  outline-offset: 3px;
}
.button {
  border: 1px solid var(--color-bronze-action);
  border-radius: var(--radius);
  background: var(--color-bronze-action);
  color: #fff;
  justify-content: center;
  align-items: center;
  min-height: 3rem;
  padding: 0.65rem 1.15rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  display: inline-flex;
}
.button:hover {
  background: var(--color-sgraffito);
  border-color: var(--color-sgraffito);
}
.button-small {
  min-height: 2.75rem;
  font-size: var(--step--1);
}
.text-link {
  color: var(--color-bronze-action);
  font-weight: 600;
}
.site-header {
  height: var(--header-height);
  background: var(--color-plaster);
  border-bottom: 1px solid
    color-mix(in srgb, var(--color-stone) 25%, transparent);
  z-index: 20;
  position: relative;
}
.header-inner {
  align-items: center;
  gap: 1.2rem;
  height: 100%;
  display: flex;
}
.brand {
  flex: none;
}
.brand img {
  object-fit: contain;
  width: 8rem;
  height: auto;
  max-height: 4.7rem;
}
.desktop-nav {
  flex: 1;
}
.desktop-nav ul,
.mobile-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.desktop-nav ul {
  justify-content: center;
  align-items: center;
  gap: clamp(0.65rem, 1.2vw, 1.5rem);
  display: flex;
}
.desktop-nav a {
  font-size: clamp(0.77rem, 0.7rem + 0.18vw, 0.93rem);
  font-weight: 600;
  text-decoration: none;
}
.desktop-nav a:hover {
  text-decoration: underline;
}
.header-actions {
  align-items: center;
  gap: 0.8rem;
  display: flex;
}
.language {
  font-size: 0.8rem;
  font-weight: 600;
}
.muted {
  color: var(--color-stone);
}
.menu-button {
  border: 1px solid var(--color-stone);
  border-radius: var(--radius);
  background: 0 0;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.75rem;
  display: none;
}
.menu-button span:not(.sr-only) {
  background: currentColor;
  height: 2px;
  margin: 0.3rem 0;
  display: block;
}
.mobile-menu {
  background: var(--color-plaster);
  border-top: 1px solid #ddd;
  padding: 1rem 0 2rem;
  position: absolute;
  inset: 100% 0 auto;
  box-shadow: 0 1rem 2rem #1f1c1920;
}
.mobile-menu li {
  border-bottom: 1px solid #6c665f35;
}
.mobile-menu nav a {
  padding: 0.8rem 0;
  font-weight: 600;
  text-decoration: none;
  display: block;
}
.mobile-menu .button {
  margin-top: 1.5rem;
}
.hero {
  background: var(--color-plaster);
  border-bottom: 1px solid #6c665f30;
  position: relative;
}
.hero-track {
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  display: flex;
  overflow-x: auto;
}
.hero-track::-webkit-scrollbar {
  display: none;
}
.hero-slide {
  scroll-snap-align: start;
  grid-template-columns: minmax(19rem, 40%) minmax(0, 60%);
  min-width: 100%;
  min-height: clamp(35rem, 65vw, 47rem);
  display: grid;
}
.hero-media {
  background: var(--color-stone);
  grid-area: 1/2;
  overflow: hidden;
}
.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}
.hero-media img {
  object-fit: cover;
  object-position: var(--image-position-desktop);
}
.hero-copy {
  grid-area: 1/1;
  align-self: center;
  padding: clamp(3rem, 7vw, 7rem) clamp(2rem, 5vw, 5.5rem);
}
.hero-copy h2 {
  font-size: clamp(2.2rem, 3.5vw, 4.5rem);
}
.hero-copy p:not(.eyebrow) {
  max-width: 34rem;
}
.hero-controls {
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  height: 5rem;
  display: flex;
}
.round-button {
  border: 1px solid var(--color-stone);
  background: var(--color-lime);
  cursor: pointer;
  border-radius: 50%;
  width: 2.75rem;
  height: 2.75rem;
}
.round-button:hover {
  background: var(--color-sgraffito);
  color: #fff;
}
.hero-dots {
  gap: 0.65rem;
  display: flex;
}
.hero-dots button {
  cursor: pointer;
  background: 0 0;
  border: 0;
  width: 2.75rem;
  height: 2.75rem;
  position: relative;
}
.hero-dots button:after {
  content: "";
  background: var(--color-stone);
  border-radius: 50%;
  width: 0.55rem;
  height: 0.55rem;
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
}
.hero-dots button[aria-current="true"]:after {
  background: var(--color-bronze-action);
  box-shadow: 0 0 0 5px
    color-mix(in srgb, var(--color-bronze-action) 18%, transparent);
}
.hero-count {
  font-variant-numeric: tabular-nums;
  color: var(--color-stone);
  margin-right: auto;
}
.hero-count strong {
  color: var(--color-sgraffito);
}
.current-event {
  grid-template-columns: 1.05fr 1fr;
  align-items: start;
  gap: clamp(2rem, 6vw, 7rem);
  display: grid;
}
.current-event .text-link {
  grid-column: 1;
}
.event-facts {
  border-top: 1px solid var(--color-stone);
  grid-template-columns: 1fr 1fr;
  margin: 0;
  display: grid;
}
.event-facts div {
  border-bottom: 1px solid #6c665f55;
  padding: 1.1rem 0;
}
.event-facts dt {
  font-size: var(--step--1);
  color: var(--color-stone);
}
.event-facts dd {
  margin: 0;
  font-weight: 600;
}
.entry-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  display: grid;
}
.entry-card {
  background: var(--color-plaster);
  border: 1px solid #6c665f44;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 23rem;
  padding: 2rem;
  text-decoration: none;
  transition:
    transform 0.2s,
    background 0.2s;
  display: flex;
}
.entry-card:hover {
  transform: translateY(-4px);
}
.entry-card h3 {
  font-size: var(--step-2);
}
.entry-card p {
  max-width: 28rem;
}
.entry-card .card-arrow {
  font-size: 2rem;
}
.entry-card.program {
  background: var(--color-reed);
  color: #fff;
}
.entry-card.program .eyebrow {
  color: var(--color-plaster);
}
.entry-card.stay {
  background: var(--color-sgraffito);
  color: var(--color-plaster);
}
.entry-card.stay .eyebrow {
  color: var(--color-bronze-brand);
}
.motto {
  background: var(--color-sgraffito);
  color: var(--color-plaster);
  text-align: center;
  padding: clamp(5rem, 11vw, 10rem) 1rem;
}
.motto h2 {
  max-width: 18ch;
  margin-inline: auto;
}
.route-list {
  counter-reset: route;
  grid-template-columns: repeat(7, 1fr);
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
}
.route-list li {
  counter-increment: route;
  border-top: 2px solid var(--color-reed);
  font-size: var(--step--1);
  padding: 1rem 0.5rem 0 0;
}
.route-list li:before {
  content: counter(route, decimal-leading-zero);
  color: var(--color-bronze-action);
  margin-bottom: 0.5rem;
  font-weight: 600;
  display: block;
}
.skeleton-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  display: grid;
}
.skeleton {
  background: var(--color-plaster);
  border: 1px dashed #6c665f88;
  min-height: 19rem;
  padding: 2rem;
}
.todo {
  color: var(--color-stone);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  font-weight: 600;
}
.site-footer {
  background: var(--color-sgraffito);
  color: var(--color-plaster);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 3rem;
  display: grid;
}
.site-footer img {
  filter: brightness(0) invert();
  opacity: 0.95;
  width: 8rem;
}
.site-footer address {
  font-style: normal;
}
.footer-bottom {
  color: #f4f0e7aa;
  border-top: 1px solid #f4f0e733;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.2rem;
  display: flex;
}
.not-found {
  min-height: calc(100vh - var(--header-height));
  text-align: center;
  place-content: center;
  padding: 2rem;
  display: grid;
}
.placeholder-page {
  min-height: 55vh;
  padding-block: var(--space-8);
}
@media (width<=1179px) {
  .desktop-nav {
    display: none;
  }
  .menu-button {
    display: block;
  }
  .header-actions {
    margin-left: auto;
  }
  .hero-slide {
    grid-template-columns: 43% 57%;
  }
  .hero-copy {
    padding-inline: clamp(1.5rem, 4vw, 3rem);
  }
}
@media (width<=760px) {
  :root {
    --header-height: 5rem;
  }
  .shell {
    width: min(calc(100% - 1.25rem), var(--shell));
  }
  .section {
    padding-block: 4.5rem;
  }
  .brand img {
    width: 5.6rem;
  }
  .language {
    display: none;
  }
  .booking-button {
    padding-inline: 0.7rem;
    font-size: 0.75rem;
  }
  .hero-slide {
    flex-direction: column;
    min-height: 0;
    display: flex;
  }
  .hero-media {
    order: 1;
    height: clamp(17rem, 62vw, 25rem);
  }
  .hero-media img {
    object-position: var(--image-position-mobile);
  }
  .hero-copy {
    order: 2;
    min-height: 24rem;
    padding: 2rem 1.25rem 2.5rem;
  }
  .hero-copy h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }
  .hero-controls {
    height: 4.5rem;
  }
  .hero-dots {
    gap: 0.1rem;
  }
  .current-event {
    grid-template-columns: 1fr;
  }
  .current-event .text-link {
    grid-column: auto;
  }
  .event-facts,
  .entry-grid,
  .skeleton-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .entry-card {
    min-height: 18rem;
  }
  .route-list {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .route-list li {
    border-top: 1px solid var(--color-reed);
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
}
@media (width<=420px) {
  .booking-button {
    display: none;
  }
  .event-facts {
    display: block;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  :before,
  :after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .hero-track {
    scroll-behavior: auto;
  }
}
.hero-media {
  min-width: 0;
  min-height: 0;
  position: relative;
}
.hero-media picture {
  display: block;
  position: absolute;
  inset: 0;
}
.site-header {
  height: var(--header-height);
  border-bottom-color: color-mix(in srgb, var(--color-stone) 22%, transparent);
}
.header-inner {
  gap: 1.4rem;
  padding-inline: 0.35rem;
}
.brand {
  flex: none;
  align-items: center;
  padding: 0.45rem;
  display: flex;
}
.brand img {
  object-fit: contain;
  width: 7rem;
  max-height: 4.5rem;
}
.desktop-nav ul {
  flex-wrap: nowrap;
  gap: clamp(0.9rem, 1.25vw, 1.35rem);
}
.desktop-nav a {
  white-space: nowrap;
  font-size: clamp(0.82rem, 0.76rem + 0.16vw, 0.93rem);
}
.header-actions {
  flex: none;
  gap: 1rem;
}
.language {
  letter-spacing: 0.025em;
  white-space: nowrap;
  font-size: 0.83rem;
}
.booking-button {
  white-space: nowrap;
  min-height: 2.95rem;
  padding-inline: 1.15rem;
  font-size: 0.9rem;
}
.hero-slide {
  grid-template-columns: minmax(22rem, 37%) minmax(0, 63%);
  height: clamp(38rem, 46.9vw, 45rem);
  min-height: 0;
}
.hero-media {
  border-left: 1px solid color-mix(in srgb, var(--color-stone) 18%, transparent);
}
.hero-copy {
  align-self: start;
  padding: clamp(3.5rem, 6.5vh, 4.8rem) clamp(2.25rem, 4.4vw, 4.75rem) 7.5rem;
}
.hero-copy > * {
  max-width: 31.25rem;
}
.hero-copy .eyebrow {
  letter-spacing: 0.105em;
  margin-bottom: 1.2rem;
  font-size: clamp(0.82rem, 0.78rem + 0.12vw, 0.92rem);
}
.hero-copy h2 {
  margin-bottom: 0.55em;
  font-size: clamp(3.625rem, 4.35vw, 4.5rem);
  font-weight: 500;
  line-height: 1.01;
}
.hero-copy p:not(.eyebrow) {
  max-width: 43ch;
  font-size: clamp(1.1rem, 1.02rem + 0.22vw, 1.25rem);
  line-height: 1.55;
}
.hero-copy .button {
  min-height: 3rem;
  margin-top: 0.35rem;
}
.hero-controls {
  z-index: 2;
  gap: 0.45rem;
  width: 37%;
  height: auto;
  margin: 0;
  padding-inline: clamp(2.25rem, 4.4vw, 4.75rem);
  display: flex;
  position: absolute;
  bottom: 2.25rem;
  left: 0;
}
.round-button {
  width: 2.75rem;
  min-width: 2.75rem;
  height: 2.75rem;
}
.hero-dots {
  gap: 0.05rem;
}
.hero-dots button {
  width: 2.2rem;
  height: 2.75rem;
}
.hero-count {
  color: var(--color-stone);
  white-space: nowrap;
  margin: 0 0.25rem;
}
@media (width<=1179px) {
  .header-inner {
    padding-inline: 0.15rem;
  }
  .brand img {
    width: 6.65rem;
  }
  .booking-button {
    min-height: 2.9rem;
  }
  .hero-slide {
    grid-template-columns: minmax(21rem, 42%) minmax(0, 58%);
    height: clamp(36rem, 58vw, 40rem);
  }
  .hero-copy {
    padding: clamp(3rem, 6vh, 4rem) clamp(2rem, 3.5vw, 3rem) 7rem;
  }
  .hero-copy h2 {
    font-size: clamp(3.05rem, 4.9vw, 3.75rem);
  }
  .hero-controls {
    width: 42%;
    padding-inline: clamp(2rem, 3.5vw, 3rem);
    bottom: 1.8rem;
  }
}
@media (width<=900px) {
  .hero-slide {
    flex-direction: column;
    height: auto;
    min-height: 0;
    display: flex;
  }
  .hero-media {
    border-left: 0;
    border-bottom: 1px solid
      color-mix(in srgb, var(--color-stone) 18%, transparent);
    order: 1;
    height: clamp(22rem, 52vw, 28rem);
  }
  .hero-copy {
    order: 2;
    align-self: stretch;
    padding: 2.5rem clamp(1.5rem, 5vw, 3rem) 2rem;
  }
  .hero-copy > * {
    max-width: 31.25rem;
  }
  .hero-copy h2 {
    font-size: clamp(2.75rem, 7vw, 3.55rem);
  }
  .hero-controls {
    width: 100%;
    padding: 0 clamp(1.5rem, 5vw, 3rem) 1.5rem;
    position: static;
  }
}
@media (width<=760px) {
  :root {
    --header-height: 5rem;
  }
  .header-inner {
    gap: 0.55rem;
  }
  .brand {
    padding: 0.35rem;
  }
  .brand img {
    width: 4.95rem;
    max-height: 3.8rem;
  }
  .menu-button {
    flex: none;
    width: 2.85rem;
    height: 2.85rem;
  }
  .booking-button {
    min-height: 2.85rem;
  }
  .hero-media {
    height: clamp(17.5rem, 75vw, 23rem);
  }
  .hero-copy {
    min-height: 0;
    padding: 2rem 1.5rem 1.65rem;
  }
  .hero-copy .eyebrow {
    margin-bottom: 1rem;
    font-size: 0.82rem;
  }
  .hero-copy h2 {
    font-size: clamp(2.375rem, 10.5vw, 2.75rem);
    line-height: 1.01;
  }
  .hero-copy p:not(.eyebrow) {
    font-size: 1.08rem;
    line-height: 1.55;
  }
  .hero-copy .button {
    min-height: 3rem;
  }
  .hero-controls {
    gap: 0.25rem;
    height: auto;
    padding: 0 1rem 1.15rem;
  }
  .hero-dots button {
    width: 2rem;
  }
  .hero-count {
    margin-inline: 0.15rem;
    font-size: 0.95rem;
  }
}
@media (width<=420px) {
  .header-inner {
    padding-inline: 0;
  }
  .brand img {
    width: 4.8rem;
  }
}
.text-link {
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  display: inline-flex;
}
.text-link:hover {
  color: var(--color-terracotta);
}
.page-actions,
.event-actions {
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 1.5rem;
  display: flex;
}
.current-event {
  background: var(--color-lime);
}
.event-main-grid {
  grid-template-columns: minmax(0, 55fr) minmax(19rem, 45fr);
  align-items: start;
  gap: clamp(3rem, 7vw, 7rem);
  display: grid;
}
.event-copy {
  max-width: 43rem;
}
.event-lead {
  font-size: var(--step-1);
  line-height: 1.55;
}
.ticket-validity {
  border-left: 4px solid var(--color-bronze-action);
  background: var(--color-plaster);
  font-weight: 600;
  font-size: var(--step-1);
  margin-top: 2rem;
  padding: 1.2rem 1.35rem;
}
.event-facts {
  border-top: 1px solid color-mix(in srgb, var(--color-stone) 55%, transparent);
  grid-template-columns: 1fr;
  margin-top: 0.25rem;
}
.event-facts div {
  grid-template-columns: minmax(7.5rem, 0.7fr) 1.3fr;
  gap: 1rem;
  padding: 1.2rem 0;
  display: grid;
}
.support-card {
  background: var(--color-plaster);
  border: 1px solid color-mix(in srgb, var(--color-stone) 28%, transparent);
  grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  margin-top: clamp(3.5rem, 7vw, 6rem);
  display: grid;
}
.support-media {
  min-height: 22rem;
  position: relative;
  overflow: hidden;
}
.support-media picture,
.support-media img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.support-media img {
  object-fit: cover;
  object-position: 50% 50%;
}
.support-copy {
  align-self: center;
  padding: clamp(2rem, 5vw, 4.5rem);
}
.support-copy h3 {
  font-size: var(--step-3);
  font-weight: 500;
}
.support-highlight {
  font-family: var(--font-display);
  font-size: var(--step-1);
  color: var(--color-bronze-action);
  font-weight: 600;
}
.passage-route {
  background: var(--color-plaster);
}
.route-intro {
  max-width: 52rem;
}
.route-intro > p:last-child {
  font-size: var(--step-1);
  max-width: 46rem;
}
.route-list {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}
.route-list:before {
  content: "";
  background: color-mix(in srgb, var(--color-reed) 52%, transparent);
  height: 1px;
  position: absolute;
  top: 0.32rem;
  left: 0.45rem;
  right: 0.45rem;
}
.route-list li {
  border: 0;
  padding: 2rem 0.75rem 0 0;
  position: relative;
}
.route-list li:after {
  content: "";
  border: 2px solid var(--color-bronze-action);
  background: var(--color-plaster);
  border-radius: 50%;
  width: 0.7rem;
  height: 0.7rem;
  position: absolute;
  top: 0;
  left: 0;
}
.route-list li:before {
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}
.contact-intro {
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 3rem;
  display: grid;
}
.contact-intro address,
.site-footer address {
  font-style: normal;
}
.contact-details {
  font-size: var(--step-1);
}
.reservation {
  background: var(--color-plaster);
}
.reservation-grid {
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
  display: grid;
}
.reservation-copy {
  top: calc(var(--header-height) + 2rem);
  position: sticky;
}
.form-explanation {
  border-left: 3px solid var(--color-bronze-action);
  padding-left: 1rem;
  font-weight: 600;
}
.reservation-form {
  background: var(--color-lime);
  border: 1px solid color-mix(in srgb, var(--color-stone) 34%, transparent);
  padding: clamp(1.25rem, 3vw, 2.5rem);
}
.form-grid {
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  display: grid;
}
.field {
  flex-direction: column;
  gap: 0.4rem;
  display: flex;
}
.field-wide {
  grid-column: 1/-1;
}
.field label,
.consent {
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  border: 1px solid var(--color-stone);
  border-radius: var(--radius);
  width: 100%;
  min-height: 3rem;
  color: var(--color-sgraffito);
  background: #fff;
  padding: 0.7rem 0.8rem;
}
.field textarea {
  resize: vertical;
  min-height: 8rem;
}
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  border-color: var(--color-terracotta);
}
.consent {
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.5rem 0 1rem;
  display: flex;
}
.consent input {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--color-bronze-action);
  flex: none;
  margin-top: 0.2rem;
}
.privacy-note {
  font-size: var(--step--1);
  color: var(--color-stone);
}
.legal-section,
.privacy-section {
  max-width: 56rem;
  margin-inline: auto;
}
.legal-section {
  border-bottom: 1px solid
    color-mix(in srgb, var(--color-stone) 28%, transparent);
}
.legal-details {
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 0.8rem 2rem;
  margin: 2rem 0 0;
  display: grid;
}
.legal-details dt {
  color: var(--color-stone);
  font-weight: 600;
}
.legal-details dd {
  min-width: 0;
  margin: 0;
}
.legal-details address {
  font-style: normal;
}
.legal-form {
  color: var(--color-stone);
}
.site-footer {
  border-top: 1px solid
    color-mix(in srgb, var(--color-bronze-brand) 42%, transparent);
  padding: clamp(5rem, 8vw, 7rem) 0 1.75rem;
}
.footer-grid {
  grid-template-columns: 1.15fr repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4.5rem);
}
.site-footer img {
  width: 6.7rem;
  margin-bottom: 1.35rem;
}
.footer-brand p {
  max-width: 16rem;
}
.footer-tagline span {
  white-space: nowrap;
  display: block;
}
.footer-title {
  color: var(--color-bronze-brand);
  font-family: var(--font-text);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-size: 0.84rem;
  font-weight: 600;
}
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-links li + li {
  margin-top: 0.65rem;
}
.site-footer a {
  color: var(--color-plaster);
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--color-bronze-brand);
}
.footer-link {
  margin-top: 1rem;
  display: inline-flex;
}
.footer-bottom {
  align-items: center;
  gap: 1.5rem;
  font-size: 0.88rem;
}
.footer-bottom a {
  margin-left: auto;
}
@media (width<=1000px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .event-main-grid {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.85fr);
    gap: 3rem;
  }
}
@media (width<=760px) {
  .current-event.section {
    padding-block: 4.5rem;
  }
  .event-main-grid,
  .support-card,
  .contact-intro,
  .reservation-grid {
    grid-template-columns: 1fr;
  }
  .event-main-grid {
    gap: 2.5rem;
  }
  .event-facts div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
  .support-card {
    margin-top: 3.5rem;
  }
  .support-media {
    min-height: 17rem;
  }
  .support-copy {
    padding: 2rem 1.5rem;
  }
  .route-list {
    grid-template-columns: 1fr 1fr;
    gap: 0 1.25rem;
  }
  .route-list:before {
    display: none;
  }
  .route-list li {
    border-top: 1px solid color-mix(in srgb, var(--color-reed) 42%, transparent);
    padding: 1.15rem 0;
  }
  .route-list li:after {
    display: none;
  }
  .reservation-copy {
    position: static;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field-wide {
    grid-column: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    align-items: flex-start;
  }
  .footer-bottom a {
    margin-left: 0;
  }
}
.nojs-menu {
  display: none;
}
@media (width<=1179px) {
  .nojs-menu {
    padding-block: 1rem 1.5rem;
    display: block;
  }
  .nojs-menu ul {
    columns: 2;
    margin: 0 0 1rem;
    padding: 0;
    list-style: none;
  }
  .nojs-menu a:not(.button) {
    padding: 0.4rem 0;
    font-weight: 600;
    text-decoration: none;
    display: block;
  }
}
.shell {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--shell));
}
.hero-controls.shell {
  width: 37%;
  max-width: none;
  margin: 0;
}
.current-event {
  display: block;
}
.event-main-grid {
  grid-template-columns: minmax(0, 56fr) minmax(0, 44fr);
  gap: clamp(4rem, 5.2vw, 5.5rem);
}
.event-copy {
  width: 100%;
  max-width: 48rem;
}
.event-copy h2 {
  font-size: clamp(3.625rem, 4.2vw, 4.25rem);
  font-weight: 500;
  line-height: 1.02;
}
.event-copy > p:not(.eyebrow):not(.ticket-validity) {
  max-width: 62ch;
  font-size: clamp(1.125rem, 1.04rem + 0.2vw, 1.25rem);
  line-height: 1.55;
}
.event-lead {
  font-size: clamp(1.25rem, 1.14rem + 0.2vw, 1.375rem) !important;
}
.ticket-validity {
  width: 100%;
  max-width: 38.75rem;
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  font-size: clamp(1.25rem, 1.14rem + 0.2vw, 1.375rem);
  line-height: 1.5;
}
.event-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 12rem;
}
.event-facts div {
  min-width: 0;
  padding: 1.35rem 1rem 1.35rem 0;
  display: block;
}
.event-facts div:nth-child(2n) {
  padding-left: 1.25rem;
}
.event-facts dt {
  margin-bottom: 0.4rem;
}
.event-facts dd {
  overflow-wrap: break-word;
  font-size: clamp(1.02rem, 0.98rem + 0.15vw, 1.125rem);
  line-height: 1.42;
}
.event-actions {
  gap: 0.75rem;
}
.event-actions .text-link {
  align-items: center;
  min-height: 3rem;
  line-height: 1.2;
}
.current-event .support-card {
  margin-top: clamp(2.5rem, 3.25vw, 3rem);
}
.support-card {
  grid-template-columns: minmax(0, 47%) minmax(0, 53%);
  align-items: center;
}
.support-media {
  aspect-ratio: 4/3;
  align-self: center;
  min-height: 0;
}
.support-copy {
  width: 100%;
  max-width: 37.5rem;
  padding: clamp(2.75rem, 4.5vw, 4.5rem);
}
.support-copy h3 {
  font-size: clamp(3rem, 3.6vw, 3.625rem);
  font-weight: 500;
  line-height: 1.04;
}
.support-copy > p:not(.eyebrow) {
  font-size: clamp(1.08rem, 1rem + 0.16vw, 1.18rem);
  line-height: 1.55;
}
.support-highlight {
  font-size: clamp(1.25rem, 1.12rem + 0.25vw, 1.4rem) !important;
  line-height: 1.48 !important;
}
.reservation-shell {
  max-width: 82.5rem;
}
.reservation-grid {
  grid-template-columns: minmax(20rem, 0.62fr) minmax(0, 1fr);
  gap: clamp(4rem, 5vw, 5rem);
}
.reservation-copy {
  max-width: 29rem;
}
.reservation-copy h2 {
  font-size: clamp(3rem, 3.7vw, 3.625rem);
  font-weight: 500;
  line-height: 1.04;
}
.reservation-copy > p:not(.eyebrow) {
  font-size: clamp(1.125rem, 1.04rem + 0.18vw, 1.25rem);
  line-height: 1.55;
}
.form-explanation {
  padding-left: 1rem;
  font-weight: 400;
}
.reservation-form {
  width: 100%;
  max-width: 47.5rem;
  padding: 2.5rem;
}
.form-grid {
  gap: 1.25rem 1rem;
}
.field {
  gap: 0.5rem;
}
.field label {
  font-size: 1.02rem;
}
.field input,
.field select,
.field textarea {
  border-radius: var(--radius);
  min-height: 3.125rem;
  padding: 0.72rem 1rem;
  font-size: 1.0625rem;
}
.field textarea {
  height: 8.5rem;
  min-height: 7.5rem;
}
.consent {
  gap: 0.7rem;
  margin: 1.4rem 0 0.85rem;
  font-size: 1.02rem;
  line-height: 1.45;
}
.consent input {
  width: 1.3rem;
  height: 1.3rem;
  margin-top: 0.12rem;
}
.privacy-note {
  font-size: 1rem;
  line-height: 1.5;
}
.reservation-form > .button {
  min-height: 3.125rem;
}
@media (width<=1439px) {
  :root {
    --page-gutter: 3rem;
  }
}
@media (width<=1179px) {
  :root {
    --page-gutter: 2rem;
  }
  .hero-controls.shell {
    width: 42%;
  }
  .event-main-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .event-copy {
    max-width: 52rem;
  }
  .event-copy h2 {
    font-size: clamp(2.75rem, 5vw, 3.625rem);
  }
  .event-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 52rem;
    margin-top: 0.25rem;
  }
  .support-card {
    grid-template-columns: 1fr;
    max-width: 70rem;
  }
  .support-media {
    aspect-ratio: 16/9;
  }
  .support-copy {
    max-width: 46rem;
    padding: clamp(2.5rem, 5vw, 4rem);
  }
  .support-copy h3 {
    font-size: clamp(2.75rem, 5vw, 3.25rem);
  }
}
@media (width<=1100px) {
  .reservation-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .reservation-copy {
    max-width: 47.5rem;
    position: static;
  }
  .reservation-copy h2 {
    font-size: clamp(2.75rem, 5vw, 3.125rem);
  }
  .reservation-form {
    padding: 2rem;
  }
}
@media (width<=900px) {
  .hero-controls.shell {
    width: 100%;
  }
}
@media (width<=760px) {
  :root {
    --page-gutter: 1.5rem;
  }
  .reservation-form {
    padding: 1.5rem;
  }
}
@media (width<=680px) {
  .event-copy h2,
  .support-copy h3,
  .reservation-copy h2 {
    font-size: clamp(2.375rem, 10vw, 2.75rem);
  }
  .event-copy > p:not(.eyebrow):not(.ticket-validity),
  .reservation-copy > p:not(.eyebrow) {
    font-size: 1.125rem;
  }
  .event-lead {
    font-size: 1.2rem !important;
  }
  .ticket-validity {
    max-width: none;
    padding: 1.25rem 1.35rem;
    font-size: 1.15rem;
  }
  .event-facts {
    grid-template-columns: 1fr;
  }
  .event-facts div,
  .event-facts div:nth-child(2n) {
    padding: 1.1rem 0;
  }
  .support-media {
    aspect-ratio: 4/3;
  }
  .support-copy {
    padding: 2rem 1.5rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field-wide {
    grid-column: auto;
  }
  .reservation-form > .button {
    width: 100%;
  }
}
@media (width<=420px) {
  :root {
    --page-gutter: 1.25rem;
  }
}
body {
  overflow-wrap: normal;
}
p,
li,
address,
dd {
  text-wrap: pretty;
}
h1,
h2,
h3,
.button,
.text-link {
  overflow-wrap: normal;
  word-break: normal;
}
.unbreakable-value,
.contact-value {
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
  display: inline-block;
}
.price-value {
  font-variant-numeric: tabular-nums;
}
.event-facts .price-fact {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.event-facts .price-fact dt {
  margin: 0;
  white-space: nowrap;
}
.event-facts .price-fact dd {
  margin: 0;
}
.program-poster {
  width: min(100%, 52rem);
  margin: 2.5rem 0 3rem;
}
.program-poster > a {
  display: block;
  border: 1px solid color-mix(in srgb, var(--color-stone) 45%, transparent);
  background: var(--color-stone);
  box-shadow: 0 1.25rem 3rem #1f1d1926;
}
.program-poster img {
  width: 100%;
  height: auto;
  display: block;
}
.program-poster figcaption {
  margin-top: 1rem;
}
.event-facts dd {
  overflow-wrap: normal;
  word-break: normal;
}
.hero-event-meta {
  color: var(--color-bronze-action);
  font-variant-numeric: tabular-nums;
  grid-template-columns: max-content max-content;
  align-items: baseline;
  gap: 0.15rem 1rem;
  margin: 0 0 0.8rem;
  font-size: clamp(0.96rem, 0.9rem + 0.16vw, 1.08rem);
  font-weight: 600;
  line-height: 1.45;
  display: grid;
}
.hero-meta-price {
  grid-column: 1/-1;
  align-items: baseline;
  gap: 0.45rem;
  display: flex;
}
.button {
  white-space: nowrap;
}
.ticket-validity .unbreakable-value {
  font-variant-numeric: tabular-nums;
}
.route-list li {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
@media (width<=680px) {
  .hero-event-meta {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }
  .hero-meta-price {
    grid-column: auto;
  }
  .event-facts dd {
    max-width: 100%;
  }
  .legal-details {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  .legal-details dd {
    margin-bottom: 1rem;
  }
}
@media (width<=360px) {
  .button {
    white-space: normal;
    text-align: center;
    text-wrap: balance;
  }
  .contact-value {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}
