/* Veldglas — tokens */
:root {
  --storm: #173e52;
  --storm-deep: #102f3f;
  --ink: #18282d;
  --celadon: #9db7a5;
  --leaf: #526f64;
  --shell: #efe4d2;
  --oat: #d9c8ac;
  --rhubarb: #b64d5d;
  --plum: #66536d;
  --coral: #e66d54;
  --mist: #f5eee4;
  --white: #fffdf8;
  --line-dark: rgba(24, 40, 45, 0.28);
  --line-light: rgba(255, 253, 248, 0.34);
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --body: "Avenir Next", Avenir, "Century Gothic", Futura, sans-serif;
  --label: "Avenir Next Condensed", "Arial Narrow", Arial, sans-serif;
  --step--1: clamp(0.84rem, 0.81rem + 0.12vw, 0.93rem);
  --step-0: clamp(1rem, 0.96rem + 0.19vw, 1.12rem);
  --step-1: clamp(1.22rem, 1.1rem + 0.58vw, 1.64rem);
  --step-2: clamp(1.55rem, 1.25rem + 1.47vw, 2.55rem);
  --step-3: clamp(2.05rem, 1.46rem + 2.94vw, 4rem);
  --step-4: clamp(2.8rem, 1.66rem + 5.7vw, 6.6rem);
  --space-xs: clamp(0.55rem, 0.45rem + 0.4vw, 0.85rem);
  --space-sm: clamp(0.85rem, 0.68rem + 0.8vw, 1.35rem);
  --space-md: clamp(1.35rem, 1rem + 1.7vw, 2.5rem);
  --space-lg: clamp(2.2rem, 1.45rem + 3.7vw, 4.8rem);
  --space-xl: clamp(3.4rem, 2rem + 6.8vw, 8rem);
  --gutter: clamp(1rem, 0.55rem + 2.2vw, 2.5rem);
  --max: 85rem;
  --transition: 280ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* Base */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  background: var(--shell);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

img {
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-underline-offset: 0.23em;
}

a:hover {
  color: inherit;
}

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

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h1 {
  font-size: var(--step-4);
}

h2 {
  font-size: var(--step-3);
}

h3 {
  font-size: var(--step-2);
  line-height: 1.08;
}

p:last-child {
  margin-bottom: 0;
}

::selection {
  background: var(--coral);
  color: var(--ink);
}

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

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-180%);
  background: var(--white);
  color: var(--ink);
  padding: 0.75rem 1rem;
  border: 2px solid var(--ink);
  transition: transform var(--transition);
}

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

.visually-measured {
  max-width: 43rem;
}

.eyebrow,
.chapter-label,
.meta-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: var(--space-sm);
  font-family: var(--label);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before,
.chapter-label::before {
  width: 2.6rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.lead-copy {
  max-width: 42rem;
  font-family: var(--display);
  font-size: var(--step-1);
  line-height: 1.4;
}

.fine-print {
  color: color-mix(in srgb, currentColor 78%, transparent);
  font-size: var(--step--1);
  line-height: 1.55;
}

.shell {
  width: min(100% - (2 * var(--gutter)), var(--max));
  margin-inline: auto;
}

/* Header and navigation */
.site-header {
  position: relative;
  z-index: 1000;
  background: var(--storm);
  color: var(--white);
  border-bottom: 1px solid var(--line-light);
}

.masthead {
  min-height: 4.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem var(--gutter);
}

.brand {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  gap: 0.8rem;
  color: var(--white);
  text-decoration: none;
}

.brand-symbol {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--celadon);
  color: var(--shell);
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 1;
  position: relative;
}

