:root {
  --bone: #f0e9dc;
  --paper: #faf6ee;
  --petrol: #123f43;
  --petrol-deep: #082d32;
  --cobalt: #29556f;
  --cherry: #812f47;
  --coral: #d77361;
  --copper: #b66d4c;
  --ink: #182c31;
  --mist: #d9e0dc;
  --white: #fffdf8;
  --line: rgba(24, 44, 49, 0.18);
  --serif: "Baskerville", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Avenir Next", Avenir, "Gill Sans", "Trebuchet MS", sans-serif;
  --max: 1440px;
  --gutter: clamp(1.2rem, 3.2vw, 4.5rem);
  --shadow: 0 26px 70px rgba(8, 45, 50, 0.18);
}

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

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

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

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
select {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

::selection {
  background: var(--cherry);
  color: var(--white);
}

.skip-link {
  left: 1rem;
  position: fixed;
  top: -8rem;
  z-index: 1000;
  background: var(--paper);
  border: 2px solid var(--petrol);
  padding: 0.8rem 1rem;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

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

.site-header {
  align-items: center;
  background: rgba(240, 233, 220, 0.94);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(190px, 0.7fr) minmax(0, 2fr) auto;
  min-height: 5.25rem;
  padding: 0 var(--gutter);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: inline-grid;
  grid-template-columns: 2.5rem auto;
  gap: 0.75rem;
  text-decoration: none;
}

.brand__seal {
  align-items: center;
  aspect-ratio: 1;
  background: var(--cherry);
  border-radius: 50% 50% 45% 55%;
  color: var(--paper);
  display: flex;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  justify-content: center;
  transform: rotate(-8deg);
}

.brand__name {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.brand__place {
  color: var(--cobalt);
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin-top: 0.35rem;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
}

.nav-list {
  align-items: center;
  display: flex;
  gap: clamp(0.8rem, 1.65vw, 1.8rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--ink);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-list a::after {
  background: var(--cherry);
  bottom: -0.45rem;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta {
  align-items: center;
  background: var(--petrol);
  color: var(--white);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 2.9rem;
  padding: 0.65rem 1rem;
  text-decoration: none;
  text-transform: uppercase;
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  display: none;
  height: 3rem;
  justify-content: center;
  padding: 0;
  width: 3rem;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  background: var(--petrol);
  content: "";
  display: block;
  height: 2px;
  position: relative;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 1.7rem;
}

.menu-toggle span::before {
  position: absolute;
  top: -0.48rem;
}

.menu-toggle span::after {
  position: absolute;
  top: 0.48rem;
}

.menu-open .menu-toggle span {
  background: transparent;
}

.menu-open .menu-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-open .menu-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

.eyebrow {
  align-items: center;
  color: var(--copper);
  display: flex;
  font-size: 0.7rem;
  font-weight: 800;
  gap: 0.8rem;
  letter-spacing: 0.2em;
  margin: 0 0 1.1rem;
  text-transform: uppercase;
}

.eyebrow::before {
  background: currentColor;
  content: "";
  height: 1px;
  width: 2.4rem;
}

.eyebrow--light {
  color: #f5b79f;
}

.display {
  font-family: var(--serif);
  font-size: clamp(3rem, 7.4vw, 8.2rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.86;
  margin: 0;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.45rem, 4.8vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
  margin: 0 0 1.5rem;
}

.section-title em,
.display em {
  color: var(--cherry);
  font-weight: inherit;
}

.lede {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1.4;
  margin: 0;
}

.copy {
  color: #365057;
  max-width: 42rem;
}

.copy p:first-child {
  margin-top: 0;
}

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

.button,
.text-link {
  align-items: center;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 800;
  gap: 0.85rem;
  justify-content: center;
  letter-spacing: 0.1em;
  min-height: 3.2rem;
  text-decoration: none;
  text-transform: uppercase;
}

.button {
  background: var(--cherry);
  border: 1px solid var(--cherry);
  color: var(--white);
  padding: 0.8rem 1.35rem;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  background: transparent;
  color: var(--cherry);
  transform: translateY(-2px);
}

.button--light {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--petrol);
}

.button--light:hover {
  background: transparent;
  color: var(--paper);
}

.button--outline {
  background: transparent;
  border-color: currentColor;
  color: var(--petrol);
}

.text-link {
  color: var(--cherry);
}

.text-link::after {
  content: "↗";
  font-size: 1.05rem;
}

.hero {
  background: var(--petrol);
  color: var(--white);
  display: grid;
  grid-template-columns: clamp(3.5rem, 8vw, 8.8rem) minmax(18rem, 0.9fr) minmax(25rem, 1.45fr);
  min-height: min(830px, calc(100svh - 5.25rem));
  overflow: hidden;
  position: relative;
}

.hero__rail {
  align-items: center;
  border-right: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.66);
  display: flex;
  font-size: 0.68rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.34em;
  text-orientation: mixed;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero__copy {
  align-self: center;
  padding: clamp(2.8rem, 6vw, 7rem) clamp(1.7rem, 4vw, 5.2rem);
  position: relative;
  z-index: 2;
}

.hero__copy .display {
  margin-left: clamp(-0.4rem, -1vw, -1.2rem);
  width: min(10ch, 100%);
}

.hero__intro {
  color: #dce6e2;
  max-width: 29rem;
}

.hero__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 1.6rem;
  margin-top: 2.2rem;
}

.hero__image {
  min-height: 34rem;
  position: relative;
}

.hero__image::after {
  background: linear-gradient(90deg, rgba(18,63,67,0.48), transparent 38%), linear-gradient(0deg, rgba(8,45,50,0.22), transparent 50%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero__image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero__stamp {
  align-items: center;
  background: var(--coral);
  border-radius: 50%;
  bottom: 2.2rem;
  color: var(--petrol-deep);
  display: flex;
  flex-direction: column;
  font-family: var(--serif);
  height: clamp(7rem, 10vw, 10rem);
  justify-content: center;
  left: clamp(-4rem, -5vw, -2rem);
  position: absolute;
  text-align: center;
  transform: rotate(7deg);
  width: clamp(7rem, 10vw, 10rem);
  z-index: 3;
}

.hero__stamp strong {
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1;
}

.hero__stamp span {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-top: 0.4rem;
  text-transform: uppercase;
}

.booking {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 5;
}

.booking__inner {
  align-items: end;
  display: grid;
  gap: 1px;
  grid-template-columns: 1.2fr repeat(4, minmax(8rem, 0.75fr)) minmax(10rem, 0.85fr);
  margin-inline: auto;
  max-width: var(--max);
  padding: 1.4rem var(--gutter);
}

.booking__intro {
  padding-right: 1.6rem;
}

.booking__intro strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.1;
}

.booking__intro span {
  color: #5a6e73;
  display: block;
  font-size: 0.72rem;
  margin-top: 0.3rem;
}

.field {
  border-left: 1px solid var(--line);
  display: block;
  padding: 0 0.8rem;
}

.field span {
  color: #5d6f73;
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  min-height: 2rem;
  padding: 0.15rem 0;
  width: 100%;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--cherry);
  outline: 0;
}

.booking .button {
  border: 0;
  width: 100%;
}

.booking-status,
.form-status {
  color: var(--petrol);
  font-size: 0.78rem;
  grid-column: 1 / -1;
  margin: 0.4rem 0 0;
  min-height: 1.1em;
}

.chapter {
  padding-block: clamp(5rem, 10vw, 10rem);
  position: relative;
}

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

.chapter--bone {
  background: var(--bone);
}

.chapter--petrol {
  background: var(--petrol);
  color: var(--white);
}

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

.chapter--cherry {
  background: var(--cherry);
  color: var(--white);
}

.split-story {
  align-items: start;
  display: grid;
  gap: clamp(2.5rem, 7vw, 8rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.7fr);
}

.story-index {
  color: var(--cherry);
  font-family: var(--serif);
  font-size: clamp(5rem, 13vw, 13rem);
  left: calc(var(--gutter) * 0.22);
  line-height: 0.65;
  opacity: 0.1;
  position: absolute;
  top: 5rem;
}

.quote-block {
  border-left: 1px solid var(--copper);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  line-height: 1.2;
  margin: 2.5rem 0 0;
  padding-left: 1.5rem;
}

.feature-frame {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(18rem, 0.75fr) minmax(0, 1.25fr);
  margin-inline: auto;
  max-width: var(--max);
  padding-inline: var(--gutter);
}

.feature-frame--reverse {
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
}

.feature-frame--reverse .feature-frame__image {
  order: -1;
}

.feature-frame__copy {
  align-self: center;
  padding-block: 2rem;
}

.feature-frame__image {
  box-shadow: var(--shadow);
  min-height: clamp(30rem, 57vw, 48rem);
  overflow: hidden;
  position: relative;
}

.feature-frame__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(.2,.7,.2,1);
  width: 100%;
}

.feature-frame:hover .feature-frame__image img {
  transform: scale(1.025);
}

.feature-frame__number {
  background: var(--coral);
  color: var(--petrol-deep);
  font-family: var(--serif);
  font-size: 2rem;
  left: 0;
  line-height: 1;
  padding: 1.1rem;
  position: absolute;
  top: 0;
}

.facts {
  border-top: 1px solid currentColor;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin: 2.5rem 0;
  padding-top: 1.4rem;
}

.facts strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  font-weight: 400;
  line-height: 1;
}

.facts span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  margin-top: 0.45rem;
  text-transform: uppercase;
}

.editorial-grid {
  display: grid;
  gap: clamp(1.4rem, 3vw, 3rem);
  grid-template-columns: 1.12fr 0.88fr;
}

.editorial-grid__lead {
  align-self: start;
  position: sticky;
  top: 8rem;
}

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

.editorial-item {
  border-bottom: 1px solid currentColor;
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 3.4rem 1fr;
  padding: 1.7rem 0;
}

.editorial-item__number {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.editorial-item h3 {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 0.6rem;
}

.editorial-item p {
  color: inherit;
  margin: 0;
  opacity: 0.82;
}

.room-rail {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1.35fr 0.65fr;
}

.room-rail__image {
  min-height: clamp(28rem, 62vw, 52rem);
}

.room-rail__image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.room-rail__aside {
  background: var(--cobalt);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.5rem, 4vw, 3.8rem);
}

.room-rail__aside h3 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.4rem);
  font-weight: 400;
  line-height: 0.98;
  margin: 0;
}

