/* Tokens */
:root {
  --navy: #101d32;
  --navy-soft: #182944;
  --lagoon: #0e5960;
  --lagoon-deep: #083e45;
  --mist: #bfd4d0;
  --shell: #eee4d3;
  --chalk: #f8f4eb;
  --copper: #c45a3c;
  --copper-dark: #9c3e29;
  --plum: #5a344d;
  --ink: #17242f;
  --muted-ink: #48575f;
  --line-dark: rgba(23, 36, 47, 0.24);
  --line-light: rgba(248, 244, 235, 0.28);
  --display: Didot, "Bodoni 72", "Bodoni MT", "Iowan Old Style", Georgia, serif;
  --body: Optima, "Gill Sans", Candara, "Segoe UI", sans-serif;
  --utility: "Arial Narrow", "Avenir Next Condensed", "Roboto Condensed", Arial, sans-serif;
  --gutter: clamp(1.25rem, 4.4vw, 5.5rem);
  --section-space: clamp(5.25rem, 10vw, 10rem);
  --content: 94rem;
  --reading: 43rem;
  --radius-sm: 1rem;
  --radius-md: clamp(1.4rem, 3vw, 3.25rem);
  --shadow: 0 1.5rem 4rem rgba(7, 21, 35, 0.18);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7.5rem;
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--shell);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

main {
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--copper-dark);
}

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

button,
select {
  cursor: pointer;
}

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

figure {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: inherit;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.55rem, 8.2vw, 8.75rem);
  line-height: 0.84;
}

h2 {
  font-size: clamp(2.8rem, 6.2vw, 6.9rem);
  line-height: 0.89;
}

h3 {
  font-size: clamp(1.65rem, 3vw, 3.25rem);
  line-height: 1;
}

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

::selection {
  color: var(--chalk);
  background: var(--copper-dark);
}

:focus-visible {
  outline: 0.2rem solid #f29b68;
  outline-offset: 0.22rem;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  color: var(--chalk);
  background: var(--copper-dark);
  border-radius: 999px;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.visually-hidden-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.utility-bar {
  display: flex;
  min-height: 2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.36rem var(--gutter);
  color: rgba(248, 244, 235, 0.76);
  background: var(--navy);
  font-family: var(--utility);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--navy);
  background: rgba(238, 228, 211, 0.95);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(1.25rem);
}

.header-inner {
  display: grid;
  width: min(100%, 106rem);
  min-height: 5rem;
  margin: 0 auto;
  padding: 0 var(--gutter);
  grid-template-columns: minmax(9rem, 13rem) 1fr auto;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.5rem);
}

.site-header__inner {
  display: grid;
  width: min(100%, 106rem);
  max-width: 106rem;
  min-height: 5rem;
  margin: 0 auto;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
  grid-template-columns: minmax(9rem, 13rem) 1fr auto;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.5rem);
}

