:root {
  --forest: #243328;
  --forest-dark: #1a231c;
  --forest-light: #3a5240;
  --forest-mid: #2f4234;
  --moss: #d8e4d4;
  --moss-light: #e8f0e5;
  --moss-dark: #c5d4c0;
  --cream: #eef3eb;
  --cream-dark: #dce6d8;
  --bg-page: #d5e0d0;
  --gold: #b59a6d;
  --gold-light: #c9b088;
  --gold-dark: #9a8055;
  --white: #ffffff;
  --text: #1e2820;
  --text-muted: #4a5c4e;
  --text-light: rgba(238, 243, 235, 0.9);
  --line: rgba(36, 51, 40, 0.14);
  --shadow: 0 24px 60px rgba(26, 35, 28, 0.18);
  --shadow-soft: 0 8px 28px rgba(26, 35, 28, 0.1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --container: min(1200px, calc(100% - 2.5rem));
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Lato", system-ui, sans-serif;
  --header-h: 5rem;
  --demo-bar-h: 0px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 220ms;
}

body.has-demo-bar { --demo-bar-h: 2.35rem; }

.demo-notice {
  position: fixed; top: 0; left: 0; right: 0; z-index: 110;
  margin: 0; padding: 0.55rem 1rem;
  font: 600 0.82rem/1.4 var(--font-body); text-align: center;
  background: #1a3d2e; color: #e8f5e9; border-bottom: 2px solid #4a7a5c;
}
.demo-notice strong { color: #fff; }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

.skip-link {
  position: absolute; left: 1rem; top: -100%; z-index: 1000;
  padding: 0.75rem 1rem; background: var(--gold); color: var(--forest-dark);
  font-weight: 700; border-radius: var(--radius-sm);
}
.skip-link:focus { top: 1rem; }

.container { width: var(--container); margin-inline: auto; }

.eyebrow {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin: 0 0 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 600; line-height: 1.15; margin: 0 0 1rem; color: var(--forest);
}
.section-lead {
  color: var(--text-muted); font-size: 1.05rem; max-width: 52ch; margin: 0 0 1.5rem;
}

/* Header */
.site-header {
  position: fixed; inset: auto 0 auto; top: var(--demo-bar-h); z-index: 100; height: var(--header-h);
  background: var(--forest); border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow var(--duration) var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 8px 32px rgba(0,0,0,0.25); }
.header__inner {
  display: flex; align-items: center; gap: 1rem; height: 100%;
}
.brand { display: flex; align-items: center; gap: 0.65rem; flex-shrink: 0; }
.brand__logo {
  height: 3.5rem; width: 3.5rem; border-radius: 50%;
  object-fit: contain; flex-shrink: 0;
}
.footer__logo {
  width: 6rem; height: 6rem; border-radius: 50%;
  object-fit: contain; margin-bottom: 1rem; opacity: 0.95;
}
.brand__text {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
  color: var(--cream); line-height: 1.2;
}
.brand__text small { display: block; font-family: var(--font-body); font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 600; line-height: 1.35; max-width: 11rem; }

.nav { display: flex; gap: 0.15rem; margin-left: auto; flex-wrap: wrap; }
.nav a {
  color: var(--text-light); font-size: 0.82rem; font-weight: 500;
  padding: 0.45rem 0.7rem; border-radius: 999px; transition: background var(--duration);
}
.nav a:hover, .nav a.is-active { background: rgba(255,255,255,0.1); color: var(--white); }

.nav-dropdown { position: relative; }
.nav-dropdown__toggle {
  color: var(--text-light); font-size: 0.82rem; font-weight: 500;
  padding: 0.45rem 0.7rem; border-radius: 999px; transition: background var(--duration);
  background: transparent; border: none; cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.nav-dropdown__toggle::after {
  content: ""; border: 4px solid transparent; border-top-color: currentColor;
  margin-top: 3px; transition: transform var(--duration);
}
.nav-dropdown.is-open .nav-dropdown__toggle::after { transform: rotate(180deg); }
.nav-dropdown__toggle:hover,
.nav-dropdown__toggle.is-active,
.nav-dropdown.is-open .nav-dropdown__toggle {
  background: rgba(255,255,255,0.1); color: var(--white);
}
.nav-dropdown__menu {
  position: absolute; top: calc(100% + 0.35rem); left: 0; min-width: 12rem;
  background: var(--forest-dark); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); padding: 0.35rem; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity var(--duration), transform var(--duration), visibility var(--duration);
  z-index: 120;
}
.nav-dropdown.is-open .nav-dropdown__menu,
.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1; visibility: visible; transform: none;
}
.nav-dropdown__link {
  display: block; padding: 0.55rem 0.75rem; border-radius: var(--radius-sm);
  color: var(--text-light); font-size: 0.82rem; font-weight: 500;
}
.nav-dropdown__link:hover,
.nav-dropdown__link.is-active { background: rgba(255,255,255,0.1); color: var(--white); }

.header__contact {
  display: none; align-items: center; gap: 1rem; margin-left: 0.5rem;
}
.header__phone {
  color: var(--cream); font-size: 0.85rem; font-weight: 600; white-space: nowrap;
}
.header__phone:hover { color: var(--gold-light); }

.menu-toggle {
  display: none; margin-left: auto; width: 2.75rem; height: 2.75rem;
  border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-sm);
  background: transparent; cursor: pointer; padding: 0.5rem;
}
.menu-toggle span {
  display: block; height: 2px; background: var(--cream); margin: 5px 0;
  transition: transform var(--duration);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.35rem; border-radius: var(--radius-sm); border: none;
  cursor: pointer; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.06em;
  text-transform: uppercase; transition: transform var(--duration), box-shadow var(--duration), background var(--duration);
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--forest); color: var(--cream); border: 2px solid var(--forest); }
.btn--primary:hover { background: var(--forest-light); box-shadow: var(--shadow-soft); }
.btn--gold { background: var(--gold); color: var(--forest-dark); }
.btn--gold:hover { background: var(--gold-light); box-shadow: 0 8px 24px rgba(181,154,109,0.35); }
.btn--outline { background: transparent; color: var(--cream); border: 2px solid rgba(245,242,234,0.5); }
.btn--outline:hover { border-color: var(--cream); background: rgba(255,255,255,0.08); }
.btn--outline-dark {
  background: transparent; color: var(--forest); border: 2px solid var(--forest);
}
.btn--outline-dark:hover { background: var(--forest); color: var(--cream); }
.btn--cream { background: var(--cream); color: var(--forest); border: 2px solid var(--cream); }
.btn--cream:hover { background: var(--white); }
.btn--sm { padding: 0.55rem 1rem; font-size: 0.72rem; }

