:root {
  --ink: #242220;
  --muted: #5f5a54;
  --paper: #fffaf2;
  --panel: #f4eadc;
  --deep: #263732;
  --deep-2: #18231f;
  --accent: #b8342f;
  --gold: #d2a64a;
  --line: rgba(36, 34, 32, 0.16);
  --shadow: 0 20px 60px rgba(24, 35, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(16px, 4vw, 56px);
  color: #fff;
  background: rgba(24, 35, 31, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
}

.brand span {
  display: block;
  font-size: clamp(22px, 4vw, 38px);
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--gold);
  font-size: 12px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.main-nav a {
  padding: 9px 11px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 15px;
  border-radius: 6px;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero,
.page-hero {
  position: relative;
  min-height: clamp(520px, 82vh, 760px);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}

.hero-image-link {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(15, 22, 19, 0.9), rgba(15, 22, 19, 0.48) 52%, rgba(15, 22, 19, 0.16));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  padding: 56px clamp(18px, 7vw, 92px) 72px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.page-hero {
  min-height: clamp(420px, 64vh, 620px);
}

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

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 680px;
  font-size: clamp(44px, 9vw, 92px);
}

h2 {
  font-size: clamp(30px, 5vw, 52px);
}

h3 {
  font-size: clamp(22px, 3vw, 32px);
}

.hero-content p:not(.eyebrow) {
  max-width: 560px;
  font-size: 20px;
}

.booking-line {
  font-weight: 800;
}

.booking-line a {
  color: #fff;
}

.booking-line.dark a {
  color: var(--accent);
}

.hero-actions,
.section-copy .button {
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  text-decoration: none;
  font-weight: 800;
  border-radius: 6px;
}

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

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

.section {
  padding: clamp(48px, 8vw, 96px) clamp(18px, 6vw, 80px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: start;
}

.intro-text p:first-child {
  margin-top: 0;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: var(--deep);
  color: #fff;
}

.features article {
  min-width: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
}

.features img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center center;
}

.image-link {
  display: block;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.image-link img {
  height: 100%;
  transition: filter 160ms ease, transform 160ms ease;
}

.image-link:hover img,
.image-link:focus-visible img,
.room-gallery a:hover img,
.room-gallery a:focus-visible img {
  filter: brightness(1.08);
}

.features h3,
.features p {
  margin-left: 18px;
  margin-right: 18px;
}

.features h3 {
  margin-top: 20px;
}

.features p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.82);
}

.features a {
  display: inline-block;
  margin: 0 18px 22px;
  color: #fff;
  font-weight: 800;
}

.features a.image-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 260px;
  margin: 0;
}

.features a.image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hours {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 64px);
  background: var(--panel);
}

.hours dl {
  margin: 0;
  display: grid;
  gap: 10px;
}

.hours dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.hours dt {
  font-weight: 800;
}

.hours dd {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.room-section {
  display: grid;
  gap: 38px;
}

.section-copy {
  max-width: 820px;
}

.section-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.room {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.room.reverse .room-gallery {
  order: 2;
}

.room-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.room-gallery a {
  display: block;
}

.room-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.room-gallery a:first-child {
  grid-column: 1 / -1;
}

.room-gallery a:first-child img {
  aspect-ratio: 16 / 9;
}

.room-capacity {
  margin: 0 0 8px;
  color: var(--accent);
  font-weight: 800;
}

.room-copy p {
  color: var(--muted);
}

.rewards {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
  background: var(--deep-2);
  color: #fff;
}

.rewards.standalone {
  min-height: calc(100vh - 120px);
  align-items: center;
}

.rewards .section-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.rewards .image-link {
  width: min(420px, 100%);
  justify-self: center;
}

.rewards img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact {
  background: var(--panel);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  margin-top: 28px;
  align-items: start;
}

.form-panel,
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.form-panel iframe {
  display: block;
  width: 100%;
  min-height: 820px;
  border: 0;
}

.form-fallback {
  margin: 0;
  padding: 14px 18px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.contact-card {
  padding-bottom: 18px;
}

.contact-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.contact-card h3,
.contact-card p {
  margin-left: 18px;
  margin-right: 18px;
}

.contact-card h3 {
  margin-top: 20px;
}

.contact-card p {
  color: var(--muted);
}

.contact-card a {
  color: var(--accent);
  font-weight: 800;
}

.site-footer {
  padding: 24px clamp(18px, 6vw, 80px);
  color: rgba(255, 255, 255, 0.74);
  background: var(--deep-2);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 880px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 620px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(15, 22, 19, 0.62), rgba(15, 22, 19, 0.9));
  }

  .intro,
  .features,
  .hours,
  .room,
  .rewards,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .room.reverse .room-gallery {
    order: 0;
  }

  .hours dd {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .main-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-nav a {
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    padding-bottom: 46px;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .hours dl div {
    display: grid;
    gap: 4px;
  }

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

  .room-gallery a:first-child img {
    aspect-ratio: 4 / 3;
  }

  .form-panel iframe {
    min-height: 760px;
  }
}