.brand-mark {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.brand-mark:hover {
  color: inherit;
}

.wordmark {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  gap: 0.55rem;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.wordmark__name {
  font-family: var(--display);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  letter-spacing: -0.035em;
}

.wordmark__hotel {
  padding-left: 0.7rem;
  border-left: 0.17rem solid var(--copper);
  font-family: var(--utility);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wordmark:hover {
  color: inherit;
}

.brand-monogram {
  display: inline-flex;
  min-width: 3.2rem;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50% 50% 50% 0;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: -0.04em;
}

.brand-location {
  padding-left: 0.75rem;
  border-left: 0.17rem solid var(--copper);
  font-family: var(--utility);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.55rem, 1.25vw, 1.35rem);
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: inherit;
  font-family: var(--utility);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.primary-nav a::after {
  position: absolute;
  right: 100%;
  bottom: 0.35rem;
  left: 0;
  height: 0.16rem;
  content: "";
  background: var(--copper);
  transition: right 180ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: inherit;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  right: 0;
}

.nav-toggle {
  display: none;
  min-width: 3.25rem;
  min-height: 3.25rem;
  padding: 0.5rem;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--utility);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-toggle i,
.nav-toggle i::before,
.nav-toggle i::after {
  display: block;
  width: 1rem;
  height: 1px;
  content: "";
  background: currentColor;
}

.nav-toggle i {
  position: relative;
  margin-left: 0.4rem;
}

.nav-toggle i::before {
  position: absolute;
  top: -0.28rem;
}

.nav-toggle i::after {
  position: absolute;
  top: 0.28rem;
}

/* Buttons and small type */
.button,
.btn-brand {
  display: inline-flex;
  min-height: 3.25rem;
  padding: 0.78rem 1.35rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  color: var(--chalk);
  background: var(--copper-dark);
  border: 1px solid var(--copper-dark);
  border-radius: 999px;
  font-family: var(--utility);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.btn-brand:hover {
  color: var(--chalk);
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-0.12rem);
}

.button--dark {
  color: var(--chalk);
  background: var(--navy);
  border-color: var(--navy);
}

.button--primary {
  color: var(--chalk);
  background: var(--copper-dark);
  border-color: var(--copper-dark);
}

.button--text {
  padding-right: 0.2rem;
  padding-left: 0.2rem;
  color: currentColor;
  background: transparent;
  border-color: transparent;
  border-radius: 0;
  box-shadow: inset 0 -1px currentColor;
}

.button--text:hover {
  color: currentColor;
  background: transparent;
  border-color: transparent;
  transform: translateX(0.15rem);
}

.button--dark:hover {
  background: var(--lagoon-deep);
  border-color: var(--lagoon-deep);
}

.button--light,
.button--outline-light {
  color: var(--chalk);
  background: transparent;
  border-color: rgba(248, 244, 235, 0.66);
}

.button--light:hover,
.button--outline-light:hover {
  color: var(--navy);
  background: var(--chalk);
  border-color: var(--chalk);
}

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

.button--outline:hover,
.button--ghost:hover {
  color: var(--chalk);
  background: var(--navy);
  border-color: var(--navy);
}

.button--small,
.header-cta {
  min-height: 2.8rem;
  padding: 0.65rem 1.1rem;
  font-size: 0.66rem;
}

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  font-family: var(--utility);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: transform 180ms ease;
}

.text-link:hover {
  color: inherit;
}

.text-link:hover span {
  transform: translate(0.15rem, 0.15rem);
}

.section-label,
.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--utility);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-label::before,
.eyebrow::before,
.kicker::before {
  width: 2.5rem;
  height: 0.15rem;
  content: "";
  background: var(--copper);
}

.section-label--key {
  text-transform: none;
}

.lede,
.intro,
.page-hero__lede {
  max-width: var(--reading);
  font-size: clamp(1.12rem, 1.7vw, 1.52rem);
  line-height: 1.52;
}

/* Hero */
.home-hero,
.hero-home,
.page-hero {
  position: relative;
  display: grid;
  min-height: min(52rem, calc(100svh - 7rem));
  color: var(--chalk);
  background: var(--navy);
  grid-template-columns: minmax(21rem, 0.78fr) minmax(0, 1.22fr);
  overflow: hidden;
}

.home-hero::before,
.hero-home::before,
.page-hero::before {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: clamp(1.25rem, 4.4vw, 5.5rem);
  width: 1px;
  content: "";
  background: rgba(196, 90, 60, 0.72);
  pointer-events: none;
}

.home-hero__copy,
.hero-copy,
.page-hero__copy,
.page-hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 38rem;
  padding: clamp(4.5rem, 10vw, 9rem) var(--gutter) clamp(3.5rem, 7vw, 6.5rem);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-soft) 72%, var(--lagoon-deep) 145%);
}

.home-hero h1,
.hero-home h1,
.page-hero h1 {
  max-width: 8.8ch;
  margin: 1.5rem 0 1.7rem;
}

.home-hero__actions,
.hero-actions,
.page-hero__actions {
  display: flex;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.home-hero__media,
.hero-media,
.page-hero__media,
.page-hero-media {
  position: relative;
  min-height: 38rem;
  overflow: hidden;
  border-radius: 0 0 0 clamp(4rem, 11vw, 11rem);
}

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

.page-hero__grid {
  display: grid;
  width: min(100%, 106rem);
  max-width: 106rem;
  min-height: inherit;
  margin: 0 auto;
  padding: 0;
  grid-column: 1 / -1;
  grid-template-columns: minmax(21rem, 0.78fr) minmax(0, 1.22fr);
}

.home-hero__media img,
.hero-media img,
.page-hero__media img,
.page-hero-media img {
  object-fit: cover;
}

.hero-coordinate,
.image-caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: calc(100% - 2rem);
  padding: 0.55rem 0.75rem;
  color: var(--navy);
  background: rgba(248, 244, 235, 0.92);
  border-radius: 999px;
  font-family: var(--utility);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Booking ribbon */
.booking-ribbon,
.booking-bar,
.availability-bar {
  position: relative;
  z-index: 4;
  padding: 1.3rem var(--gutter) 1.55rem;
  color: var(--chalk);
  background: var(--copper-dark);
}

.booking-ribbon form,
.booking-bar form,
.availability-bar form {
  display: grid;
  width: min(100%, var(--content));
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(8.5rem, 1fr)) minmax(7.5rem, 0.8fr) minmax(9rem, 1fr) auto;
  align-items: end;
  gap: 0.8rem;
}

.booking-ribbon .field label,
.booking-bar .field label,
.availability-bar .field label {
  color: rgba(248, 244, 235, 0.88);
}