.room-specs {
  border-top: 1px solid rgba(255,255,255,0.35);
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}

.room-specs li {
  border-bottom: 1px solid rgba(255,255,255,0.35);
  display: flex;
  font-size: 0.82rem;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.room-specs strong {
  font-weight: 400;
}

.menu-board {
  background: var(--paper);
  color: var(--ink);
  display: grid;
  gap: 0;
  grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
}

.menu-board__photo {
  min-height: 42rem;
}

.menu-board__photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.menu-board__content {
  padding: clamp(2rem, 6vw, 6rem);
}

.tab-buttons,
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.6rem 0 2.3rem;
}

.tab-button,
.filter-button {
  background: transparent;
  border: 1px solid currentColor;
  min-height: 2.7rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tab-button[aria-selected="true"],
.filter-button.is-active {
  background: var(--cherry);
  border-color: var(--cherry);
  color: var(--white);
}

.tab-panel[hidden] {
  display: none;
}

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

.menu-line strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
}

.menu-line span {
  color: var(--cherry);
  font-size: 0.8rem;
  font-weight: 800;
}

.menu-line small {
  color: #617276;
  display: block;
  font-size: 0.78rem;
  grid-column: 1 / -1;
  margin-top: -0.75rem;
}

.spa-layout {
  align-items: end;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: 0.75fr 1.25fr;
}

