@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500;1,600&family=League+Spartan:wght@400;500;600&display=swap");

:root {
  --forest: #17453a;
  --forest-rgb: 23, 69, 58;
  --deep: #042731;
  --deep-rgb: 4, 39, 49;
  --gold: #e0b252;
  --gold-light: #f3d58e;
  --ivory: #f6f3ec;
  --paper: #fffdf8;
  --ink: #172621;
  --muted: #66736e;
  --white: #ffffff;
  --line: rgba(23, 69, 58, 0.15);
  --shadow: 0 28px 80px rgba(4, 39, 49, 0.16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1240px;
  --announcement-height: 40px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "League Spartan", Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 5.2vw, 5.4rem);
}

h3 {
  font-size: clamp(2rem, 2.6vw, 3rem);
}

::selection {
  background: var(--gold);
  color: var(--deep);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--white);
  color: var(--deep);
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 132px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.eyebrow.light {
  color: var(--gold-light);
}

.eyebrow.light span {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
.nav-links a:focus-visible,
.mobile-menu a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.button-large {
  min-height: 60px;
  padding: 17px 28px;
}

.button-gold {
  background: var(--gold);
  box-shadow: 0 12px 30px rgba(224, 178, 82, 0.2);
  color: var(--deep);
}

.button-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 16px 38px rgba(224, 178, 82, 0.3);
}

.button-green {
  background: var(--forest);
  color: var(--white);
}

.button-green:hover {
  background: var(--deep);
  box-shadow: 0 16px 34px rgba(4, 39, 49, 0.22);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.button-ghost:hover {
  background: var(--white);
  color: var(--deep);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: gap 0.25s ease;
}

.text-link:hover {
  gap: 22px;
}

.light-link {
  color: var(--white);
}

.dark-link {
  color: var(--forest);
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.23);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.07));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.glass-light {
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.announcement {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--announcement-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px 20px;
  background: var(--gold);
  color: var(--deep);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.35s ease;
}

.announcement.hidden-on-scroll {
  transform: translateY(-105%);
}

.announcement a {
  border-bottom: 1px solid currentColor;
}

.announcement-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 0 0 5px rgba(23, 69, 58, 0.12);
}

.site-header {
  position: fixed;
  z-index: 90;
  top: calc(var(--announcement-height) + 14px);
  left: 0;
  width: 100%;
  padding-inline: 18px;
  transition: top 0.35s ease;
}

.site-header.scrolled {
  top: 14px;
}

.nav-shell {
  position: relative;
  width: min(100%, var(--container));
  min-height: 76px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 126px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 8px 12px 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(4, 39, 49, 0.7);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.brand {
  width: 104px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 13px;
  background: var(--forest);
}

.brand img {
  width: 87px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 33px);
}

.nav-links a {
  position: relative;
  padding: 9px 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-links a:hover {
  color: var(--white);
}

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

.nav-book {
  min-width: 126px;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  width: 19px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4.25px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4.25px) rotate(-45deg);
}

.mobile-menu {
  width: min(calc(100% - 36px), var(--container));
  max-height: calc(100vh - 130px);
  margin: 10px auto 0;
  overflow: auto;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(4, 39, 49, 0.96);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu > a:not(.button) {
  display: block;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1rem;
}

.mobile-menu .button {
  width: 100%;
  margin-top: 18px;
}

.hero {
  position: relative;
  min-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 190px 0 150px;
  background-image: url("assets/hero.webp");
  background-position: center 56%;
  background-size: cover;
  color: var(--white);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 39, 49, 0.91) 0%, rgba(4, 39, 49, 0.66) 48%, rgba(4, 39, 49, 0.23) 100%),
    linear-gradient(0deg, rgba(4, 39, 49, 0.75) 0%, transparent 38%);
}

.hero::after {
  position: absolute;
  right: -10%;
  bottom: -20%;
  width: 62%;
  height: 57%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
  transform: rotate(-10deg);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  top: 18%;
  right: 9%;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(224, 178, 82, 0.34);
}

.hero-orb-two {
  right: 18%;
  bottom: 24%;
  width: 90px;
  height: 90px;
  background: rgba(224, 178, 82, 0.14);
  box-shadow: 0 0 90px rgba(224, 178, 82, 0.23);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  align-items: end;
  gap: 80px;
}

.hero-copy {
  max-width: 830px;
}

.hero h1 {
  max-width: 880px;
  margin-bottom: 30px;
  font-size: clamp(4.1rem, 7.4vw, 7.4rem);
  line-height: 0.88;
  text-wrap: balance;
}