/* Hero */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  padding: calc(var(--demo-bar-h) + var(--header-h) + 3rem) 0 4rem; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; background:
    linear-gradient(180deg, rgba(30,38,32,0.55) 0%, rgba(30,38,32,0.72) 55%, rgba(30,38,32,0.85) 100%),
    url('../assets/photos/hero.jpg?v=demo3') center/cover no-repeat;
}
.hero__content { position: relative; z-index: 2; text-align: center; max-width: 52rem; margin-inline: auto; }
.hero__kicker {
  font-size: 0.78rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-light); margin: 0 0 1rem; font-weight: 600;
}
.hero__title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 600; line-height: 1.08; color: var(--white); margin: 0 0 0.75rem;
}
.hero__tagline {
  font-size: clamp(0.95rem, 2vw, 1.15rem); letter-spacing: 0.35em;
  text-transform: uppercase; color: rgba(255,255,255,0.82); margin: 0 0 2rem; font-weight: 400;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center;
  max-width: 22rem; margin-inline: auto;
}
.hero__actions .btn { width: 100%; max-width: 18rem; }
@media (min-width: 640px) {
  .hero__actions { max-width: none; flex-direction: row; }
  .hero__actions .btn { width: auto; max-width: none; }
}
.hero__badge {
  position: absolute; right: clamp(1rem, 4vw, 3rem); bottom: 3rem; z-index: 3;
  width: 8.5rem; height: 8.5rem; border-radius: 50%;
  background: var(--forest); border: 3px solid var(--gold);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 1rem; box-shadow: var(--shadow);
}
.hero__badge strong {
  font-family: var(--font-display); font-size: 0.72rem; color: var(--gold);
  letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.35;
}
.hero__badge span { font-size: 0.62rem; color: var(--text-light); margin-top: 0.25rem; line-height: 1.3; }

