:root {
  --graphite: #070809;
  --graphite-soft: #101111;
  --champagne: #d8bd86;
  --champagne-deep: #b89558;
  --off-white: #f7f2e8;
  --muted: #c8c2b8;
  --line: rgba(216, 189, 134, 0.32);
  --header-height: 92px;
  --hero-image-lift: clamp(260px, 34vh, 380px);
  --hero-start-scale: 1.018;
  --ease-cinema: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-hero-rise: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: auto;
  background: var(--graphite);
}

@media (min-width: 901px) {
  html {
    scroll-snap-type: y proximity;
  }

  html.is-programmatic-scroll {
    scroll-snap-type: none;
  }
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--graphite);
  color: var(--off-white);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  overflow-x: hidden;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: clamp(8px, 1.05vw, 20px);
  min-height: var(--header-height);
  padding: 22px clamp(54px, 5vw, 96px) 22px clamp(22px, 3.6vw, 54px);
  color: var(--off-white);
  background: linear-gradient(180deg, rgba(7, 8, 9, 0.58), rgba(7, 8, 9, 0));
  opacity: 0;
  transform: translateY(-18px);
  animation: headerReveal 1.05s var(--ease-cinema) 0.42s forwards;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(112px, 10vw, 156px);
}

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

.main-nav {
  justify-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(9px, 0.78vw, 15px);
  width: min(100%, 900px);
  max-width: 900px;
  color: rgba(247, 242, 232, 0.88);
  font-size: clamp(0.9rem, 0.94vw, 1rem);
  font-weight: 560;
  line-height: 1;
  white-space: nowrap;
  transform: translateX(clamp(6px, 1.15vw, 22px));
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  transition: color 220ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--champagne);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: center;
  transition: opacity 220ms ease, transform 220ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--off-white);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta,
.language-toggle,
.language-menu button,
.menu-toggle,
.btn {
  border: 0;
  cursor: pointer;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: max-content;
  min-height: 44px;
  padding: 0 clamp(14px, 1.25vw, 20px);
  border: 1px solid var(--line);
  background: rgba(7, 8, 9, 0.28);
  color: var(--off-white);
  font-size: clamp(0.76rem, 0.72vw, 0.82rem);
  line-height: 1;
  transition: border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: rgba(216, 189, 134, 0.72);
  background: rgba(216, 189, 134, 0.16);
  color: #fff8ea;
}

.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: max-content;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 58px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(216, 189, 134, 0.26);
  background: rgba(7, 8, 9, 0.26);
  color: rgba(247, 242, 232, 0.92);
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1;
  transition: border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.language-chevron {
  color: var(--champagne);
  font-size: 0.7rem;
  transform: translateY(-1px);
  transition: transform 220ms ease;
}

.language-switcher.is-open .language-chevron {
  transform: translateY(-1px) rotate(180deg);
}

.language-toggle:hover,
.language-toggle:focus-visible,
.language-switcher.is-open .language-toggle {
  border-color: rgba(216, 189, 134, 0.68);
  background: rgba(216, 189, 134, 0.12);
  color: #fff8ea;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 138px;
  padding: 8px;
  border: 1px solid rgba(216, 189, 134, 0.2);
  background: rgba(8, 9, 9, 0.94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 34px;
  padding: 0 10px;
  background: transparent;
  color: rgba(247, 242, 232, 0.84);
  font-size: 0.82rem;
  text-align: left;
  transition: background 180ms ease, color 180ms ease;
}

.language-menu button:hover,
.language-menu button:focus-visible,
.language-menu button.is-active {
  background: rgba(216, 189, 134, 0.1);
  color: #fff8ea;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(7, 8, 9, 0.34);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--off-white);
  transition: transform 220ms ease, opacity 220ms ease;
}

.hero,
.next-section {
  min-height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero {
  position: relative;
  display: grid;
  align-items: start;
  height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background: var(--graphite);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -3;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: calc(100vh + var(--hero-image-lift));
  object-fit: cover;
  object-position: 58% top;
  transform: translate3d(0, 0, 0) scale(var(--hero-start-scale));
  transform-origin: center top;
  will-change: transform;
  animation: heroImageSettle 3.05s var(--ease-hero-rise) 0.04s forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.94) 0%, rgba(5, 6, 7, 0.82) 30%, rgba(5, 6, 7, 0.44) 58%, rgba(5, 6, 7, 0.16) 100%),
    linear-gradient(180deg, rgba(5, 6, 7, 0.16) 0%, rgba(5, 6, 7, 0.2) 48%, rgba(5, 6, 7, 0.72) 100%);
  pointer-events: none;
}

.hero-content {
  width: min(760px, calc(100% - 44px));
  margin-left: clamp(24px, 6vw, 90px);
  padding-top: clamp(142px, 19.5vh, 188px);
  opacity: 0;
  transform: translateY(42px);
  animation: contentReveal 1.24s var(--ease-cinema) 0.68s forwards;
}

.hero-eyebrow {
  margin: 0 0 14px;
  color: var(--champagne);
  font-size: clamp(0.76rem, 0.82vw, 0.94rem);
  font-weight: 600;
  line-height: 1.2;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--off-white);
  font-family: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(3.4rem, 4.72vw, 5.9rem);
  font-weight: 500;
  line-height: 0.96;
}

.hero h1 span {
  display: block;
}

.hero-subtitle {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.02vw, 1.12rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 0;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  border: 1px solid rgba(216, 189, 134, 0.88);
  background: linear-gradient(135deg, var(--champagne), var(--champagne-deep));
  color: #17120b;
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(7, 8, 9, 0.24);
  color: var(--off-white);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(216, 189, 134, 0.78);
  background: rgba(216, 189, 134, 0.12);
}

.section-dark-bg {
  background: linear-gradient(180deg, #090909 0%, #0b0b0b 48%, #090909 100%);
  background-color: #090909;
}

.region-section {
  position: relative;
  min-height: auto;
  padding: clamp(92px, 10vh, 128px) 0 clamp(86px, 9vh, 118px);
  overflow: hidden;
}

.region-copy {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  opacity: 0;
  text-align: center;
  transform: translateX(-140px);
  will-change: opacity, transform;
}

.region-section.is-visible .region-copy {
  animation: regionCopyEnter 1.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.region-copy h2 {
  max-width: 1120px;
  margin: 0 auto;
  color: var(--off-white);
  font-family: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(3.05rem, 4.15vw, 5.15rem);
  font-weight: 500;
  line-height: 0.99;
}

.region-subtitle {
  max-width: 1080px;
  margin: 22px auto 0;
  color: rgba(247, 242, 232, 0.9);
  font-size: clamp(1.02rem, 1.16vw, 1.28rem);
  line-height: 1.62;
}

.region-carousel {
  width: 100%;
  margin-top: clamp(42px, 5.2vw, 72px);
  overflow: hidden;
}

.region-carousel-shell {
  padding-left: clamp(24px, 6vw, 90px);
  opacity: 0;
  transform: translateX(100vw);
  will-change: opacity, transform;
}

.region-section.is-visible .region-carousel-shell {
  animation: regionCardsEnter 1.18s cubic-bezier(0.22, 1, 0.36, 1) 0.04s forwards;
}

.region-track {
  --region-card-gap: clamp(18px, 1.4vw, 28px);
  display: flex;
  width: max-content;
  animation: regionMarquee 58s linear infinite;
  animation-play-state: paused;
}

.region-section.is-running .region-track {
  animation-play-state: running;
}

.region-carousel:hover .region-track {
  animation-play-state: paused;
}

.region-card-set {
  display: flex;
  flex: 0 0 auto;
  gap: var(--region-card-gap);
  padding-right: var(--region-card-gap);
}

.region-card {
  position: relative;
  flex: 0 0 clamp(280px, 26vw, 430px);
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border: 1px solid rgba(216, 189, 134, 0.16);
  border-radius: 8px;
  background: #101010;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.region-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.14), transparent 42%);
  content: "";
}

.region-card::after {
  position: absolute;
  bottom: 24px;
  left: 22px;
  z-index: 2;
  width: 34px;
  height: 1px;
  background: rgba(216, 189, 134, 0.74);
  content: "";
}

.region-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.region-card span {
  position: absolute;
  right: 22px;
  bottom: 44px;
  left: 22px;
  z-index: 2;
  color: var(--off-white);
  font-size: clamp(1rem, 1.05vw, 1.24rem);
  font-weight: 650;
  line-height: 1.18;
}

.about-section {
  display: grid;
  align-items: center;
  min-height: auto;
  padding: clamp(86px, 9vh, 116px) clamp(24px, 6vw, 90px);
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(380px, 520px) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(46px, 4.5vw, 86px);
  width: 100%;
  margin: 0;
}

.about-copy {
  max-width: 520px;
}

.section-eyebrow {
  margin: 0 0 16px;
  color: var(--champagne);
  font-size: clamp(0.74rem, 0.78vw, 0.9rem);
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: 0;
}

.about-copy h2 {
  max-width: 520px;
  margin: 0;
  color: var(--off-white);
  font-family: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(3.1rem, 4.05vw, 5.05rem);
  font-weight: 500;
  line-height: 0.98;
}

.about-copy h2::after {
  display: block;
  width: 52px;
  height: 1px;
  margin-top: 24px;
  background: rgba(216, 189, 134, 0.58);
  content: "";
}

.about-text {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.about-text p {
  margin: 0;
  color: rgba(200, 194, 184, 0.9);
  font-size: clamp(0.98rem, 0.96vw, 1.16rem);
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  color: var(--champagne);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1;
  transition: color 220ms ease, transform 220ms ease;
}

.text-link span {
  display: inline-block;
  transform: translateY(-1px);
  transition: transform 220ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: #f0d9aa;
  transform: translateY(-1px);
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(4px, -1px);
}

.about-media {
  position: relative;
  align-self: stretch;
  min-height: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 189, 134, 0.12);
  border-radius: 8px;
  background: #101010;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

.about-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.accommodations-section {
  position: relative;
  display: flex;
  min-height: 100dvh;
  height: 100dvh;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--header-height) + clamp(16px, 2.8vh, 32px)) clamp(24px, 5.2vw, 78px) clamp(22px, 3.8vh, 42px);
  scroll-margin-top: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background:
    radial-gradient(circle at 85% 15%, rgba(214, 178, 112, 0.07), transparent 28%),
    radial-gradient(circle at 12% 82%, rgba(255, 255, 255, 0.025), transparent 30%),
    linear-gradient(180deg, #17120e 0%, #100d0b 48%, #17120e 100%);
}

.accommodations-section::before {
  position: absolute;
  top: 18%;
  right: clamp(28px, 8vw, 132px);
  width: min(440px, 32vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 189, 134, 0.46), transparent);
  content: "";
  opacity: 0.7;
}

.accommodations-intro {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto clamp(18px, 3.2vh, 34px);
  text-align: center;
  opacity: 0;
  transform: translateY(34px);
}

.accommodations-section.is-visible .accommodations-intro {
  animation: accommodationIntroReveal 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.accommodations-intro h2 {
  margin: 0;
  color: var(--off-white);
  font-family: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(2.65rem, 3.55vw, 4.35rem);
  font-weight: 500;
  line-height: 1;
}

.accommodations-intro p:last-child {
  max-width: 1040px;
  margin: 14px auto 0;
  color: rgba(200, 194, 184, 0.9);
  font-size: clamp(1rem, 1.08vw, 1.22rem);
  line-height: 1.5;
}

.accommodation-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 4.8vw, 86px);
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(36px);
}