.brand-symbol::after {
  position: absolute;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 1.48rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.brand-copy small {
  margin-top: 0.28rem;
  font-family: var(--label);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-toggle,
.masthead-action {
  min-height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-light);
  background: transparent;
  color: var(--white);
  padding: 0.7rem 0.9rem;
  font-family: var(--label);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color var(--transition), color var(--transition);
}

.menu-toggle:hover,
.masthead-action:hover {
  background: var(--shell);
  color: var(--ink);
}

.menu-toggle-lines {
  width: 1.4rem;
  display: grid;
  gap: 0.3rem;
  margin-right: 0.55rem;
}

.menu-toggle-lines span {
  height: 1px;
  background: currentColor;
}

.horizon-nav {
  border-top: 1px solid var(--line-light);
}

.horizon-nav .shell {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.nav-list {
  display: flex;
  flex: 1;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  min-height: 3.4rem;
  display: inline-flex;
  align-items: center;
  padding-inline: clamp(0.48rem, 1vw, 1.1rem);
  border-right: 1px solid var(--line-light);
  color: var(--white);
  font-family: var(--label);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-decoration: none;
  transition: background-color var(--transition), color var(--transition);
}

.nav-list li:first-child a {
  border-left: 1px solid var(--line-light);
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  background: var(--celadon);
  color: var(--ink);
}

.nav-reserve {
  min-width: 12rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  background: var(--coral);
  color: var(--ink);
  font-family: var(--label);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.065em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color var(--transition);
}

.nav-reserve:hover {
  background: var(--shell);
}

.offcanvas-veldglas {
  width: min(90vw, 25rem);
  background: var(--storm);
  color: var(--white);
  border-left-color: var(--line-light);
}

.offcanvas-veldglas .offcanvas-header {
  border-bottom: 1px solid var(--line-light);
  padding: 1.15rem;
}

.offcanvas-veldglas .btn-close {
  filter: invert(1) grayscale(1);
}

.mobile-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  min-height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-light);
  color: var(--white);
  text-decoration: none;
}

.mobile-nav a::after {
  content: "↗";
}

.mobile-nav a[aria-current="page"] {
  color: var(--shell);
  padding-left: 0.8rem;
  border-left: 4px solid var(--coral);
}

/* Buttons and links */
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

.button,
.text-link {
  min-height: 2.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.74rem 1.1rem;
  border: 1px solid transparent;
  font-family: var(--label);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.button::after,
.text-link::after {
  content: "→";
}

.button:hover,
.text-link:hover {
  transform: translateX(0.18rem);
}

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

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

.button-light {
  background: var(--shell);
  color: var(--ink);
}

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

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

.button-coral:hover {
  background: var(--shell);
  color: var(--ink);
}

.button-outline {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}

.text-link {
  min-height: 2.75rem;
  justify-content: flex-start;
  padding-inline: 0;
  border-bottom-color: currentColor;
}

/* Hero */
.hero-panorama {
  position: relative;
  background: var(--storm);
  color: var(--white);
}

.hero-grid {
  display: grid;
  min-height: 42rem;
}

.hero-media {
  min-height: 24rem;
  overflow: hidden;
  border-bottom-right-radius: 5rem;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-lg) var(--gutter) var(--space-xl);
  background: var(--storm);
}

.hero-copy::before {
  position: absolute;
  top: 0;
  left: var(--gutter);
  width: calc(100% - (2 * var(--gutter)));
  height: 1px;
  background: var(--celadon);
  content: "";
}

.hero-copy h1 {
  max-width: 12ch;
  margin-bottom: var(--space-md);
  overflow-wrap: break-word;
  font-size: clamp(2.8rem, 6.1vw, 5.4rem);
}

.hero-copy .lead-copy {
  color: var(--shell);
}

.hero-index {
  display: none;
}

/* Sections and horizon system */
.section {
  position: relative;
  padding-block: var(--space-xl);
}

.section-shell {
  width: min(100% - (2 * var(--gutter)), var(--max));
  margin-inline: auto;
}

.section-shell.narrow {
  max-width: 67rem;
}

.section-storm {
  background: var(--storm);
  color: var(--white);
}

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

.section-shelltone {
  background: var(--shell);
  color: var(--ink);
}

