:root {
  --bg: #f6f1e8;
  --bg-soft: #efe5d6;
  --surface: rgba(255, 248, 238, 0.82);
  --surface-strong: #fff9f1;
  --text: #1d1713;
  --muted: #69584b;
  --accent: #ad9651;
  --accent-strong: #8a7538;
  --line: rgba(29, 23, 19, 0.1);
  --shadow: 0 22px 50px rgba(30, 21, 14, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(173, 150, 81, 0.18), transparent 32%),
    linear-gradient(180deg, #fbf7f1 0%, var(--bg) 46%, #f1e7db 100%);
}

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

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

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
  opacity: 0.38;
  z-index: -1;
}

.page-shell::before {
  top: -140px;
  right: -110px;
  background: radial-gradient(circle, rgba(173, 150, 81, 0.42), transparent 68%);
}

.page-shell::after {
  left: -140px;
  bottom: 10%;
  background: radial-gradient(circle, rgba(129, 92, 53, 0.2), transparent 70%);
}

.site-header,
main,
.site-footer {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  width: clamp(116px, 16vw, 168px);
  background: rgba(0, 0, 0, 0.9);
  border-radius: 0 0 18px 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 249, 241, 0.76);
  box-shadow: var(--shadow);
}

.site-nav a {
  padding: 10px 16px;
  color: var(--muted);
  font-size: 0.95rem;
  transition: background-color 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(173, 150, 81, 0.12);
  border-radius: 999px;
}

.nav-toggle,
.sr-only {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 40px;
  padding: 48px 0 44px;
  align-items: center;
}

.hero-copy,
.hero-panel,
.intro,
.contact-card,
.feature-card,
.room-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.95;
}

h1 {
  font-size: clamp(2.9rem, 5vw, 5rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 3.4rem);
}

h3 {
  font-size: 2rem;
}

.hero-text,
.intro p,
.feature-card p,
.room-description,
.contact-card p,
.room-meta li,
.room-tags li {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 56ch;
  margin: 22px 0 0;
  font-size: 1.04rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button-primary {
  color: #fff9f1;
  background: linear-gradient(135deg, #1f1b17, #433526);
  box-shadow: 0 16px 34px rgba(31, 27, 23, 0.2);
}

.button-secondary {
  border: 1px solid rgba(173, 150, 81, 0.5);
  background: rgba(255, 249, 241, 0.68);
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.hero-image-card,
.gallery-card,
.room-image {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-image-card {
  background: #f4ede2;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-stats div,
.intro,
.contact-card,
.feature-card,
.room-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-stats div {
  padding: 20px 18px;
  border-radius: var(--radius-lg);
}

.hero-stats strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.25rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

section {
  padding: 34px 0;
}

.intro,
.contact-card {
  padding: 34px;
  border-radius: var(--radius-xl);
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 26px;
}

.rooms-grid,
.features-grid,
.gallery-grid {
  display: grid;
  gap: 22px;
}

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

.room-card {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.room-image {
  border-radius: 0;
  box-shadow: none;
}

.room-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.room-content {
  display: grid;
  gap: 18px;
  padding: 26px;
}

.room-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.room-location {
  margin: 10px 0 0;
  color: var(--accent-strong);
  font-size: 0.92rem;
  font-weight: 700;
}

.room-meta,
.room-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.room-meta li,
.room-tags li {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(173, 150, 81, 0.1);
  font-size: 0.92rem;
}

.room-description {
  margin: 0;
}

.room-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.room-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
}

.room-link::after {
  content: ">";
  font-size: 1rem;
}

.features-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  min-height: 208px;
  padding: 26px;
  border-radius: var(--radius-lg);
}

.feature-card h3 {
  margin-bottom: 12px;
}

.gallery-grid {
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(220px, auto));
}

.gallery-card {
  margin: 0;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.contact-section,
.site-footer {
  padding-bottom: 56px;
}

.site-footer {
  padding-top: 8px;
  color: var(--muted);
  text-align: center;
  font-size: 0.94rem;
}

@media (max-width: 1080px) {
  .hero,
  .rooms-grid,
  .features-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 22px;
  }

  .gallery-grid {
    grid-template-rows: auto;
  }

  .gallery-card-large {
    grid-row: auto;
  }

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

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    padding-top: 12px;
  }

  .brand {
    width: 112px;
  }

  .nav-toggle {
    position: relative;
    z-index: 30;
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    padding: 14px;
    margin-left: auto;
    border: 0;
    border-radius: 16px;
    background: rgba(255, 249, 241, 0.9);
    box-shadow: var(--shadow);
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% - 4px);
    right: 0;
    display: grid;
    width: min(280px, 100%);
    padding: 10px;
    border-radius: 26px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    background: var(--surface-strong);
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    border-radius: 18px;
  }

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

  h1 {
    max-width: 12ch;
  }

  .intro,
  .contact-card,
  .room-content,
  .feature-card {
    padding: 24px;
  }

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