.spa-layout__photo {
  margin-right: calc(var(--gutter) * -1);
  min-height: clamp(31rem, 55vw, 50rem);
}

.spa-layout__photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.rituals {
  counter-reset: ritual;
  list-style: none;
  margin: 2.4rem 0 0;
  padding: 0;
}

.rituals li {
  border-top: 1px solid rgba(255,255,255,0.28);
  counter-increment: ritual;
  display: grid;
  gap: 1rem;
  grid-template-columns: 2.3rem 1fr;
  padding: 1.2rem 0;
}

.rituals li::before {
  color: #f5b79f;
  content: "0" counter(ritual);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

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

.event-row {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 6.5rem 1fr 9rem;
  padding: 1.5rem 0;
  transition: opacity 180ms ease;
}

.event-row[hidden] {
  display: none;
}

.event-row time {
  color: var(--cherry);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.event-row h3 {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 400;
  margin: 0 0 0.35rem;
}

.event-row p {
  color: #587075;
  margin: 0;
}

.event-row span {
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

.wide-photo {
  height: min(68vw, 760px);
  min-height: 28rem;
  overflow: hidden;
  position: relative;
}

.wide-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.wide-photo__caption {
  background: var(--coral);
  bottom: 0;
  color: var(--petrol-deep);
  left: var(--gutter);
  max-width: 27rem;
  padding: 1.4rem;
  position: absolute;
}

.wide-photo__caption strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.guide-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3rem;
}

.guide-card {
  background: var(--paper);
  border: 1px solid var(--line);
  min-height: 18rem;
  padding: clamp(1.2rem, 2.5vw, 2.3rem);
  position: relative;
}

.guide-card::before {
  color: var(--coral);
  content: attr(data-time);
  display: block;
  font-family: var(--serif);
  font-size: 2.1rem;
  margin-bottom: 3.5rem;
}

.guide-card h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 0.8rem;
}

.guide-card p {
  color: #526b70;
  font-size: 0.86rem;
  margin: 0;
}

.gallery {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: 22rem 22rem;
}

.gallery button {
  background: none;
  border: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.gallery button:first-child {
  grid-row: 1 / 3;
}

.gallery img {
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
  width: 100%;
}

.gallery button:hover img {
  transform: scale(1.04);
}

.gallery button::after {
  background: var(--paper);
  bottom: 0.8rem;
  color: var(--petrol);
  content: "+";
  display: grid;
  font-size: 1.5rem;
  height: 2.6rem;
  place-items: center;
  position: absolute;
  right: 0.8rem;
  width: 2.6rem;
}

.lightbox {
  background: rgba(8,45,50,0.96);
  border: 0;
  color: var(--white);
  height: 100%;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: clamp(1rem, 4vw, 4rem);
  width: 100%;
}

.lightbox::backdrop {
  background: rgba(8,45,50,0.96);
}

.lightbox__inner {
  display: grid;
  height: 100%;
  place-items: center;
  position: relative;
}

.lightbox img {
  max-height: calc(100vh - 8rem);
  max-width: 100%;
  object-fit: contain;
}

.lightbox__close {
  background: var(--paper);
  border: 0;
  color: var(--petrol);
  height: 3rem;
  position: absolute;
  right: 0;
  top: 0;
  width: 3rem;
  z-index: 2;
}

.package {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 6vw, 7rem);
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
}

.package__price {
  align-items: center;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.48);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-inline: auto;
  max-width: 23rem;
  text-align: center;
  width: 100%;
}

