:root {
  --ink: #102b3a;
  --ink-soft: #1d3b49;
  --cobalt: #1746d1;
  --cobalt-dark: #10328f;
  --clay: #963528;
  --clay-dark: #72251d;
  --clay-field: #de8c72;
  --foam: #b9d7cc;
  --butter: #f2d982;
  --oyster: #f3eee4;
  --paper: #fffaf2;
  --white: #ffffff;
  --muted: #5a6b70;
  --line: rgba(16, 43, 58, 0.2);
  --line-light: rgba(255, 255, 255, 0.22);
  --shadow: 0 1.25rem 4rem rgba(7, 26, 37, 0.16);
  --display: "Bodoni 72", Didot, "Iowan Old Style", Georgia, serif;
  --body: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --condensed: "Arial Narrow", "Avenir Next Condensed", sans-serif;
  --max: 88rem;
  --pad: clamp(1.1rem, 4vw, 4rem);
  --section: clamp(4.5rem, 10vw, 9rem);
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a,
input,
select,
textarea,
summary {
  outline-offset: 0.25rem;
}

:focus-visible {
  outline: 0.18rem solid transparent;
  outline-offset: 0.25rem;
  box-shadow: 0 0 0 0.16rem var(--paper), 0 0 0 0.38rem var(--cobalt-dark);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  translate: 0 -200%;
  padding: 0.75rem 1rem;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  translate: 0;
}

.site-header {
  position: relative;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.75rem;
  min-height: 4.75rem;
  padding: 0.75rem var(--pad);
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid var(--line-light);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  text-decoration: none;
  font-family: var(--display);
  font-size: clamp(1.5rem, 6vw, 2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.brand::before {
  content: "";
  width: 0.72rem;
  height: 2.1rem;
  background: linear-gradient(var(--clay) 0 36%, var(--butter) 36% 64%, var(--cobalt) 64%);
  border-radius: 999px;
  transform: skewY(-18deg);
}

.brand span {
  display: block;
  margin-top: 0.3rem;
  font-family: var(--condensed);
  font-size: 0.57rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  min-height: 3rem;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  width: 1.15rem;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, translate 180ms ease;
}

.nav-toggle::before {
  translate: 0 -0.25rem;
}

.nav-toggle::after {
  translate: 0 0.25rem;
}

.nav-toggle[aria-expanded="true"]::before {
  translate: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  translate: 0;
  transform: rotate(-45deg);
}

.no-js .nav-toggle {
  display: none;
}

.site-nav {
  grid-column: 1 / -1;
}

.js .site-nav {
  position: fixed;
  inset: 4.75rem 0 0;
  display: none;
  overflow-y: auto;
  padding: 2.25rem var(--pad) 4rem;
  background: var(--ink);
}

.js .site-nav[data-open="true"] {
  display: block;
}

.nav-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.25rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line-light);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 650;
}

.nav-list a::after {
  content: "↗";
  color: var(--foam);
}

.nav-list a[aria-current="page"] {
  color: var(--butter);
}

.site-header .header-action {
  display: none;
}

main {
  min-height: 70vh;
}

.shell {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--pad);
}

.narrow {
  width: min(100%, 58rem);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  font-family: var(--condensed);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 0.18rem;
  background: currentColor;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3.2rem, 13vw, 8.8rem);
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.6rem, 8vw, 6.2rem);
}

h3 {
  margin-bottom: 0.7rem;
  font-family: var(--body);
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  line-height: 1.25;
}

.lede {
  max-width: 46rem;
  font-size: clamp(1.1rem, 2.4vw, 1.42rem);
  line-height: 1.55;
}

.micro {
  font-size: 0.83rem;
  line-height: 1.5;
}

.btn,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  font-weight: 800;
  line-height: 1.2;
}

.btn {
  gap: 0.6rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--ink);
  border-radius: 0 1rem 0 1rem;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.btn::after {
  content: "→";
  font-size: 1.1rem;
}

.btn:hover {
  transform: translateY(-0.12rem);
  background: var(--cobalt);
  border-color: var(--cobalt);
}

.btn-light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

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

.text-link {
  justify-content: flex-start;
  gap: 0.4rem;
  text-decoration: underline;
}

.text-link::after {
  content: "↗";
}