.hero h1 em,
.final-cta h2 em {
  display: block;
  color: var(--gold-light);
  font-weight: 500;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.06rem, 1.6vw, 1.3rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.hero-note {
  max-width: 310px;
  justify-self: end;
  padding: 28px;
  border-radius: var(--radius-md);
}

.hero-note .note-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid rgba(224, 178, 82, 0.45);
  border-radius: 50%;
  color: var(--gold-light);
}

.hero-note svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.2;
}

.hero-note > p {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  margin-bottom: 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.05;
}

.hero-note > span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.hero-stats {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(4, 39, 49, 0.39);
  backdrop-filter: blur(16px);
}

.stat {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

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

.stat strong {
  color: var(--gold-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.stat span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 20%, rgba(224, 178, 82, 0.12), transparent 27%),
    var(--ivory);
}

.intro::before {
  position: absolute;
  top: 15%;
  right: -140px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(23, 69, 58, 0.12);
  border-radius: 50%;
  content: "";
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.intro-visual {
  position: relative;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.image-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.portrait-frame {
  aspect-ratio: 4 / 5;
}

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

.floating-badge {
  position: absolute;
  right: -42px;
  bottom: 52px;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 19px;
  border-radius: 18px;
}

.floating-badge svg {
  width: 28px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.floating-badge span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.floating-badge strong {
  display: block;
  color: var(--deep);
  font-size: 1rem;
}

.intro-copy {
  max-width: 650px;
}

.intro-copy h2 {
  color: var(--deep);
}

.intro-copy > p {
  max-width: 610px;
  color: var(--muted);
}

.intro-copy .lead-copy {
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.7;
}

.feature-list {
  margin: 42px 0 38px;
  border-top: 1px solid var(--line);
}

.feature-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.feature-number {
  padding-top: 4px;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
}

.feature-item strong {
  color: var(--deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.48rem;
}

.feature-item p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.dark-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 3%, rgba(224, 178, 82, 0.12), transparent 28%),
    var(--deep);
  color: var(--white);
}

.dark-section::before {
  position: absolute;
  top: 45%;
  left: -190px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(224, 178, 82, 0.13);
  border-radius: 50%;
  content: "";
}

.section-heading {
  margin-bottom: 64px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 80px;
}

.split-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.heading-side > p {
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.66);
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.room-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.room-card:hover {
  border-color: rgba(224, 178, 82, 0.5);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-8px);
}

.featured-room {
  transform: translateY(28px);
}

.featured-room:hover {
  transform: translateY(20px);
}

.room-image {
  position: relative;
  aspect-ratio: 1.3 / 1;
  display: block;
  overflow: hidden;
}

.room-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(4, 39, 49, 0.72));
  content: "";
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.room-card:hover .room-image img {
  transform: scale(1.045);
}

.room-tag {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(4, 39, 49, 0.55);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.image-arrow {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--deep);
  font-size: 1.05rem;
  transition: transform 0.3s ease;
}

.room-card:hover .image-arrow {
  transform: rotate(10deg) scale(1.06);
}

.room-content {
  padding: 27px 25px 26px;
}

.room-kicker {
  margin-bottom: 9px;
  color: var(--gold-light);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.room-content h3 {
  margin-bottom: 13px;
  font-size: 2.2rem;
}

.room-content > p:not(.room-kicker) {
  min-height: 78px;
  margin-bottom: 21px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  line-height: 1.55;
}

.room-meta {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.room-meta span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.67rem;
}

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

.centered-heading {
  max-width: 810px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading h2 {
  color: var(--deep);
}

.centered-heading > p:last-child {
  max-width: 610px;
  margin: 0 auto;
  color: var(--muted);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: repeat(2, minmax(280px, 1fr));
  gap: 20px;
}

.experience-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 45px rgba(4, 39, 49, 0.12);
}

.experience-large {
  grid-row: 1 / 3;
}

.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.experience-card:hover img {
  transform: scale(1.045);
}

.experience-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(4, 39, 49, 0.88) 100%);
}

.experience-card::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.experience-content {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 34px;
  left: 34px;
  color: var(--white);
}

.experience-content > p {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.experience-content h3 {
  margin-bottom: 9px;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
}

.experience-content > span {
  display: block;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.72);
}

.experience-content a {
  position: absolute;
  right: 0;
  bottom: 3px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.experience-content.compact {
  right: 26px;
  bottom: 25px;
  left: 26px;
}

.experience-content.compact h3 {
  font-size: 2.7rem;
}

.experience-content.compact > span {
  max-width: 62%;
  font-size: 0.86rem;
}

.wellness {
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.wellness-background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 39, 49, 0.96) 0%, rgba(4, 39, 49, 0.82) 48%, rgba(4, 39, 49, 0.36) 100%),
    url("assets/wellness.webp") center / cover no-repeat;
}

.wellness-background::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 54%, rgba(224, 178, 82, 0.16), transparent 24%);
  content: "";
}