.package__price strong {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 400;
  line-height: 0.9;
}

.package__price span {
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-top: 0.8rem;
  text-transform: uppercase;
}

.contact-strip {
  display: grid;
  gap: 1px;
  grid-template-columns: 1.1fr 0.9fr;
}

.contact-strip > div {
  min-height: 31rem;
  padding: clamp(2rem, 6vw, 6rem);
}

.contact-strip__main {
  background: var(--paper);
}

.contact-strip__aside {
  background: var(--coral);
  color: var(--petrol-deep);
}

.contact-list {
  list-style: none;
  margin: 2.2rem 0 0;
  padding: 0;
}

.contact-list li {
  border-top: 1px solid currentColor;
  display: grid;
  gap: 1rem;
  grid-template-columns: 7rem 1fr;
  padding: 1rem 0;
}

.contact-list span {
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list a {
  overflow-wrap: anywhere;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2rem;
}

.site-footer {
  background: var(--petrol-deep);
  color: var(--white);
  padding: clamp(3rem, 6vw, 6rem) var(--gutter) 2rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 1fr;
  margin-inline: auto;
  max-width: var(--max);
}

.footer-brand {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.95;
  margin: 0;
}

.footer-col h2 {
  color: #f5b79f;
  font-size: 0.67rem;
  letter-spacing: 0.15em;
  margin: 0 0 1.2rem;
  text-transform: uppercase;
}

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

.footer-col li + li {
  margin-top: 0.55rem;
}

.footer-col a {
  color: #dce6e2;
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.newsletter {
  border-bottom: 1px solid rgba(255,255,255,0.5);
  display: grid;
  grid-template-columns: 1fr auto;
}

.newsletter input {
  background: transparent;
  border: 0;
  color: var(--white);
  min-width: 0;
  padding: 0.65rem 0;
}

.newsletter input::placeholder {
  color: #adc1bd;
}

.newsletter button {
  background: transparent;
  border: 0;
  color: #f5b79f;
  font-size: 1.4rem;
  padding: 0.4rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.18);
  display: flex;
  font-size: 0.69rem;
  justify-content: space-between;
  margin: 4rem auto 0;
  max-width: var(--max);
  padding-top: 1.5rem;
}

.page-hero {
  background: var(--petrol);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(20rem, 0.75fr) minmax(0, 1.25fr);
  min-height: clamp(39rem, 72vh, 55rem);
}

.page-hero__copy {
  align-self: center;
  padding: clamp(3rem, 7vw, 7rem) var(--gutter);
  position: relative;
  z-index: 2;
}

.page-hero__copy .display {
  font-size: clamp(3.5rem, 7vw, 7.5rem);
}

.page-hero__image {
  min-height: 34rem;
  position: relative;
}

.page-hero__image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.page-hero__label {
  background: var(--coral);
  bottom: 0;
  color: var(--petrol-deep);
  left: 0;
  max-width: 24rem;
  padding: 1.2rem 1.5rem;
  position: absolute;
}

.page-intro {
  display: grid;
  gap: clamp(2rem, 6vw, 7rem);
  grid-template-columns: 0.8fr 1.2fr;
}

.page-intro .lede {
  font-size: clamp(1.5rem, 3vw, 2.6rem);
}

.stat-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3rem;
}

