:root {
  color-scheme: light;
  --bg: oklch(1 0 0);
  --surface: oklch(0.965 0.008 150);
  --ink: oklch(0.205 0.025 150);
  --muted: oklch(0.46 0.025 150);
  --primary: oklch(0.37 0.095 150);
  --primary-deep: oklch(0.24 0.065 150);
  --primary-bright: oklch(0.55 0.145 150);
  --accent: oklch(0.56 0.18 25);
  --white: oklch(1 0 0);
  --radius: 12px;
  --header-height: 76px;
  --page-pad: clamp(1.25rem, 4vw, 4.5rem);
  --max-width: 1440px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
}

body.is-menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  transform: translateY(-180%);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--primary-deep);
  transition: transform 180ms var(--ease);
}

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

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

h1,
h2,
h3 {
  font-family: Baskerville, Georgia, serif;
  font-weight: 400;
  text-wrap: balance;
}

h2 {
  max-width: 14ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.75rem, 6vw, 5.75rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

p {
  text-wrap: pretty;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 var(--page-pad);
  color: var(--white);
  background: linear-gradient(to bottom, oklch(0.08 0 0 / 0.52), transparent);
  transition:
    color 260ms var(--ease),
    background 260ms var(--ease),
    box-shadow 260ms var(--ease);
}

.site-header.is-solid {
  color: var(--ink);
  background: oklch(1 0 0 / 0.92);
  box-shadow: 0 1px 0 oklch(0.2 0.02 150 / 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  font-family: Baskerville, Georgia, serif;
  font-size: 1.1rem;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.2vw, 2.5rem);
  font-size: 0.9rem;
}

.site-nav a {
  position: relative;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.4rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 0.7rem 1.1rem;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.site-header.is-solid .nav-cta {
  color: var(--white);
  border-color: var(--primary);
  background: var(--primary);
}

.menu-toggle {
  display: none;
  border: 0;
  color: inherit;
  background: transparent;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100dvh;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--primary-deep);
}

.hero-slides,
.hero-slide,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-slide {
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition:
    opacity 1100ms var(--ease),
    transform 8s linear;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, oklch(0.12 0.025 150 / 0.76) 0%, oklch(0.12 0.02 150 / 0.26) 58%, transparent 82%),
    linear-gradient(to top, oklch(0.1 0.02 150 / 0.65), transparent 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(850px, 100%);
  padding: calc(var(--header-height) + 5rem) var(--page-pad) clamp(8rem, 15vh, 10rem);
}

.hero-kicker,
.section-label {
  margin-bottom: 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 13ch;
  margin-bottom: 1.4rem;
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero-intro {
  max-width: 36rem;
  margin-bottom: 2rem;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 180ms var(--ease),
    background 180ms var(--ease),
    color 180ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button-primary {
  color: var(--white);
  background: var(--accent);
}

.button-ghost {
  border: 1px solid oklch(1 0 0 / 0.66);
  color: var(--white);
  background: oklch(0.1 0 0 / 0.24);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.button-outline {
  border: 1px solid var(--primary);
  color: var(--primary);
}

.button-light {
  color: var(--primary-deep);
  background: var(--white);
}

.button-ghost-light {
  border: 1px solid oklch(1 0 0 / 0.6);
  color: var(--white);
}

.hero-controls {
  position: absolute;
  z-index: 3;
  right: var(--page-pad);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid oklch(1 0 0 / 0.28);
  border-radius: 999px;
  background: oklch(0.12 0 0 / 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-controls button,
.review-meta button {
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.hero-controls span {
  min-width: 3rem;
  text-align: center;
}

.fact-band {
  display: grid;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem var(--page-pad);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.fact-band div {
  display: grid;
  gap: 0.35rem;
}

.fact-band strong {
  color: var(--primary);
  font-size: 1rem;
}

.fact-band span {
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(6rem, 10vw, 10rem) var(--page-pad);
}

.story {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.story-copy {
  padding-left: clamp(0rem, 4vw, 4rem);
}

.story-copy p:not(.section-label),
.section-heading > p:last-child,
.breakfast-copy > p,
.explore-copy > p,
.contact-copy > p {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.story-images {
  position: relative;
  min-height: 670px;
}

.story-images figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.story-images img {
  height: 100%;
  object-fit: cover;
}

.story-image-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 78%;
  height: 82%;
}

.story-image-small {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45%;
  height: 44%;
  border: 8px solid var(--white);
}

.rooms {
  max-width: none;
  color: var(--white);
  background: var(--primary-deep);
}

.rooms > * {
  width: min(calc(100% - 2 * var(--page-pad)), var(--max-width));
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.rooms .section-heading > p:last-child {
  color: oklch(0.9 0.02 150);
}

.room-stage {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
}

.room-photo-wrap {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  background: var(--surface);
}

.room-photo-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 260ms var(--ease),
    transform 650ms var(--ease);
}

.room-photo-wrap.is-changing > img {
  opacity: 0.25;
  transform: scale(1.015);
}

.room-photo-nav {
  position: absolute;
  top: 50%;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid oklch(1 0 0 / 0.4);
  border-radius: 50%;
  color: var(--white);
  background: oklch(0.1 0 0 / 0.34);
  transform: translateY(-50%);
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.room-photo-prev {
  left: 1rem;
}

.room-photo-next {
  right: 1rem;
}

.room-photo-count {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  color: var(--white);
  background: oklch(0.1 0 0 / 0.42);
  font-size: 0.85rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.room-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 5rem);
}

.room-name {
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.room-details h3 {
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.025em;
}

.room-details > p:not(.room-name) {
  color: var(--muted);
  line-height: 1.7;
}

.amenity-list {
  display: grid;
  margin: 1.5rem 0 2rem;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
  list-style: none;
}

.amenity-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.88rem;
}

.amenity-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  content: "";
  background: var(--primary-bright);
}

.room-details .button {
  align-self: flex-start;
}

.room-selector {
  display: flex;
  margin-top: 2rem;
  padding-bottom: 0.5rem;
  gap: 0.65rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.room-selector button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0.65rem 1rem;
  border: 1px solid oklch(1 0 0 / 0.25);
  border-radius: 999px;
  color: oklch(0.92 0.02 150);
  background: transparent;
  cursor: pointer;
}

.room-selector button.is-active {
  color: var(--primary-deep);
  border-color: var(--white);
  background: var(--white);
}

.breakfast {
  display: grid;
  min-height: 720px;
  grid-template-columns: 1.08fr 0.92fr;
}

.breakfast-media {
  min-height: 640px;
}

.breakfast-media img {
  height: 100%;
  object-fit: cover;
}

.breakfast-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem);
  color: var(--white);
  background: var(--primary);
}

.breakfast-copy > p {
  color: oklch(0.94 0.015 150);
}

.recognition {
  display: grid;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid oklch(1 0 0 / 0.28);
  gap: 0.3rem;
}

.recognition span {
  color: oklch(0.9 0.02 150);
  font-size: 0.85rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 135px;
  gap: 0.75rem;
}

.gallery-grid button {
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--surface);
  cursor: zoom-in;
}

.gallery-grid button:nth-child(1) {
  grid-column: span 7;
  grid-row: span 3;
}

.gallery-grid button:nth-child(2) {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-grid button:nth-child(3) {
  grid-column: span 5;
  grid-row: span 3;
}

.gallery-grid button:nth-child(4) {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-grid button:nth-child(5) {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-grid button:nth-child(6) {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-grid button:nth-child(7) {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-grid button:nth-child(8) {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.gallery-grid button:hover img {
  transform: scale(1.035);
}

.explore {
  display: grid;
  align-items: center;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.activity-groups {
  display: grid;
  margin: 2rem 0;
  gap: 0;
}

.activity-groups div {
  display: grid;
  padding: 1rem 0;
  border-bottom: 1px solid oklch(0.3 0.03 150 / 0.16);
  grid-template-columns: 0.42fr 1fr;
  gap: 1rem;
}

.activity-groups span {
  color: var(--muted);
}

.map-wrap {
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 620px;
  border: 0;
  filter: saturate(0.72) contrast(1.04);
}

.reviews {
  display: grid;
  align-items: end;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(2rem, 8vw, 8rem);
}

.reviews-title h2 {
  margin-bottom: 0;
}

.review-story {
  padding: clamp(2.5rem, 5vw, 5rem);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--primary-deep);
}

.review-story > p {
  min-height: 3.3em;
  margin-bottom: 2.5rem;
  font-family: Baskerville, Georgia, serif;
  font-size: clamp(1.9rem, 3.2vw, 3.25rem);
  line-height: 1.1;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: oklch(0.88 0.02 150);
  font-size: 0.85rem;
}

.review-meta div {
  display: flex;
  gap: 0.5rem;
}

.review-meta button {
  padding: 0.55rem 0.75rem;
  border: 1px solid oklch(1 0 0 / 0.28);
  border-radius: 999px;
  color: var(--white);
}

.review-links {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.review-links a {
  color: var(--primary);
  font-weight: 700;
  text-underline-offset: 0.25rem;
}

.contact {
  display: grid;
  min-height: 720px;
  color: var(--white);
  background: var(--primary-deep);
  grid-template-columns: 1fr 1fr;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem);
}

.contact-copy > p {
  color: oklch(0.9 0.02 150);
}

.contact address {
  margin-top: 3rem;
  color: oklch(0.86 0.02 150);
  font-style: normal;
}

.contact-visual {
  min-height: 640px;
}

.contact-visual img {
  height: 100%;
  object-fit: cover;
}

.site-footer {
  display: grid;
  padding: 4rem var(--page-pad);
  color: var(--white);
  background: oklch(0.13 0.025 150);
  grid-template-columns: 1fr auto;
  gap: 3rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

.site-footer p {
  margin-bottom: 0;
  color: oklch(0.76 0.02 150);
}

.social-links {
  display: flex;
  gap: 1.25rem;
}

.social-links a {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  color: var(--white);
  font-size: 0.75rem;
  text-decoration: none;
}

.social-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid oklch(1 0 0 / 0.25);
  border-radius: 50%;
  transition:
    transform 180ms var(--ease),
    background 180ms var(--ease);
}

.social-icon img {
  width: 1.25rem;
  height: 1.25rem;
}

.social-links a:hover .social-icon {
  background: var(--primary);
  transform: translateY(-2px);
}

.lightbox {
  width: min(92vw, 1200px);
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: oklch(0.08 0 0);
}

.lightbox::backdrop {
  background: oklch(0.05 0 0 / 0.86);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox img {
  max-height: 86vh;
  object-fit: contain;
}

.lightbox button {
  position: absolute;
  z-index: 1;
  top: 1rem;
  right: 1rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid oklch(1 0 0 / 0.32);
  border-radius: 999px;
  color: var(--white);
  background: oklch(0.1 0 0 / 0.5);
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    color: var(--ink);
    background: oklch(1 0 0 / 0.94);
    box-shadow: 0 1px 0 oklch(0.2 0.02 150 / 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 2rem var(--page-pad);
    color: var(--ink);
    background: var(--white);
    transform: translateX(100%);
    transition: transform 320ms var(--ease);
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid oklch(0.2 0.02 150 / 0.12);
    font-family: Baskerville, Georgia, serif;
    font-size: 2rem;
  }

  .site-nav .nav-cta {
    margin-top: 1rem;
    padding: 1rem 1.2rem;
    border: 0;
    color: var(--white);
    background: var(--primary);
    font-family: inherit;
    font-size: 0.95rem;
    text-align: center;
  }

  .fact-band {
    grid-template-columns: 1fr 1fr;
  }

  .story,
  .explore,
  .reviews {
    grid-template-columns: 1fr;
  }

  .story-copy {
    padding-left: 0;
  }

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

  .room-photo-wrap {
    min-height: 70vw;
    max-height: 650px;
  }

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

  .breakfast-media {
    min-height: 58vw;
  }

  .explore {
    gap: 3rem;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 520px;
  }

  .review-links {
    grid-column: 1;
  }

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

  .contact-visual {
    min-height: 62vw;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
    --page-pad: 1.15rem;
  }

  h2 {
    font-size: clamp(2.65rem, 14vw, 4.2rem);
  }

  .brand {
    font-size: 1rem;
  }

  .brand-mark {
    width: 1.9rem;
    height: 1.9rem;
  }

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

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(3.25rem, 16vw, 5rem);
  }

  .hero-intro {
    max-width: 22rem;
    font-size: 1rem;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .hero-controls {
    right: auto;
    left: var(--page-pad);
  }

  .fact-band {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .fact-band div {
    padding-bottom: 1rem;
    border-bottom: 1px solid oklch(0.2 0.02 150 / 0.12);
  }

  .section {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .story {
    gap: 3rem;
  }

  .story-images {
    min-height: 470px;
  }

  .story-image-main {
    width: 90%;
    height: 80%;
  }

  .story-image-small {
    width: 52%;
    height: 38%;
  }

  .rooms {
    padding-right: 0;
    padding-left: 0;
  }

  .room-photo-wrap {
    min-height: 78vw;
  }

  .room-details {
    padding: 2rem 1.25rem 2.5rem;
  }

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

  .room-selector {
    padding-right: var(--page-pad);
  }

  .breakfast-copy,
  .contact-copy {
    padding: 4rem var(--page-pad);
  }

  .breakfast-media {
    min-height: 82vw;
  }

  .gallery-grid {
    display: flex;
    margin-right: calc(-1 * var(--page-pad));
    padding-right: var(--page-pad);
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .gallery-grid button {
    flex: 0 0 82vw;
    height: 105vw;
    max-height: 520px;
    scroll-snap-align: start;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 430px;
  }

  .activity-groups div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .review-story {
    padding: 2rem 1.25rem;
  }

  .review-story > p {
    min-height: 7em;
    font-size: 2rem;
  }

  .review-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-links {
    flex-direction: column;
  }

  .contact-visual {
    min-height: 82vw;
  }

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

  .social-links {
    justify-content: flex-start;
  }
}

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

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

  .hero-slide {
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .hero-controls,
  .button-ghost,
  .room-photo-nav,
  .room-photo-count,
  .lightbox button {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