/* Features bar */
.features-bar {
  background: var(--moss); border-bottom: 1px solid var(--line); padding: 2rem 0;
}
.features-bar__grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem;
}
.feature-item { text-align: center; padding: 0.5rem; }
.feature-item__icon {
  width: 2.5rem; height: 2.5rem; margin: 0 auto 0.65rem;
  color: var(--gold); display: flex; align-items: center; justify-content: center;
}
.feature-item__icon svg { width: 1.75rem; height: 1.75rem; stroke: currentColor; fill: none; stroke-width: 1.5; }
.feature-item p { font-size: 0.78rem; color: var(--text-muted); margin: 0; line-height: 1.35; font-weight: 600; }

/* Split sections */
.section { padding: 5rem 0; }
.section--cream { background: var(--moss-light); }
.section--moss { background: var(--moss-dark); }
.section--forest {
  background: linear-gradient(165deg, var(--forest-dark) 0%, var(--forest) 45%, var(--forest-mid) 100%);
  color: var(--cream);
}
.section--forest .section-title { color: var(--cream); }
.section--forest .section-lead { color: var(--text-light); }
.section--forest .eyebrow { color: var(--gold-light); }
.section--dark { background: var(--forest); color: var(--cream); }
.section--dark .section-title { color: var(--cream); }
.section--dark .section-lead { color: var(--text-light); }
.section--dark .eyebrow { color: var(--gold); }

.split {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 3rem; align-items: start;
}
.split__content { max-width: 28rem; }

/* Room gallery — compact 2×2 in split */
.hotel-split { align-items: center; }
.hotel-split .hotel-intro { max-width: none; }
.hotel-split .room-gallery {
  margin-bottom: 0;
  gap: 0.6rem;
}
.hotel-split .room-card {
  aspect-ratio: 4 / 3;
  min-height: 0;
  box-shadow: 0 4px 16px rgba(26, 35, 28, 0.12);
}
.hotel-split .room-card__overlay {
  padding: 0.75rem 0.85rem;
}
.hotel-split .room-card__overlay h3 { font-size: 0.95rem; }
.hotel-split .room-card__price { font-size: 0.72rem; }

.room-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.hotel-intro { max-width: 42rem; }

.room-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  min-height: 240px;
  box-shadow: var(--shadow-soft);
}
.room-slider {
  position: absolute;
  inset: 0;
}
.room-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}
.room-slider__slide.is-active { opacity: 1; z-index: 1; }
.room-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.room-card__overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 1.35rem 1.5rem;
  background: linear-gradient(transparent, rgba(30, 38, 32, 0.94));
  color: var(--white);
  pointer-events: none;
}
.room-card__overlay h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin: 0 0 0.25rem;
}
.room-card__price { font-size: 0.85rem; color: var(--gold-light); font-weight: 700; margin: 0; }

/* Video embed */
.video-section__head { text-align: center; max-width: 42rem; margin: 0 auto 2rem; }
.video-embed {
  position: relative;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--forest-dark);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-caption {
  text-align: center;
  margin: 1rem 0 0;
  font-size: 0.85rem;
}
.video-caption a { color: var(--gold-dark); font-weight: 600; }
.video-caption a:hover { color: var(--forest); }