.hero {
  position: relative;
  display: grid;
  min-height: min(54rem, calc(100svh - 4.75rem));
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

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

.hero img {
  object-fit: cover;
  object-position: 65% center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(4, 21, 31, 0.93) 5%, rgba(4, 21, 31, 0.58) 49%, rgba(4, 21, 31, 0.08) 78%), linear-gradient(0deg, rgba(4, 21, 31, 0.78), transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: clamp(5rem, 14vw, 10rem) var(--pad) clamp(8rem, 15vw, 10rem);
}

.hero h1 {
  max-width: 7.7ch;
  margin-bottom: 1.5rem;
}

.hero .lede {
  max-width: 35rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-index {
  position: absolute;
  z-index: 2;
  right: var(--pad);
  bottom: 1.4rem;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--condensed);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: clamp(32rem, 72svh, 48rem);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

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

.page-hero img {
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 29, 40, 0.9), rgba(8, 29, 40, 0.28) 72%), linear-gradient(0deg, rgba(8, 29, 40, 0.82), transparent 50%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  padding-block: clamp(5rem, 14vw, 9rem) clamp(4rem, 9vw, 7rem);
}

.page-hero h1 {
  max-width: 10ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3.2rem, 11vw, 7.8rem);
}

.page-hero .lede {
  max-width: 38rem;
}

.booking-dock {
  position: relative;
  z-index: 5;
  width: calc(100% - 2 * var(--pad));
  max-width: var(--max);
  margin: -5.3rem auto 0;
  padding: 1.15rem;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.booking-dock h2 {
  margin-bottom: 1rem;
  font-family: var(--body);
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: 0;
}

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

.field {
  display: grid;
  gap: 0.35rem;
}

.field label,
.field .label {
  font-family: var(--condensed);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.72rem 0.8rem;
  border: 1px solid #6a7880;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
}

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

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #a21d1d;
  box-shadow: inset 0 0 0 1px #a21d1d;
}

.field-error {
  min-height: 1.25rem;
  margin: 0;
  color: #8e1d1d;
  font-size: 0.82rem;
  font-weight: 700;
}

.form-status {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-left: 0.25rem solid var(--cobalt);
  background: var(--foam);
  font-weight: 650;
}

.section {
  padding-block: var(--section);
}

.section-tight {
  padding-block: clamp(3rem, 7vw, 5.5rem);
}

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

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

.section-clay {
  background: var(--clay-field);
  color: #1f2222;
}

.section-clay .chapter-no,
.copy-panel.clay .chapter-no {
  color: var(--ink);
}

.section-foam {
  background: var(--foam);
}

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

.section-ink .lede,
.section-cobalt .lede {
  color: rgba(255, 255, 255, 0.86);
}

.chapter {
  display: grid;
  gap: 2.5rem;
}

.chapter-heading {
  max-width: 58rem;
}

.chapter-no {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--clay);
  font-family: var(--condensed);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-ink .chapter-no,
.section-cobalt .chapter-no {
  color: var(--butter);
}

.split {
  display: grid;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.split-media {
  position: relative;
}

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

.split-media img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 0 3.5rem 0 3.5rem;
}

.split-media::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 42%;
  height: 48%;
  right: -0.75rem;
  bottom: -0.75rem;
  background: var(--clay);
}

.split-copy {
  max-width: 39rem;
}

.split-copy p:last-of-type {
  margin-bottom: 1.8rem;
}

.editorial-pair {
  display: grid;
  gap: 1rem;
}

.editorial-pair > * {
  min-width: 0;
}

.image-panel {
  position: relative;
  min-height: 25rem;
  overflow: hidden;
}

.image-panel picture,
.image-panel img {
  width: 100%;
  height: 100%;
}

.image-panel img {
  object-fit: cover;
}

.copy-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 25rem;
  padding: clamp(2rem, 6vw, 5rem);
  background: var(--cobalt);
  color: var(--white);
}

.copy-panel.clay {
  background: var(--clay-field);
  color: var(--ink);
}

.copy-panel.foam {
  background: var(--foam);
  color: var(--ink);
}

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

.copy-panel h2 {
  font-size: clamp(2.7rem, 7vw, 5.2rem);
}

.feature-rail {
  display: grid;
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid currentColor;
}

.feature-row {
  display: grid;
  grid-template-columns: 2.8rem 1fr;
  gap: 0.8rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid currentColor;
}

.feature-row > span:first-child {
  color: var(--clay);
  font-family: var(--display);
  font-size: 1.35rem;
}

.section-ink .feature-row > span:first-child,
.section-cobalt .feature-row > span:first-child {
  color: var(--butter);
}

.feature-row p {
  margin-bottom: 0;
  color: inherit;
  opacity: 0.82;
}