.section-mist {
  background: var(--mist);
  color: var(--ink);
}

.section-celadon {
  background: var(--celadon);
  color: var(--ink);
}

.section-plum {
  background: var(--plum);
  color: var(--white);
}

.section-rhubarb {
  background: var(--rhubarb);
  color: var(--white);
}

.chapter {
  padding-left: 1.25rem;
  border-left: 1px solid currentColor;
}

.chapter-heading {
  max-width: 18ch;
  margin-bottom: var(--space-md);
}

.chapter-copy {
  max-width: 43rem;
}

.chapter-number {
  display: block;
  margin-bottom: var(--space-sm);
  font-family: var(--label);
  font-size: var(--step--1);
  font-weight: 800;
  letter-spacing: 0.16em;
}

.horizon-band {
  position: relative;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.horizon-band::after {
  position: absolute;
  top: -0.35rem;
  left: clamp(1rem, 8vw, 8rem);
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.editorial-split {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

.editorial-copy {
  max-width: 42rem;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-top-right-radius: clamp(2rem, 6vw, 6rem);
}

.media-frame::after {
  position: absolute;
  inset: 0.6rem;
  border: 1px solid rgba(255, 253, 248, 0.58);
  border-top-right-radius: clamp(1.6rem, 5.4vw, 5.4rem);
  pointer-events: none;
  content: "";
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.media-frame.portrait img {
  aspect-ratio: 4 / 5;
}

.manifesto {
  display: grid;
  gap: var(--space-lg);
  align-items: end;
}

.manifesto h2 {
  max-width: 11ch;
  margin-bottom: 0;
}

.manifesto-copy {
  max-width: 38rem;
  padding-top: var(--space-md);
  border-top: 1px solid var(--line-dark);
}

/* Stay composer */
.stay-composer {
  background: var(--celadon);
  color: var(--ink);
  padding-block: var(--space-lg);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.composer-grid {
  display: grid;
  gap: 1rem;
}

.composer-intro h2 {
  margin-bottom: 0.65rem;
  font-size: var(--step-2);
}

.composer-fields {
  display: grid;
  gap: 0.85rem;
}

.composer-fields > *,
.form-grid > * {
  min-width: 0;
}

.field-stack {
  display: grid;
  gap: 0.38rem;
}

.field-stack label,
.form-label,
.form-check-label {
  font-family: var(--label);
  font-size: var(--step--1);
  font-weight: 800;
  letter-spacing: 0.045em;
}

.field-stack input,
.field-stack select,
.form-control,
.form-select {
  width: 100%;
  min-height: 3.1rem;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--mist);
  color: var(--ink);
  padding: 0.68rem 0.78rem;
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 0.25rem rgba(230, 109, 84, 0.28);
}

/* Room moods and ledgers */
.room-moods {
  border-top: 1px solid var(--line-dark);
}

.room-strip {
  display: grid;
  gap: 0;
  border-bottom: 1px solid var(--line-dark);
}

.room-strip-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.room-strip-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-md) var(--gutter);
}

.room-strip-copy h3 {
  margin-bottom: 0.8rem;
}

.ledger {
  border-top: 1px solid currentColor;
}

.ledger-row {
  display: grid;
  gap: 0.7rem;
  padding-block: var(--space-md);
  border-bottom: 1px solid currentColor;
}

.ledger-index {
  font-family: var(--label);
  font-size: var(--step--1);
  font-weight: 800;
  letter-spacing: 0.14em;
}

.ledger-row h3 {
  margin-bottom: 0;
  font-size: var(--step-1);
  line-height: 1.15;
}

.ledger-row p {
  max-width: 42rem;
  margin-bottom: 0;
}

/* Casino and panoramic media */
.panorama {
  position: relative;
  min-height: 35rem;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.panorama picture,
.panorama img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.panorama::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24, 40, 45, 0.88) 0%, rgba(24, 40, 45, 0.55) 46%, rgba(24, 40, 45, 0.08) 78%);
  content: "";
}

