:root {
  --ink: #0e1917;
  --muted: #657064;
  --paper: #f1efec;
  --sage: #535743;
  --sage-dark: #535743;
  --surface-dark: #535743;
  --clay: #a56f52;
  --butter: #d7d0c7;
  --mist: #f1efec;
  --white: #ffffff;
  --shadow: 0 22px 60px rgb(83 87 67 / 14%);
  --page-margin: 7vw;
  --header-margin: clamp(18px, 4vw, 54px);
  --onepage-nav-offset: 74px;
  --onepage-anchor-gap: clamp(18px, 3vw, 36px);
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  background: var(--paper);
  scroll-behavior: smooth;
  scroll-padding-top: var(--onepage-nav-offset);
}

body {
  margin: 0;
  background: var(--paper);
  font-size: 20px;
  line-height: 1.6;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--header-margin);
  color: var(--white);
  background:
    linear-gradient(to bottom, rgb(83 87 67 / 30%), rgb(83 87 67 / 14%)),
    rgb(83 87 67 / 14%);
  backdrop-filter: blur(8px) saturate(108%);
  -webkit-backdrop-filter: blur(8px) saturate(108%);
  transition: transform 240ms ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.brand {
  font-family: "Indie Flower", cursive;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 8px 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}

.nav-toggle__icon {
  display: grid;
  gap: 4px;
  width: 22px;
}

.nav-toggle__icon span {
  display: block;
  height: 2px;
  background: currentColor;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 16px;
  font-weight: 400;
}

.main-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
}

.main-nav a[aria-current="page"] {
  border-color: currentColor;
  font-size: 16px;
  font-weight: 400;
}

.site-header.nav-overflow .nav-toggle {
  display: inline-flex;
}

.site-header.nav-overflow .main-nav {
  position: absolute;
  top: calc(100% - 1px);
  right: var(--header-margin);
  display: none;
  align-items: flex-start;
  flex-direction: column;
  gap: 18px;
  min-width: min(260px, calc(100vw - 36px));
  padding: 26px 20px 30px;
  color: var(--white);
  background: rgb(83 87 67 / 96%);
}

.site-header.nav-overflow.nav-open .main-nav {
  display: flex;
}

.site-header.nav-overflow .main-nav a {
  width: 100%;
  padding: 14px 0;
}

.hero,
.stage {
  position: relative;
  min-height: 100svh;
}

.hero {
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  cursor: pointer;
}

.hero__image {
  position: absolute;
  inset: -12vh 0;
  background-image: url("assets/images/hero-home.jpg");
  background-position: center;
  background-size: cover;
  transform: translate3d(0, var(--hero-parallax, 0px), 0);
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 30%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - var(--page-margin) - var(--page-margin)));
  margin: 0 auto;
  padding: 120px 0 56px;
  text-align: center;
  transform: translateY(-7vh);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
h4 {
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  margin: 0;
  line-height: 1.05;
  font-weight: 500;
}

.h0 {
  font-family: "Indie Flower", cursive;
  font-size: 88px;
  line-height: 0.9;
  font-weight: 400;
}

h1 {
  font-size: 82px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

.hero__date {
  margin: 20px 0 0;
  font-size: 20px;
  font-weight: 400;
}

.hero__text {
  max-width: 640px;
  margin: 22px auto 0;
  font-size: 20px;
  line-height: 1.6;
}

.hero__scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: clamp(26px, 5vh, 52px);
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
}

.onepage-nav {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgb(83 87 67 / 22%);
  padding: 18px var(--page-margin);
  background: rgb(241 239 236 / 92%);
  backdrop-filter: blur(8px) saturate(108%);
  -webkit-backdrop-filter: blur(8px) saturate(108%);
  opacity: 0;
  pointer-events: none;
  margin-bottom: calc(var(--onepage-nav-offset) * -1);
  transition: opacity 180ms ease;
}

.onepage-nav.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.onepage-nav__brand {
  color: var(--ink);
}