.wellness-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.55fr);
  align-items: end;
  gap: 90px;
}

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

.wellness-copy h2 {
  max-width: 670px;
}

.wellness-copy > p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.wellness-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 34px 0 38px;
}

.wellness-pills span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
}

.wellness-quote {
  max-width: 360px;
  justify-self: end;
  padding: 34px;
  border-radius: var(--radius-md);
}

.quote-mark {
  display: block;
  height: 42px;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 5rem;
  line-height: 0.8;
}

.wellness-quote blockquote {
  margin: 18px 0 26px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.08;
}

.wellness-quote p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location {
  background:
    radial-gradient(circle at 8% 90%, rgba(224, 178, 82, 0.13), transparent 25%),
    var(--ivory);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 0.72fr);
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.location-copy h2 {
  color: var(--deep);
}

.location-copy > p:not(.eyebrow) {
  max-width: 630px;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.contact-item {
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.46);
}

.contact-item small {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-item strong {
  color: var(--deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.36rem;
  font-weight: 600;
  line-height: 1.35;
}

.location-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.location-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.location-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 64%, rgba(4, 39, 49, 0.4));
  content: "";
  pointer-events: none;
}

.map-pin {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 27px;
  left: 26px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 17px 19px;
  border-radius: 18px;
}

.map-pin > span {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50% 50% 50% 0;
  background: var(--forest);
  transform: rotate(-45deg) scale(0.7);
}

.map-pin > span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  transform: translate(-50%, -50%);
}

.map-pin strong,
.map-pin small {
  display: block;
}

.map-pin strong {
  color: var(--deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.15;
}

.map-pin small {
  color: var(--muted);
}

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

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(60px, 9vw, 140px);
}

.faq-heading {
  position: sticky;
  top: 130px;
}

.faq-heading h2 {
  color: var(--deep);
  font-size: clamp(3rem, 4.5vw, 4.8rem);
}

.faq-heading > p:not(.eyebrow) {
  max-width: 470px;
  color: var(--muted);
}

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

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

.faq-list summary {
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr 42px;
  align-items: center;
  gap: 22px;
  padding: 20px 0;
  color: var(--deep);
  cursor: pointer;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.2;
  list-style: none;
}

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

.faq-list summary span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest);
  font-family: "League Spartan", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.faq-list details[open] summary span {
  background: var(--forest);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 700px;
  margin: -5px 60px 26px 0;
  color: var(--muted);
  line-height: 1.7;
}

.final-cta {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0;
  background:
    linear-gradient(90deg, rgba(4, 39, 49, 0.97), rgba(4, 39, 49, 0.78)),
    url("assets/hero.webp") center 55% / cover no-repeat;
  color: var(--white);
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  border: 1px solid rgba(224, 178, 82, 0.23);
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  top: -280px;
  left: 50%;
  width: 760px;
  height: 760px;
  transform: translateX(-50%);
}

.final-cta::after {
  right: -100px;
  bottom: -190px;
  width: 430px;
  height: 430px;
}

.cta-glow {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(224, 178, 82, 0.13);
  filter: blur(70px);
  transform: translate(-50%, -50%);
}

.final-cta-inner {
  position: relative;
  z-index: 2;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  margin-bottom: 24px;
  font-size: clamp(4rem, 7vw, 7.4rem);
}

.final-cta p:not(.eyebrow) {
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
}

.footer {
  padding: 80px 0 25px;
  background: #031f27;
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.7fr);
  gap: 55px;
  padding-bottom: 65px;
}

.footer-brand img {
  width: 105px;
  margin-bottom: 22px;
  border-radius: 14px;
}

.footer-brand p {
  max-width: 330px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.54);
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
}

.footer-column > p {
  margin-bottom: 13px;
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.js .reveal-delay {
  transition-delay: 0.12s;
}

.js .reveal-delay-two {
  transition-delay: 0.22s;
}

@media (max-width: 1120px) {
  .nav-shell {
    grid-template-columns: 110px 1fr auto;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 0.69rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.5fr);
    gap: 45px;
  }

  .experience-content a {
    position: static;
    margin-top: 14px;
  }

  .experience-content.compact > span {
    max-width: 100%;
  }
}

