:root {
  --ink: #17211f;
  --muted-ink: #50605b;
  --paper: #fffdf7;
  --mist: #eef5f1;
  --reef: #0f6f73;
  --deep: #123c43;
  --leaf: #496c38;
  --coral: #d96f4d;
  --gold: #a98439;
  --line: rgba(23, 33, 31, 0.14);
  --shadow: 0 20px 55px rgba(16, 38, 35, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  width: min(calc(100% - 32px), 1180px);
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 7px 9px 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 253, 247, 0.82);
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.12);
  transform: translateX(-50%);
}

.site-header.is-scrolled {
  background: rgba(255, 253, 247, 0.96);
  border-color: var(--line);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.84rem;
  font-weight: 700;
}

.site-nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 4px;
  text-decoration: none;
  color: var(--deep);
}

.site-nav a:hover {
  background: rgba(15, 111, 115, 0.1);
}

.site-nav .nav-book,
.button.primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 12px 28px rgba(217, 111, 77, 0.28);
}

.site-nav .nav-book:hover,
.button.primary:hover {
  background: #c95f3d;
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 130px 24px 42px;
  color: #fff;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 24, 24, 0.78), rgba(5, 24, 24, 0.34) 52%, rgba(5, 24, 24, 0.1)),
    linear-gradient(0deg, rgba(5, 24, 24, 0.72), rgba(5, 24, 24, 0.08) 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  margin: 0 auto 42px;
}

.eyebrow,
.section-kicker,
.mini-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0d89b;
}

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

h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.15rem, 10vw, 8.8rem);
  line-height: 0.86;
  font-weight: 500;
}

h1 span {
  display: block;
  max-width: 700px;
  margin-top: 18px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 2.2vw, 1.7rem);
  line-height: 1.25;
  font-weight: 750;
  color: rgba(255, 255, 255, 0.84);
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.88);
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 4px;
  font-weight: 850;
  text-decoration: none;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.58);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-facts {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.hero-facts span {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(10, 28, 29, 0.32);
  font-weight: 800;
  text-align: center;
}

.section {
  padding: 92px 24px;
}

.section-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) 1fr;
  gap: 64px;
  align-items: start;
}

.intro h2,
.section-heading h2,
.split-copy h2,
.commitment h2,
.arrival-grid h2,
.final-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 0.98;
  font-weight: 500;
}

.intro p:not(.section-kicker),
.section-heading p,
.split-copy p,
.commitment p,
.arrival-grid p,
.final-cta p {
  color: var(--muted-ink);
  font-size: 1.05rem;
}

.image-band {
  height: min(70vh, 620px);
  min-height: 360px;
  overflow: hidden;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

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

.room-card,
.experience-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 38, 35, 0.08);
}

.room-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.room-card div,
.experience-grid article {
  padding: 24px;
}

.room-card h3,
.experience-grid h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.room-card p,
.experience-grid p {
  margin: 0;
  color: var(--muted-ink);
}

.featured-room {
  display: flex;
  min-height: 100%;
  align-items: end;
  background: var(--deep);
  color: #fff;
}

.featured-room p {
  color: rgba(255, 255, 255, 0.76);
}

.featured-room a {
  display: inline-flex;
  margin-top: 22px;
  color: #f5d28c;
  font-weight: 850;
  text-decoration: none;
}

.split-section,
.commitment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.split-media,
.commitment > img {
  min-height: 620px;
}

.split-media img,
.commitment > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy,
.commitment div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 96px);
  background: #f6f1e7;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 13px 0;
  border-top: 1px solid rgba(23, 33, 31, 0.14);
  font-weight: 800;
}

.muted {
  background: var(--mist);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.experience-grid article {
  padding: 0 0 24px;
}

.experience-grid img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.experience-grid h3,
.experience-grid p {
  margin-left: 24px;
  margin-right: 24px;
}

.experience-grid h3 {
  margin-top: 22px;
}

.commitment div {
  background: var(--leaf);
  color: #fff;
}

.commitment p {
  color: rgba(255, 255, 255, 0.78);
}

.arrival-grid {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 420px);
  gap: 72px;
  align-items: start;
}

.arrival-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.arrival-panel dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.arrival-panel div {
  display: grid;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.arrival-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.arrival-panel dt {
  color: var(--muted-ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.arrival-panel dd {
  margin: 0;
  font-weight: 850;
}

.final-cta {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 22, 28, 0.64), rgba(9, 22, 28, 0.18) 58%, rgba(9, 22, 28, 0.42));
}

.final-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta-copy {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
}

.final-cta-copy h2 {
  max-width: 700px;
  color: #fff;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.32);
}

.final-cta-copy .button {
  margin-top: 28px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 24px;
  background: #111917;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  color: #fff;
}

.sticky-book {
  position: fixed;
  z-index: 60;
  right: 18px;
  bottom: 18px;
  min-height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 4px;
  background: var(--coral);
  color: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
  font-weight: 900;
  text-decoration: none;
}

.sticky-book.is-visible {
  display: inline-flex;
}

@media (max-width: 900px) {
  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), 680px);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 253, 247, 0.98);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    justify-content: flex-start;
  }

  .hero {
    min-height: 88svh;
    padding: 120px 18px 28px;
  }

  .hero-content {
    margin-bottom: 28px;
  }

  .hero-facts,
  .room-grid,
  .intro-grid,
  .split-section,
  .commitment,
  .arrival-grid {
    grid-template-columns: 1fr;
  }

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

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

  .split-media,
  .commitment > img {
    min-height: 360px;
  }

  .commitment > img {
    order: 2;
  }

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

@media (max-width: 560px) {
  .brand img {
    width: 76px;
  }

  h1 {
    font-size: clamp(3.35rem, 18vw, 5rem);
  }

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

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

  .section {
    padding: 68px 18px;
  }

  .split-copy,
  .commitment div {
    padding: 44px 18px;
  }

  .arrival-panel {
    padding: 22px;
  }

  .sticky-book {
    left: 14px;
    right: 14px;
  }
}