/* Subpages */
.page-hero {
  position: relative; padding: calc(var(--demo-bar-h) + var(--header-h) + 3rem) 0 3.5rem;
  text-align: center; overflow: hidden;
}
.page-hero--philosophie {
  background:
    linear-gradient(180deg, rgba(30,38,32,0.72) 0%, rgba(30,38,32,0.85) 100%),
    url('../assets/photos/testimonial-bg.jpg') center/cover no-repeat;
  color: var(--cream);
}
.page-hero--jagdschule {
  background:
    linear-gradient(180deg, rgba(30,38,32,0.65) 0%, rgba(30,38,32,0.82) 100%),
    url('../assets/photos/hero.jpg?v=demo3') center/cover no-repeat;
  color: var(--cream);
}
.page-hero--angebote {
  background:
    linear-gradient(180deg, rgba(30,38,32,0.68) 0%, rgba(30,38,32,0.84) 100%),
    url('../assets/photos/event-wedding.jpg') center/cover no-repeat;
  color: var(--cream);
}
.page-hero__content { max-width: 44rem; margin-inline: auto; position: relative; z-index: 1; }
.page-hero__title {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600; margin: 0 0 1rem; line-height: 1.15;
}
.page-hero__lead { font-size: 1.05rem; color: var(--text-light); margin: 0; line-height: 1.7; }
.page-hero .eyebrow { color: var(--gold-light); }
.section-title--light { color: var(--cream); }

.content-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.content-split--reverse .content-split__text { order: 2; }
.content-split--reverse .content-split__media { order: 1; }
.content-split__text p {
  color: var(--text-muted); line-height: 1.75; margin: 0 0 1rem;
}
.content-split__text p:last-child { margin-bottom: 0; }
.content-split__media { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.content-split__media img {
  display: block; width: 100%; height: auto; object-fit: cover;
}
.content-split__media--duo {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; box-shadow: none; overflow: visible;
}
.content-split__media--duo img { border-radius: var(--radius-md); box-shadow: var(--shadow-soft); }

.prose-block { max-width: 46rem; margin-inline: auto; }
.prose-lines p {
  color: var(--text-muted); line-height: 1.8; margin: 0 0 1.15rem; font-size: 1.02rem;
}
.prose-lines p:last-child { margin-bottom: 0; }
.prose-lines em { color: var(--forest); font-style: normal; font-weight: 600; }

.occasion-list {
  display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: center;
  list-style: none; padding: 0; margin: 2.5rem 0 0;
}
.occasion-list li {
  padding: 0.55rem 1rem; background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; font-size: 0.88rem; font-weight: 600; color: var(--forest);
}
.offer-highlight {
  font-family: var(--font-display); font-size: 1.2rem; color: var(--forest);
  margin: 1.25rem 0 0.75rem; font-weight: 600;
}

.value-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem;
}
.value-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md); padding: 1.5rem;
}
.value-card--light {
  background: var(--white); border-color: var(--line); box-shadow: var(--shadow-soft);
}
.value-card h3 {
  font-family: var(--font-display); font-size: 1.15rem; margin: 0 0 0.65rem;
  color: inherit;
}
.section--forest .value-card h3 { color: var(--gold-light); }
.value-card--light h3 { color: var(--forest); }
.value-card p { margin: 0; font-size: 0.92rem; line-height: 1.65; color: var(--text-light); }
.value-card--light p { color: var(--text-muted); }

.partner-highlight {
  display: grid; grid-template-columns: 1.4fr auto; gap: 2rem; align-items: center;
  padding: 2rem; background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--line); box-shadow: var(--shadow-soft);
}
.partner-highlight__logo img { display: block; max-width: 12rem; height: auto; }
.subpage-cta {
  display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center;
  margin-top: 2.5rem;
}