@media (max-width: 960px) {
  .section {
    padding: 100px 0;
  }

  .nav-shell {
    grid-template-columns: 1fr auto auto;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: 880px;
    background-position: 62% center;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .hero-note {
    display: none;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero h1 {
    max-width: 760px;
  }

  .intro-grid,
  .location-grid {
    gap: 65px;
  }

  .floating-badge {
    right: -20px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .heading-side {
    max-width: 600px;
  }

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

  .room-card:last-child {
    grid-column: 1 / 3;
    width: calc(50% - 12px);
    justify-self: center;
  }

  .featured-room {
    transform: none;
  }

  .featured-room:hover {
    transform: translateY(-8px);
  }

  .wellness-layout {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 50px;
  }

  .wellness-quote {
    justify-self: start;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faq-heading {
    position: static;
    max-width: 640px;
  }

  .footer-top {
    grid-template-columns: 1.3fr repeat(2, 0.7fr);
  }

  .footer-column:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 760px) {
  :root {
    --announcement-height: 36px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 82px 0;
  }

  .announcement {
    gap: 7px;
    padding-inline: 12px;
    font-size: 0.58rem;
    letter-spacing: 0.04em;
  }

  .announcement a {
    display: none;
  }

  .announcement-dot {
    width: 6px;
    height: 6px;
  }

  .site-header {
    top: calc(var(--announcement-height) + 9px);
    padding-inline: 10px;
  }

  .site-header.scrolled {
    top: 9px;
  }

  .nav-shell {
    min-height: 65px;
    gap: 10px;
    padding: 7px 8px 7px 11px;
    border-radius: 19px;
  }

  .brand {
    width: 84px;
    height: 49px;
    border-radius: 11px;
  }

  .brand img {
    width: 74px;
  }

  .nav-book {
    min-width: 0;
    min-height: 46px;
    padding: 11px 15px;
    font-size: 0.68rem;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .mobile-menu {
    width: calc(100% - 20px);
    border-radius: 20px;
  }

  .hero {
    min-height: 960px;
    padding: 160px 0 235px;
    background-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 39, 49, 0.9), rgba(4, 39, 49, 0.48)),
      linear-gradient(0deg, rgba(4, 39, 49, 0.84), transparent 54%);
  }

  .hero h1 {
    margin-bottom: 25px;
    font-size: clamp(3.55rem, 16vw, 5.4rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 21px;
  }

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

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-stats {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .stat {
    min-height: 94px;
    padding: 15px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(3),
  .stat:nth-child(4) {
    border-bottom: 0;
  }

  .stat strong {
    font-size: 1.65rem;
  }

  .stat span {
    font-size: 0.58rem;
  }

  .intro-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .intro-visual {
    width: min(92%, 520px);
    margin-inline: auto;
  }

  .floating-badge {
    right: -14px;
    bottom: 25px;
    min-width: 190px;
    padding: 14px;
  }

  .room-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .room-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .room-content > p:not(.room-kicker) {
    min-height: 0;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .experience-card,
  .experience-large {
    min-height: 430px;
    grid-row: auto;
  }

  .experience-content,
  .experience-content.compact {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .experience-content.compact h3 {
    font-size: 2.65rem;
  }

  .wellness {
    min-height: 820px;
  }

  .wellness-background {
    background:
      linear-gradient(90deg, rgba(4, 39, 49, 0.95), rgba(4, 39, 49, 0.62)),
      url("assets/wellness.webp") 64% center / cover no-repeat;
  }

  .wellness-quote {
    max-width: 100%;
  }

  .location-visual {
    width: min(100%, 540px);
    justify-self: center;
  }

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

  .faq-list summary {
    min-height: 76px;
    grid-template-columns: 1fr 36px;
    font-size: 1.34rem;
  }

  .faq-list summary span {
    width: 34px;
    height: 34px;
  }

  .faq-list details > p {
    margin-right: 0;
  }

  .final-cta {
    min-height: 580px;
  }

  .final-cta h2 {
    font-size: clamp(3.7rem, 15vw, 5.5rem);
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 25px;
  }

  .footer-brand {
    grid-column: 1 / 3;
  }

  .footer-column:last-child {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  h2 {
    font-size: 3.25rem;
  }

  .eyebrow {
    font-size: 0.65rem;
  }

  .hero {
    min-height: 960px;
  }

  .hero h1 {
    font-size: 3.65rem;
  }

  .hero .eyebrow span {
    display: none;
  }

  .button-large {
    padding-inline: 20px;
    font-size: 0.75rem;
  }

  .intro-grid,
  .location-grid {
    gap: 48px;
  }

  .floating-badge {
    right: -8px;
    min-width: 170px;
  }

  .feature-item {
    grid-template-columns: 42px 1fr;
  }

  .room-content h3 {
    font-size: 2rem;
  }

  .experience-card,
  .experience-large {
    min-height: 390px;
  }

  .experience-content > span {
    font-size: 0.83rem;
  }

  .wellness-quote blockquote {
    font-size: 1.85rem;
  }

  .map-pin {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 13px;
  }

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

  .location-actions .button {
    width: 100%;
  }

  .location-actions .text-link {
    align-self: flex-start;
  }

  .footer {
    padding-top: 65px;
  }

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

  .footer-brand,
  .footer-column:last-child {
    grid-column: auto;
  }

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

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

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

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