.onepage-nav__links {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(24px, 4vw, 64px);
  color: var(--ink);
}

.onepage-nav__links::after {
  position: absolute;
  bottom: 1px;
  left: 0;
  width: var(--nav-marker-width, 0px);
  height: 1px;
  background: currentColor;
  content: "";
  opacity: var(--nav-marker-opacity, 0);
  transform: translateX(var(--nav-marker-x, 0px));
  transition:
    transform 260ms ease,
    width 260ms ease,
    opacity 180ms ease;
}

.onepage-nav__links a {
  padding: 8px 0;
  color: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  transition: opacity 160ms ease;
}

.onepage-nav__links a:active {
  color: inherit;
  background: transparent;
}

.onepage-nav__links a:focus:not(:focus-visible) {
  outline: 0;
}

.onepage-nav__links a:hover,
.onepage-nav__links a:focus-visible {
  opacity: 0.68;
}

.onepage-section {
  position: relative;
  z-index: 1;
  top: auto;
  width: 100%;
  min-height: calc(100svh - var(--onepage-nav-offset));
  margin: 0;
  padding: clamp(84px, 9.8vw, 144px) var(--page-margin);
  scroll-margin-top: var(--onepage-nav-offset);
  background: var(--paper);
}

.onepage-panel {
  min-height: 0;
}

.module-heading {
  border-bottom: 1px solid rgb(83 87 67 / 76%);
  margin-bottom: clamp(34px, 5vw, 64px);
  padding-bottom: 18px;
}

.module-heading h2 {
  font-size: 36px;
}

.onepage-section.faq {
  z-index: 1;
  color: var(--white);
  background: var(--surface-dark);
}

.onepage-section .faq-list {
  border-top: 0;
}

.onepage-location {
  z-index: 2;
  color: var(--ink);
  background: var(--paper);
}

.faq .module-heading,
.faq .faq-list {
  border-color: rgb(255 255 255 / 72%);
}

.faq .faq-item {
  border-color: rgb(255 255 255 / 22%);
}

.faq .faq-question,
.faq .faq-answer p {
  color: var(--white);
}

.onepage-section .module-heading:has(.editorial-heading) {
  border-bottom: 0;
  margin-bottom: clamp(30px, 4.8vw, 70px);
  padding-bottom: 0;
}

h2.editorial-heading {
  max-width: 12ch;
  font-size: clamp(72px, 9.2vw, 96px);
  line-height: 0.86;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  overflow-wrap: normal;
}

.onepage-location__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(38px, 6vw, 96px);
  align-items: start;
}

.onepage-location__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr);
  gap: clamp(10px, 1vw, 14px);
  align-items: start;
  margin-bottom: clamp(54px, 7vw, 108px);
}

.onepage-location__intro .module-heading {
  margin-bottom: clamp(28px, 4vw, 52px);
}

.onepage-location__intro > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.onepage-location__gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 14px);
}

.onepage-location__gallery img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.onepage-location__gallery-mobile-only {
  display: none;
}

.onepage-location__gallery img:not(.onepage-location__gallery-mobile-only):nth-of-type(2),
.onepage-location__gallery img:not(.onepage-location__gallery-mobile-only):nth-of-type(3) {
  aspect-ratio: 16 / 5.6;
}

.onepage-location__gallery img:not(.onepage-location__gallery-mobile-only):nth-of-type(4) {
  grid-column: 2;
  grid-row: 1 / span 2;
  aspect-ratio: 4 / 5;
}

.onepage-location__copy {
  max-width: 600px;
}

.onepage-location__copy p {
  margin: 0;
  font-size: clamp(21px, 1.45vw, 24px);
  line-height: 1.5;
  font-weight: 300;
}

.onepage-location__copy p + p {
  margin-top: 25px;
}

.onepage-location__copy strong {
  font-weight: 700;
}

.onepage-location__copy .stage__text-link {
  margin-top: 28px;
}

.onepage-location__grid > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.onepage-stay .callout {
  margin-bottom: clamp(42px, 6vw, 72px);
}