/* Booking hub */
.booking-hub { position: relative; overflow: hidden; }
.booking-hub::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background: url('../assets/photos/hero.jpg?v=demo3') center/cover no-repeat;
  pointer-events: none;
}
.booking-hub .container { position: relative; z-index: 1; }
.booking-hub__head { text-align: center; max-width: 40rem; margin: 0 auto 2.5rem; }
.booking-hub__head .section-title { margin-bottom: 0.75rem; }
.booking-tabs {
  display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center;
  margin-bottom: 1.75rem;
}
.booking-tab {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.65rem 1.1rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: var(--text-light); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; cursor: pointer;
  transition: background var(--duration), border-color var(--duration), color var(--duration);
}
.booking-tab svg { width: 1rem; height: 1rem; stroke: currentColor; fill: none; stroke-width: 1.5; }
.booking-tab:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.booking-tab.is-active {
  background: var(--gold); color: var(--forest-dark);
  border-color: var(--gold);
}
.booking-panel { display: none; animation: bookingFade 0.35s var(--ease); }
.booking-panel.is-active { display: block; }
@keyframes bookingFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.booking-card {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 2rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.booking-card__info h3 {
  font-family: var(--font-display); font-size: 1.5rem; color: var(--cream);
  margin: 0 0 0.75rem;
}
.booking-card__info { align-self: start; }

/* Booking room showcase */
.booking-room-showcase {
  background: rgba(0,0,0,0.12);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 0.85rem;
}
.booking-room-showcase__viewport {
  position: relative;
  min-height: 17.9rem;
}
.booking-room-slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  transform: translateX(10px);
}
.booking-room-slide.is-active {
  position: relative; opacity: 1; visibility: visible; transform: none;
}
.booking-room-slide__img {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  max-height: 11.9rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.booking-room-photo__viewport {
  position: relative;
  height: 11.9rem;
}
.booking-room-photo {
  position: absolute; inset: 0;
  margin: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease);
}
.booking-room-photo.is-active {
  opacity: 1; visibility: visible;
}
.booking-room-photo img {
  display: block; width: 100%; height: 11.9rem; object-fit: cover;
}
.booking-room-photo__arrow {
  position: absolute; top: 50%; z-index: 2;
  width: 1.85rem; height: 1.85rem; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(26,35,28,0.55);
  color: var(--cream); cursor: pointer; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  transform: translateY(-50%);
  transition: background var(--duration), border-color var(--duration), transform var(--duration);
}
.booking-room-photo__arrow--prev { left: 0.4rem; }
.booking-room-photo__arrow--next { right: 0.4rem; }
.booking-room-photo__arrow svg {
  width: 1rem; height: 1rem;
  stroke: currentColor; fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.booking-room-photo__arrow:hover {
  background: rgba(181,154,109,0.85);
  border-color: var(--gold-light);
  color: var(--forest-dark);
}
.booking-room-photo__arrow:active { transform: translateY(-50%) scale(0.94); }
.booking-room-slide__img:not(.has-multiple-photos) .booking-room-photo__arrow { display: none; }
.booking-room-slide__body h3 {
  font-family: var(--font-display); font-size: 1.2rem; color: var(--cream);
  margin: 0 0 0.25rem;
}
.booking-room-slide__price {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--gold-light); margin: 0 0 0.5rem;
}
.booking-room-slide__info {
  font-size: 0.84rem; line-height: 1.55; color: rgba(238,243,235,0.82); margin: 0;
}
.booking-room-showcase__nav {
  display: flex; align-items: center; justify-content: center;
  gap: 0.85rem; margin-top: 0.85rem;
}
.booking-room-showcase__dots {
  display: flex; justify-content: center; gap: 0.45rem;
}
.booking-room-showcase__arrow {
  flex-shrink: 0;
  width: 2rem; height: 2rem; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  color: var(--gold-light); cursor: pointer; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--duration), border-color var(--duration), color var(--duration), transform var(--duration);
}
.booking-room-showcase__arrow svg {
  width: 1.1rem; height: 1.1rem;
  stroke: currentColor; fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.booking-room-showcase__arrow:hover {
  background: rgba(181,154,109,0.25);
  border-color: var(--gold);
  color: var(--cream);
}
.booking-room-showcase__arrow:active { transform: scale(0.94); }
.booking-room-showcase__dot {
  width: 0.55rem; height: 0.55rem; border-radius: 50%;
  border: none; padding: 0; cursor: pointer;
  background: rgba(255,255,255,0.25);
  transition: background var(--duration), transform var(--duration);
}
.booking-room-showcase__dot.is-active {
  background: var(--gold); transform: scale(1.15);
}
.booking-room-showcase__dot:hover { background: var(--gold-light); }

.booking-card__info p { color: var(--text-light); font-size: 0.92rem; margin: 0 0 1rem; line-height: 1.65; }
.booking-meta {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0;
}
.booking-meta span {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; padding: 0.35rem 0.65rem;
  border-radius: 999px; background: rgba(181,154,109,0.2);
  color: var(--gold-light); border: 1px solid rgba(181,154,109,0.35);
}
.booking-facts { margin: 0; padding: 0; list-style: none; }
.booking-facts li {
  position: relative; padding-left: 1.1rem; margin-bottom: 0.45rem;
  font-size: 0.88rem; color: rgba(238,243,235,0.8);
}
.booking-facts li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
}
.booking-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem 1rem;
}
.booking-form .form-group--full { grid-column: 1 / -1; }
.booking-form .form-group label { color: var(--gold-light); }
.booking-form .form-group input,
.booking-form .form-group select,
.booking-form .form-group textarea {
  background: rgba(255,255,255,0.95); border-color: transparent;
}
.booking-form .btn { grid-column: 1 / -1; justify-self: start; margin-top: 0.25rem; }
.booking-success {
  display: none; grid-column: 1 / -1;
  padding: 1rem 1.15rem; border-radius: var(--radius-sm);
  background: rgba(181,154,109,0.22); border: 1px solid rgba(181,154,109,0.4);
  color: var(--cream); font-size: 0.92rem;
}
.booking-success.is-visible { display: block; }
.booking-extras { display: flex; flex-wrap: wrap; gap: 0.65rem 1.25rem; grid-column: 1 / -1; }
.booking-extras label {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; color: var(--text-light); cursor: pointer;
}
.booking-extras input { width: auto; accent-color: var(--gold); }
.booking-highlight {
  margin: 1.25rem 0 0; padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(181, 154, 109, 0.12);
  border-left: 3px solid var(--gold);
  font-size: 0.9rem; line-height: 1.65; color: rgba(238, 243, 235, 0.92);
}
.booking-extra--highlight {
  flex-basis: 100%;
  padding: 0.5rem 0.65rem; margin-top: 0.25rem;
  border-radius: var(--radius-sm);
  background: rgba(181, 154, 109, 0.1);
  border: 1px solid rgba(181, 154, 109, 0.25);
}