.panorama-copy {
  position: relative;
  z-index: 1;
  width: min(100% - (2 * var(--gutter)), var(--max));
  min-height: 35rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-inline: auto;
}

.panorama-copy > * {
  max-width: 38rem;
}

.salon-pair {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

.salon-notes {
  display: grid;
  gap: 0;
  border-top: 1px solid currentColor;
}

.salon-note {
  padding-block: var(--space-sm);
  border-bottom: 1px solid currentColor;
}

.salon-note strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--label);
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

/* Culinary, wellness, events */
.menu-ledger {
  display: grid;
  border-top: 1px solid currentColor;
}

.menu-course {
  padding: var(--space-md) 0;
  border-bottom: 1px solid currentColor;
}

.menu-course h3 {
  margin-bottom: 0.75rem;
  font-size: var(--step-1);
}

.sequence {
  display: grid;
  border-top: 1px solid currentColor;
  counter-reset: ritual;
}

.sequence-step {
  position: relative;
  padding: var(--space-lg) 0 var(--space-lg) 3.4rem;
  border-bottom: 1px solid currentColor;
  counter-increment: ritual;
}

.sequence-step::before {
  position: absolute;
  top: var(--space-lg);
  left: 0;
  content: "0" counter(ritual);
  font-family: var(--label);
  font-weight: 800;
  letter-spacing: 0.1em;
}

.programme-band {
  display: grid;
  border-top: 1px solid currentColor;
}

.programme-item {
  padding: var(--space-md) 0;
  border-bottom: 1px solid currentColor;
}

.programme-item .meta-label {
  margin-bottom: 0.6rem;
}

.programme-item h3 {
  margin-bottom: 0.75rem;
  font-size: var(--step-1);
}

/* Destination and amenity details */
.route-grid {
  display: grid;
  border-top: 1px solid currentColor;
}

.route-item {
  padding: var(--space-md) 0;
  border-bottom: 1px solid currentColor;
}

.route-weather {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: color-mix(in srgb, currentColor 76%, transparent);
  font-family: var(--label);
  font-size: var(--step--1);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.material-archive {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

.material-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid currentColor;
}

.material-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.85rem;
  border-bottom: 1px solid currentColor;
}

/* Responsible gaming */
.responsible-panel {
  display: grid;
  gap: var(--space-lg);
  align-items: start;
}

.responsible-panel h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.responsible-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.4rem;
  margin-top: var(--space-md);
}

.responsible-actions a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
  text-decoration: none;
}

/* Page heroes */
.page-hero {
  background: var(--storm);
  color: var(--white);
  border-bottom: 1px solid var(--line-light);
}

.page-hero-grid {
  display: grid;
  min-height: 32rem;
}

.page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-lg) var(--gutter);
}

.page-hero-copy h1 {
  max-width: 12ch;
  margin-bottom: var(--space-md);
}

.page-hero-media {
  min-height: 20rem;
  overflow: hidden;
  border-top-left-radius: 5rem;
}

.page-hero-media picture,
.page-hero-media img {
  width: 100%;
  height: 100%;
}

.page-hero.no-image .page-hero-grid {
  min-height: 26rem;
}

.page-hero.no-image .page-hero-copy {
  position: relative;
  max-width: var(--max);
  width: min(100% - (2 * var(--gutter)), var(--max));
  margin-inline: auto;
  padding-inline: 0;
}

.page-hero.no-image .page-hero-copy::after {
  position: absolute;
  right: 0;
  bottom: var(--space-lg);
  width: min(28vw, 18rem);
  height: min(28vw, 18rem);
  border: 1px solid var(--celadon);
  border-top-right-radius: 100%;
  content: "";
}

.page-intro {
  display: grid;
  gap: var(--space-lg);
  align-items: end;
}

.page-intro h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.page-intro-copy {
  max-width: 42rem;
  padding-top: var(--space-md);
  border-top: 1px solid currentColor;
}