.accommodations-section.is-visible .accommodation-showcase {
  animation: accommodationShowcaseReveal 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
}

.accommodation-media {
  position: relative;
  min-height: 0;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: translateX(-34px);
}

.accommodations-section.is-visible .accommodation-media {
  animation: accommodationMediaReveal 1.25s cubic-bezier(0.22, 1, 0.36, 1) 0.32s forwards;
}

.accommodation-media-frame {
  position: relative;
  height: clamp(400px, 52vh, 560px);
  overflow: hidden;
  border: 1px solid rgba(216, 189, 134, 0.16);
  border-radius: 8px;
  background: #100d0b;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
}

.accommodation-media-frame::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 45%, rgba(0, 0, 0, 0.12));
  content: "";
  pointer-events: none;
}

.accommodation-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateX(9%) scale(1.04);
  clip-path: inset(0 0 0 100%);
  transition:
    clip-path 980ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 980ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 560ms ease;
}

.accommodation-image.is-active {
  z-index: 2;
  opacity: 1;
  transform: translateX(0) scale(1);
  clip-path: inset(0 0 0 0);
}

.accommodation-image.is-leaving {
  z-index: 1;
  opacity: 0.74;
  transform: translateX(-5%) scale(1.025);
  clip-path: inset(0 100% 0 0);
}

.accommodation-copy {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 0;
}

.accommodation-copy::before {
  display: block;
  width: 72px;
  height: 1px;
  margin-bottom: clamp(18px, 2.2vh, 28px);
  background: rgba(216, 189, 134, 0.58);
  content: "";
}