.onepage-stay {
  position: relative;
  top: auto;
  z-index: 3;
  min-height: auto;
  padding-bottom: 0;
  background: #e2dbd2;
}

.onepage-stay .onepage-panel {
  min-height: 0;
}

.onepage-stay__intro {
  max-width: 820px;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.onepage-stay__intro p {
  margin: 0;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 300;
}

.onepage-stay__intro p + p {
  margin-top: 25px;
}

.stay-recommendations {
  margin-bottom: clamp(56px, 7vw, 104px);
}

.stay-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 42px) clamp(22px, 2.4vw, 36px);
  padding-top: clamp(38px, 5vw, 64px);
}

.stay-tile {
  display: block;
  color: var(--ink);
  text-decoration: none;
}

.stay-tile img {
  width: 100%;
  aspect-ratio: 1.52 / 1;
  margin-bottom: 24px;
  object-fit: cover;
}

.stay-tile__distance {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 10px 6px;
  color: var(--white);
  background: var(--surface-dark);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stay-tile h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.12;
  font-weight: 700;
}

.stay-tile__price {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
}

.stay-tile__copy {
  margin: 0 0 18px;
  color: rgb(14 25 23 / 78%);
  font-size: 15px;
  line-height: 1.48;
  font-weight: 400;
}

.stay-tile:hover h3,
.stay-tile:focus-visible h3 {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.stay-map {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% + var(--page-margin) + var(--page-margin));
  min-height: clamp(420px, 42vw, 620px);
  margin-right: calc(var(--page-margin) * -1);
  margin-left: calc(var(--page-margin) * -1);
  overflow: hidden;
  background-image: url("assets/images/stay-map-background.svg");
  background-position: center;
  background-size: cover;
  color: var(--ink);
  text-decoration: none;
}

.stay-map::before {
  position: absolute;
  inset: 0;
  background: rgb(14 25 23 / 0%);
  content: "";
  transition: background 240ms ease;
}

.stay-map__cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--ink);
  padding: 18px 24px;
  background: var(--paper);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.stay-map:hover::before,
.stay-map:focus-visible::before {
  background: rgb(14 25 23 / 16%);
}

.stay-map:hover .stay-map__cta,
.stay-map:focus-visible .stay-map__cta {
  opacity: 1;
  transform: translateY(0);
}

.stay-map:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: -2px;
}

.stage {
  display: flex;
  align-items: stretch;
  height: 100svh;
  overflow: hidden;
  padding: 0;
  color: var(--white);
}

.stage-stay {
  background: var(--sage-dark);
}

.stage-location {
  background: var(--sage-dark);
}

.stage__inner {
  display: grid;
  grid-template-columns: minmax(0, 46.5%) minmax(0, 53.5%);
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.stage__copy {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  grid-column: 1;
  padding: 128px clamp(32px, 5vw, 84px) clamp(72px, 9vw, 128px) var(--header-margin);
}

.stage__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid rgb(255 255 255 / 86%);
  padding: 0 0 26px;
}

.stage__title {
  display: inline-block;
  font-size: clamp(64px, 5vw, 96px);
  font-variant-caps: all-small-caps;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
  overflow-wrap: normal;
  transform: none;
}

.stage__top h2 {
  font-size: 36px;
  font-weight: 400;
}

.stage__place {
  display: none;
  align-items: center;
  gap: 14px;
  margin: 0;
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  white-space: nowrap;
}

.stage__place::before {
  content: "●";
  width: 24px;
  height: 24px;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
}

.stage__content {
  max-width: 820px;
  padding: 36px 0 0;
}

.copy-large,
.stage__content p {
  max-width: 780px;
  margin: 0;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 300;
  color: currentColor;
}

.stage__content p + p {
  margin-top: 25px;
}

.stage__content strong {
  font-weight: 700;
}

.stage__scroll-cue {
  display: block;
  width: 38px;
  height: 40px;
  margin: 48px 0 0;
  color: currentColor;
  text-decoration: none;
}

