:root {
  --forest: #294a3a;
  --forest-deep: #1f372b;
  --moss: #7f9a66;
  --mist: #f6f3eb;
  --beige: #e8dcc5;
  --earth: #b08b5a;
  --ink: #1f2622;
  --muted: #627068;
  --surface: rgba(255, 255, 255, 0.82);
  --border: rgba(40, 60, 46, 0.12);
  --shadow: 0 24px 60px rgba(25, 40, 32, 0.12);
  --shadow-md: 0 12px 32px rgba(25, 40, 32, 0.08);
  --shadow-lg: 0 32px 80px rgba(25, 40, 32, 0.15);
  --transition: 320ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
}

body[data-page] {
  margin: 0;
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  background:
    radial-gradient(circle at 0% 0%, rgba(127, 154, 102, 0.18), transparent 45%),
    radial-gradient(circle at 100% 10%, rgba(176, 139, 90, 0.16), transparent 40%),
    linear-gradient(180deg, #fcfbf7 0%, #f3efe6 100%);
  overflow-x: hidden;
}

body[data-page].menu-open {
  overflow: hidden;
}

body[data-page] img {
  display: block;
  max-width: 100%;
}

body[data-page] a {
  color: inherit;
  text-decoration: none;
}

.font-display {
  font-family: 'Fraunces', serif;
}

.site-shell {
  min-height: 100svh;
}

.page-main {
  padding-top: 6.5rem;
}

body[data-page='home'] .page-main {
  padding-top: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  transition:
    background-color 280ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 280ms cubic-bezier(0.4, 0, 0.2, 1),
    backdrop-filter 280ms ease;
  background: transparent;
  will-change: background-color, box-shadow;
}

.site-header.is-solid .site-nav {
  background: rgba(250, 247, 240, 0.98);
  box-shadow: 0 16px 40px rgba(25, 40, 32, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border-color: rgba(41, 74, 58, 0.08);
  backdrop-filter: blur(18px);
}

.site-nav {
  width: min(1180px, calc(100% - 2rem));
  margin: 1.2rem auto 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  background: rgba(250, 247, 240, 0.55);
  padding: 0.95rem 1.2rem;
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: background, border-color;
}

.site-nav__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--forest-deep);
  transition: transform 240ms ease, color 240ms ease;
  text-decoration: none;
}

.site-brand:hover {
  transform: translateY(-2px);
  color: var(--earth);
}

.site-brand__mark {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--forest), var(--earth));
  color: #fff;
  box-shadow: 0 10px 24px rgba(41, 74, 58, 0.24);
  transition: all 280ms cubic-bezier(0.34, 1.56, 0.64, 1);
  font-weight: 700;
}

.site-brand:hover .site-brand__mark {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 16px 32px rgba(41, 74, 58, 0.32);
}

.site-nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(41, 74, 58, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--forest);
  cursor: pointer;
  transition: all 240ms cubic-bezier(0.4, 0, 0.2, 1);
}

.site-nav__toggle:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(41, 74, 58, 0.3);
  transform: scale(1.05);
}

.site-nav__toggle:active {
  transform: scale(0.95);
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav__link {
  position: relative;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  transition:
    color 240ms cubic-bezier(0.4, 0, 0.2, 1),
    background-color 240ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 240ms ease,
    box-shadow 240ms ease;
  overflow: hidden;
}

.site-nav__link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--earth), var(--forest));
  transition: left 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.site-nav__link:not(.site-nav__link--book):hover::before {
  left: 0;
}

.site-nav__link:hover:not(.site-nav__link--book),
.site-nav__link.is-active:not(.site-nav__link--book) {
  background: rgba(41, 74, 58, 0.1);
  color: var(--forest-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(41, 74, 58, 0.12);
}

.site-nav__link.is-active:not(.site-nav__link--book) {
  background: rgba(41, 74, 58, 0.14);
}

.site-nav__link--book {
  margin-left: 0.5rem;
  background: linear-gradient(135deg, var(--earth), #cfab74);
  color: #fff;
  box-shadow: 0 14px 32px rgba(176, 139, 90, 0.28);
  position: relative;
  padding: 0.75rem 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.site-nav__link--book::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent 70%);
  opacity: 0;
  transition: opacity 240ms ease;
}

.site-nav__link--book:hover {
  background: linear-gradient(135deg, #9f7441, #c2965e);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(176, 139, 90, 0.36);
}

.site-nav__link--book:hover::after {
  opacity: 1;
}

.site-nav__panel {
  display: none;
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 0;
  right: 0;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.2rem;
  margin: 0 1.2rem;
  border-radius: 16px;
  background: rgba(250, 247, 240, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(41, 74, 58, 0.08);
  box-shadow: 0 20px 50px rgba(25, 40, 32, 0.16);
  animation: slideDown 280ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-nav[data-open='true'] .site-nav__panel {
  display: flex;
  animation: slideDown 280ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.site-nav[data-open='false'] .site-nav__panel {
  animation: slideUp 240ms ease;
}

@keyframes slideUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-12px);
  }
}

.page-section {
  width: min(1180px, calc(100% - 1.25rem));
  margin: 0 auto;
  padding: 7rem 0;
}

.hero {
  position: relative;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  scroll-behavior: smooth;
  isolation: isolate;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.05) 0%, transparent 34%),
    radial-gradient(circle at 50% 50%, transparent 0%, rgba(20, 27, 22, 0.34) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero__media,
.hero__overlay,
.hero__texture {
  position: absolute;
  inset: 0;
}

.hero__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  animation: heroZoom 14s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.1);
  }
}