.booking-ribbon input,
.booking-ribbon select,
.booking-bar input,
.booking-bar select,
.availability-bar input,
.availability-bar select {
  color: var(--chalk);
  background-color: rgba(16, 29, 50, 0.14);
  border-color: rgba(248, 244, 235, 0.64);
}

.booking-ribbon option,
.booking-bar option,
.availability-bar option {
  color: var(--ink);
}

.booking-note {
  grid-column: 1 / -1;
  margin: 0.1rem 0 0;
  color: rgba(248, 244, 235, 0.8);
  font-size: 0.82rem;
}

/* Sections */
.section {
  position: relative;
  padding: var(--section-space) var(--gutter);
  overflow: hidden;
}

.section-inner,
.container-wide,
.wrap {
  position: relative;
  width: min(100%, var(--content));
  margin: 0 auto;
}

.section .container-xl {
  max-width: var(--content);
}

.section--shell,
.section.shell {
  background: var(--shell);
}

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

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

.section--navy,
.section.navy,
.section.dark {
  color: var(--chalk);
  background: var(--navy);
}

.section--lagoon,
.section.lagoon,
.section.teal {
  color: var(--chalk);
  background: var(--lagoon);
}

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

.section--copper,
.section.copper {
  color: var(--chalk);
  background: var(--copper-dark);
}

.section-heading {
  display: grid;
  margin-bottom: clamp(3rem, 7vw, 6.5rem);
  grid-template-columns: minmax(8rem, 12rem) minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, 7vw, 8rem);
}

.section-heading > div {
  max-width: 68rem;
}

.section-heading h2 {
  margin-bottom: 1.5rem;
}

.section-heading--compact {
  margin-bottom: 0;
}

h2.section-heading,
h3.section-heading {
  display: block;
  margin: 1.15rem 0 1.55rem;
}

.section-intro {
  max-width: 67rem;
  margin-bottom: clamp(2.75rem, 6vw, 5.5rem);
}

.section-intro > p:last-child,
.section-lede {
  max-width: var(--reading);
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
}

.split,
.split-section,
.photo-split,
.story-grid,
.feature-split {
  display: grid;
  min-height: 38rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(19rem, 0.95fr);
}

.section .split {
  min-height: 0;
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
}

.split--reverse,
.photo-split.reverse {
  grid-template-columns: minmax(19rem, 0.95fr) minmax(0, 1.05fr);
}

.split--reverse > .image-frame,
.photo-split.reverse > .image-frame,
.photo-split.reverse > figure {
  order: 2;
}

.split__copy,
.split-copy,
.story-copy,
.feature-copy {
  display: flex;
  padding: clamp(3.5rem, 8vw, 8.5rem);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: var(--ink);
  background: var(--chalk);
}

.split__copy h2,
.split-copy h2,
.story-copy h2,
.feature-copy h2 {
  margin: 1.2rem 0 1.5rem;
}

.split__copy .button,
.split-copy .button,
.story-copy .button,
.feature-copy .button {
  margin-top: 1.25rem;
}

.image-frame,
.split__media,
.split-media,
.story-media,
.feature-media {
  position: relative;
  min-height: 28rem;
  overflow: hidden;
}

.image-frame picture,
.image-frame img,
.split__media picture,
.split__media img,
.split-media picture,
.split-media img,
.story-media picture,
.story-media img,
.feature-media picture,
.feature-media img {
  width: 100%;
  height: 100%;
}

.image-frame img,
.split__media img,
.split-media img,
.story-media img,
.feature-media img {
  object-fit: cover;
}

.image-frame--arched,
.arch-left {
  border-radius: 0 0 var(--radius-md) 0;
}

.image-frame--reverse,
.arch-right {
  border-radius: 0 0 0 var(--radius-md);
}

.image-frame--portrait {
  min-height: 42rem;
}

/* Editorial systems */
.editorial-list,
.chapter-list,
.ledger,
.service-ledger,
.room-ledger,
.menu-list,
.agenda-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid currentColor;
  list-style: none;
}

.editorial-list > li,
.chapter-list > li,
.chapter-row,
.ledger > li,
.service-ledger > li,
.room-ledger > li,
.menu-list > li,
.agenda-list > li,
.agenda-row,
.menu-row {
  display: grid;
  min-height: 7rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid currentColor;
  grid-template-columns: minmax(3rem, 0.35fr) minmax(10rem, 0.85fr) minmax(15rem, 1.4fr) auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 3.5rem);
}

.editorial-list > article {
  padding: 1.55rem 0;
  border-bottom: 1px solid currentColor;
}

.editorial-list > article:first-child {
  border-top: 1px solid currentColor;
}

.editorial-list > article h3 {
  margin: 0.55rem 0 0.8rem;
}

.editorial-list > article p:last-child {
  margin-bottom: 0;
}