.accommodation-kicker {
  margin: 0 0 clamp(12px, 1.8vh, 18px);
  color: var(--champagne);
  font-size: clamp(0.76rem, 0.8vw, 0.92rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.accommodation-title {
  display: grid;
  gap: 0.02em;
  margin: 0;
  color: var(--off-white);
  font-family: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(2.95rem, 4.55vw, 5.85rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.accommodation-title-mask {
  display: block;
  overflow: hidden;
  padding: 0.04em 0 0.18em;
}

.accommodation-title-line {
  display: block;
  opacity: 0;
  transform: translateY(112%);
  transition:
    transform 860ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 560ms ease;
  transition-delay: calc(var(--line-index, 0) * 90ms);
}

.accommodation-description {
  max-width: 560px;
  margin: clamp(16px, 2.2vh, 24px) 0 0;
  color: rgba(200, 194, 184, 0.9);
  font-size: clamp(1rem, 1.03vw, 1.18rem);
  line-height: 1.62;
  opacity: 0;
  transform: translateY(22px);
  transition:
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 560ms ease;
  transition-delay: 160ms;
}

.accommodation-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(8px, 1.2vh, 11px) 20px;
  max-width: 600px;
  margin: clamp(18px, 2.6vh, 28px) 0 0;
  padding: 0;
  list-style: none;
}

.accommodation-details li {
  position: relative;
  padding-left: 18px;
  color: rgba(247, 242, 232, 0.9);
  font-size: clamp(0.88rem, 0.88vw, 1rem);
  line-height: 1.42;
  opacity: 0;
  transform: translateY(18px);
  transition:
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 460ms ease;
  transition-delay: calc(260ms + var(--detail-index, 0) * 70ms);
}

.accommodation-details li::before {
  position: absolute;
  top: 0.63em;
  left: 0;
  width: 6px;
  height: 6px;
  border: 1px solid rgba(216, 189, 134, 0.72);
  border-radius: 999px;
  content: "";
  transform: translateY(-50%);
}

.accommodation-copy.is-text-ready .accommodation-title-line,
.accommodation-copy.is-text-ready .accommodation-description,
.accommodation-copy.is-text-ready .accommodation-details li {
  opacity: 1;
  transform: translateY(0);
}

.accommodation-copy.is-changing .accommodation-title-line {
  opacity: 0;
  transform: translateY(-112%);
  transition-delay: 0ms;
}

.accommodation-copy.is-changing .accommodation-description,
.accommodation-copy.is-changing .accommodation-details li {
  opacity: 0;
  transform: translateY(-16px);
  transition-delay: 0ms;
}

.accommodation-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: clamp(20px, 3vh, 32px);
}

.accommodation-cta {
  min-width: min(100%, 250px);
}

.accommodation-controls {
  display: flex;
  gap: 10px;
}

.accommodation-arrow {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(216, 189, 134, 0.36);
  border-radius: 999px;
  background: rgba(7, 8, 9, 0.18);
  color: var(--off-white);
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.accommodation-arrow:hover,
.accommodation-arrow:focus-visible {
  border-color: rgba(216, 189, 134, 0.82);
  background: rgba(216, 189, 134, 0.12);
  transform: translateY(-1px);
}

.accommodation-dots {
  display: flex;
  gap: 8px;
  margin-top: clamp(18px, 2.4vh, 28px);
}

.accommodation-dot {
  width: 30px;
  height: 2px;
  border: 0;
  border-radius: 999px;
  background: rgba(247, 242, 232, 0.22);
  cursor: pointer;
  padding: 0;
  transition: width 260ms ease, background 260ms ease;
}

.accommodation-dot.is-active {
  width: 52px;
  background: rgba(216, 189, 134, 0.86);
}

.breakfast-section {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 9vh, 108px) clamp(24px, 6vw, 90px);
  scroll-margin-top: var(--header-height);
}

.breakfast-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(560px, 610px) minmax(230px, 315px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 3vw, 58px);
  width: 100%;
  margin: 0;
  padding: 0;
}

.breakfast-copy {
  max-width: 610px;
  opacity: 0;
  transform: translateX(-120px);
}

.breakfast-section.is-visible .breakfast-copy {
  animation: breakfastCopyEnter 1.28s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.breakfast-copy h2 {
  max-width: 560px;
  margin: 0;
  color: var(--off-white);
  font-family: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(2.8rem, 4.25vw, 5.15rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.breakfast-text {
  margin: 24px 0 0;
  color: rgba(200, 194, 184, 0.9);
  font-size: clamp(0.95rem, 0.96vw, 1.08rem);
  line-height: 1.72;
}

.breakfast-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.breakfast-highlight {
  min-height: 112px;
  padding: 20px;
  border: 1px solid rgba(216, 189, 134, 0.16);
  border-radius: 8px;
  background: rgba(247, 242, 232, 0.035);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.breakfast-highlight strong,
.breakfast-highlight span {
  display: block;
}

.breakfast-highlight strong {
  color: var(--off-white);
  font-size: clamp(1rem, 1vw, 1.18rem);
  line-height: 1.25;
}

.breakfast-highlight span {
  margin-top: 8px;
  color: rgba(216, 189, 134, 0.9);
  font-size: 0.9rem;
  line-height: 1.45;
}

.breakfast-link {
  margin-top: 26px;
}

.breakfast-video-shell {
  position: relative;
  justify-self: center;
  width: min(100%, 315px);
  height: clamp(430px, 58vh, 560px);
  overflow: hidden;
  border: 1px solid rgba(216, 189, 134, 0.18);
  border-radius: 10px;
  background: #101010;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
  opacity: 0;
  transform: scale(0.96);
}

.breakfast-section.is-visible .breakfast-video-shell {
  animation: breakfastVideoEnter 1.12s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
}

.breakfast-video-shell video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.breakfast-carousel {
  --breakfast-gap: 18px;
  position: relative;
  justify-self: end;
  width: calc(100% + clamp(120px, 11vw, 210px));
  height: clamp(430px, 58vh, 560px);
  margin-right: clamp(-280px, -11vw, -130px);
  overflow: hidden;
  opacity: 0;
  transform: translateX(160px);
}

.breakfast-section.is-visible .breakfast-carousel {
  animation: breakfastCarouselEnter 1.18s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
}

.breakfast-track {
  display: flex;
  width: max-content;
  height: 100%;
  gap: var(--breakfast-gap);
  animation: breakfastMarqueeX 22s linear infinite paused;
  will-change: transform;
}

.breakfast-section.is-running .breakfast-track {
  animation-play-state: running;
}

.breakfast-carousel:hover .breakfast-track {
  animation-play-state: paused;
}

.breakfast-image-set {
  display: flex;
  flex: 0 0 auto;
  height: 100%;
  gap: var(--breakfast-gap);
}

.breakfast-photo {
  flex: 0 0 clamp(244px, 16.4vw, 315px);
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 189, 134, 0.14);
  border-radius: 10px;
  aspect-ratio: 9 / 16;
  background: #111;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

.breakfast-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leisure-section {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 9vh, 116px) clamp(18px, 5vw, 72px) clamp(92px, 10vh, 128px);
  scroll-margin-top: var(--header-height);
}

.leisure-inner {
  position: relative;
  z-index: 1;
  max-width: 1460px;
  margin: 0 auto;
}

.leisure-intro {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
}

.leisure-section.is-visible .leisure-intro {
  animation: leisureIntroEnter 1.08s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.leisure-intro h2 {
  margin: 0 auto;
  color: var(--off-white);
  font-family: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(2.65rem, 4.05vw, 4.95rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.leisure-intro p:last-child {
  max-width: 1120px;
  margin: 18px auto 0;
  color: rgba(200, 194, 184, 0.9);
  font-size: clamp(0.98rem, 1.02vw, 1.13rem);
  line-height: 1.66;
}

@media (min-width: 901px) {
  .leisure-intro p:last-child {
    white-space: nowrap;
  }
}

.leisure-showcase {
  --leisure-card-size: clamp(320px, 31vw, 520px);
  --leisure-side-offset: clamp(470px, 45vw, 680px);
  --leisure-enter-offset: calc(var(--leisure-side-offset) + clamp(220px, 18vw, 330px));
  --leisure-side-scale: 0.68;
  --leisure-enter-scale: 0.58;
  --leisure-motion: 900ms cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  margin-top: clamp(38px, 4.3vw, 62px);
  opacity: 0;
  transform: translateY(36px);
}

.leisure-section.is-visible .leisure-showcase {
  animation: leisureShowcaseEnter 1.18s cubic-bezier(0.22, 1, 0.36, 1) 0.16s forwards;
}

.leisure-stage {
  position: relative;
  width: min(100%, 1460px);
  height: var(--leisure-card-size);
  margin: 0 auto;
}

.leisure-card {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: var(--leisure-card-size);
  height: var(--leisure-card-size);
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 189, 134, 0.18);
  border-radius: 10px;
  background: #101010;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  transition:
    transform var(--leisure-motion),
    opacity var(--leisure-motion),
    filter var(--leisure-motion),
    box-shadow var(--leisure-motion);
}

button.leisure-card,
.leisure-control {
  cursor: pointer;
  color: inherit;
  font: inherit;
}

.leisure-control {
  border: 0;
}

.leisure-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, transparent 34%, rgba(0, 0, 0, 0.58) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent 48%);
  content: "";
  pointer-events: none;
}

.leisure-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
}

.leisure-card.is-center {
  z-index: 4;
  opacity: 1;
  filter: brightness(1) saturate(1);
  transform: translate(-50%, -50%) scale(1);
}

.leisure-card.is-left {
  z-index: 2;
  opacity: 0.52;
  filter: brightness(0.62) saturate(0.88);
  transform: translate(calc(-50% - var(--leisure-side-offset)), -50%) scale(var(--leisure-side-scale));
}

.leisure-card.is-right {
  z-index: 2;
  opacity: 0.52;
  filter: brightness(0.62) saturate(0.88);
  transform: translate(calc(-50% + var(--leisure-side-offset)), -50%) scale(var(--leisure-side-scale));
}

.leisure-card.is-entering-right {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  filter: brightness(0.52) saturate(0.82);
  transform: translate(calc(-50% + var(--leisure-enter-offset)), -50%) scale(var(--leisure-enter-scale));
}

.leisure-card.is-leaving-left {
  z-index: 1;
  opacity: 0;
  filter: brightness(0.5) saturate(0.78);
  transform: translate(calc(-50% - var(--leisure-enter-offset)), -50%) scale(var(--leisure-enter-scale));
}

.leisure-showcase.is-resetting .leisure-card {
  transition: none !important;
}

.leisure-showcase.is-animating button.leisure-card,
.leisure-showcase.is-animating .leisure-control {
  pointer-events: none;
}

.leisure-title-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 8;
  display: grid;
  justify-items: center;
  width: max-content;
  max-width: calc(100vw - 28px);
  overflow: visible;
  color: var(--off-white);
  font-family: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-weight: 500;
  line-height: 0.78;
  pointer-events: none;
  text-align: center;
  text-shadow: 0 16px 44px rgba(0, 0, 0, 0.72);
  text-transform: uppercase;
  transform: translate(-50%, -51%);
}

.leisure-title-line {
  display: block;
  width: max-content;
  max-width: calc(100vw - 28px);
  overflow: visible;
  white-space: nowrap;
  transform: translateY(0);
  transition:
    clip-path 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 520ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.leisure-title-line-top {
  font-size: clamp(3.1rem, 5.6vw, 6.3rem);
}

.leisure-title-overlay.is-title-top-long .leisure-title-line-top {
  font-size: clamp(2.85rem, 4.85vw, 5.55rem);
}

.leisure-title-line-bottom {
  margin-top: clamp(14px, 1.25vw, 26px);
  font-size: clamp(3.55rem, 7.7vw, 8.35rem);
}

.leisure-showcase.is-animating .leisure-title-line {
  clip-path: inset(0 0 100% 0);
  opacity: 0;
}

.leisure-showcase.is-animating .leisure-title-line-top {
  transform: translateY(-44%) scale(0.98);
}

.leisure-showcase.is-animating .leisure-title-line-bottom {
  transform: translateY(32%) scale(0.985);
}

.leisure-showcase.is-title-entering .leisure-title-line-top {
  animation: leisureTitleTopEnter 820ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.leisure-showcase.is-title-entering .leisure-title-line-bottom {
  animation: leisureTitleBottomEnter 860ms cubic-bezier(0.22, 1, 0.36, 1) 60ms both;
}

.leisure-copy-panel {
  width: var(--leisure-card-size);
  margin: clamp(18px, 2vw, 26px) auto 0;
  opacity: 0;
  transform: translateY(18px);
}

.leisure-section.is-visible .leisure-copy-panel {
  animation: leisureCopyEnter 920ms cubic-bezier(0.22, 1, 0.36, 1) 0.44s forwards;
}

.leisure-copy-panel p {
  display: inline;
  margin: 0;
  color: rgba(200, 194, 184, 0.92);
  font-size: clamp(0.95rem, 0.98vw, 1.06rem);
  line-height: 1.66;
  transition: opacity 420ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.leisure-showcase.is-copy-changing .leisure-copy-panel p {
  opacity: 0;
  transform: translateY(16px);
}

.leisure-link {
  margin-top: 0;
  margin-left: 10px;
  white-space: nowrap;
  vertical-align: baseline;
}

.leisure-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  width: var(--leisure-card-size);
  margin: 22px auto 0;
}

.leisure-control {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(216, 189, 134, 0.38);
  border-radius: 999px;
  background: rgba(247, 242, 232, 0.035);
  color: var(--off-white);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.leisure-control:hover,
.leisure-control:focus-visible,
.leisure-card-prev:hover,
.leisure-card-next:hover,
.leisure-card-prev:focus-visible,
.leisure-card-next:focus-visible {
  border-color: rgba(216, 189, 134, 0.72);
}

.leisure-control:hover,
.leisure-control:focus-visible {
  background: rgba(216, 189, 134, 0.14);
  color: var(--champagne);
  transform: translateY(-1px);
}

.guests-section {
  position: relative;
  display: flex;
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--header-height) + clamp(14px, 2.3vh, 26px)) clamp(24px, 4.6vw, 74px) clamp(20px, 3.2vh, 34px);
  scroll-margin-top: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background:
    radial-gradient(circle at 85% 15%, rgba(214, 178, 112, 0.07), transparent 28%),
    radial-gradient(circle at 12% 82%, rgba(255, 255, 255, 0.025), transparent 30%),
    linear-gradient(180deg, #17120e 0%, #100d0b 48%, #17120e 100%);
}

.guests-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  transform: translateY(clamp(-54px, -5.4vh, -30px));
}

.guests-intro {
  max-width: 920px;
  margin: 0 auto clamp(16px, 2.5vh, 28px);
  text-align: center;
  opacity: 0;
  transform: translateY(26px);
}

.guests-section.is-visible .guests-intro {
  animation: guestsIntroEnter 920ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.guests-intro h2 {
  max-width: 820px;
  margin: 0 auto;
  color: var(--off-white);
  font-family: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(2.65rem, 4.05vw, 5.15rem);
  font-weight: 500;
  line-height: 0.96;
}

.guests-intro p:last-child {
  max-width: 760px;
  margin: 14px auto 0;
  color: rgba(200, 194, 184, 0.88);
  font-size: clamp(0.96rem, 1vw, 1.14rem);
  line-height: 1.55;
}

.guests-topics {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2.4vw, 42px);
  margin-bottom: clamp(16px, 2.7vh, 30px);
  opacity: 0;
  transform: translateY(18px);
}

.guests-section.is-visible .guests-topics {
  animation: guestsIntroEnter 900ms cubic-bezier(0.22, 1, 0.36, 1) 110ms forwards;
}

.guests-topic {
  position: relative;
  min-width: 0;
  padding: 12px 4px;
  border: 0;
  background: transparent;
  color: rgba(247, 242, 232, 0.58);
  cursor: pointer;
  font-size: clamp(0.72rem, 0.78vw, 0.92rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 280ms ease, transform 280ms ease;
}

.guests-topic::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(216, 189, 134, 0.64);
  border-radius: 999px;
  content: "";
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
  transition: opacity 320ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.guests-topic:hover,
.guests-topic:focus-visible,
.guests-topic.is-active {
  color: var(--off-white);
  transform: translateY(-1px);
}

.guests-topic.is-active::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.guests-card-list {
  display: flex;
  width: 100%;
  height: clamp(310px, 42vh, 430px);
  gap: clamp(10px, 1.2vw, 18px);
  opacity: 0;
  transform: translateY(20px);
}

.guests-section.is-visible .guests-card-list {
  animation: guestsCardsEnter 820ms cubic-bezier(0.22, 1, 0.36, 1) 210ms forwards;
}

.guest-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(216, 189, 134, 0.16);
  border-radius: 10px;
  background: #111;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  opacity: 0;
  filter: saturate(0.94) brightness(0.86);
  transform: translateY(-80px);
  transition:
    flex-grow 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 700ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.guest-card.is-in {
  animation: guestCardDrop 860ms cubic-bezier(0.22, 1, 0.36, 1) var(--guest-delay, 0ms) both;
}

.guest-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 8, 9, 0.06) 0%, rgba(7, 8, 9, 0.08) 42%, rgba(7, 8, 9, 0.76) 100%),
    linear-gradient(90deg, rgba(7, 8, 9, 0.28), rgba(7, 8, 9, 0.02));
  content: "";
  pointer-events: none;
}

.guest-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.guest-card-content {
  position: absolute;
  right: clamp(14px, 1.4vw, 22px);
  bottom: clamp(14px, 1.4vw, 22px);
  left: clamp(14px, 1.4vw, 22px);
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px;
}

.guest-card h3 {
  max-width: 360px;
  margin: 0;
  color: var(--off-white);
  font-family: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(1.25rem, 1.55vw, 2rem);
  font-weight: 500;
  line-height: 0.98;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.48);
}