.hero__overlay {
  background:
    linear-gradient(180deg, rgba(18, 24, 20, 0.1) 0%, rgba(18, 24, 20, 0.44) 42%, rgba(18, 24, 20, 0.8) 100%),
    linear-gradient(90deg, rgba(18, 24, 20, 0.62) 0%, rgba(18, 24, 20, 0.24) 52%, rgba(18, 24, 20, 0.48) 100%),
    linear-gradient(135deg, rgba(127, 154, 102, 0.1) 0%, transparent 40%);
}

.hero__texture {
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.14), transparent 24%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.08), transparent 20%),
    radial-gradient(circle at 50% 80%, rgba(176, 139, 90, 0.16), transparent 22%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.3rem 2rem 2.6rem;
  color: #fff;
  text-align: center;
  max-width: 940px;
  animation: fadeInUp 1.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(17, 23, 19, 0.14), rgba(17, 23, 19, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(10, 16, 13, 0.28);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  animation: fadeInDown 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
  box-shadow: 0 8px 24px rgba(20, 27, 22, 0.16);
}

.hero .eyebrow::before {
  content: '◆';
  font-size: 0.5rem;
  opacity: 0.6;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__title {
  max-width: 100%;
  margin: 1.2rem 0 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(2.9rem, 5.3vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.012em;
  font-weight: 600;
  text-shadow: 0 8px 28px rgba(20, 27, 22, 0.46);
  animation: fadeInDown 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both;
  word-spacing: normal;
  max-width: 720px;
  hyphens: auto;
  word-break: normal;
  white-space: normal;
}

.hero__lead {
  max-width: 52rem;
  margin: 1.35rem auto 0;
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.16px;
  font-weight: 500;
  animation: fadeInDown 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s both;
  text-shadow: 0 3px 12px rgba(20, 27, 22, 0.28);
}

.hero__actions,
.section-actions,
.cta-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2rem;
  justify-content: center;
  animation: fadeInDown 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s both;
}

.hero__actions {
  margin-top: 2.4rem;
}

.hero__actions .btn {
  font-weight: 700;
  transition: all 280ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero__actions .btn--primary {
  box-shadow: 0 18px 44px rgba(176, 139, 90, 0.34);
}

.hero__actions .btn--primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(176, 139, 90, 0.46);
}

.hero__actions .btn--ghost {
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero__actions .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.1);
}

.hero__actions .btn:active {
  transform: translateY(-1px) scale(0.99);
}

.btn,
.section-link,
.contact-link,
.modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 1.05rem 1.8rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition:
    transform 200ms var(--transition),
    box-shadow 200ms var(--transition),
    background-color 200ms var(--transition),
    color 200ms var(--transition),
    scale 200ms var(--transition);
}

.btn:hover,
.section-link:hover,
.contact-link:hover,
.modal-close:hover {
  transform: translateY(-3px);
  scale: 1.02;
}