.stat {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2rem;
}

.stat strong {
  color: var(--cherry);
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.stat span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  margin-top: 0.7rem;
  text-transform: uppercase;
}

.cards-offset {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  grid-template-columns: repeat(3, 1fr);
}

.cards-offset article {
  border-top: 1px solid currentColor;
  padding-top: 1.4rem;
}

.cards-offset article:nth-child(2) {
  margin-top: 5rem;
}

.cards-offset h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 0.9rem;
}

.cards-offset p {
  opacity: 0.83;
}

.image-pair {
  display: grid;
  gap: clamp(1rem, 3vw, 3rem);
  grid-template-columns: 1.25fr 0.75fr;
}

.image-pair figure {
  margin: 0;
}

.image-pair figure:nth-child(2) {
  margin-top: 7rem;
}

.image-pair img {
  height: clamp(27rem, 52vw, 46rem);
  object-fit: cover;
  width: 100%;
}

.image-pair figcaption {
  color: #536c70;
  font-size: 0.77rem;
  margin-top: 0.7rem;
}

.contact-form {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr 1fr;
}

.contact-form .field {
  border: 1px solid var(--line);
  padding: 0.8rem 1rem;
}

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

.contact-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.contact-form .button {
  justify-self: start;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.35rem;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--cherry);
  content: "+";
  float: right;
}

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

.faq-list p {
  color: #516a6f;
  max-width: 46rem;
}

.legal-hero {
  background: var(--cobalt);
  color: var(--white);
  overflow: hidden;
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
  position: relative;
}

.legal-hero::after {
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  content: "";
  height: 34rem;
  position: absolute;
  right: -8rem;
  top: -14rem;
  width: 34rem;
}

.legal-hero .display {
  font-size: clamp(3.3rem, 7vw, 7rem);
  max-width: 10ch;
}

.legal-layout {
  display: grid;
  gap: clamp(2rem, 6vw, 7rem);
  grid-template-columns: 15rem minmax(0, 1fr);
}

.legal-nav {
  align-self: start;
  position: sticky;
  top: 8rem;
}

.legal-nav a {
  border-bottom: 1px solid var(--line);
  display: block;
  font-size: 0.76rem;
  padding: 0.75rem 0;
  text-decoration: none;
}

.legal-copy {
  max-width: 52rem;
}

.legal-copy section + section {
  border-top: 1px solid var(--line);
  margin-top: 2.5rem;
  padding-top: 2.5rem;
}

.legal-copy h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.1;
}

.legal-copy h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

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

.notice {
  background: #dce7e4;
  border-left: 4px solid var(--petrol);
  padding: 1rem 1.2rem;
}