.stage__scroll-cue span {
  position: relative;
  display: block;
  width: 32px;
  height: 22px;
  animation: scroll-cue 1.2s ease-in-out infinite;
}

.stage__scroll-cue span::before {
  position: absolute;
  top: 0;
  left: 4px;
  width: 20px;
  height: 20px;
  border-right: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

@keyframes scroll-cue {
  0%,
  100% {
    transform: translateY(-5px);
  }

  50% {
    transform: translateY(7px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .stage__scroll-cue span {
    animation: none;
  }

  .faq-icon,
  .faq-answer,
  .faq-answer__inner {
    transition: none;
  }
}

.stage__actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 30px;
  margin-top: 28px;
}

.stage__text-link,
.stage__button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: currentColor;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
}

.stage__text-link {
  gap: 10px;
}

.stage__link-label {
  border-bottom: 2px solid currentColor;
  padding-bottom: 3px;
}

.stage__link-icon {
  transform: translateY(-1px);
  font-size: 1.05em;
  line-height: 1;
  transition: transform 160ms ease;
}

.stage__text-link:hover .stage__link-icon,
.stage__text-link:focus-visible .stage__link-icon {
  transform: translate(3px, -4px);
}

.stage__button {
  min-height: 72px;
  border: 2px solid currentColor;
  padding: 0 24px;
}

.stage__button--external span {
  line-height: 1;
  transform: translateY(-1px);
  transition: transform 160ms ease;
}

.stage__button--external:hover span,
.stage__button--external:focus-visible span {
  transform: translate(3px, -4px);
}

.stage__media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  box-shadow: none;
}

.stage__media {
  grid-column: 2;
  height: 100%;
}

.stage-stay .stage__media img {
  filter: grayscale(1);
}

.section {
  width: calc(100% - var(--page-margin) - var(--page-margin));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0;
}

.section--compact {
  padding-bottom: 18px;
}

.section__intro {
  max-width: 660px;
  margin-bottom: 28px;
}

.section h2 {
  font-size: 36px;
}

.callout {
  border: 1px solid rgb(83 87 67 / 72%);
  padding: clamp(28px, 4vw, 42px) clamp(28px, 4vw, 48px);
  background: transparent;
  box-shadow: none;
}

.callout .eyebrow {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.callout p:last-child {
  max-width: 1180px;
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 400;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 3vw, 48px);
  border-bottom: 1px solid rgb(83 87 67 / 72%);
  margin-bottom: 0;
}

.tab {
  position: relative;
  min-height: 48px;
  border: 0;
  padding: 0 0 12px;
  color: var(--ink);
  background: transparent;
  font: 400 24px/1.2 Manrope, ui-sans-serif, system-ui, sans-serif;
  cursor: pointer;
}

.tab.is-active {
  color: var(--ink);
  background: transparent;
  font-weight: 400;
}

.tab.is-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: currentColor;
}

.tab__count {
  display: inline-block;
  margin-left: 6px;
  color: rgb(83 87 67 / 52%);
  font-size: 1em;
  font-weight: 400;
  line-height: 1;
}

.tab-panel {
  display: grid;
}

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

.faq {
  padding-top: clamp(64px, 9vw, 120px);
}

.faq-list {
  border-top: 1px solid rgb(83 87 67 / 72%);
}

.faq-item {
  border-bottom: 1px solid rgb(83 87 67 / 22%);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 26px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: 400 24px/1.2 Manrope, ui-sans-serif, system-ui, sans-serif;
  text-align: left;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  appearance: none;
}

.faq-question:active {
  color: inherit;
  background: transparent;
}

.faq-question:focus:not(:focus-visible) {
  outline: 0;
}

.faq-icon {
  flex: 0 0 auto;
  font-size: 44px;
  font-weight: 300;
  line-height: 0.8;
  transition: transform 220ms ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-width: 780px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 320ms ease,
    opacity 220ms ease;
}