/* Legacy room grid (unused) */
.room-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.room-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Restaurant layout */
.restaurant-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 1rem; align-items: stretch;
}
.restaurant-main {
  border-radius: var(--radius-lg); overflow: hidden; min-height: 22rem;
  box-shadow: var(--shadow);
}
.restaurant-main img { width: 100%; height: 100%; object-fit: cover; min-height: 22rem; }
.restaurant-side { display: flex; flex-direction: column; gap: 1rem; }
.restaurant-side img {
  flex: 1; border-radius: var(--radius-md); object-fit: cover;
  min-height: 6.5rem; box-shadow: var(--shadow-soft);
}

/* Amenity list */
.amenity-list { margin: 1.5rem 0 0; }
.amenity-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.55rem 0; border-bottom: 1px solid var(--line); font-size: 0.92rem;
}
.amenity-list li:last-child { border-bottom: none; }
.amenity-list svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; stroke: var(--gold); fill: none; stroke-width: 1.5; margin-top: 0.15rem; }
.price-tag {
  display: inline-block; margin-top: 1rem; padding: 0.65rem 1.25rem;
  background: var(--forest); color: var(--gold-light); border-radius: var(--radius-sm);
  font-weight: 700; font-size: 1.05rem;
}
.info-box {
  margin: 1.25rem 0 0; padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  background: rgba(36, 51, 40, 0.07);
  border-left: 3px solid var(--gold);
}
.info-box strong {
  display: block; font-family: var(--font-display);
  font-size: 1.05rem; color: var(--forest); margin-bottom: 0.4rem;
}
.info-box p { margin: 0; font-size: 0.92rem; line-height: 1.65; color: var(--text-muted); }

/* Events */
.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.event-card {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-soft);
}
.event-card img { width: 100%; height: 100%; object-fit: cover; }
.event-card__overlay {
  position: absolute; inset: auto 0 0; padding: 1.25rem;
  background: linear-gradient(transparent, rgba(30,38,32,0.9));
  color: var(--white);
}
.event-card__overlay h3 { font-family: var(--font-display); margin: 0 0 0.2rem; font-size: 1.2rem; }
.event-card__overlay p { margin: 0; font-size: 0.82rem; color: var(--text-light); }