.btn--primary,
.section-link--primary,
.contact-link--primary {
  background: linear-gradient(135deg, var(--earth), #cfaa70);
  color: #fff;
  box-shadow: 0 16px 40px rgba(176, 139, 90, 0.28);
}

.btn--primary:hover,
.section-link--primary:hover,
.contact-link--primary:hover {
  box-shadow: 0 22px 50px rgba(176, 139, 90, 0.36);
  background: linear-gradient(135deg, #a87a48, #c29f63);
}

.btn--ghost,
.section-link--ghost,
.contact-link--ghost {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.btn--dark,
.section-link--dark,
.contact-link--dark {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 14px 32px rgba(41, 74, 58, 0.2);
}

.btn--dark:hover,
.section-link--dark:hover,
.contact-link--dark:hover {
  background: var(--forest-deep);
  box-shadow: 0 18px 42px rgba(31, 55, 43, 0.28);
}

.section-heading {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}

.section-heading h2 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
  font-weight: 700;
}

.section-heading p,
.section-copy,
.muted-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.section-grid,
.content-grid {
  display: grid;
  gap: 1.25rem;
}

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

.section-grid--home-stay {
  margin-top: 0;
}

.section-grid--rooms-page {
  margin-top: 0;
}

body[data-page='rooms'] .page-section--rooms {
  position: relative;
}

body[data-page='rooms'] .page-section--rooms::before {
  content: '';
  position: absolute;
  inset: 4rem 0 2rem;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(127, 154, 102, 0.16), transparent 34%),
    radial-gradient(circle at bottom left, rgba(176, 139, 90, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(248, 243, 232, 0.88));
  border: 1px solid rgba(41, 74, 58, 0.08);
  box-shadow: 0 26px 70px rgba(25, 40, 32, 0.08);
  z-index: 0;
}

body[data-page='rooms'] .page-section--rooms > * {
  position: relative;
  z-index: 1;
}

.rooms-showcase {
  display: grid;
  gap: 1.25rem;
}

.rooms-showcase__intro,
.rooms-showcase__content {
  position: relative;
  border: 1px solid rgba(41, 74, 58, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.rooms-showcase__intro {
  padding: 1.6rem;
  display: grid;
  gap: 1rem;
}

.rooms-showcase__kicker {
  margin: 0;
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.rooms-showcase__intro h3 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.08;
  color: var(--forest-deep);
}

.rooms-showcase__intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.rooms-highlights {
  display: grid;
  gap: 0.75rem;
}

.rooms-highlight {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(41, 74, 58, 0.05);
  border: 1px solid rgba(41, 74, 58, 0.08);
}

.rooms-highlight__label {
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.rooms-highlight__value {
  color: var(--forest-deep);
  font-weight: 700;
}

.rooms-showcase__content {
  padding: 1rem;
}

.page-section--stay {
  position: relative;
}

.page-section--stay::before {
  content: '';
  position: absolute;
  inset: 4rem 0 2rem;
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(127, 154, 102, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(176, 139, 90, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(248, 243, 232, 0.88));
  border: 1px solid rgba(41, 74, 58, 0.08);
  box-shadow: 0 26px 70px rgba(25, 40, 32, 0.08);
  z-index: 0;
}

.page-section--stay > * {
  position: relative;
  z-index: 1;
}

.stay-showcase {
  display: grid;
  gap: 1.25rem;
}

.stay-showcase__intro,
.stay-showcase__content {
  position: relative;
  border: 1px solid rgba(41, 74, 58, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.stay-showcase__intro {
  padding: 1.6rem;
  display: grid;
  gap: 1rem;
}

.stay-showcase__kicker {
  margin: 0;
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.stay-showcase__intro h3 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.08;
  color: var(--forest-deep);
}

.stay-showcase__intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.stay-highlights {
  display: grid;
  gap: 0.75rem;
}

.stay-highlight {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(41, 74, 58, 0.05);
  border: 1px solid rgba(41, 74, 58, 0.08);
}

.stay-highlight__label {
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.stay-highlight__value {
  color: var(--forest-deep);
  font-weight: 700;
}

.stay-showcase__content {
  padding: 1rem;
}

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

.section-grid--home-gallery {
  margin-top: 0;
}

.section-grid--gallery-page {
  margin-top: 0;
  gap: 1rem;
}

body[data-page='gallery'] .page-section--gallery-page {
  position: relative;
}

body[data-page='gallery'] .page-section--gallery-page::before {
  content: '';
  position: absolute;
  inset: 4rem 0 2rem;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(176, 139, 90, 0.16), transparent 36%),
    radial-gradient(circle at bottom left, rgba(127, 154, 102, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(248, 243, 232, 0.9));
  border: 1px solid rgba(41, 74, 58, 0.08);
  box-shadow: 0 26px 70px rgba(25, 40, 32, 0.08);
  z-index: 0;
}

body[data-page='gallery'] .page-section--gallery-page > * {
  position: relative;
  z-index: 1;
}

.page-section--gallery {
  position: relative;
}

.page-section--gallery::before {
  content: '';
  position: absolute;
  inset: 4rem 0 2rem;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(176, 139, 90, 0.14), transparent 32%),
    radial-gradient(circle at bottom left, rgba(127, 154, 102, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(248, 243, 232, 0.82));
  border: 1px solid rgba(41, 74, 58, 0.08);
  box-shadow: 0 26px 70px rgba(25, 40, 32, 0.08);
  z-index: 0;
}

.page-section--gallery > * {
  position: relative;
  z-index: 1;
}

.gallery-showcase {
  display: grid;
  gap: 1.25rem;
}

.gallery-showcase__intro,
.gallery-showcase__content {
  position: relative;
  border: 1px solid rgba(41, 74, 58, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.gallery-showcase__intro {
  padding: 1.6rem;
  display: grid;
  gap: 1rem;
}

.gallery-showcase__kicker {
  margin: 0;
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.gallery-showcase__intro h3 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.08;
  color: var(--forest-deep);
}

.gallery-showcase__intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.gallery-highlights {
  display: grid;
  gap: 0.75rem;
}

.gallery-highlight {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(41, 74, 58, 0.05);
  border: 1px solid rgba(41, 74, 58, 0.08);
}

.gallery-highlight__label {
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-highlight__value {
  color: var(--forest-deep);
  font-weight: 700;
}

.gallery-showcase__content {
  padding: 1rem;
}

body[data-page='gallery'] .gallery-showcase__content {
  padding: 1.1rem;
}

.gallery-grid__item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(41, 74, 58, 0.12);
  padding: 0;
  background: transparent;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(25, 40, 32, 0.1);
  transition:
    transform 300ms var(--transition),
    box-shadow 300ms var(--transition),
    border-color 300ms var(--transition);
}

.gallery-grid__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(25, 40, 32, 0.14);
  border-color: rgba(41, 74, 58, 0.18);
}

body[data-page='gallery'] .gallery-grid__item {
  border-radius: 28px;
  box-shadow: 0 18px 46px rgba(25, 40, 32, 0.14);
}

body[data-page='gallery'] .gallery-grid__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(25, 40, 32, 0.18);
}

body[data-page='gallery'] .gallery-grid__caption {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  max-width: calc(100% - 2rem);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(17, 25, 19, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
}

.section-grid--split {
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
}

/* ════════════════════════════════════════════════════════════════════════ */
/* Loading Interface                                                         */
/* ════════════════════════════════════════════════════════════════════════ */

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fcfbf7 0%, #f3efe6 100%),
              radial-gradient(circle at 0% 0%, rgba(127, 154, 102, 0.1), transparent 45%),
              radial-gradient(circle at 100% 10%, rgba(176, 139, 90, 0.1), transparent 40%);
  backdrop-filter: blur(2px);
  opacity: 1;
  transition: opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              visibility 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  visibility: visible;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.site-loader__spinner {
  position: relative;
  width: 56px;
  height: 56px;
  animation: spinnerRotate 2.4s linear infinite;
}

@keyframes spinnerRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.site-loader__spinner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--earth);
  border-right-color: var(--moss);
  box-shadow: 
    inset 0 0 16px rgba(176, 139, 90, 0.12),
    0 0 24px rgba(176, 139, 90, 0.18);
  animation: spinnerPulse 2.4s ease-in-out infinite;
}

@keyframes spinnerPulse {
  0%, 100% {
    border-width: 3px;
    box-shadow: 
      inset 0 0 16px rgba(176, 139, 90, 0.12),
      0 0 24px rgba(176, 139, 90, 0.18);
  }
  50% {
    border-width: 4px;
    box-shadow: 
      inset 0 0 20px rgba(176, 139, 90, 0.18),
      0 0 32px rgba(176, 139, 90, 0.28);
  }
}

.site-loader__spinner::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-bottom-color: var(--forest);
  opacity: 0.7;
  animation: spinnerRotateReverse 3.2s linear infinite;
}

@keyframes spinnerRotateReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

.site-loader__text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  animation: textFade 2.4s ease-in-out infinite;
  opacity: 0.8;
}

@keyframes textFade {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.site-loader__dot {
  display: inline-block;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--earth);
  margin-left: 3px;
  animation: dotBounce 1.4s ease-in-out infinite;
}

.site-loader__dot:nth-child(2) {
  animation-delay: 0.14s;
}

.site-loader__dot:nth-child(3) {
  animation-delay: 0.28s;
}

@keyframes dotBounce {
  0%, 100% {
    opacity: 0.4;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

.card,
.panel,
.feature-card,
.contact-card,
.about-panel,
.gallery-card {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.room-card {
  overflow: hidden;
  border-radius: 20px;
  transition: all 300ms var(--transition);
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.room-card__media,
.gallery-card__media,
.feature-card__media,
.about-panel__media {
  width: 100%;
  object-fit: cover;
}

.room-card__media {
  aspect-ratio: 3 / 2.2;
  transition: transform 380ms var(--transition);
}

.room-card:hover .room-card__media {
  transform: scale(1.08);
}

.gallery-card__media {
  aspect-ratio: 1 / 1.04;
}

.room-card__body,
.feature-card__body,
.about-panel__body,
.contact-card__body {
  padding: 1.6rem;
}

.about-panel__body {
  display: grid;
  gap: 0.9rem;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.room-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  background: rgba(41, 74, 58, 0.08);
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 700;
}

.room-card__title,
.feature-card__title,
.about-panel__title,
.contact-card__title {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  line-height: 1.15;
  color: var(--forest-deep);
  font-weight: 700;
}

.room-card__price {
  margin: 1rem 0 0;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--earth);
  letter-spacing: -0.01em;
}

.room-card__copy,
.feature-card__copy,
.about-panel__copy,
.contact-card__copy {
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.feature-card {
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(41, 74, 58, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(250, 247, 240, 0.92));
  box-shadow: 0 18px 50px rgba(25, 40, 32, 0.1);
  transition:
    transform 300ms var(--transition),
    box-shadow 300ms var(--transition),
    border-color 300ms var(--transition);
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(127, 154, 102, 0.04), transparent 30%);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(25, 40, 32, 0.14);
  border-color: rgba(41, 74, 58, 0.18);
}

.feature-card__media {
  aspect-ratio: 5 / 4;
}

.feature-card__body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.8rem;
}

.feature-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.feature-card__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(41, 74, 58, 0.08);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-section--about {
  position: relative;
}

.page-section--about::before {
  content: '';
  position: absolute;
  inset: 4rem 0 2rem;
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(176, 139, 90, 0.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(127, 154, 102, 0.14), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(248, 243, 232, 0.8));
  border: 1px solid rgba(41, 74, 58, 0.08);
  box-shadow: 0 26px 70px rgba(25, 40, 32, 0.08);
  z-index: 0;
}

.page-section--about > * {
  position: relative;
  z-index: 1;
}

body[data-page='about'] .page-section--about-page {
  position: relative;
}

body[data-page='about'] .page-section--about-page::before {
  content: '';
  position: absolute;
  inset: 4rem 0 2rem;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(176, 139, 90, 0.18), transparent 36%),
    radial-gradient(circle at bottom left, rgba(127, 154, 102, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(248, 243, 232, 0.9));
  border: 1px solid rgba(41, 74, 58, 0.08);
  box-shadow: 0 26px 70px rgba(25, 40, 32, 0.08);
  z-index: 0;
}

body[data-page='about'] .page-section--about-page > * {
  position: relative;
  z-index: 1;
}

.about-story {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.6rem;
}

.about-story__panel,
.about-story__media {
  border-radius: 28px;
  border: 1px solid rgba(41, 74, 58, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.about-story__panel {
  padding: 1.7rem;
  display: grid;
  gap: 1rem;
}

.about-story__eyebrow {
  margin: 0;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-story__panel h3 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.08;
  color: var(--forest-deep);
}

.about-story__panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.about-story__highlights {
  display: grid;
  gap: 0.75rem;
}

.about-story__highlight {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(41, 74, 58, 0.05);
  border: 1px solid rgba(41, 74, 58, 0.08);
}

.about-story__label {
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-story__value {
  color: var(--forest-deep);
  font-weight: 700;
}

.about-story__media {
  overflow: hidden;
}

.about-story__image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 420ms var(--transition);
}

.about-story__media:hover .about-story__image {
  transform: scale(1.04);
}

.about-showcase {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.about-showcase__media,
.about-showcase__body {
  position: relative;
  border: 1px solid rgba(41, 74, 58, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.about-showcase__media {
  overflow: hidden;
  min-height: 340px;
}

.about-showcase__body {
  padding: 1.8rem;
  display: grid;
  gap: 1rem;
}

.about-showcase__title {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.08;
  color: var(--forest-deep);
}

.about-showcase__copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.about-highlights {
  display: grid;
  gap: 0.75rem;
}

.about-highlight {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(41, 74, 58, 0.05);
  border: 1px solid rgba(41, 74, 58, 0.08);
}

.about-highlight__label {
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-highlight__value {
  color: var(--forest-deep);
  font-weight: 700;
}

.about-showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 380ms var(--transition);
}

.contact-card {
  overflow: hidden;
}

.contact-list {
  display: grid;
  gap: 0.95rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  color: var(--forest-deep);
}

.contact-list strong {
  display: block;
  margin-bottom: 0.25rem;
}

.contact-map {
  width: 100%;
  min-height: 380px;
  border: 0;
}

body[data-page='contact'] .page-section--contact-page {
  position: relative;
}

body[data-page='contact'] .page-section--contact-page::before {
  content: '';
  position: absolute;
  inset: 4rem 0 2rem;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(176, 139, 90, 0.18), transparent 36%),
    radial-gradient(circle at bottom left, rgba(127, 154, 102, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(248, 243, 232, 0.9));
  border: 1px solid rgba(41, 74, 58, 0.08);
  box-shadow: 0 26px 70px rgba(25, 40, 32, 0.08);
  z-index: 0;
}

body[data-page='contact'] .page-section--contact-page > * {
  position: relative;
  z-index: 1;
}

.contact-showcase {
  display: grid;
  gap: 1.6rem;
  margin-top: 2rem;
}

.contact-showcase__intro,
.contact-showcase__content {
  border-radius: 28px;
  border: 1px solid rgba(41, 74, 58, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.contact-showcase__intro {
  padding: 2rem;
  display: grid;
  gap: 1.1rem;
}

.contact-showcase__kicker {
  margin: 0;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-showcase__intro h3 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.08;
  color: var(--forest-deep);
}

.contact-showcase__intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.contact-highlights {
  display: grid;
  gap: 0.85rem;
}

.contact-highlight {
  display: grid;
  gap: 0.2rem;
  padding: 0.95rem 1.05rem;
  border-radius: 18px;
  background: rgba(41, 74, 58, 0.05);
  border: 1px solid rgba(41, 74, 58, 0.08);
}

.contact-highlight__label {
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-highlight__value {
  color: var(--forest-deep);
  font-weight: 700;
}

.contact-showcase__content {
  padding: 1.2rem;
}

.contact-grid {
  display: grid;
  gap: 1.4rem;
}

.contact-form-card {
  grid-column: 1 / -1;
  background:
    radial-gradient(circle at top right, rgba(176, 139, 90, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 243, 232, 0.95));
  border-color: rgba(41, 74, 58, 0.16);
  box-shadow: var(--shadow-lg);
}

.contact-card--map {
  overflow: hidden;
  border-radius: 24px;
}

.contact-form-card .contact-card__body {
  display: grid;
  gap: 1rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.4rem;
}

.contact-form__date-grid {
  display: grid;
  gap: 0.9rem;
}

.contact-form__field {
  display: grid;
  gap: 0.4rem;
}

.contact-form label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(41, 74, 58, 0.14);
  padding: 0.85rem 0.95rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  color: var(--forest-deep);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 2px rgba(25, 40, 32, 0.08);
  transition:
    border-color 240ms var(--transition),
    box-shadow 240ms var(--transition),
    transform 240ms var(--transition);
}

.contact-form input[type='date'] {
  color: var(--forest-deep);
  min-height: 3.15rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(41, 74, 58, 0.35);
  box-shadow: 0 0 0 3px rgba(41, 74, 58, 0.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  width: 100%;
}

.contact-form__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

body[data-page='contact'] .contact-map {
  min-height: 420px;
}

.page-section--cta {
  position: relative;
}

.page-section--cta::before {
  content: '';
  position: absolute;
  inset: 2rem 0 3rem;
  border-radius: 40px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 38%),
    radial-gradient(circle at bottom right, rgba(176, 139, 90, 0.12), transparent 42%),
    linear-gradient(135deg, rgba(41, 74, 58, 0.96), rgba(28, 55, 44, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 32px 90px rgba(18, 32, 24, 0.35);
  z-index: 0;
}

.page-section--cta > * {
  position: relative;
  z-index: 1;
}

.cta-panel {
  padding: 3.4rem 2.6rem;
  border-radius: 36px;
  background: transparent;
  color: #fff;
  text-align: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.cta-panel__content {
  display: grid;
  gap: 1.6rem;
}

.cta-panel .section-heading {
  margin: 0;
}

.cta-panel .section-heading h2 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 1rem;
}

.cta-panel .section-heading p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.85;
  margin: 0;
}

.cta-features {
  display: grid;
  gap: 1rem;
  margin: 1rem auto 0;
  max-width: 520px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition:
    background 300ms var(--transition),
    border-color 300ms var(--transition),
    transform 300ms var(--transition);
}

.cta-feature:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateX(4px);
}

.cta-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
}

.cta-feature__text {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  text-align: left;
}

.site-footer {
  margin-top: 3.6rem;
  padding: 3.4rem 0 3.6rem;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0.8rem 0 1.2rem;
  border-radius: 44px;
  background:
    radial-gradient(circle at top right, rgba(176, 139, 90, 0.16), transparent 44%),
    radial-gradient(circle at bottom left, rgba(127, 154, 102, 0.14), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 240, 228, 0.94)),
    repeating-linear-gradient(120deg, rgba(41, 74, 58, 0.04), rgba(41, 74, 58, 0.04) 1px, transparent 1px, transparent 12px);
  border: 1px solid rgba(41, 74, 58, 0.12);
  box-shadow: 0 26px 70px rgba(25, 40, 32, 0.12);
  z-index: 0;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 1.25rem));
  margin: 0 auto;
  padding: 2.4rem 2.6rem;
  border: 1px solid rgba(41, 74, 58, 0.14);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 56px rgba(25, 40, 32, 0.12);
  backdrop-filter: blur(10px);
}

.site-footer__top {
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem 1.4rem 1.6rem;
  margin: -0.4rem -0.4rem 1.4rem;
  border-radius: 24px;
  background: rgba(41, 74, 58, 0.06);
  border: 1px solid rgba(41, 74, 58, 0.1);
}

.site-footer__eyebrow {
  margin: 0;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-footer__intro {
  margin: 0;
  max-width: 58ch;
  color: var(--forest-deep);
  font-size: 1.02rem;
  line-height: 1.8;
}

.site-footer__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.site-footer__chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(41, 74, 58, 0.18);
  background: rgba(255, 255, 255, 0.9);
  color: var(--forest-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 26px rgba(25, 40, 32, 0.08);
}

.site-footer__grid {
  display: grid;
  gap: 2.2rem;
  grid-template-columns: 1fr;
}

.site-footer__brand {
  display: grid;
  gap: 0.8rem;
}

.site-footer__brand .site-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest-deep);
  text-decoration: none;
  transition: color 300ms var(--transition);
}

.site-footer__brand .site-brand:hover {
  color: var(--earth);
}

.site-footer__tagline {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.site-footer__section {
  display: grid;
  gap: 0.9rem;
}

.site-footer__heading {
  margin: 0;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-footer__links {
  display: grid;
  gap: 0.6rem;
}

.site-footer__links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition:
    color 300ms var(--transition),
    padding-left 300ms var(--transition),
    letter-spacing 300ms var(--transition);
  padding-left: 0;
}

.site-footer__links a:hover {
  color: var(--forest);
  padding-left: 0.45rem;
  letter-spacing: 0.01em;
}

.site-footer__divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(41, 74, 58, 0.08), rgba(41, 74, 58, 0.2), rgba(41, 74, 58, 0.08));
  margin: 1.2rem 0;
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: center;
  justify-content: center;
}

.site-footer__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  text-align: center;
}

.site-footer__back {
  color: var(--forest);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid rgba(41, 74, 58, 0.3);
  padding-bottom: 0.15rem;
  transition:
    color 300ms var(--transition),
    border-color 300ms var(--transition),
    transform 300ms var(--transition);
}

.site-footer__back:hover {
  color: var(--earth);
  border-color: rgba(176, 139, 90, 0.6);
  transform: translateY(-2px);
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 65;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #1fae54);
  color: #fff;
  box-shadow: 0 18px 32px rgba(23, 151, 72, 0.35);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.02);
}

.floating-whatsapp svg {
  width: 1.85rem;
  height: 1.85rem;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 700ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 700ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes parallax {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(20px);
  }
}

.gallery-grid__item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.gallery-grid__item::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(180deg, rgba(17, 25, 19, 0.08), rgba(17, 25, 19, 0.46));
  transition: background 300ms var(--transition);
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms var(--transition);
}

.gallery-grid__item:hover img {
  transform: scale(1.12);
}

.gallery-grid__item:hover::after {
  background: linear-gradient(180deg, rgba(41, 74, 58, 0.22), rgba(17, 25, 19, 0.68));
}

.gallery-grid__caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.9rem;
  z-index: 1;
  color: #fff;
  font-size: 0.85rem;
  opacity: 0.9;
  transition: opacity 300ms ease;
}

.gallery-grid__item:hover .gallery-grid__caption {
  opacity: 1;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(8, 14, 10, 0.78);
}

.modal[hidden] {
  display: none;
}

.modal__dialog {
  width: min(980px, 100%);
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.32);
}

.modal__media {
  width: 100%;
  max-height: 72svh;
  object-fit: cover;
}

.modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem 1.1rem;
}

.modal__title {
  margin: 0;
  font-weight: 700;
  color: var(--forest-deep);
}

.modal-close {
  background: rgba(41, 74, 58, 0.08);
  color: var(--forest);
}

@media (min-width: 700px) {
  .section-grid--gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer__grid {
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
    gap: 3.2rem;
  }

  .site-footer__top {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    padding: 1.4rem 1.6rem 1.8rem;
  }

  .site-footer__intro {
    max-width: 100%;
  }

  .site-footer__chips {
    justify-content: flex-end;
  }

  .site-footer__divider {
    display: none;
  }

  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .site-footer__note {
    text-align: left;
  }

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

@media (max-width: 960px) {
  .site-nav__toggle {
    display: inline-flex;
  }

  .site-nav__toggle svg {
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .site-nav[data-open='true'] .site-nav__toggle svg {
    transform: rotate(90deg);
  }

  .site-nav__links {
    display: none;
  }

  .site-nav__panel {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
      max-height 300ms cubic-bezier(0.34, 1.56, 0.64, 1),
      opacity 300ms ease,
      padding 300ms ease;
  }

  .site-nav[data-open='true'] .site-nav__panel {
    max-height: 28rem;
    opacity: 1;
    padding-top: 1rem;
    animation: slideDown 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .site-nav__panel .site-nav__link {
    justify-content: flex-start;
    width: 100%;
    padding: 0.8rem 1rem;
    transition: all 240ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .site-nav__panel .site-nav__link:hover {
    transform: translateX(4px);
  }

  .section-grid--split {
    grid-template-columns: 1fr;
  }

  .site-nav {
    width: calc(100% - 0.9rem);
    box-sizing: border-box;
  }

  .page-section {
    width: 100%;
    padding-left: 0.45rem;
    padding-right: 0.45rem;
    box-sizing: border-box;
  }

  .site-footer__inner {
    width: 100%;
    box-sizing: border-box;
  }

  .hero__content {
    width: 100%;
    max-width: none;
    padding: 1.75rem 1.2rem 1.6rem;
    border-radius: 24px;
    box-sizing: border-box;
  }

  .hero__title {
    font-size: clamp(2.4rem, 7vw, 3.2rem);
    line-height: 1.03;
  }

  .hero__lead {
    font-size: 0.99rem;
    margin-top: 1.2rem;
  }

  .hero__actions .btn {
    padding: 1rem 2rem;
  }
}

@media (min-width: 961px) {
  .section-grid--rooms {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-showcase {
    grid-template-columns: 1fr 1.12fr;
    align-items: start;
  }

  .about-showcase__media {
    min-height: 440px;
  }

  .about-showcase__body {
    padding: 1.8rem;
  }

  .stay-showcase {
    grid-template-columns: 0.82fr 1.18fr;
    align-items: start;
  }

  .gallery-showcase {
    grid-template-columns: 0.82fr 1.18fr;
    align-items: start;
  }

  .rooms-showcase {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .about-story {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }

  .about-story--reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .contact-showcase {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.8rem;
  }

  .contact-showcase__content {
    padding: 1.4rem;
    width: 100%;
  }

  .contact-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.1rem;
  }

  .contact-form-card {
    grid-column: 1 / span 7;
    grid-row: 1;
  }

  .contact-grid > .contact-card:not(.contact-form-card):not(.contact-card--map) {
    grid-column: 8 / -1;
    grid-row: 1;
  }

  .contact-card--map {
    grid-column: 1 / -1;
    grid-row: 2;
    min-height: 100%;
  }

  .contact-showcase__intro {
    grid-column: 8 / -1;
    grid-row: 1;
  }

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

  .contact-form .btn {
    width: fit-content;
    min-width: 220px;
  }

  .cta-panel {
    padding: 3.8rem 4rem;
    grid-template-columns: 1fr auto;
    gap: 3.2rem;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .cta-panel__content {
    flex: 1;
    text-align: left;
  }

  .cta-features {
    margin: 0;
  }

  .cta-actions {
    flex: 0 0 auto;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
    justify-content: flex-start;
  }

  .cta-actions .btn {
    min-width: 220px;
  }
}

@media (max-width: 699px) {
  .page-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .hero__content {
    padding: 1.4rem 1rem 1.2rem;
  }

  .hero__title {
    max-width: 100%;
    font-size: clamp(2.15rem, 11vw, 2.8rem);
    margin-top: 1rem;
    line-height: 1.1;
  }

  .hero__lead {
    font-size: 0.94rem;
    margin-top: 1.05rem;
    line-height: 1.72;
  }

  .eyebrow {
    padding: 0.5rem 0.8rem;
    font-size: 0.7rem;
  }

  .hero__actions,
  .section-actions,
  .cta-actions,
  .contact-actions {
    gap: 0.8rem;
    margin-top: 1.6rem;
  }

  .hero__actions .btn {
    width: 100%;
    padding: 1rem 1.35rem;
  }

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

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

  .cta-panel {
    padding: 2.8rem 1.8rem;
    grid-template-columns: 1fr;
    gap: 1.8rem;
    text-align: center;
  }

  .rooms-showcase__content {
    padding: 0.85rem;
  }

  .gallery-showcase__content {
    padding: 0.85rem;
  }

  .about-story__panel {
    padding: 1.4rem;
  }

  .contact-showcase__content {
    padding: 0.95rem;
  }

  .contact-showcase__intro {
    padding: 1.5rem;
  }

  .contact-form-card {
    border-radius: 24px;
  }

  .contact-form .btn {
    width: 100%;
    min-width: 0;
  }

  .cta-panel__content {
    text-align: center;
  }

  .cta-features {
    margin: 0 auto;
    max-width: 100%;
  }

  .cta-actions {
    justify-content: center;
  }

  .stay-showcase__content {
    padding: 0.85rem;
  }

  .feature-card__actions {
    gap: 0.6rem;
  }

  .feature-card__actions .btn {
    width: 100%;
    flex: 1 1 100%;
  }

  .gallery-showcase__content {
    padding: 0.85rem;
  }

  .section-grid--home-gallery {
    gap: 0.8rem;
  }
}