/* Forms */
.contact-layout {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
}

.contact-aside {
  display: grid;
  gap: var(--space-md);
}

.contact-note {
  padding: var(--space-md);
  border: 1px solid currentColor;
  border-top-right-radius: 3rem;
}

.contact-note a {
  overflow-wrap: anywhere;
  font-weight: 700;
}

.request-form {
  padding: var(--space-md);
  background: var(--mist);
  color: var(--ink);
  border: 1px solid var(--ink);
  border-top-right-radius: 4rem;
}

.request-form h2,
.request-form h3 {
  margin-bottom: var(--space-md);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-control,
.form-select {
  min-height: 3.2rem;
}

textarea.form-control {
  min-height: 9rem;
  resize: vertical;
}

.form-text {
  color: rgba(24, 40, 45, 0.78);
}

.form-check-input {
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.16rem;
  border-color: var(--ink);
  border-radius: 0;
}

.form-check-input:checked {
  background-color: var(--rhubarb);
  border-color: var(--rhubarb);
}

.date-error {
  margin-top: 0.45rem;
  color: #8a2132;
  font-weight: 700;
}

.form-status {
  min-height: 1.6rem;
  margin-top: 0.8rem;
  font-size: var(--step--1);
  font-weight: 700;
}

.request-form[aria-busy="true"] {
  opacity: 0.86;
}

.request-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Legal content */
.legal-layout {
  display: grid;
  gap: var(--space-lg);
  align-items: start;
}

.legal-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid currentColor;
}