.faq-answer.is-open {
  opacity: 1;
}

.faq-answer__inner {
  padding: 0 0 30px;
  transform: translateY(-6px);
  transition: transform 320ms ease;
}

.faq-answer.is-open .faq-answer__inner {
  transform: translateY(0);
}

.faq-answer p {
  margin: 0;
  color: rgb(83 87 67 / 78%);
  font-size: 20px;
  line-height: 1.6;
}

.faq-answer p + p {
  margin-top: 12px;
}

.location-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 37.5%;
  gap: clamp(32px, 4vw, 58px);
  align-items: start;
  padding: 54px 0;
  border-bottom: 1px solid rgb(83 87 67 / 32%);
  background: transparent;
  box-shadow: none;
}

.location-card img {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  aspect-ratio: 1.56 / 1;
  object-fit: cover;
}

.location-card > div {
  grid-column: 1;
  grid-row: 1;
}

.location-card h3 {
  margin: 0 0 14px;
  line-height: 1.2;
  font-weight: 700;
}

.location-card p,
.location-card dl,
.card-actions {
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
}

.location-card p {
  margin: 0 0 16px;
  line-height: 1.4;
  font-size: 20px;
  color: var(--ink);
}

.location-card dl {
  display: grid;
  margin: 0 0 24px;
  border-top: 1px solid rgb(83 87 67 / 24%);
}

.location-card dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  border-bottom: 1px solid rgb(83 87 67 / 24%);
  padding: 14px 0;
}

.location-card dt {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  text-transform: none;
}

.location-card dd {
  margin: 0;
  font-size: 20px;
  font-weight: 300;
  text-align: right;
}

.card-actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

.card-actions a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 0;
  padding: 0;
  border-bottom: 2px solid currentColor;
  color: var(--ink);
  background: transparent;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
}

.card-actions a::after {
  content: "↗";
  border-bottom: 0;
  line-height: 1;
  transform: translateY(-1px);
}

.card-actions a:nth-child(2) {
  color: var(--ink);
  background: transparent;
}

.location-alt {
  padding: 128px var(--header-margin) 0;
}

.location-alt__hero,
.location-alt__map {
  width: 100%;
  margin: 0 auto;
}

.location-alt__intro {
  width: min(100%, 520px);
  margin: 0;
}

.location-alt__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid rgb(83 87 67 / 72%);
  padding: 0 0 14px;
}

.location-alt__top h1 {
  font-size: 36px;
  line-height: 1.05;
}

.location-alt__place {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 4px;
  font-size: 20px;
  line-height: 1.2;
  white-space: nowrap;
}

.location-alt__place::before {
  content: "●";
  font-size: 14px;
  line-height: 1;
}

.location-alt__gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(42px, 5vw, 64px);
}

.location-alt__gallery img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.location-alt__gallery img:nth-child(1),
.location-alt__gallery img:nth-child(2) {
  aspect-ratio: 16 / 5.6;
}

.location-alt__gallery img:nth-child(3) {
  grid-column: 2;
  grid-row: 1 / span 2;
  aspect-ratio: 4 / 5;
}

.location-alt__intro {
  padding: clamp(36px, 4vw, 52px) 0 0;
}

.location-alt__intro p {
  margin: 0;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 300;
}

.location-alt__intro p + p {
  margin-top: 20px;
}

.location-alt__intro strong {
  font-weight: 700;
}

.location-alt__intro .stage__text-link {
  display: flex;
  width: fit-content;
  margin-top: 18px;
}

.location-alt__map {
  padding-bottom: clamp(54px, 7vw, 88px);
}

.location-alt__map iframe {
  display: block;
  width: 100%;
  height: clamp(340px, 31vw, 520px);
  border: 0;
  filter: grayscale(1);
}

.site-footer {
  display: grid;
  align-items: center;
  padding: clamp(48px, 8vw, 120px) var(--page-margin);
  color: var(--white);
  background: var(--surface-dark);
}