.reveal {
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.js .hero .reveal,
.js .page-hero .reveal,
.js .legal-hero .reveal {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(170px, 1fr) auto auto;
  }

  .menu-toggle {
    display: flex;
    grid-column: 3;
    grid-row: 1;
  }

  .header-cta {
    grid-column: 2;
    grid-row: 1;
    margin-right: 0.8rem;
  }

  .site-nav {
    background: var(--paper);
    display: none;
    grid-column: 1 / -1;
    height: calc(100svh - 5.25rem);
    inset: 5.25rem 0 auto;
    overflow-y: auto;
    padding: 2rem var(--gutter) 5rem;
    position: fixed;
  }

  .menu-open .site-nav {
    display: block;
  }

  .nav-list {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav-list a {
    border-bottom: 1px solid var(--line);
    display: block;
    font-family: var(--serif);
    font-size: clamp(1.7rem, 5vw, 3rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    padding: 0.65rem 0;
    text-transform: none;
  }

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

  .booking__inner {
    grid-template-columns: 1.4fr repeat(2, 1fr);
    row-gap: 1.2rem;
  }

  .booking__intro {
    grid-row: 1 / 3;
  }

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

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 3.4rem 1fr;
  }

  .hero__copy {
    grid-column: 2;
    min-height: 34rem;
    padding-right: var(--gutter);
  }

  .hero__image {
    grid-column: 1 / -1;
    grid-row: 2;
    height: 60svh;
  }

  .hero__stamp {
    left: auto;
    right: var(--gutter);
  }

  .split-story,
  .feature-frame,
  .feature-frame--reverse,
  .editorial-grid,
  .spa-layout,
  .package,
  .page-intro,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .editorial-grid__lead,
  .legal-nav {
    position: static;
  }

  .feature-frame--reverse .feature-frame__image {
    order: 0;
  }

  .feature-frame__image {
    min-height: 30rem;
  }

  .room-rail,
  .menu-board,
  .contact-strip,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .room-rail__aside {
    min-height: 27rem;
  }

  .menu-board__photo {
    min-height: 30rem;
  }

  .spa-layout__photo {
    margin-right: 0;
  }

  .page-hero__copy {
    min-height: 30rem;
  }

  .page-hero__image {
    min-height: 32rem;
  }

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

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

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

  .site-header {
    min-height: 4.6rem;
    padding-inline: 1rem;
  }

  .brand {
    grid-template-columns: 2.1rem auto;
  }

  .brand__name {
    font-size: 0.9rem;
  }

  .brand__place {
    font-size: 0.52rem;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    grid-column: 3;
  }

  .site-nav {
    height: calc(100svh - 4.6rem);
    inset: 4.6rem 0 auto;
  }

  .hero {
    grid-template-columns: 2.5rem 1fr;
  }

  .hero__rail {
    font-size: 0.58rem;
  }

  .hero__copy {
    min-height: auto;
    padding: 3.4rem 1.2rem 4rem;
  }

  .hero__copy .display {
    font-size: clamp(3.25rem, 18vw, 5.2rem);
  }

  .hero__intro {
    font-size: 0.94rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button,
  .hero__actions .text-link {
    width: 100%;
  }

  .hero__image {
    height: 55svh;
    min-height: 27rem;
  }

  .hero__stamp {
    bottom: -2.7rem;
  }

  .booking__inner {
    grid-template-columns: 1fr 1fr;
    padding-block: 4.3rem 1.4rem;
  }

  .booking__intro {
    grid-column: 1 / -1;
    grid-row: auto;
    padding: 0 0 0.7rem;
  }

  .booking .field {
    border: 1px solid var(--line);
    padding: 0.65rem;
  }

  .booking .button,
  .booking-status {
    grid-column: 1 / -1;
  }

  .section-title {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .chapter {
    padding-block: 4.7rem;
  }

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

  .facts > div {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 0.9rem;
  }

  .feature-frame__image,
  .room-rail__image,
  .spa-layout__photo,
  .page-hero__image,
  .menu-board__photo {
    min-height: 26rem;
  }

  .room-rail {
    grid-template-columns: 1fr;
  }

  .event-row {
    gap: 0.5rem 1rem;
    grid-template-columns: 5rem 1fr;
  }

  .event-row span {
    grid-column: 2;
    text-align: left;
  }

  .guide-grid,
  .stat-grid,
  .cards-offset,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .cards-offset article:nth-child(2) {
    margin-top: 0;
  }

  .gallery {
    display: flex;
    gap: 0.75rem;
    margin-inline: calc(var(--gutter) * -1);
    overflow-x: auto;
    padding: 0 var(--gutter) 1rem;
    scroll-snap-type: x mandatory;
  }

  .gallery button,
  .gallery button:first-child {
    flex: 0 0 82vw;
    height: 28rem;
    scroll-snap-align: center;
  }

  .image-pair {
    grid-template-columns: 1fr;
  }

  .image-pair figure:nth-child(2) {
    margin-top: 0;
  }

  .contact-strip > div {
    min-height: auto;
  }

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

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

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

  .page-hero {
    min-height: auto;
  }

  .page-hero__copy {
    min-height: auto;
    padding-block: 4rem;
  }

  .page-hero__copy .display {
    font-size: clamp(3.2rem, 17vw, 5.2rem);
  }

  .page-hero__label {
    max-width: calc(100% - 1.5rem);
  }

  .legal-nav {
    display: none;
  }

  .legal-copy ul {
    padding-left: 1.2rem;
  }
}

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

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

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