/* Testimonials */
.testimonials {
  position: relative; padding: 5rem 0; overflow: hidden;
  background: var(--forest);
}
.testimonials__bg {
  position: absolute; inset: 0; opacity: 0.18;
  background: url('../assets/photos/testimonial-bg.jpg') center/cover no-repeat;
}
.testimonials .container { position: relative; z-index: 1; }
.testimonials .section-title { text-align: center; position: relative; color: var(--cream); }
.testimonials__cta {
  margin-top: 2rem; text-align: center; position: relative; z-index: 2;
}
.testimonials__btn {
  background: var(--gold);
  color: var(--forest-dark);
  border: 2px solid var(--gold-light);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  opacity: 1;
}
.testimonials__btn:hover {
  background: var(--gold-light);
  color: var(--forest-dark);
  box-shadow: 0 10px 32px rgba(181, 154, 109, 0.5);
  transform: translateY(-2px);
}
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  position: relative; margin-top: 2.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); padding: 1.5rem; backdrop-filter: blur(8px);
}
.testimonial-card__stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.testimonial-card blockquote { margin: 0 0 1rem; font-style: italic; color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }
.testimonial-card__author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-card__avatar {
  width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--forest-dark); font-size: 0.85rem;
}
.testimonial-card__name { font-weight: 700; color: var(--cream); font-size: 0.9rem; }
.testimonial-card__meta { font-size: 0.75rem; color: rgba(245,242,234,0.6); }

/* Instagram & social */
.social-channels {
  display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center;
  margin: 1.5rem 0 1.75rem;
}
.social-channel {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.7rem 1.2rem; border-radius: 999px;
  font-weight: 700; font-size: 0.82rem; letter-spacing: 0.03em;
  transition: transform var(--duration), box-shadow var(--duration);
}
.social-channel:hover { transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.social-channel svg {
  width: 1.15rem; height: 1.15rem; flex-shrink: 0;
  fill: currentColor; stroke: none;
}
.social-channel--instagram { background: var(--forest); color: var(--cream); }
.social-channel--instagram:hover { background: var(--forest-light); color: var(--white); }
.social-channel--whatsapp { background: #128C7E; color: #fff; }
.social-channel--whatsapp:hover { background: #0f7569; color: #fff; }

.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.5rem; margin-top: 1.5rem; }
.insta-grid a {
  aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.insta-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.insta-grid a:hover img { transform: scale(1.06); }
.insta-handle { text-align: center; margin-top: 1rem; }
.insta-handle a { color: var(--gold-dark); font-weight: 700; letter-spacing: 0.05em; }
.insta-handle a:hover { color: var(--forest); }

/* CTA bar */
.cta-bar {
  background: var(--cream-dark); border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line); padding: 2rem 0;
}
.cta-bar__inner {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: stretch; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
}
.contact-info p { margin: 0 0 0.75rem; color: var(--text-muted); }
.contact-info a { color: var(--forest); font-weight: 600; }
.contact-info a:hover { color: var(--gold-dark); }
.contact-map {
  margin-top: 1.25rem; padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.contact-map__title {
  font-family: var(--font-display); font-size: 1.15rem;
  color: var(--forest); margin: 0 0 0.35rem;
}
.contact-map__lead {
  font-size: 0.88rem; color: var(--text-muted);
  margin: 0 0 0.85rem; line-height: 1.55;
}
.contact-map__embed {
  position: relative; width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 13.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--moss-light);
}
.contact-map__embed iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
}
.contact-map__actions {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 0.75rem 1rem; margin: 0.85rem 0 0;
}
.contact-map__link {
  font-size: 0.85rem; font-weight: 600; color: var(--gold-dark);
}
.contact-map__link:hover { color: var(--forest); }
.contact-card__footer { margin: 1.25rem 0 0; }
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}
.btn--sm { padding: 0.55rem 0.95rem; font-size: 0.72rem; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 1rem; font-size: 0.92rem; }
.hours-table th, .hours-table td { padding: 0.5rem 0; border-bottom: 1px solid var(--line); text-align: left; }
.hours-table th { color: var(--forest); font-weight: 700; width: 40%; }

.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--forest); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: var(--white); color: var(--text);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: 2px solid var(--gold); outline-offset: 2px;
}
.form-success {
  display: none; padding: 1rem; background: rgba(45,55,46,0.08);
  border-radius: var(--radius-sm); color: var(--forest); margin-top: 1rem;
}