.editorial-list--grid {
  display: grid;
  border-top: 1px solid currentColor;
  grid-template-columns: repeat(3, 1fr);
}

.editorial-list--grid > article {
  min-height: 15rem;
  padding: 1.8rem;
  border-top: 0;
  border-right: 1px solid currentColor;
}

.editorial-list--grid > article:nth-child(3n) {
  border-right: 0;
}

.editorial-list--compact > li {
  min-height: 0;
  padding: 1rem 0;
  grid-template-columns: minmax(7rem, 0.5fr) minmax(0, 1fr);
}

.editorial-list--compact strong {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.3vw, 2.15rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.editorial-list--stacked > article,
.editorial-list--stacked > li {
  display: grid;
  grid-template-columns: 2.5rem minmax(8rem, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: 1rem 1.5rem;
}

.editorial-list .number,
.chapter-list .number,
.chapter-row .num,
.ledger-number,
.agenda-list time,
.agenda-row time {
  font-family: var(--utility);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.editorial-list h3,
.chapter-list h3,
.chapter-row strong,
.ledger h3,
.service-ledger h3,
.room-ledger h3,
.menu-list h3,
.agenda-list h3,
.agenda-row strong,
.menu-row strong {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.7vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.editorial-list p,
.chapter-list p,
.chapter-row p,
.ledger p,
.service-ledger p,
.room-ledger p,
.menu-list p,
.agenda-list p,
.agenda-row p,
.menu-row p {
  margin: 0;
}

.editorial-grid,
.feature-grid,
.amenities-grid,
.gallery-grid,
.three-column,
.editorial-columns {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 3rem);
}

.editorial-grid > *,
.feature-grid > *,
.amenities-grid > *,
.three-column > *,
.editorial-columns > * {
  padding-top: 1.5rem;
  border-top: 1px solid currentColor;
  grid-column: span 4;
}

.editorial-grid > :first-child,
.feature-grid > :first-child,
.amenities-grid > :first-child {
  grid-column: span 5;
}

.editorial-grid > :nth-child(2),
.feature-grid > :nth-child(2),
.amenities-grid > :nth-child(2) {
  grid-column: span 3;
}

.editorial-grid h3,
.feature-grid h3,
.amenities-grid h3,
.three-column h3,
.editorial-columns h3 {
  margin-bottom: 1rem;
}

.folio-number,
.giant-number,
.display-number {
  display: block;
  color: rgba(196, 90, 60, 0.86);
  font-family: var(--display);
  font-size: clamp(5rem, 13vw, 13rem);
  letter-spacing: -0.08em;
  line-height: 0.72;
}

.stat-strip,
.feature-band,
.facts-strip {
  display: grid;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  grid-template-columns: repeat(4, 1fr);
}

.stat,
.feature-band > *,
.facts-strip > * {
  min-height: 10rem;
  padding: 1.7rem;
  border-right: 1px solid currentColor;
}

.stat:last-child,
.feature-band > :last-child,
.facts-strip > :last-child {
  border-right: 0;
}

.stat strong,
.feature-band b,
.facts-strip b {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5.3vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.stat span,
.feature-band span,
.facts-strip span {
  font-family: var(--utility);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.timeline,
.evening-timeline,
.ritual-timeline,
.process-list {
  position: relative;
  margin: 0;
  padding: 0 0 0 2rem;
  border-left: 1px solid currentColor;
  list-style: none;
}

.timeline > li,
.evening-timeline > li,
.ritual-timeline > li,
.process-list > li {
  position: relative;
  display: grid;
  padding: 0 0 2.7rem 1.4rem;
  grid-template-columns: minmax(3.5rem, 0.35fr) minmax(0, 1fr);
  gap: 1.25rem;
}

.timeline > li h3,
.timeline > li p {
  grid-column: 2;
}

.timeline--three,
.timeline--four {
  display: grid;
  margin: 0 0 2.5rem;
  padding: 0;
  border-top: 1px solid currentColor;
  border-left: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.timeline--three .timeline__item,
.timeline--four .timeline__item {
  position: relative;
  display: block;
  min-height: 16rem;
  padding: 1.8rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.timeline--three .timeline__item:last-child,
.timeline--four .timeline__item:last-child {
  border-right: 0;
}

.timeline__item > span {
  display: block;
  margin-bottom: 2.6rem;
  font-family: var(--utility);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.timeline__item h3 {
  margin-bottom: 0.8rem;
}

.timeline > li::before,
.evening-timeline > li::before,
.ritual-timeline > li::before,
.process-list > li::before {
  position: absolute;
  top: 0.35rem;
  left: -2.43rem;
  width: 0.8rem;
  height: 0.8rem;
  content: "";
  background: var(--copper);
  border-radius: 50%;
}

.timeline time,
.evening-timeline time,
.ritual-timeline time,
.process-list > li > span {
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 1;
}

.timeline h3,
.evening-timeline h3,
.ritual-timeline h3,
.process-list h3 {
  margin-bottom: 0.7rem;
}

.timeline p,
.evening-timeline p,
.ritual-timeline p,
.process-list p {
  margin: 0;
}

.horizontal-rail,
.room-rail,
.image-rail {
  display: flex;
  margin-right: calc(var(--gutter) * -1);
  margin-left: calc(var(--gutter) * -1);
  overflow-x: auto;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--copper) transparent;
}

.horizontal-rail > *,
.room-rail > *,
.image-rail > * {
  min-width: min(45rem, 84vw);
  border-right: 1px solid currentColor;
  scroll-snap-align: start;
}

.responsible-panel,
.responsible-band,
.responsible-gaming {
  display: grid;
  padding: clamp(2rem, 5vw, 5rem);
  color: var(--navy);
  background: var(--mist);
  border-top: 0.35rem solid var(--copper);
  grid-template-columns: minmax(9rem, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(2rem, 6vw, 7rem);
}

.responsible-panel ul,
.responsible-band ul,
.responsible-gaming ul {
  display: grid;
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid currentColor;
  list-style: none;
  grid-template-columns: repeat(2, 1fr);
}

.responsible-panel li,
.responsible-band li,
.responsible-gaming li {
  padding: 1rem 1rem 1rem 0;
  border-bottom: 1px solid currentColor;
}

.section.responsible-gaming {
  display: block;
  padding: var(--section-space) var(--gutter);
  color: var(--navy);
  background: var(--mist);
  border-top: 0.35rem solid var(--copper);
}

.responsible-gaming__grid {
  display: grid;
  grid-template-columns: minmax(13rem, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: clamp(2rem, 7vw, 8rem);
}

.responsible-gaming__grid > div:last-child {
  max-width: 48rem;
  padding-top: 0.5rem;
}

.route-grid,
.destination-grid,
.map-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid currentColor;
}

.route-grid > *,
.destination-grid > *,
.map-grid > * {
  min-height: 17rem;
  padding: 2rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.route-grid > :last-child,
.destination-grid > :last-child,
.map-grid > :last-child {
  border-right: 0;
}

.route-grid h3,
.destination-grid h3,
.map-grid h3 {
  margin: 2.2rem 0 1rem;
}

.quote-band,
.manifesto,
.statement {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.8fr);
  align-items: end;
  gap: clamp(2.5rem, 8vw, 9rem);
}

.quote-band blockquote,
.manifesto blockquote,
.statement blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 7vw, 8.25rem);
  letter-spacing: -0.055em;
  line-height: 0.87;
}

.contact-cta,
.closing-cta,
.cta-band {
  display: grid;
  padding: clamp(3.5rem, 8vw, 7.5rem) var(--gutter);
  color: var(--navy);
  background: var(--mist);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
}

.contact-cta h2,
.closing-cta h2,
.cta-band h2 {
  max-width: 14ch;
  margin: 0;
}

/* Tables */
.table-scroll,
.comparison-scroll {
  overflow-x: auto;
  border-top: 1px solid currentColor;
}

.comparison-table,
.room-table,
.compare {
  width: 100%;
  min-width: 44rem;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td,
.room-table th,
.room-table td,
.compare th,
.compare td {
  padding: 1.15rem 1rem;
  border-bottom: 1px solid currentColor;
  text-align: left;
  vertical-align: top;
}

.comparison-table th,
.room-table th,
.compare th {
  font-family: var(--utility);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.comparison-table td:first-child,
.room-table td:first-child,
.compare td:first-child {
  font-family: var(--display);
  font-size: 1.5rem;
}

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

.room-ledger .table {
  min-width: 48rem;
  margin: 0;
  color: inherit;
  border-color: currentColor;
}

.room-ledger .table th,
.room-ledger .table td {
  padding: 1.25rem 1rem;
  background: transparent;
  border-bottom: 1px solid currentColor;
}

.room-ledger .table thead th {
  font-family: var(--utility);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.room-ledger .table tbody th {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.65fr);
  gap: 1rem;
}

.photo-mosaic > :first-child {
  grid-row: span 2;
}

.section--image-chapter {
  color: var(--chalk);
  background: linear-gradient(135deg, var(--navy-soft), var(--plum));
}

/* Contact and forms */
.forms-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.request-form {
  padding: clamp(1.4rem, 3.5vw, 3rem);
  background: var(--chalk);
  border-top: 0.35rem solid var(--copper);
  box-shadow: var(--shadow);
}

.form-heading {
  display: grid;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 1rem;
}

.form-heading h3 {
  margin-bottom: 0.6rem;
}

.form-heading p {
  color: var(--muted-ink);
}

.form-number {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  color: var(--chalk);
  background: var(--copper-dark);
  border-radius: 50%;
  font-family: var(--utility);
  font-weight: 800;
}

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

.field {
  min-width: 0;
}

.field--wide,
.form-grid .wide {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--utility);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field label span {
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: none;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.72rem 0.85rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(23, 36, 47, 0.42);
  border-radius: 0.65rem;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--copper-dark);
  outline: 0.2rem solid rgba(196, 90, 60, 0.26);
  outline-offset: 0.08rem;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.7rem;
  font-size: 0.86rem;
  line-height: 1.5;
}

.consent input {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.15rem;
  accent-color: var(--copper-dark);
}

.form-actions {
  display: flex;
  min-height: 3.25rem;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
}

.form-status {
  min-height: 1.25rem;
  margin: 0;
  color: var(--muted-ink);
  font-size: 0.82rem;
}

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

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.direct-contact {
  max-width: 72rem;
}

.direct-contact h2 {
  margin: 1.2rem 0 1.4rem;
}

.direct-contact > p:not(.fine-print) {
  max-width: 52rem;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
}

.direct-contact a {
  font-family: var(--display);
}

.fine-print {
  max-width: 48rem;
  margin-top: 1.5rem;
  color: rgba(248, 244, 235, 0.82);
  font-size: 0.9rem;
}

/* Legal */
.legal-page {
  background: var(--chalk);
}

.legal-hero {
  min-height: 34rem;
  padding: clamp(5rem, 11vw, 10rem) var(--gutter);
  color: var(--chalk);
  background: linear-gradient(120deg, var(--lagoon-deep), var(--navy));
}

.legal-hero--plum {
  background: linear-gradient(120deg, var(--plum), var(--navy));
}

.legal-hero > div {
  width: min(100%, var(--content));
  margin: 0 auto;
}

.legal-hero h1 {
  max-width: 9ch;
  margin: 1.4rem 0 1.6rem;
}

.legal-hero p {
  max-width: 42rem;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
}

.legal-layout {
  display: grid;
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: var(--section-space) var(--gutter);
  grid-template-columns: minmax(10rem, 0.35fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 9rem);
}

.legal-index {
  position: sticky;
  top: 7rem;
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.legal-index a {
  min-height: 2.9rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--utility);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.legal-content {
  max-width: 54rem;
}

.legal-content section {
  position: relative;
  padding: 0 0 3.4rem 4.5rem;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 3.4rem;
}

.legal-content section:last-child {
  margin-bottom: 0;
}

.legal-number {
  position: absolute;
  top: 0.45rem;
  left: 0;
  color: var(--copper-dark);
  font-family: var(--utility);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.legal-content h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 4.2vw, 4.5rem);
}

.legal-content p,
.legal-content li {
  max-width: 46rem;
}

/* Footer */
.site-footer {
  padding: clamp(4rem, 8vw, 7rem) var(--gutter) 1.8rem;
  color: var(--chalk);
  background: #091625;
}

.footer-grid {
  display: grid;
  width: min(100%, var(--content));
  margin: 0 auto;
  grid-template-columns: minmax(16rem, 1.25fr) repeat(3, minmax(9rem, 0.65fr));
  gap: clamp(2rem, 5vw, 5.5rem);
}

.footer-brand .brand-monogram {
  width: 5rem;
  height: 5rem;
  margin-bottom: 1.5rem;
  border-color: var(--mist);
  color: var(--mist);
  font-size: 1.55rem;
}

.footer-brand p {
  max-width: 30rem;
  color: rgba(248, 244, 235, 0.66);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-links strong {
  margin-bottom: 0.55rem;
  color: var(--mist);
  font-family: var(--utility);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(248, 244, 235, 0.76);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a[aria-current="page"] {
  color: var(--chalk);
}

.site-footer .wordmark {
  margin-bottom: 1rem;
  color: var(--mist);
}

.site-footer .footer-grid h2 {
  margin: 0 0 0.9rem;
  color: var(--mist);
  font-family: var(--utility);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer .footer-grid nav {
  display: grid;
  align-content: start;
  gap: 0.5rem;
}

.site-footer .footer-grid ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
  list-style: none;
}

.site-footer .footer-grid nav a,
.site-footer .footer-grid > div:last-child a {
  color: rgba(248, 244, 235, 0.76);
  text-decoration: none;
}

.site-footer .footer-grid nav a:hover,
.site-footer .footer-grid nav a[aria-current="page"],
.site-footer .footer-grid > div:last-child a:hover {
  color: var(--chalk);
}

.site-footer__bottom {
  display: flex;
  width: min(100%, var(--content));
  max-width: var(--content);
  margin: 4rem auto 0;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line-light);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(248, 244, 235, 0.55);
  font-family: var(--utility);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__bottom a {
  color: inherit;
}

.footer-bottom {
  display: flex;
  width: min(100%, var(--content));
  margin: 4rem auto 0;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line-light);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(248, 244, 235, 0.55);
  font-family: var(--utility);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Reveal enhancement: content remains visible unless JavaScript activates it. */
.reveal {
  opacity: 1;
  transform: none;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 75rem) {
  .header-inner {
    grid-template-columns: minmax(9rem, 1fr) auto auto;
  }

  .site-header__inner {
    grid-template-columns: minmax(9rem, 1fr) auto auto;
  }

  .primary-nav {
    gap: 0.7rem;
  }

  .primary-nav a {
    font-size: 0.62rem;
  }

  .home-hero,
  .hero-home,
  .page-hero {
    grid-template-columns: minmax(20rem, 0.9fr) minmax(0, 1.1fr);
  }

  .page-hero__grid {
    grid-template-columns: minmax(20rem, 0.9fr) minmax(0, 1.1fr);
  }

  .booking-ribbon form,
  .booking-bar form,
  .availability-bar form {
    grid-template-columns: repeat(2, minmax(10rem, 1fr)) auto;
  }

  .booking-ribbon form > :nth-last-child(2),
  .booking-bar form > :nth-last-child(2),
  .availability-bar form > :nth-last-child(2) {
    grid-column: span 1;
  }

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

  .route-grid > :nth-child(2n),
  .destination-grid > :nth-child(2n),
  .map-grid > :nth-child(2n) {
    border-right: 0;
  }

  .footer-grid {
    grid-template-columns: minmax(18rem, 1.35fr) repeat(3, minmax(8rem, 0.65fr));
    gap: 2rem;
  }
}

@media (max-width: 68.75rem) {
  .site-header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .header-inner {
    min-height: 4.5rem;
    grid-template-columns: 1fr auto auto;
  }

  .site-header__inner {
    min-height: 4.5rem;
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .primary-nav {
    position: fixed;
    z-index: 99;
    top: 4.5rem;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    padding: 1rem var(--gutter) 3rem;
    align-content: start;
    justify-content: stretch;
    gap: 0;
    color: var(--chalk);
    background: rgba(16, 29, 50, 0.985);
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-0.75rem);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  body:has(.utility-bar) .primary-nav {
    top: 6.5rem;
  }

  .site-header.nav-open .primary-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav a {
    min-height: 3.6rem;
    border-bottom: 1px solid var(--line-light);
    font-size: 0.78rem;
  }

  .primary-nav a::after {
    bottom: -1px;
  }

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

  .process-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-index {
    position: static;
    grid-template-columns: repeat(3, 1fr);
  }

  .legal-index a {
    padding-right: 0.75rem;
  }

  .footer-grid {
    grid-template-columns: 1.25fr repeat(2, 0.75fr);
  }

  .timeline--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline--four .timeline__item:nth-child(2n) {
    border-right: 0;
  }

  .footer-grid > :last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 48rem) {
  :root {
    --gutter: 1.35rem;
    --section-space: clamp(4.5rem, 20vw, 7rem);
  }

  .legal-hero h1 {
    max-width: 12ch;
    font-size: clamp(2.5rem, 12vw, 3.4rem);
    hyphens: auto;
    overflow-wrap: anywhere;
  }

  html {
    scroll-padding-top: 5.5rem;
  }

  .utility-bar {
    min-height: 1.8rem;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
  }

  .utility-bar span:last-child {
    display: none;
  }

  .header-inner {
    min-height: 4.25rem;
  }

  .site-header__inner {
    min-height: 4.25rem;
    padding-right: var(--gutter);
    padding-left: var(--gutter);
  }

  .brand-monogram {
    min-width: 2.8rem;
    min-height: 2.8rem;
  }

  .brand-location,
  .header-cta {
    display: none;
  }

  .wordmark {
    gap: 0.38rem;
  }

  .wordmark__name {
    font-size: 0.98rem;
  }

  .wordmark__hotel {
    padding-left: 0.42rem;
    font-size: 0.5rem;
    letter-spacing: 0.1em;
  }

  .primary-nav {
    top: 4.25rem;
  }

  body:has(.utility-bar) .primary-nav {
    top: 6.05rem;
  }

  .home-hero,
  .hero-home,
  .page-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .home-hero::before,
  .hero-home::before,
  .page-hero::before {
    left: var(--gutter);
  }

  .home-hero__copy,
  .hero-copy,
  .page-hero__copy,
  .page-hero-copy {
    min-height: 34rem;
    padding-top: 5.5rem;
    padding-bottom: 4rem;
  }

  .home-hero__media,
  .hero-media,
  .page-hero__media,
  .page-hero-media {
    min-height: 29rem;
    border-radius: 0 0 0 4rem;
  }

  .page-hero__grid {
    grid-template-columns: 1fr;
  }

  .booking-ribbon,
  .booking-bar,
  .availability-bar {
    padding-top: 1.6rem;
    padding-bottom: 1.8rem;
  }

  .booking-ribbon form,
  .booking-bar form,
  .availability-bar form {
    grid-template-columns: 1fr;
  }

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

  .split,
  .split-section,
  .photo-split,
  .photo-split.reverse,
  .story-grid,
  .feature-split,
  .split--reverse {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .split--reverse > .image-frame,
  .photo-split.reverse > .image-frame,
  .photo-split.reverse > figure {
    order: 0;
  }

  .split__copy,
  .split-copy,
  .story-copy,
  .feature-copy {
    padding: 4.5rem var(--gutter);
  }

  .image-frame,
  .split__media,
  .split-media,
  .story-media,
  .feature-media {
    min-height: 28rem;
  }

  .editorial-list > li,
  .chapter-list > li,
  .chapter-row,
  .ledger > li,
  .service-ledger > li,
  .room-ledger > li,
  .menu-list > li,
  .agenda-list > li,
  .agenda-row,
  .menu-row {
    grid-template-columns: 2.5rem 1fr;
    gap: 0.8rem 1rem;
  }

  .editorial-list p,
  .chapter-list p,
  .chapter-row p,
  .ledger p,
  .service-ledger p,
  .room-ledger p,
  .menu-list p,
  .agenda-list p,
  .agenda-row p,
  .menu-row p {
    grid-column: 2;
  }

  .editorial-grid > *,
  .feature-grid > *,
  .amenities-grid > *,
  .three-column > *,
  .editorial-columns > *,
  .editorial-grid > :first-child,
  .feature-grid > :first-child,
  .amenities-grid > :first-child,
  .editorial-grid > :nth-child(2),
  .feature-grid > :nth-child(2),
  .amenities-grid > :nth-child(2) {
    grid-column: 1 / -1;
  }

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

  .editorial-list--grid > article {
    min-height: 0;
    border-right: 0;
  }

  .editorial-list--stacked > article,
  .editorial-list--stacked > li {
    grid-template-columns: 2.5rem 1fr;
  }

  .editorial-list--stacked > article p:last-child,
  .editorial-list--stacked > li p:last-child {
    grid-column: 2;
  }

  .stat-strip,
  .feature-band,
  .facts-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(2n),
  .feature-band > :nth-child(2n),
  .facts-strip > :nth-child(2n) {
    border-right: 0;
  }

  .stat:nth-child(-n + 2),
  .feature-band > :nth-child(-n + 2),
  .facts-strip > :nth-child(-n + 2) {
    border-bottom: 1px solid currentColor;
  }

  .responsible-panel,
  .responsible-band,
  .responsible-gaming,
  .quote-band,
  .manifesto,
  .statement {
    grid-template-columns: 1fr;
  }

  .responsible-gaming__grid {
    grid-template-columns: 1fr;
  }

  .timeline--three,
  .timeline--four {
    grid-template-columns: 1fr;
  }

  .timeline--three .timeline__item,
  .timeline--four .timeline__item {
    min-height: 0;
    border-right: 0;
  }

  .photo-mosaic {
    grid-template-columns: 1fr;
  }

  .photo-mosaic > :first-child {
    grid-row: auto;
  }

  .responsible-panel ul,
  .responsible-band ul,
  .responsible-gaming ul {
    grid-template-columns: 1fr;
  }

  .route-grid,
  .destination-grid,
  .map-grid {
    grid-template-columns: 1fr;
  }

  .route-grid > *,
  .destination-grid > *,
  .map-grid > * {
    min-height: 0;
    border-right: 0;
  }

  .contact-cta,
  .closing-cta,
  .cta-band {
    grid-template-columns: 1fr;
  }

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

  .field--wide,
  .form-grid .wide {
    grid-column: 1;
  }

  .legal-index {
    grid-template-columns: 1fr 1fr;
  }

  .legal-content section {
    padding-left: 0;
  }

  .legal-number {
    position: static;
    display: inline-block;
    margin-bottom: 0.75rem;
  }

  .footer-grid,
  .footer-grid > :last-child {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 23.5rem) {
  h1 {
    font-size: clamp(3.1rem, 17vw, 4rem);
  }

  h2 {
    font-size: clamp(2.55rem, 14vw, 3.6rem);
  }

  .nav-toggle span:first-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .nav-toggle i {
    margin-left: 0;
  }

  .stat-strip,
  .feature-band,
  .facts-strip {
    grid-template-columns: 1fr;
  }

  .stat,
  .feature-band > *,
  .facts-strip > * {
    border-right: 0;
    border-bottom: 1px solid currentColor;
  }

  .legal-index {
    grid-template-columns: 1fr;
  }
}

@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;
  }

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