.site-footer__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 28vw);
  align-items: stretch;
  gap: clamp(40px, 8vw, 140px);
  width: 100%;
}

.site-footer__text {
  align-self: center;
}

.site-footer__headline {
  max-width: 900px;
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.35;
  font-weight: 400;
}

.site-footer__signature {
  margin: clamp(28px, 4vw, 52px) 0 0;
  font-family: "Indie Flower", cursive;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1;
}

.site-footer__heart-wrap {
  position: relative;
  align-self: stretch;
  min-width: 180px;
}

.site-footer__heart {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  justify-self: center;
  object-fit: contain;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 22px);
}

.image-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 14px 36px rgb(83 87 67 / 10%);
}

@media (max-width: 1024px) {
  .onepage-location__intro {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }

  .onepage-location__intro > img {
    display: none;
  }

  .onepage-location__gallery-mobile-only {
    display: block;
  }

  .onepage-location__gallery {
    display: flex;
    gap: 12px;
    width: 100vw;
    margin-right: calc(var(--page-margin) * -1);
    margin-bottom: 40px;
    margin-left: calc(var(--page-margin) * -1);
    padding: 0 var(--page-margin);
    overflow-x: scroll;
    scrollbar-width: none;
    scroll-padding-left: var(--page-margin);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .onepage-location__gallery img,
  .onepage-location__gallery img:nth-child(1),
  .onepage-location__gallery img:nth-child(2),
  .onepage-location__gallery img:nth-child(3),
  .onepage-location__gallery img:nth-child(4) {
    flex: 0 0 min(82vw, 520px);
    width: min(82vw, 520px);
    height: clamp(320px, 52vw, 440px);
    aspect-ratio: 4 / 3;
    scroll-snap-align: start;
  }

  .onepage-location__gallery img:first-child {
    margin-left: 0;
  }

  .onepage-location__gallery img:last-child {
    margin-right: 0;
  }

  .onepage-location__gallery::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
}

@media (max-width: 820px) {
  :root {
    --page-margin: 32px;
  }

  body {
    font-size: 18px;
  }

  h1 {
    font-size: 64px;
  }

  .h0 {
    font-size: 53px;
  }

  .stage__title {
    font-size: 64px;
  }

  .section h2 {
    font-size: 32px;
  }

  .module-heading h2 {
    font-size: 32px;
  }

  h2.editorial-heading {
    font-size: clamp(58px, 13vw, 104px);
  }

  .onepage-nav {
    position: fixed;
    right: 0;
    left: 0;
    overflow-x: auto;
    margin-bottom: 0;
    padding: 14px var(--page-margin);
  }

  .onepage-nav__brand {
    flex: 0 0 auto;
  }

  .onepage-nav__links {
    justify-content: flex-start;
    gap: 32px;
    min-width: max-content;
  }

  .onepage-section {
    position: relative;
    top: auto;
    min-height: auto;
    padding: 72px var(--page-margin);
    scroll-margin-top: var(--onepage-nav-offset);
  }

  .onepage-stay {
    padding-bottom: 0;
  }

  .onepage-panel {
    min-height: auto;
  }

  .onepage-location__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .onepage-location__intro {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }

  .onepage-location__intro > img {
    display: none;
    aspect-ratio: 4 / 3;
  }

  .onepage-location__gallery-mobile-only {
    display: block;
  }

  .onepage-location__gallery {
    display: flex;
    gap: 12px;
    width: 100vw;
    margin-right: calc(var(--page-margin) * -1);
    margin-bottom: 40px;
    margin-left: calc(var(--page-margin) * -1);
    padding: 0 var(--page-margin);
    overflow-x: scroll;
    scrollbar-width: none;
    scroll-padding-left: var(--page-margin);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .onepage-location__gallery img,
  .onepage-location__gallery img:nth-child(1),
  .onepage-location__gallery img:nth-child(2),
  .onepage-location__gallery img:nth-child(3),
  .onepage-location__gallery img:nth-child(4) {
    flex: 0 0 min(82vw, 520px);
    width: min(82vw, 520px);
    height: clamp(320px, 52vw, 440px);
    aspect-ratio: 4 / 3;
    scroll-snap-align: start;
  }

  .onepage-location__gallery img:first-child {
    margin-left: 0;
  }

  .onepage-location__gallery img:last-child {
    margin-right: 0;
  }

  .onepage-location__copy {
    max-width: none;
  }

  .onepage-location__copy p {
    font-size: 21px;
  }

  .onepage-stay__intro p {
    font-size: 21px;
  }

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

  .stay-tile h3 {
    font-size: 24px;
  }

  .stay-map {
    min-height: 520px;
    background-image: url("assets/images/stay-map-background-mobile.svg");
    background-position: center;
  }

  .stay-map::before {
    background: rgb(14 25 23 / 8%);
  }

  .stay-map__cta {
    opacity: 1;
    transform: translateY(0);
  }

  .hero__date,
  .hero__text,
  .callout p:last-child,
  .location-card p,
  .location-card dd,
  .card-actions a,
  .stage__text-link,
  .stage__button,
  .faq-question,
  .faq-answer p {
    font-size: 18px;
  }

  .copy-large,
  .stage__content p {
    font-size: 21px;
  }

  .callout p:last-child {
    font-size: 18px;
  }

  .site-footer__content {
    grid-template-columns: 1fr minmax(150px, 30vw);
    gap: 32px;
  }

  .site-footer__headline {
    font-size: 34px;
  }

  .site-header {
    gap: 18px;
  }

  .main-nav {
    gap: 8px;
  }

  .stage {
    align-items: stretch;
    height: auto;
    overflow: visible;
  }

  .stage__inner {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100svh;
  }

  .stage__copy {
    padding: 132px var(--header-margin) 42px;
  }

  .stage__top {
    align-items: flex-end;
    flex-direction: row;
    gap: 18px;
    padding: 0 0 18px;
  }

  .stage__top h2 {
    font-size: 30px;
  }

  .stage__place::before {
    width: 20px;
    height: 20px;
    font-size: 15px;
    line-height: 20px;
  }

  .stage__content p + p {
    margin-top: 25px;
  }

  .stage__content {
    padding: 32px 0 0;
  }

  .stage__media {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    min-height: 0;
  }

  .stage__media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .location-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 38px 0;
  }

  .location-card img,
  .location-card > div {
    grid-column: 1;
  }

  .location-card img {
    grid-row: 1;
  }

  .location-card > div {
    grid-row: 2;
  }

  .location-card dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .location-card dd {
    text-align: left;
  }

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

  .image-grid img {
    aspect-ratio: 16 / 11;
  }

  .location-alt {
    padding-top: 112px;
  }

  .location-alt__top {
    gap: 18px;
    padding-bottom: 16px;
  }

  .location-alt__top h1 {
    font-size: 64px;
  }

  .location-alt__place {
    margin-bottom: 6px;
    font-size: 18px;
  }

  .location-alt__gallery {
    display: flex;
    gap: 12px;
    margin-right: calc(var(--header-margin) * -1);
    margin-left: calc(var(--header-margin) * -1);
    padding: 0 var(--header-margin) 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .location-alt__gallery img,
  .location-alt__gallery img:nth-child(1),
  .location-alt__gallery img:nth-child(2),
  .location-alt__gallery img:nth-child(3) {
    flex: 0 0 min(82vw, 520px);
    width: min(82vw, 520px);
    height: auto;
    aspect-ratio: 4 / 3;
    scroll-snap-align: start;
  }

  .location-alt__intro {
    max-width: none;
    padding: 44px 0;
  }

  .location-alt__intro p {
    font-size: 18px;
  }
}

@media (max-width: 520px) {
  :root {
    --page-margin: 20px;
  }

  body {
    font-size: 17px;
  }

  h1 {
    font-size: 46px;
  }

  .h0 {
    font-size: 53px;
  }

  .stage__title {
    font-size: clamp(34px, 10vw, 46px);
  }

  .section h2 {
    font-size: 30px;
  }

  .module-heading h2 {
    font-size: 30px;
  }

  h2.editorial-heading {
    max-width: 100%;
    font-size: clamp(42px, 12vw, 58px);
    line-height: 0.92;
  }

  .onepage-nav__links {
    gap: 26px;
  }

  .onepage-section {
    padding: 60px var(--page-margin);
  }

  .onepage-stay {
    padding-bottom: 0;
  }

  .onepage-panel {
    min-height: auto;
  }

  .onepage-location__copy p {
    font-size: 19px;
  }

  .onepage-location__gallery img,
  .onepage-location__gallery img:nth-child(1),
  .onepage-location__gallery img:nth-child(2),
  .onepage-location__gallery img:nth-child(3),
  .onepage-location__gallery img:nth-child(4) {
    flex-basis: 84vw;
    width: 84vw;
    height: clamp(260px, 68vw, 360px);
  }

  .onepage-stay__intro p {
    font-size: 19px;
  }

  .stay-card-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 32px;
  }

  .stay-tile img {
    margin-bottom: 18px;
  }

  .stay-tile h3 {
    font-size: 23px;
  }

  .stay-tile__price {
    font-size: 17px;
  }

  .stay-tile__copy {
    font-size: 16px;
  }

  .stage__top {
    gap: 12px;
    padding-bottom: 14px;
  }

  .stage__copy {
    padding-top: 112px;
  }

  .stage__top h2 {
    font-size: 20px;
  }

  .main-nav {
    gap: 18px;
  }

  .stage__place {
    gap: 8px;
  }

  .stage__place::before {
    width: 16px;
    height: 16px;
    font-size: 12px;
    line-height: 16px;
  }

  .hero__date,
  .hero__text,
  .callout p:last-child,
  .location-card p,
  .location-card dd,
  .card-actions a,
  .stage__text-link,
  .stage__button,
  .faq-question,
  .faq-answer p {
    font-size: 17px;
  }

  .faq-question {
    padding: 22px 0;
  }

  .faq-answer {
    padding-bottom: 0;
  }

  .copy-large,
  .stage__content p {
    font-size: 19px;
  }

  .callout p:last-child {
    font-size: 17px;
  }

  .site-footer__content {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .site-footer__headline {
    font-size: 28px;
  }

  .hero__content {
    text-align: center;
  }

  .section h2,
  .site-footer__headline {
    line-height: 1.05;
  }

  .site-footer__headline {
    line-height: 1.25;
  }

  .site-footer__signature {
    margin-top: 28px;
    font-size: 34px;
  }

  .site-footer__heart-wrap {
    min-width: 0;
    width: 220px;
    aspect-ratio: 345 / 400;
    justify-self: start;
  }

  .site-footer__heart {
    max-width: 220px;
  }

  .tab-list {
    gap: 24px;
  }

  .tab {
    font-size: 22px;
    width: auto;
  }

  .stay-recommendations .tab-list {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: clamp(10px, 3vw, 16px);
  }

  .stay-recommendations .tab {
    min-height: 42px;
    font-size: clamp(17px, 4.2vw, 20px);
  }

  .card-actions a {
    width: fit-content;
    justify-content: flex-start;
  }

  .stage__button {
    width: 100%;
    justify-content: space-between;
  }

  .location-alt {
    padding-top: 96px;
  }

  .location-alt__top {
    align-items: flex-end;
  }

  .location-alt__top h1 {
    font-size: 46px;
  }

  .location-alt__place {
    font-size: 17px;
  }

  .location-alt__gallery img,
  .location-alt__gallery img:nth-child(1),
  .location-alt__gallery img:nth-child(2),
  .location-alt__gallery img:nth-child(3) {
    flex-basis: 84vw;
    width: 84vw;
  }

  .location-alt__intro p {
    font-size: 17px;
  }

  .location-alt__map iframe {
    height: 360px;
  }
}
