/* ===========================
   VARIABLES & RESET
   =========================== */
:root {
  --color-primary: #5c7a4e;       /* Waldgrün */
  --color-primary-dark: #3d5435;
  --color-primary-light: #8aab78;
  --color-accent: #c47b3e;        /* Warmes Terrakotta */
  --color-accent-light: #e8a96a;
  --color-dark: #1e1e1e;
  --color-text: #3a3a3a;
  --color-text-light: #666;
  --color-bg: #fafaf7;
  --color-bg-alt: #f2f0eb;
  --color-white: #ffffff;
  --color-border: #e0ddd6;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Lato', system-ui, sans-serif;

  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.14);
  --transition: 0.28s ease;

  --container: 1140px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

address {
  font-style: normal;
  line-height: 1.8;
}

/* ===========================
   MATERIAL SYMBOLS
   =========================== */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

/* Highlights bar */
.highlight__icon .material-symbols-outlined {
  font-size: 2rem;
  color: var(--color-primary);
}

/* Amenity cards */
.amenity__icon .material-symbols-outlined {
  font-size: 2rem;
  color: var(--color-primary);
}

/* Rules */
.rule .material-symbols-outlined {
  font-size: 1.25rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.rule--no .material-symbols-outlined {
  color: #b05c5c;
}

.rule--yes .material-symbols-outlined {
  color: var(--color-primary);
}

/* Gallery overlay */
.gallery__overlay .material-symbols-outlined {
  font-size: 2.4rem;
  color: white;
}

/* Lightbox buttons */
.lightbox__close .material-symbols-outlined,
.lightbox__prev .material-symbols-outlined,
.lightbox__next .material-symbols-outlined {
  font-size: 2rem;
}

/* Transport icons */
.transport__icon .material-symbols-outlined {
  font-size: 1.6rem;
  color: var(--color-primary);
}

/* Location address */
.location__address .material-symbols-outlined {
  font-size: 1.1rem;
  color: var(--color-primary);
  vertical-align: text-bottom;
}

/* Nearby list */
.nearby li .material-symbols-outlined {
  font-size: 1.1rem;
  color: var(--color-primary);
  vertical-align: text-bottom;
  margin-right: 2px;
}

/* Activity cards */
.activity .material-symbols-outlined {
  font-size: 2.2rem;
  color: var(--color-primary);
}

/* Booking icons */
.booking__icon .material-symbols-outlined {
  font-size: 2.5rem;
  color: var(--color-accent-light);
}

/* Booking features check */
.booking__features .material-symbols-outlined {
  font-size: 1.1rem;
  color: var(--color-primary-light);
  vertical-align: text-bottom;
  margin-right: 4px;
}

/* Inline links in content areas */
.transport a,
.nearby a,
.activities__hint a {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: rgba(92,122,78,.35);
  text-underline-offset: 2px;
  transition: color var(--transition), text-decoration-color var(--transition);
}

.transport a:hover,
.nearby a:hover,
.activities__hint a:hover {
  color: var(--color-primary-dark);
  text-decoration-color: var(--color-primary);
}

/* Activity cards as links */
.activity a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.activity:has(a):hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(92,122,78,.18);
  background: var(--color-white);
  cursor: pointer;
}

/* ===========================
   UTILITIES
   =========================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(92,122,78,.35);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn--white:hover {
  background: var(--color-bg-alt);
  transform: translateY(-2px);
}

/* ===========================
   HEADER / NAV
   =========================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}

#header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-white);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}

#header.scrolled .nav__logo {
  color: var(--color-primary);
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav__list a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(255,255,255,.9);
  transition: all var(--transition);
}

.nav__list a:hover {
  color: var(--color-white);
  background: rgba(255,255,255,.15);
}

#header.scrolled .nav__list a {
  color: var(--color-text);
}

#header.scrolled .nav__list a:hover {
  color: var(--color-primary);
  background: var(--color-bg-alt);
}

.nav__cta {
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
}

.nav__cta:hover {
  background: var(--color-primary-dark) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition);
  border-radius: 2px;
}

#header.scrolled .nav__toggle span {
  background: var(--color-dark);
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__slider {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero__slide.active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.35) 0%,
    rgba(0,0,0,.45) 50%,
    rgba(0,0,0,.6) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 0 24px;
  max-width: 780px;
}

.hero__tagline {
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: .85;
  margin-bottom: 12px;
  font-weight: 300;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 1.05;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  opacity: .9;
  margin-bottom: 28px;
}

.hero__badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero__badges span {
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.3);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity var(--transition);
}

.hero__scroll:hover {
  opacity: 1;
  color: white;
}

.hero__scroll svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.hero__dots {
  position: absolute;
  bottom: 28px;
  right: 32px;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.hero__dot.active {
  background: var(--color-white);
  transform: scale(1.3);
}

/* ===========================
   HIGHLIGHTS BAR
   =========================== */
.highlights {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 0;
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--color-border);
}

.highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  border-right: 1px solid var(--color-border);
}

.highlight:last-child {
  border-right: none;
}

.highlight__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.highlight h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--color-dark);
}

.highlight p {
  font-size: 0.82rem;
  color: var(--color-text-light);
  line-height: 1.4;
}

/* ===========================
   SECTIONS
   =========================== */