.legal-nav a {
  min-height: 3rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid currentColor;
  font-family: var(--label);
  font-size: var(--step--1);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.legal-article {
  max-width: 48rem;
}

.legal-article section {
  padding-block: var(--space-md);
  border-top: 1px solid var(--line-dark);
}

.legal-article h2 {
  margin-bottom: 1rem;
  font-size: var(--step-2);
}

.legal-article h3 {
  margin-top: 1.7rem;
  font-size: var(--step-1);
}

.legal-article li + li {
  margin-top: 0.55rem;
}

.legal-article a {
  overflow-wrap: anywhere;
}

/* Next chapter and footer */
.next-chapter {
  display: grid;
  gap: 1rem;
  padding-block: var(--space-lg);
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
}

.next-chapter small {
  font-family: var(--label);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.next-chapter strong {
  font-family: var(--display);
  font-size: var(--step-2);
  font-weight: 400;
}

.next-chapter span {
  font-size: var(--step-2);
}

.site-footer {
  background: var(--storm-deep);
  color: var(--white);
  padding-top: var(--space-xl);
}

.footer-grid {
  display: grid;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.footer-brand p {
  max-width: 27rem;
  color: var(--shell);
}

.footer-heading {
  display: block;
  margin-bottom: 0.9rem;
  font-family: var(--label);
  font-size: var(--step--1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.48rem;
}

.footer-links a {
  min-height: 2.1rem;
  display: flex;
  align-items: center;
  color: var(--shell);
  text-decoration-color: transparent;
  transition: text-decoration-color var(--transition);
}

.footer-links a:hover {
  text-decoration-color: currentColor;
}

.footer-contact a {
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 1.5rem;
  padding-block: 1.2rem;
  border-top: 1px solid var(--line-light);
  color: var(--shell);
  font-size: var(--step--1);
}

/* Motion */
.js .reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 480ms ease, transform 480ms ease;
}

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

/* Responsive */
@media (min-width: 36rem) {
  .composer-fields,
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field-span-2 {
    grid-column: 1 / -1;
  }

  .route-grid,
  .programme-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-item:nth-child(odd),
  .programme-item:nth-child(odd) {
    padding-right: var(--space-md);
    border-right: 1px solid currentColor;
  }

  .route-item:nth-child(even),
  .programme-item:nth-child(even) {
    padding-left: var(--space-md);
  }
}

@media (min-width: 48rem) {
  .editorial-split,
  .manifesto,
  .salon-pair,
  .material-archive,
  .responsible-panel,
  .page-intro {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .editorial-split .media-frame,
  .salon-pair .media-frame,
  .material-archive .media-frame {
    grid-column: span 6;
  }

  .editorial-copy,
  .salon-copy,
  .material-copy {
    grid-column: span 6;
  }

  .editorial-split.reverse .media-frame {
    grid-column: 7 / -1;
    grid-row: 1;
  }

  .editorial-split.reverse .editorial-copy {
    grid-column: 1 / 7;
    grid-row: 1;
  }

  .manifesto h2,
  .responsible-panel h2,
  .page-intro h2 {
    grid-column: 1 / 7;
  }

  .manifesto-copy,
  .responsible-copy,
  .page-intro-copy {
    grid-column: 7 / -1;
  }

  .composer-grid {
    grid-template-columns: 0.8fr 2.2fr;
    align-items: end;
  }

  .composer-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
  }

  .composer-fields .button {
    width: 100%;
  }

  .room-strip {
    grid-template-columns: 5fr 7fr;
    min-height: 24rem;
  }

  .room-strip:nth-child(even) {
    grid-template-columns: 7fr 5fr;
  }

  .room-strip:nth-child(even) .room-strip-media {
    grid-column: 2;
    grid-row: 1;
  }

  .room-strip-media img {
    height: 100%;
  }

  .room-strip-copy {
    padding: var(--space-lg);
  }

  .ledger-row {
    grid-template-columns: 0.55fr 1.25fr 3.2fr;
    align-items: start;
  }

  .menu-ledger,
  .sequence,
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-course,
  .sequence-step {
    padding-inline: var(--space-md);
    border-right: 1px solid currentColor;
  }

  .menu-course:first-child,
  .sequence-step:first-child {
    padding-left: 0;
  }

  .menu-course:last-child,
  .sequence-step:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .route-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .route-item {
    padding-inline: var(--space-md);
    border-right: 1px solid currentColor;
  }

  .route-item:first-child {
    padding-left: 0;
  }

  .route-item:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .contact-layout {
    grid-template-columns: minmax(15rem, 0.7fr) minmax(0, 1.3fr);
  }

  .legal-layout {
    grid-template-columns: minmax(13rem, 0.45fr) minmax(0, 1.55fr);
  }

  .legal-nav-wrap {
    position: sticky;
    top: 2rem;
  }

  .next-chapter {
    grid-template-columns: 0.7fr 2fr auto;
    align-items: center;
  }
}

@media (min-width: 62rem) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.72fr) minmax(22rem, 0.88fr);
    min-height: calc(100svh - 8.15rem);
  }

  .composer-fields {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-media {
    min-height: 40rem;
    border-bottom-right-radius: 0;
    border-top-right-radius: 8rem;
  }

  .hero-copy {
    margin-left: -10vw;
    align-self: end;
    min-height: 70%;
    padding: var(--space-lg) var(--gutter);
    border-top-left-radius: 7rem;
  }

  .hero-copy::before {
    top: var(--space-lg);
  }

  .hero-index {
    position: absolute;
    z-index: 3;
    bottom: 1.5rem;
    left: var(--gutter);
    display: flex;
    gap: 1.2rem;
    color: var(--white);
    font-family: var(--label);
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .page-hero-grid {
    grid-template-columns: minmax(25rem, 0.82fr) minmax(0, 1.18fr);
    min-height: min(46rem, calc(100svh - 8rem));
  }

  .page-hero-copy {
    padding-left: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  }

  .page-hero-media {
    min-height: 36rem;
    border-top-left-radius: 9rem;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 0.8fr 0.9fr 1fr;
  }
}

@media (min-width: 90rem) {
  .hero-copy {
    margin-left: -7rem;
  }

  .hero-copy h1 {
    font-size: 5.4rem;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