.service-list {
  margin: 2.8rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.service-list li {
  display: grid;
  gap: 0.6rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.service-list strong {
  font-size: 1.15rem;
}

.service-list p {
  margin: 0;
  color: var(--muted);
}

.section-ink .service-list,
.section-cobalt .service-list {
  border-color: var(--line-light);
}

.section-ink .service-list li,
.section-cobalt .service-list li {
  border-color: var(--line-light);
}

.section-ink .service-list p,
.section-cobalt .service-list p {
  color: rgba(255, 255, 255, 0.76);
}

.quote-band {
  padding-block: clamp(4rem, 11vw, 9rem);
  background: var(--butter);
  color: var(--ink);
}

.quote-band blockquote {
  max-width: 18ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 8vw, 6rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.quote-band cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--condensed);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stat-tape {
  display: grid;
  background: var(--ink);
  color: var(--white);
}

.stat {
  padding: 1.7rem var(--pad);
  border-bottom: 1px solid var(--line-light);
}

.stat strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 7vw, 4rem);
  font-weight: 500;
  line-height: 1;
}

.stat span {
  font-size: 0.82rem;
  opacity: 0.78;
}

.timeline {
  display: grid;
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid currentColor;
}

.timeline-item {
  display: grid;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid currentColor;
}

.timeline-time {
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.timeline-item p {
  margin-bottom: 0;
  opacity: 0.8;
}

.amenity-grid {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

.amenity {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 18rem;
  padding: 1.4rem;
  overflow: hidden;
  background: var(--ink-soft);
  color: var(--white);
  border-radius: 0 2.8rem 0 0;
}

.amenity::before {
  content: attr(data-no);
  position: absolute;
  right: 1rem;
  top: 0.4rem;
  color: rgba(255, 255, 255, 0.1);
  font-family: var(--display);
  font-size: 7rem;
  line-height: 1;
}

.amenity h3 {
  margin-top: auto;
  color: var(--butter);
}

.amenity p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
}

.room-showcase {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

.room-entry {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.room-entry:last-child {
  border-bottom: 1px solid var(--line);
}

.room-entry h3 {
  font-family: var(--display);
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 500;
}

.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
}

.menu-ledger {
  display: grid;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid currentColor;
}

.menu-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid currentColor;
}

.menu-line span:last-child {
  font-family: var(--display);
  font-size: 1.3rem;
}

.schedule {
  overflow-x: auto;
  margin-top: 2rem;
  border: 1px solid var(--line);
}

.schedule table {
  width: 100%;
  min-width: 42rem;
  border-collapse: collapse;
}

.schedule th,
.schedule td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.schedule th {
  background: var(--ink);
  color: var(--white);
  font-family: var(--condensed);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.schedule tr:last-child td {
  border-bottom: 0;
}

.faq {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.6rem;
  padding: 1rem 0;
  cursor: pointer;
  font-weight: 800;
}

.faq summary::after {
  content: "+";
  font-size: 1.4rem;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 50rem;
  padding-bottom: 1.25rem;
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

.contact-cards {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.contact-card {
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-card h3 {
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card p {
  margin-bottom: 0;
}

.map-frame {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
  background: var(--foam);
}

.map-frame::before,
.map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
}

.map-frame::before {
  background:
    linear-gradient(122deg, transparent 0 22%, var(--paper) 22% 25%, transparent 25% 51%, var(--paper) 51% 54%, transparent 54%),
    linear-gradient(30deg, transparent 0 37%, rgba(23, 70, 209, 0.28) 37% 50%, transparent 50%),
    var(--foam);
}

.map-frame::after {
  width: 1.2rem;
  height: 1.2rem;
  inset: 46% auto auto 54%;
  border: 0.32rem solid var(--clay);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.map-caption {
  position: absolute;
  z-index: 2;
  left: 1.2rem;
  bottom: 1.2rem;
  max-width: 17rem;
  padding: 1rem;
  background: var(--ink);
  color: var(--white);
}

.responsible-summary {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--oyster);
}

.responsible-summary .shell {
  display: grid;
  gap: 1.2rem;
  padding-block: 2.4rem;
}

.responsible-summary h2 {
  margin: 0;
  font-family: var(--body);
  font-size: 1.2rem;
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: 0;
}

.responsible-summary p {
  max-width: 55rem;
  margin-bottom: 0;
  color: var(--muted);
}

.legal-hero {
  padding-block: clamp(5rem, 12vw, 9rem);
  background: var(--ink);
  color: var(--white);
}

.legal-hero h1 {
  max-width: 11ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3rem, 10vw, 7rem);
}

.legal-content {
  padding-block: var(--section);
}

.legal-content h2 {
  margin-top: 3.2rem;
  margin-bottom: 1rem;
  font-family: var(--body);
  font-size: 1.45rem;
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: 0;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content ul {
  padding-left: 1.25rem;
}

.source-note {
  margin-top: 3rem;
  padding: 1.2rem;
  border-left: 0.3rem solid var(--cobalt);
  background: var(--foam);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 11vw, 8rem);
  background: var(--cobalt);
  color: var(--white);
}

.cta-band::after {
  content: "A";
  position: absolute;
  right: -0.04em;
  bottom: -0.33em;
  color: rgba(255, 255, 255, 0.07);
  font-family: var(--display);
  font-size: min(70vw, 34rem);
  line-height: 1;
}

.cta-band .shell {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  max-width: 9ch;
}

.site-footer {
  padding-block: 4rem 2rem;
  background: #071e2a;
  color: var(--white);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

.footer-mark p {
  max-width: 27rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-title {
  margin-bottom: 0.8rem;
  font-family: var(--condensed);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--foam);
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 0.45rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (min-width: 42rem) {
  .booking-dock {
    padding: 1.4rem;
  }

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

  .booking-dock .btn {
    align-self: end;
  }

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

  .stat:nth-child(odd) {
    border-right: 1px solid var(--line-light);
  }

  .service-list li {
    grid-template-columns: minmax(10rem, 0.8fr) minmax(0, 1.6fr);
    gap: 2rem;
  }

  .timeline-item {
    grid-template-columns: 7rem 1fr;
    gap: 2rem;
  }

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

  .room-entry {
    grid-template-columns: minmax(11rem, 0.7fr) minmax(0, 1.4fr);
    gap: 3rem;
  }

  .responsible-summary .shell {
    grid-template-columns: 12rem 1fr;
    align-items: start;
  }
}

@media (min-width: 64rem) {
  .site-header {
    position: absolute;
    inset: 0 0 auto;
    grid-template-columns: minmax(13rem, 0.8fr) minmax(0, 2.4fr) auto;
    gap: 1.5rem;
    min-height: 5.6rem;
    background: linear-gradient(rgba(7, 30, 42, 0.86), transparent);
    border-bottom: 0;
    transition: background 180ms ease, box-shadow 180ms ease;
  }

  .site-header.is-scrolled,
  body:not(.home) .site-header {
    position: sticky;
    top: 0;
    background: rgba(7, 30, 42, 0.98);
    box-shadow: 0 0.4rem 1.4rem rgba(0, 0, 0, 0.12);
  }

  .nav-toggle {
    display: none;
  }

  .site-nav,
  .js .site-nav {
    position: static;
    inset: auto;
    display: block;
    overflow: visible;
    padding: 0;
    background: transparent;
    grid-column: auto;
  }

  .nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.8rem, 1.5vw, 1.6rem);
  }

  .nav-list a {
    min-height: 2.9rem;
    padding: 0.5rem 0;
    border: 0;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
  }

  .nav-list a::after {
    display: none;
  }

  .nav-list a[aria-current="page"] {
    box-shadow: inset 0 -0.12rem var(--butter);
  }

  .nav-list a[aria-current="page"]:focus-visible {
    outline: 0.18rem solid var(--butter);
    outline-offset: 0.3rem;
    box-shadow: inset 0 -0.12rem var(--butter);
  }

  .site-header .header-action {
    display: inline-flex;
  }

  .hero {
    min-height: 52rem;
  }

  .hero-content {
    padding-bottom: 8rem;
  }

  .page-hero {
    margin-top: -5.6rem;
    padding-top: 5.6rem;
  }

  .booking-dock {
    margin-top: -4.1rem;
    padding: 1.25rem 1.4rem;
  }

  .booking-dock h2 {
    margin: 0;
  }

  .booking-dock .form-grid {
    grid-template-columns: repeat(3, 1fr) auto;
    align-items: end;
  }

  .chapter {
    grid-template-columns: minmax(15rem, 0.7fr) minmax(0, 1.6fr);
    gap: 6rem;
  }

  .chapter-heading {
    position: sticky;
    top: 8rem;
    align-self: start;
  }

  .split {
    grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.85fr);
  }

  .split.reverse .split-media {
    order: 2;
  }

  .editorial-pair {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .editorial-pair.reverse .image-panel {
    order: 2;
  }

  .image-panel,
  .copy-panel {
    min-height: 40rem;
  }

  .feature-row {
    grid-template-columns: 4rem 1fr;
    gap: 1.5rem;
  }

  .stat-tape {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat,
  .stat:nth-child(odd) {
    border-right: 1px solid var(--line-light);
    border-bottom: 0;
  }

  .stat:last-child {
    border-right: 0;
  }

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

  .amenity:nth-child(2),
  .amenity:nth-child(4) {
    transform: translateY(2rem);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.72fr);
    gap: 6rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

@media print {
  .site-header,
  .booking-dock,
  .cta-band,
  .site-footer,
  .nav-toggle {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }
}