.captcha-group { margin-top: 0.25rem; }
.captcha-box {
  display: flex; align-items: center; gap: 0.65rem; margin-bottom: 0.65rem;
}
.captcha-canvas {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--moss-light);
  flex-shrink: 0;
}
.captcha-refresh {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  border: 1px solid var(--line); background: var(--white);
  color: var(--forest); font-size: 1.15rem; line-height: 1;
  cursor: pointer; transition: background var(--duration), border-color var(--duration);
}
.captcha-refresh:hover {
  background: var(--moss-light); border-color: var(--forest);
}
.captcha-error {
  margin: 0.35rem 0 0; font-size: 0.85rem; color: #8b3a3a; font-weight: 600;
}

/* Footer */
.site-footer {
  background: var(--forest-dark); color: var(--text-light); padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-grid h4 {
  font-family: var(--font-display); color: var(--gold); font-size: 1rem;
  margin: 0 0 1rem; font-weight: 600;
}
.footer-grid p, .footer-grid li { font-size: 0.88rem; line-height: 1.7; margin: 0; }
.footer-grid ul li { margin-bottom: 0.4rem; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center;
  color: var(--cream); font-size: 0.75rem; font-weight: 700;
}
.footer-social a:hover { background: var(--gold); color: var(--forest-dark); border-color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: 0.78rem; color: rgba(245,242,234,0.55);
}
.partner-bar {
  background: var(--moss-dark); padding: 1.5rem 0; border-top: 1px solid var(--line);
}
.partner-bar__inner { display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; justify-content: center; }
.partner-bar a { font-size: 0.85rem; font-weight: 600; color: var(--forest); }
.partner-bar a:hover { color: var(--gold-dark); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(1.25rem); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1024px) {
  .features-bar__grid { grid-template-columns: repeat(3, 1fr); }
  .split, .hotel-split, .content-split { grid-template-columns: 1fr; }
  .content-split--reverse .content-split__text,
  .content-split--reverse .content-split__media { order: unset; }
  .value-grid { grid-template-columns: 1fr; }
  .partner-highlight { grid-template-columns: 1fr; text-align: center; }
  .partner-highlight__logo { justify-self: center; }
  .hotel-split .room-gallery { max-width: 32rem; margin-inline: auto; }
  .booking-card { grid-template-columns: 1fr; }
  .restaurant-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero__badge { display: none; }
}
@media (max-width: 768px) {
  .nav {
    position: fixed; inset: calc(var(--demo-bar-h) + var(--header-h)) 0 auto; background: var(--forest-dark);
    flex-direction: column; padding: 1rem; transform: translateY(-120%);
    opacity: 0; pointer-events: none; transition: transform var(--duration), opacity var(--duration);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-dropdown__menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; padding: 0 0 0 0.5rem; margin-top: 0.25rem;
    display: none; background: transparent;
  }
  .nav-dropdown.is-open .nav-dropdown__menu { display: block; }
  .nav-dropdown:hover .nav-dropdown__menu { display: none; }
  .nav-dropdown.is-open:hover .nav-dropdown__menu { display: block; }
  .menu-toggle { display: block; }
  .header__contact { display: none !important; }
  .header__cta-desktop { display: none; }
  .features-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .booking-form { grid-template-columns: 1fr; }
  .booking-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.25rem; }
  .room-gallery { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .event-grid, .testimonial-grid, .contact-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
}

.legal-page {
  padding: calc(var(--demo-bar-h) + var(--header-h) + 2rem) 0 4rem;
  max-width: 48rem;
}
.legal-page h1 { font-family: var(--font-display); color: var(--forest); margin-bottom: 1.5rem; }
.legal-page h2 {
  font-family: var(--font-display); color: var(--forest);
  margin: 2rem 0 0.75rem; font-size: 1.35rem;
}
.legal-page p, .legal-page li { color: var(--text-muted); line-height: 1.7; }
.legal-page .back-link {
  display: inline-flex; margin-bottom: 2rem; font-weight: 600; color: var(--gold-dark);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .insta-grid a:hover img { transform: none; }
  .room-slider__slide { transition: none; }
}
