:root {
  --bg: #f1f1f0;
  --bg-alt: #e6e2d9;
  --text: #232121;
  --muted: #57585a;
  --line: #c4c0b6;
  --gold: #b67f3e;
  --gold-deep: #563208;
  --white: #ffffff;
  --max: 1120px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 15px 40px rgba(35, 33, 33, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f5f4f1 0%, #ece9e2 100%);
  line-height: 1.6;
}

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

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  color: var(--text);
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
}

.site-nav a:not(.btn):hover,
.site-nav a:not(.btn):focus-visible {
  color: var(--gold-deep);
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    radial-gradient(100% 120% at 80% 10%, rgba(182, 127, 62, 0.32), transparent 55%),
    linear-gradient(135deg, rgba(35, 33, 33, 0.92), rgba(35, 33, 33, 0.65)),
    url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 70%, rgba(182, 127, 62, 0.16), transparent 40%),
    linear-gradient(to top, rgba(35, 33, 33, 0.7), transparent 45%);
}

.hero-content {
  position: relative;
  padding: 5.5rem 0 4rem;
  max-width: 760px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 600;
  color: color-mix(in srgb, currentColor 75%, #b67f3e);
  margin-bottom: 0.85rem;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.1;
  margin: 0;
}

h1 {
  font-size: clamp(2.2rem, 6.2vw, 4.4rem);
}

h2 {
  font-size: clamp(1.85rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.35rem, 2.6vw, 1.8rem);
}

.lead {
  margin: 1rem 0 1.8rem;
  color: color-mix(in srgb, #ffffff 88%, #c4c0b6);
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.66rem 1.1rem;
  text-decoration: none;
  background: var(--gold);
  color: #1b1610;
  font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(182, 127, 62, 0.35);
  background: #c58e4a;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.btn-sm {
  padding: 0.48rem 0.85rem;
}

.hero-stats {
  margin: 2.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 0.75rem;
}

.hero-stats li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.8rem;
}

.hero-stats strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.22rem;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
}

.section {
  padding: clamp(3.8rem, 9vw, 6rem) 0;
}

.section.alt {
  background: linear-gradient(180deg, #ece8df, #e2ddd2);
  border-top: 1px solid #d9d4ca;
  border-bottom: 1px solid #d9d4ca;
}

.section-head {
  margin-bottom: 1.7rem;
}

.section-head h2 {
  max-width: 18ch;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

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

.card span {
  color: var(--gold-deep);
  font-weight: 600;
  font-size: 0.9rem;
}

.amenities-wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.3rem;
  align-items: center;
}

.amenities-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.amenities-list li {
  padding: 0.78rem 0.95rem;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.66);
  border-radius: 0 10px 10px 0;
}

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

.image-block {
  min-height: 340px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background:
    linear-gradient(30deg, rgba(35, 33, 33, 0.32), rgba(35, 33, 33, 0.12)),
    url("https://images.unsplash.com/photo-1590490360182-c33d57733427?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.text-link {
  color: var(--gold-deep);
  font-weight: 600;
  text-decoration-thickness: 2px;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

.site-footer {
  background: #232121;
  color: #f1f1f0;
  padding: 2.8rem 0;
}

.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
}

.site-footer a {
  color: #f1f1f0;
}

@media (max-width: 920px) {
  .room-grid {
    grid-template-columns: 1fr 1fr;
  }

  .amenities-wrap,
  .about-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .menu-btn {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    right: 1rem;
    display: grid;
    gap: 0.45rem;
    background: #f6f4f0;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 0.8rem;
    min-width: 168px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: all 0.2s ease;
  }

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

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

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