.guest-card-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  padding: 9px 14px;
  border: 1px solid rgba(216, 189, 134, 0.46);
  border-radius: 999px;
  background: rgba(7, 8, 9, 0.34);
  color: var(--off-white);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: border-color 240ms ease, background 240ms ease, color 240ms ease, transform 240ms ease;
}

.guest-card-reserve:hover,
.guest-card-reserve:focus-visible {
  border-color: rgba(216, 189, 134, 0.84);
  background: rgba(216, 189, 134, 0.16);
  color: var(--champagne);
  transform: translateY(-1px);
}

.guests-card-list:hover .guest-card:not(:hover),
.guests-card-list:focus-within .guest-card:not(:focus-within),
.guests-card-list.is-hovering .guest-card:not(.is-hovered) {
  flex-grow: 0.82;
  opacity: 0.76;
  filter: saturate(0.84) brightness(0.72);
}

.guest-card:hover,
.guest-card:focus-within,
.guest-card.is-hovered {
  flex-grow: 2.05;
  opacity: 1;
  filter: saturate(1.02) brightness(1);
}

.guest-card:hover img,
.guest-card:focus-within img,
.guest-card.is-hovered img {
  transform: scale(1.055);
}

.guests-card-list.is-switching .guest-card {
  animation: none;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 260ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    flex-grow 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes guestsIntroEnter {
  0% {
    opacity: 0;
    transform: translateY(26px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes guestsCardsEnter {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes guestCardDrop {
  0% {
    opacity: 0;
    transform: translateY(-80px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.structure-section {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 9vh, 108px) clamp(24px, 6vw, 90px);
  scroll-margin-top: var(--header-height);
}

.structure-inner {
  --structure-card-size: clamp(340px, 30vw, 430px);
  --structure-card-slim-width: clamp(112px, 8.8vw, 148px);
  --structure-gap: clamp(12px, 1.05vw, 18px);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 500px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(44px, 5.2vw, 88px);
  width: 100%;
  margin: 0;
}

.structure-copy {
  display: flex;
  min-height: var(--structure-card-size);
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateX(-54px);
}

.structure-section.is-visible .structure-copy {
  animation: structureCopyEnter 1.02s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.structure-copy h2 {
  max-width: 500px;
  margin: 0;
  color: var(--off-white);
  font-family: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(3rem, 4vw, 5.05rem);
  font-weight: 500;
  line-height: 0.98;
}

.structure-subtitle {
  max-width: 430px;
  margin: 18px 0 0;
  color: rgba(247, 242, 232, 0.88);
  font-size: clamp(1rem, 1.05vw, 1.18rem);
  line-height: 1.48;
}

.structure-text {
  max-width: 470px;
  margin: 24px 0 0;
  color: rgba(200, 194, 184, 0.82);
  font-size: clamp(0.96rem, 0.96vw, 1.08rem);
  line-height: 1.68;
}

.structure-carousel {
  min-width: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateX(64px);
}

.structure-section.is-visible .structure-carousel {
  animation: structureCarouselEnter 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.14s forwards;
}

.structure-track {
  display: flex;
  width: max-content;
  height: var(--structure-card-size);
  gap: var(--structure-gap);
  transform: translateX(0);
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.structure-track.is-advancing {
  transform: translateX(calc(-1 * var(--structure-slide-distance, 0px)));
}

.structure-card {
  position: relative;
  flex: 0 0 var(--structure-card-slim-width);
  height: 100%;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 189, 134, 0.18);
  border-radius: 10px;
  background: #111;
  color: var(--off-white);
  cursor: pointer;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  filter: saturate(0.86) brightness(0.78);
  transition:
    flex-basis 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms ease,
    opacity 320ms ease;
}

.structure-card.is-active {
  flex-basis: var(--structure-card-size);
  border-color: rgba(216, 189, 134, 0.4);
  cursor: default;
  filter: saturate(1.02) brightness(0.98);
}

.structure-card.is-leaving-left {
  pointer-events: none;
}

.structure-card.is-leaving-left .structure-card-content {
  opacity: 0;
  transform: translateY(18px);
  transition-delay: 0ms;
}

.structure-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 8, 9, 0.02) 0%, rgba(7, 8, 9, 0.16) 48%, rgba(7, 8, 9, 0.84) 100%),
    linear-gradient(90deg, rgba(7, 8, 9, 0.22), rgba(7, 8, 9, 0.02));
  content: "";
  pointer-events: none;
}

.structure-card:not(.is-active)::before {
  background: rgba(7, 8, 9, 0.42);
}

.structure-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.structure-card:hover,
.structure-card:focus-visible {
  border-color: rgba(216, 189, 134, 0.58);
  filter: saturate(1) brightness(0.92);
}

.structure-card:hover img,
.structure-card:focus-visible img,
.structure-card.is-active img {
  transform: scale(1.055);
}

.structure-card-short {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  max-width: calc(100% - 16px);
  margin: auto;
  padding: 10px 8px;
  color: rgba(247, 242, 232, 0.92);
  font-family: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(0.82rem, 0.92vw, 1.16rem);
  font-weight: 600;
  line-height: 1.02;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.55);
  transition: opacity 300ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.structure-card.is-active .structure-card-short {
  opacity: 0;
  transform: translateY(12px);
}

.structure-card-content {
  position: absolute;
  right: clamp(20px, 2vw, 28px);
  bottom: clamp(20px, 2vw, 30px);
  left: clamp(20px, 2vw, 28px);
  z-index: 2;
  display: grid;
  gap: 10px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.structure-card.is-active .structure-card-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 170ms;
}

.structure-card-title {
  color: var(--off-white);
  font-family: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(1.45rem, 1.75vw, 2.32rem);
  font-weight: 600;
  line-height: 0.98;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.56);
}

.structure-card-text {
  max-width: 340px;
  color: rgba(247, 242, 232, 0.82);
  font-size: clamp(0.82rem, 0.82vw, 0.96rem);
  line-height: 1.5;
}

.structure-progress {
  display: block;
  width: min(100%, 310px);
  height: 1px;
  margin-top: 6px;
  overflow: hidden;
  background: rgba(247, 242, 232, 0.34);
}

.structure-progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: left;
}

.structure-track.is-progressing .structure-card.is-active .structure-progress-fill {
  animation: structureProgress var(--structure-progress-duration, 4600ms) linear forwards;
}

@keyframes structureCopyEnter {
  0% {
    opacity: 0;
    transform: translateX(-54px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes structureCarouselEnter {
  0% {
    opacity: 0;
    transform: translateX(64px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes structureProgress {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

.sun-video-section {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 7vh, 82px) clamp(24px, 6vw, 90px) clamp(86px, 9vh, 116px);
  scroll-margin-top: var(--header-height);
}

.sun-video-section::before {
  position: absolute;
  top: 16%;
  left: -8%;
  width: clamp(300px, 32vw, 560px);
  height: clamp(300px, 32vw, 560px);
  border-radius: 999px;
  background:
    radial-gradient(circle at 42% 42%, rgba(129, 132, 135, 0.22), rgba(74, 76, 80, 0.12) 36%, transparent 68%),
    radial-gradient(circle at 64% 58%, rgba(205, 198, 184, 0.12), transparent 54%);
  content: "";
  filter: blur(42px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-28px) scale(0.94);
}

.sun-video-section.is-visible::before {
  animation: sunVideoSmokeEnter 1.25s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.sun-video-inner {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.sun-video-card {
  position: relative;
  height: clamp(430px, 35vw, 560px);
  overflow: hidden;
  border: 1px solid rgba(216, 189, 134, 0.14);
  border-radius: 18px;
  background: #080808;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  isolation: isolate;
  opacity: 0;
  transform: translateY(26px) scale(0.975);
}

.sun-video-section.is-visible .sun-video-card {
  animation: sunVideoCardEnter 1.08s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.sun-video-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 8, 9, 0.9) 0%, rgba(9, 10, 11, 0.78) 28%, rgba(9, 10, 11, 0.28) 54%, rgba(9, 10, 11, 0.02) 100%),
    linear-gradient(180deg, rgba(7, 8, 9, 0.14) 0%, rgba(7, 8, 9, 0.34) 100%);
  content: "";
  pointer-events: none;
}

.sun-video-card::after {
  position: absolute;
  inset: 14px;
  z-index: 4;
  border: 1px solid rgba(216, 189, 134, 0.45);
  border-radius: 12px;
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.sun-video-section.is-visible .sun-video-card::after {
  opacity: 1;
  transition-delay: 420ms;
}

.sun-video-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.01);
}

.sun-video-content {
  position: absolute;
  top: 52%;
  left: clamp(40px, 5vw, 74px);
  z-index: 2;
  width: min(44%, 520px);
  color: var(--off-white);
  opacity: 0;
  transform: translate(-34px, -44%);
}

.sun-video-section.is-visible .sun-video-content {
  animation: sunVideoContentEnter 1s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
}

.sun-video-content .section-eyebrow {
  margin-bottom: 18px;
}

.sun-video-content h2 {
  max-width: 520px;
  margin: 0;
  color: var(--off-white);
  font-family: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(2.85rem, 4.25vw, 5.15rem);
  font-weight: 520;
  line-height: 0.92;
  white-space: pre-line;
  text-shadow: 0 18px 36px rgba(0, 0, 0, 0.46);
}

.sun-video-content p:not(.section-eyebrow) {
  max-width: 500px;
  margin: 24px 0 0;
  color: rgba(247, 242, 232, 0.86);
  font-size: clamp(0.96rem, 1vw, 1.12rem);
  line-height: 1.68;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
}

.sun-video-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.sun-video-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.sun-video-button:hover,
.sun-video-button:focus-visible {
  transform: translateY(-2px);
}

.sun-video-button-primary {
  border: 1px solid rgba(216, 189, 134, 0.88);
  background: linear-gradient(135deg, var(--champagne), var(--champagne-deep));
  color: #17120b;
}

.sun-video-button-secondary {
  border: 1px solid rgba(247, 242, 232, 0.52);
  background: rgba(7, 8, 9, 0.22);
  color: var(--off-white);
}

.sun-video-button-secondary:hover,
.sun-video-button-secondary:focus-visible {
  border-color: rgba(216, 189, 134, 0.78);
  background: rgba(216, 189, 134, 0.12);
}

@keyframes sunVideoCardEnter {
  0% {
    opacity: 0;
    transform: translateY(26px) scale(0.975);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes sunVideoContentEnter {
  0% {
    opacity: 0;
    transform: translate(-34px, -44%);
  }

  100% {
    opacity: 1;
    transform: translate(0, -44%);
  }
}

@keyframes sunVideoSmokeEnter {
  0% {
    opacity: 0;
    transform: translateX(-28px) scale(0.94);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@media (max-width: 900px) {
  .sun-video-section {
    padding: clamp(64px, 8vh, 96px) 22px clamp(76px, 9vh, 104px);
    scroll-margin-top: calc(var(--header-height) + 24px);
  }

  .sun-video-section::before {
    top: 28%;
    left: -34%;
    width: 440px;
    height: 440px;
    opacity: 0.72;
  }

  .sun-video-card {
    height: clamp(560px, 118vw, 680px);
    border-radius: 16px;
  }

  .sun-video-card::before {
    background:
      linear-gradient(180deg, rgba(7, 8, 9, 0.12) 0%, rgba(7, 8, 9, 0.24) 32%, rgba(7, 8, 9, 0.88) 100%),
      linear-gradient(90deg, rgba(7, 8, 9, 0.78) 0%, rgba(7, 8, 9, 0.52) 60%, rgba(7, 8, 9, 0.18) 100%);
  }

  .sun-video-card::after {
    inset: 10px;
    border-radius: 10px;
  }

  .sun-video-media {
    object-position: center center;
  }

  .sun-video-content {
    top: auto;
    right: 28px;
    bottom: 44px;
    left: 28px;
    width: auto;
    max-width: none;
    transform: translateX(-28px);
  }

  .sun-video-section.is-visible .sun-video-content {
    animation: sunVideoContentEnterMobile 1s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
  }

  .sun-video-content .section-eyebrow {
    margin-bottom: 14px;
  }

  .sun-video-content h2 {
    max-width: 560px;
    font-size: clamp(2.35rem, 10vw, 3.65rem);
  }

  .sun-video-content p:not(.section-eyebrow) {
    max-width: 620px;
    margin-top: 18px;
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .sun-video-actions {
    margin-top: 24px;
  }
}

@media (max-width: 560px) {
  .sun-video-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .sun-video-card {
    height: clamp(580px, 142vw, 700px);
  }

  .sun-video-content {
    right: 22px;
    bottom: 34px;
    left: 22px;
  }

  .sun-video-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .sun-video-button {
    width: 100%;
  }
}

@keyframes sunVideoContentEnterMobile {
  0% {
    opacity: 0;
    transform: translateX(-28px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.feedback-section {
  --feedback-gap: clamp(18px, 1.7vw, 28px);
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 9vh, 112px) 0 clamp(88px, 10vh, 126px);
  scroll-margin-top: var(--header-height);
}

.feedback-intro {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  opacity: 0;
  text-align: center;
  transform: translateY(28px);
}

.feedback-section.is-visible .feedback-intro {
  animation: feedbackIntroEnter 950ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.feedback-intro h2 {
  max-width: 760px;
  margin: 0 auto;
  color: var(--off-white);
  font-family: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(2.85rem, 4.2vw, 5.05rem);
  font-weight: 520;
  line-height: 0.98;
}

.feedback-intro p:not(.section-eyebrow) {
  max-width: 760px;
  margin: 20px auto 0;
  color: rgba(200, 194, 184, 0.86);
  font-size: clamp(0.98rem, 1vw, 1.14rem);
  line-height: 1.62;
}

.feedback-carousel {
  position: relative;
  margin-top: clamp(46px, 5vw, 72px);
  overflow: hidden;
  opacity: 0;
  transform: translateY(34px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.feedback-section.is-visible .feedback-carousel {
  animation: feedbackCarouselEnter 1s cubic-bezier(0.22, 1, 0.36, 1) 0.16s forwards;
}

.feedback-track {
  display: flex;
  width: max-content;
  animation: feedbackMarquee 58s linear infinite;
  will-change: transform;
}

.feedback-carousel:hover .feedback-track,
.feedback-carousel:focus-within .feedback-track {
  animation-play-state: paused;
}

.feedback-set {
  display: flex;
  flex: 0 0 auto;
  gap: var(--feedback-gap);
  padding-right: var(--feedback-gap);
}

.feedback-card {
  position: relative;
  display: flex;
  flex: 0 0 clamp(296px, 25vw, 370px);
  min-height: 272px;
  margin-top: 30px;
  padding: 54px clamp(22px, 2vw, 30px) 28px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(216, 189, 134, 0.24);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(247, 242, 232, 0.98), rgba(229, 222, 208, 0.95)),
    var(--off-white);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  color: #17120b;
}

.feedback-avatar {
  position: absolute;
  top: -29px;
  left: clamp(22px, 2vw, 30px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(247, 242, 232, 0.72);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--champagne), var(--champagne-deep));
  color: #17120b;
  font-family: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.62rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.feedback-card-head {
  display: grid;
  gap: 10px;
}

.feedback-card h3 {
  max-width: 260px;
  margin: 0;
  color: #17120b;
  font-size: clamp(1rem, 1vw, 1.12rem);
  font-weight: 800;
  line-height: 1.18;
}

.feedback-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(23, 18, 11, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.feedback-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border: 1px solid rgba(155, 121, 54, 0.22);
  border-radius: 999px;
  background: rgba(216, 189, 134, 0.18);
}

.feedback-meta span:last-child {
  color: #6e511c;
}

.feedback-card p {
  margin: 24px 0 0;
  color: rgba(23, 18, 11, 0.78);
  font-size: clamp(0.92rem, 0.9vw, 1rem);
  line-height: 1.58;
}

@keyframes feedbackMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes feedbackIntroEnter {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes feedbackCarouselEnter {
  0% {
    opacity: 0;
    transform: translateY(34px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .feedback-section {
    --feedback-gap: 16px;
    padding: clamp(72px, 9vh, 96px) 0 clamp(76px, 9vh, 104px);
    scroll-margin-top: calc(var(--header-height) + 24px);
  }

  .feedback-intro {
    width: min(720px, calc(100% - 44px));
  }

  .feedback-intro h2 {
    font-size: clamp(2.42rem, 10vw, 3.85rem);
  }

  .feedback-intro p:not(.section-eyebrow) {
    font-size: 0.96rem;
  }

  .feedback-carousel {
    margin-top: 40px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  }

  .feedback-track {
    animation-duration: 66s;
  }

  .feedback-card {
    flex-basis: min(82vw, 350px);
    min-height: 292px;
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 9vh, 112px) clamp(24px, 5.2vw, 78px) 30px;
  background:
    radial-gradient(circle at 85% 15%, rgba(214, 178, 112, 0.07), transparent 28%),
    radial-gradient(circle at 12% 82%, rgba(255, 255, 255, 0.025), transparent 30%),
    linear-gradient(180deg, #17120e 0%, #100d0b 48%, #17120e 100%);
  color: var(--off-white);
}

.site-footer::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(247, 242, 232, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 242, 232, 0.02) 1px, transparent 1px);
  background-size: 88px 88px;
  content: "";
  opacity: 0.26;
  pointer-events: none;
}

.site-footer::after {
  position: absolute;
  top: -1px;
  left: 50%;
  z-index: 0;
  width: clamp(150px, 15vw, 270px);
  height: clamp(28px, 3.1vw, 44px);
  border-radius: 0 0 30px 30px;
  background: var(--graphite);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.site-footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  gap: clamp(44px, 5.2vw, 88px);
  max-width: 1480px;
  margin: 0 auto;
}

.footer-location {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.footer-location .section-eyebrow {
  max-width: 760px;
  margin-bottom: clamp(30px, 3vw, 44px);
  color: var(--off-white);
  font-family: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(3.75rem, 5vw, 5.35rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
}

.footer-map-card {
  position: relative;
  overflow: hidden;
  min-height: clamp(280px, 25vw, 352px);
  border: 1px solid rgba(216, 189, 134, 0.26);
  border-radius: 14px;
  background: rgba(7, 8, 9, 0.48);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.footer-map-card::after {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(216, 189, 134, 0.22);
  border-radius: 10px;
  content: "";
  pointer-events: none;
}

.footer-map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(280px, 25vw, 352px);
  border: 0;
  filter: grayscale(0.1) contrast(0.96) brightness(0.9);
}

.footer-contact {
  min-width: 0;
  padding-left: clamp(34px, 4vw, 64px);
  border-left: 1px solid rgba(216, 189, 134, 0.22);
}

.footer-logo {
  display: block;
  width: min(440px, 100%);
  height: auto;
  margin: 0 0 clamp(28px, 3.2vw, 44px);
}

.footer-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px clamp(24px, 3vw, 46px);
}

.footer-info-item {
  display: grid;
  gap: 8px;
}

.footer-info-item-wide {
  grid-column: 1 / -1;
}

.footer-info-item span {
  color: rgba(216, 189, 134, 0.88);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-info-item strong {
  color: var(--off-white);
  font-size: clamp(1.18rem, 1.55vw, 1.82rem);
  font-weight: 520;
  line-height: 1.18;
}

.footer-info-item-wide strong {
  max-width: 600px;
  color: rgba(247, 242, 232, 0.88);
  font-size: clamp(1rem, 1.08vw, 1.18rem);
  line-height: 1.5;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(28px, 3vw, 42px);
}

.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.footer-button:hover,
.footer-button:focus-visible {
  transform: translateY(-2px);
}

.footer-button-primary {
  border: 1px solid rgba(216, 189, 134, 0.88);
  background: linear-gradient(135deg, var(--champagne), var(--champagne-deep));
  color: #17120b;
}

.footer-button-secondary {
  border: 1px solid rgba(216, 189, 134, 0.44);
  background: rgba(7, 8, 9, 0.18);
  color: var(--off-white);
}

.footer-button-secondary:hover,
.footer-button-secondary:focus-visible {
  border-color: rgba(216, 189, 134, 0.78);
  background: rgba(216, 189, 134, 0.12);
}

a[href^="https://wa.me/"] {
  white-space: nowrap;
}

.header-cta[href^="https://wa.me/"] {
  min-height: 46px;
  padding-inline: clamp(16px, 1.18vw, 22px);
  font-size: clamp(0.82rem, 0.78vw, 0.9rem);
}

.btn[href^="https://wa.me/"] {
  min-height: 56px;
  padding-inline: clamp(28px, 2vw, 34px);
  font-size: clamp(0.98rem, 0.9vw, 1.06rem);
}

.text-link[href^="https://wa.me/"] {
  font-size: clamp(0.98rem, 0.92vw, 1.06rem);
}

.guest-card-reserve[href^="https://wa.me/"] {
  min-width: 84px;
  padding: 10px 15px;
  font-size: 0.78rem;
}

.sun-video-button[href^="https://wa.me/"],
.footer-button[href^="https://wa.me/"] {
  min-height: 48px;
  padding-inline: 26px;
  font-size: 0.9rem;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  max-width: 1480px;
  margin: clamp(46px, 5vw, 70px) auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(216, 189, 134, 0.18);
  color: rgba(200, 194, 184, 0.78);
  font-size: 0.82rem;
  line-height: 1.45;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom span {
  color: rgba(216, 189, 134, 0.76);
}

@media (max-width: 900px) {
  .site-footer {
    padding: clamp(72px, 9vh, 98px) 22px 28px;
  }

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

  .footer-map-card,
  .footer-map-card iframe {
    min-height: clamp(240px, 58vw, 300px);
  }

  .footer-contact {
    padding-left: 0;
    border-left: 0;
  }

  .footer-logo {
    width: min(360px, 92%);
    margin-bottom: 28px;
  }

  .footer-info-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-actions {
    margin-top: 30px;
  }

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

@media (max-width: 560px) {
  .site-footer {
    padding-right: 16px;
    padding-left: 16px;
  }

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

  .footer-button {
    width: 100%;
  }
}

body.menu-open .main-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(42deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-42deg);
}

@keyframes heroImageSettle {
  0% {
    transform: translate3d(0, 0, 0) scale(var(--hero-start-scale));
  }

  100% {
    transform: translate3d(0, calc(var(--hero-image-lift) * -1), 0) scale(1);
  }
}

@keyframes contentReveal {
  0% {
    opacity: 0;
    transform: translateY(42px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes headerReveal {
  0% {
    opacity: 0;
    transform: translateY(-18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes regionCopyEnter {
  0% {
    opacity: 0;
    transform: translateX(-140px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes regionCardsEnter {
  0% {
    opacity: 0;
    transform: translateX(100vw);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes regionMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes accommodationIntroReveal {
  0% {
    opacity: 0;
    transform: translateY(34px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes accommodationShowcaseReveal {
  0% {
    opacity: 0;
    transform: translateY(36px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes accommodationMediaReveal {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translateX(-34px);
  }

  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
  }
}

@keyframes breakfastCopyEnter {
  0% {
    opacity: 0;
    transform: translateX(-120px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes breakfastVideoEnter {
  0% {
    opacity: 0;
    transform: scale(0.96);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes breakfastCarouselEnter {
  0% {
    opacity: 0;
    transform: translateX(160px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes breakfastMarqueeY {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(calc(-50% - (var(--breakfast-gap) / 2)));
  }
}

@keyframes breakfastMarqueeX {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-1 * var(--breakfast-sequence-width, 50%)));
  }
}

@keyframes leisureIntroEnter {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes leisureShowcaseEnter {
  0% {
    opacity: 0;
    transform: translateY(36px) scale(0.985);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes leisureCopyEnter {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes leisureTitleTopEnter {
  0% {
    clip-path: inset(100% 0 0 0);
    opacity: 0;
    transform: translateY(-56%) scale(0.97);
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes leisureTitleBottomEnter {
  0% {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
    transform: translateY(48%) scale(0.97);
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .region-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .region-copy {
    width: min(720px, calc(100% - 44px));
    transform: translateX(-72px);
  }

  .region-section.is-visible .region-copy {
    animation-name: regionCopyEnterMobile;
  }

  .region-copy h2 {
    font-size: clamp(2.38rem, 8vw, 3.72rem);
  }

  .region-card {
    flex-basis: clamp(260px, 58vw, 360px);
  }

  .about-section {
    padding: clamp(78px, 10vh, 112px) 22px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-copy {
    max-width: 700px;
  }

  .about-copy h2 {
    max-width: 620px;
  }

  .about-media {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .accommodations-section {
    display: block;
    min-height: 0;
    height: auto;
    padding: clamp(76px, 9vh, 104px) 22px;
    scroll-margin-top: calc(var(--header-height) + 24px);
  }

  .accommodation-showcase {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .accommodation-media-frame {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .accommodation-copy {
    min-height: auto;
  }

  .accommodation-copy::before {
    margin-bottom: 24px;
  }

  .accommodation-title {
    font-size: clamp(2.7rem, 11vw, 4.4rem);
  }

  .accommodation-description {
    max-width: 680px;
  }

  .breakfast-section {
    padding: clamp(76px, 9vh, 104px) 22px;
  }

  .breakfast-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 760px;
    padding: 0;
  }

  .breakfast-copy {
    max-width: 720px;
  }

  .breakfast-copy h2 {
    max-width: 640px;
  }

  .breakfast-video-shell {
    width: min(100%, 330px);
    height: clamp(430px, 70vh, 560px);
  }

  .breakfast-carousel {
    width: 100%;
    height: auto;
    margin-right: 0;
  }

  .breakfast-track {
    display: flex;
    width: max-content;
    animation-name: breakfastMarqueeX;
    animation-duration: 38s;
  }

  .breakfast-image-set {
    display: flex;
    flex: 0 0 auto;
  }

  .breakfast-photo {
    flex: 0 0 clamp(160px, 42vw, 230px);
  }

  .leisure-section {
    padding: clamp(76px, 9vh, 104px) 22px;
  }

  .leisure-intro {
    max-width: 720px;
  }

  .leisure-showcase {
    --leisure-card-size: clamp(270px, 72vw, 420px);
    --leisure-side-offset: clamp(270px, 62vw, 430px);
    --leisure-enter-offset: calc(var(--leisure-side-offset) + clamp(120px, 24vw, 180px));
    --leisure-side-scale: 0.64;
    --leisure-enter-scale: 0.54;
    margin-top: 34px;
  }

  .leisure-stage {
    width: 100%;
    overflow: visible;
  }

  .leisure-card-prev,
  .leisure-card-next {
    opacity: 0.4;
  }

  .leisure-title-overlay {
    max-width: calc(100vw - 18px);
  }

  .leisure-title-line {
    max-width: calc(100vw - 18px);
  }

  .leisure-title-line-top {
    font-size: clamp(2.45rem, 10.4vw, 4rem);
  }

  .leisure-title-overlay.is-title-top-long .leisure-title-line-top {
    font-size: clamp(2.25rem, 9.8vw, 3.8rem);
  }

  .leisure-title-line-bottom {
    margin-top: clamp(8px, 2.2vw, 14px);
    font-size: clamp(3.75rem, 18vw, 4.8rem);
  }

  .leisure-title-overlay.is-title-long .leisure-title-line-bottom {
    font-size: clamp(2.75rem, 12.2vw, 4.5rem);
  }

  .leisure-copy-panel,
  .leisure-controls {
    width: min(100%, var(--leisure-card-size));
  }

  .guests-section {
    display: block;
    min-height: 0;
    height: auto;
    padding: clamp(76px, 9vh, 104px) 22px;
    scroll-margin-top: calc(var(--header-height) + 24px);
  }

  .guests-inner {
    transform: none;
  }

  .guests-intro {
    max-width: 720px;
    margin-bottom: 24px;
  }

  .guests-intro h2 {
    font-size: clamp(2.45rem, 10vw, 3.8rem);
  }

  .guests-topics {
    justify-content: flex-start;
    gap: 22px;
    margin-right: -22px;
    margin-bottom: 22px;
    padding: 0 22px 12px 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .guests-topics::-webkit-scrollbar {
    display: none;
  }

  .guests-topic {
    flex: 0 0 auto;
  }

  .guests-card-list {
    flex-direction: column;
    height: auto;
    gap: 14px;
  }

  .guest-card,
  .guest-card:hover,
  .guest-card:focus-within,
  .guest-card.is-hovered {
    flex: none;
    min-height: clamp(290px, 54vh, 390px);
  }

  .guests-card-list:hover .guest-card:not(:hover),
  .guests-card-list:focus-within .guest-card:not(:focus-within),
  .guests-card-list.is-hovering .guest-card:not(.is-hovered) {
    flex: none;
    opacity: 1;
    filter: saturate(0.94) brightness(0.86);
  }

  .structure-section {
    padding: clamp(76px, 9vh, 104px) 22px;
    scroll-margin-top: calc(var(--header-height) + 24px);
  }

  .structure-inner {
    --structure-card-size: clamp(270px, 72vw, 360px);
    --structure-card-slim-width: clamp(86px, 24vw, 112px);
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .structure-copy {
    min-height: auto;
    max-width: 720px;
  }

  .structure-copy h2 {
    max-width: 640px;
    font-size: clamp(2.45rem, 10vw, 3.8rem);
  }

  .structure-subtitle,
  .structure-text {
    max-width: 680px;
  }

  .structure-carousel {
    width: 100%;
  }

  .structure-card-title {
    font-size: clamp(1.32rem, 6vw, 2rem);
  }

  .structure-card-text {
    font-size: 0.86rem;
  }
}

@media (min-width: 901px) and (max-height: 780px) {
  .accommodations-section {
    padding-top: calc(var(--header-height) + 14px);
    padding-bottom: 22px;
  }

  .accommodations-intro {
    margin-bottom: 16px;
  }

  .accommodations-intro h2 {
    font-size: clamp(2.4rem, 3.2vw, 3.85rem);
  }

  .accommodations-intro p:last-child {
    margin-top: 10px;
    line-height: 1.42;
  }

  .accommodation-media-frame {
    height: clamp(340px, 48vh, 460px);
  }

  .accommodation-copy::before {
    margin-bottom: 16px;
  }

  .accommodation-title {
    font-size: clamp(2.55rem, 4vw, 4.9rem);
  }

  .accommodation-description {
    margin-top: 14px;
    line-height: 1.5;
  }

  .accommodation-details {
    margin-top: 16px;
    gap: 7px 18px;
  }

  .accommodation-actions {
    margin-top: 18px;
  }

  .accommodation-dots {
    margin-top: 16px;
  }

  .guests-section {
    padding-top: calc(var(--header-height) + 12px);
    padding-bottom: 18px;
  }

  .guests-intro {
    margin-bottom: 14px;
  }

  .guests-intro h2 {
    font-size: clamp(2.35rem, 3.35vw, 3.85rem);
  }

  .guests-intro p:last-child {
    margin-top: 8px;
    line-height: 1.42;
  }

  .guests-topics {
    margin-bottom: 14px;
  }

  .guests-card-list {
    height: clamp(270px, 39vh, 350px);
  }

  .guest-card h3 {
    font-size: clamp(1.12rem, 1.38vw, 1.72rem);
  }

  .structure-section {
    padding-top: clamp(72px, 8vh, 92px);
    padding-bottom: clamp(72px, 8vh, 92px);
  }

  .structure-inner {
    --structure-card-size: clamp(320px, 28vw, 380px);
    --structure-card-slim-width: clamp(104px, 8vw, 128px);
  }

  .structure-copy h2 {
    font-size: clamp(2.55rem, 3.4vw, 4.25rem);
  }

  .structure-subtitle {
    margin-top: 14px;
  }

  .structure-text {
    margin-top: 18px;
    line-height: 1.55;
  }
}

@media (max-width: 1560px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto auto;
    gap: 14px;
    padding-right: clamp(22px, 3.8vw, 58px);
  }

  .main-nav {
    position: fixed;
    top: calc(var(--header-height) - 2px);
    right: auto;
    left: clamp(18px, 3.8vw, 58px);
    display: grid;
    justify-items: start;
    gap: 2px;
    width: min(280px, calc(100vw - 44px));
    min-width: min(280px, calc(100vw - 44px));
    max-width: calc(100vw - 44px);
    padding: 16px;
    border: 1px solid var(--line);
    background: rgba(7, 8, 9, 0.88);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.36);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .main-nav a {
    width: 100%;
    padding: 12px 4px;
    text-align: left;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 78px;
    --hero-image-lift: clamp(150px, 23vh, 220px);
    --hero-start-scale: 1.01;
  }

  .site-header {
    grid-template-columns: auto 1fr auto auto;
    gap: 14px;
    padding: 17px 20px;
  }

  .brand {
    width: 112px;
  }

  .header-cta {
    display: none;
  }

  .language-toggle {
    min-width: 54px;
    min-height: 42px;
    padding: 0 10px;
    font-size: 0.76rem;
  }

  .language-menu {
    min-width: 132px;
  }

  .hero-image {
    object-position: 84% top;
    animation-name: heroImageSettleMobile;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 6, 7, 0.9) 0%, rgba(5, 6, 7, 0.68) 52%, rgba(5, 6, 7, 0.28) 100%),
      linear-gradient(180deg, rgba(5, 6, 7, 0.24) 0%, rgba(5, 6, 7, 0.28) 38%, rgba(5, 6, 7, 0.84) 100%);
  }

  .hero-content {
    width: min(100% - 40px, 560px);
    margin: 0 auto;
    padding-top: clamp(138px, 20vh, 176px);
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12.4vw, 3.72rem);
    line-height: 1;
  }

  .hero-subtitle {
    margin-top: 22px;
    font-size: 0.98rem;
    line-height: 1.64;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 30px;
  }

  .btn {
    min-height: 50px;
    padding: 0 18px;
    font-size: 0.86rem;
  }

  .region-copy {
    width: calc(100% - 40px);
    margin: 0 auto;
  }

  .region-carousel-shell {
    padding-left: 20px;
    transform: translateX(82vw);
  }

  .region-section.is-visible .region-carousel-shell {
    animation-name: regionCardsEnterMobile;
  }

  .region-card {
    flex-basis: clamp(250px, 78vw, 330px);
    aspect-ratio: 4 / 3;
  }

  .region-track {
    animation-duration: 82s;
  }

  .breakfast-track {
    animation-duration: 42s;
  }

  .about-copy h2 {
    font-size: clamp(2.18rem, 9vw, 3.36rem);
  }

  .about-text p {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .accommodations-intro {
    margin-bottom: 36px;
  }

  .accommodations-intro h2 {
    font-size: clamp(2.3rem, 9.5vw, 3.46rem);
  }

  .accommodation-media-frame {
    aspect-ratio: 4 / 3;
  }

  .accommodation-details {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .accommodation-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .accommodation-cta {
    min-width: 0;
    width: 100%;
  }

  .breakfast-copy h2 {
    font-size: clamp(2.3rem, 9.5vw, 3.46rem);
  }

  .breakfast-text {
    font-size: 0.96rem;
    line-height: 1.7;
  }

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

  .leisure-intro h2 {
    font-size: clamp(2.3rem, 9.5vw, 3.46rem);
  }

  .leisure-intro p:last-child {
    font-size: 0.96rem;
    line-height: 1.7;
  }
}

@media (max-width: 420px) {
  .hero-content {
    width: calc(100% - 32px);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .about-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .text-link {
    margin-top: 28px;
  }

  .accommodations-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .accommodation-actions {
    grid-template-columns: 1fr;
  }

  .accommodation-controls {
    justify-content: center;
  }

  .accommodation-dots {
    justify-content: center;
  }

  .breakfast-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .breakfast-video-shell {
    width: 100%;
    height: clamp(390px, 68vh, 520px);
  }

  .breakfast-photo {
    flex-basis: clamp(150px, 62vw, 210px);
  }

  .leisure-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .leisure-showcase {
    --leisure-card-size: min(82vw, 340px);
    --leisure-side-offset: min(69vw, 270px);
    --leisure-enter-offset: calc(var(--leisure-side-offset) + 116px);
    --leisure-side-scale: 0.62;
  }

  .leisure-control {
    width: 40px;
    height: 40px;
  }

  .guests-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .guests-topics {
    margin-right: -16px;
    padding-right: 16px;
  }

  .guest-card-content {
    grid-template-columns: 1fr;
  }

  .guest-card-reserve {
    justify-self: start;
  }

  .structure-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .structure-inner {
    --structure-card-size: min(76vw, 320px);
    --structure-card-slim-width: min(25vw, 96px);
    --structure-gap: 10px;
  }

  .structure-card-content {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }
}

@keyframes regionCopyEnterMobile {
  0% {
    opacity: 0;
    transform: translateX(-72px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes regionCardsEnterMobile {
  0% {
    opacity: 0;
    transform: translateX(82vw);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

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

  .hero-image {
    transform: translate3d(0, calc(var(--hero-image-lift) * -1), 0) scale(1);
  }

  .region-copy,
  .region-carousel-shell,
  .accommodations-intro,
  .accommodation-showcase,
  .accommodation-media,
  .breakfast-copy,
  .breakfast-video-shell,
  .breakfast-carousel,
  .leisure-intro,
  .leisure-showcase,
  .leisure-copy-panel,
  .guests-intro,
  .guests-topics,
  .guests-card-list,
  .guest-card,
  .structure-copy,
  .structure-carousel,
  .sun-video-card,
  .sun-video-content,
  .feedback-intro,
  .feedback-carousel {
    opacity: 1;
    transform: none;
    clip-path: none;
  }

  .region-track,
  .breakfast-track,
  .feedback-track {
    animation: none;
  }

  .accommodation-image,
  .accommodation-title-line,
  .accommodation-description,
  .accommodation-details li,
  .leisure-card,
  .leisure-title-line,
  .leisure-copy-panel p,
  .guest-card,
  .guest-card img,
  .structure-track,
  .structure-card,
  .structure-card img,
  .structure-progress-fill,
  .sun-video-section::before,
  .sun-video-card,
  .sun-video-card::after,
  .sun-video-content {
    transition: none;
    animation: none;
  }

  .sun-video-content {
    transform: translate(0, -44%);
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 900px) {
  .sun-video-content {
    transform: none;
  }
}

@keyframes heroImageSettleMobile {
  0% {
    transform: translate3d(0, 0, 0) scale(var(--hero-start-scale));
  }

  100% {
    transform: translate3d(0, calc(var(--hero-image-lift) * -1), 0) scale(1);
  }
}