.section {
  padding: 96px 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section--dark {
  background: #1e2d1a;
  color: var(--color-white);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section--dark .section__label {
  color: var(--color-accent-light);
}

.section__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--color-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section__header p {
  color: var(--color-text-light);
  font-size: 1.05rem;
  line-height: 1.75;
}

.section__header--light h2,
.section__header--light p {
  color: var(--color-white);
}

/* ===========================
   OVERVIEW
   =========================== */
.overview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.overview__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.overview__content h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.overview__content > p {
  color: var(--color-text-light);
  margin-bottom: 32px;
  font-size: 1.02rem;
}

.floors {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.floor {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  align-items: start;
}

.floor:last-child {
  border-bottom: none;
}

.floor__label {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.floor__rooms {
  font-size: 0.95rem;
  color: var(--color-text);
}

.overview__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 28px;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
}

.stat {
  text-align: center;
}

.stat__value {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat__label {
  font-size: 0.8rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===========================
   AMENITIES
   =========================== */
.amenities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.amenity {
  background: var(--color-white);
  padding: 28px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.amenity:hover {
  transform: translateY(-4px);
}

.amenity__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.amenity h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.amenity p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.rules {
  background: var(--color-white);
  padding: 32px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.rules h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.rules__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.rule {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--color-text);
  font-weight: 500;
}

/* ===========================
   GALLERY
   =========================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 16px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery__item:nth-child(5) {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover img {
  transform: scale(1.07);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(92,122,78,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery__overlay span {
  color: white;
  font-size: 2.5rem;
  line-height: 1;
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

/* ===========================
   LIGHTBOX
   =========================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 200;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
  z-index: 201;
}

.lightbox__close:hover { opacity: 1; }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: white;
  font-size: 2.5rem;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  z-index: 201;
  line-height: 1;
}

.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255,255,255,.25); }

/* ===========================
   LOCATION
   =========================== */
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.location__address {
  text-align: center;
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.location__info h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-dark);
  margin-bottom: 24px;
}

.transport__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.transport {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.transport__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.transport strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 3px;
}

.transport p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.nearby h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 14px;
}

.nearby ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.nearby li {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* ===========================
   NATURE IMPRESSIONS
   =========================== */
.nature__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
  margin-top: 16px;
}

.nature__item {
  position: relative;
  overflow: hidden;
}

.nature__item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.nature__item:hover img {
  transform: scale(1.04);
}

.nature__item--large {
  grid-column: span 2;
}

.nature__item--large img {
  height: 380px;
}

.nature__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
  color: white;
  padding: 32px 20px 16px;
  font-size: 0.84rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.nature__item:hover .nature__caption {
  opacity: 1;
}

.nature__credit {
  display: block;
  font-size: 0.7rem;
  opacity: 0.7;
  margin-top: 3px;
}

.activities {
  padding: 56px 0 0;
  text-align: center;
}

.activities h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-dark);
  margin-bottom: 36px;
}

.activities__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.activity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
}

.activity span {
  font-size: 2rem;
}

.activity p {
  font-size: 0.82rem;
  color: var(--color-text-light);
  text-align: center;
  line-height: 1.4;
}

.activities__hint {
  font-size: 0.88rem;
  color: var(--color-text-light);
  font-style: italic;
}

/* ===========================
   BOOKING / CONTACT
   =========================== */
.booking__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  align-items: start;
}

.booking__centered {
  max-width: 560px;
  margin: 0 auto;
}

.booking__embed-wrap {
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 32px;
}

.booking__embed-wrap .airbnb-embed-frame {
  max-width: 100% !important;
  width: 100% !important;
}

.booking__option {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 40px;
}

.booking__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.booking__option h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-white);
  margin-bottom: 12px;
}

.booking__option > p {
  color: rgba(255,255,255,.88);
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.38);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: rgba(255,255,255,.6);
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-color: var(--color-primary-light);
  background: rgba(255,255,255,.18);
}

.form__label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__label span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  padding-left: 2px;
}

.contact__form input[type="date"] {
  color-scheme: dark;
  width: 100%;
}

.contact__form textarea {
  resize: vertical;
}

.form__success {
  margin-top: 12px;
  padding: 14px 18px;
  background: rgba(92,122,78,.3);
  border: 1px solid rgba(92,122,78,.5);
  border-radius: var(--radius-sm);
  color: #a8d4a0;
  font-size: 0.9rem;
}

.booking__option--airbnb {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}

.booking__features {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.booking__features div {
  color: rgba(255,255,255,.88);
  font-size: 0.9rem;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #111;
  color: rgba(255,255,255,.65);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__brand h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 12px;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,.9);
  margin-bottom: 16px;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}

.footer ul li a:hover {
  color: var(--color-primary-light);
}

.footer__address {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.83rem;
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: rgba(255,255,255,.8);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .amenities__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .activities__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

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

  .nav__list {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%);
    opacity: 0;
    transition: all var(--transition);
    gap: 4px;
  }

  .nav__list.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav__list a {
    color: var(--color-text) !important;
    display: block;
    padding: 12px 16px !important;
  }

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

  .highlight {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: 20px 24px;
  }

  .highlight:nth-child(2n) {
    border-right: none;
  }

  .section {
    padding: 64px 0;
  }

  .overview__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .overview__image img {
    height: 300px;
  }

  .overview__stats {
    grid-template-columns: repeat(4, 1fr);
    padding: 20px;
  }

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

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

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

  .gallery__item:nth-child(5) {
    grid-column: span 2;
  }

  .location__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .nature__item--large {
    grid-column: span 2;
  }

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

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

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

  .nearby ul {
    grid-template-columns: 1fr;
  }
}

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

  .hero__title {
    font-size: 3rem;
  }

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

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

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

  .gallery__item:nth-child(5) {
    grid-column: span 1;
    aspect-ratio: 1;
  }

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

  .nature__item--large {
    grid-column: span 1;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .floor {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
