/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #C8A951;
  --gold-dark:   #A68B3C;
  --gold-light:  #E8D5A0;
  --gold-pale:   #FBF6EA;
  --bg:          #FAFAF8;
  --text:        #333333;
  --text-light:  #666666;
  --white:       #FFFFFF;
  --dark:        #1B1B2F;
  --radius:      12px;
  --shadow:      0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.12);
  --transition:  background-color .3s ease, color .3s ease, box-shadow .3s ease, opacity .3s ease, transform .3s ease;
  --font-body:   'Inter', system-ui, sans-serif;
  --font-display:'Playfair Display', Georgia, serif;
}

html { scroll-behavior: smooth; }

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

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

a { color: var(--gold-dark); text-decoration: none; transition: color .3s ease; }
a:hover, a:focus-visible { color: var(--gold); }

/* ── Focus styles ─────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Container ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Navigation ───────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,169,81,.15);
  transition: background .3s ease, box-shadow .3s ease;
}

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

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -.02em;
  line-height: 1.15;
}

.nav__logo span { color: var(--gold); }

.nav__links {
  display: flex;
  gap: 8px;
  list-style: none;
}

.nav__links a {
  display: block;
  padding: 8px 16px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: background-color .3s ease, color .3s ease;
}

.nav__links a:hover,
.nav__links a:focus-visible {
  background: var(--gold-pale);
  color: var(--gold-dark);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background-color .3s ease;
}

.nav__toggle:hover { background: var(--gold-pale); }

.nav__toggle svg {
  width: 28px;
  height: 28px;
  stroke: var(--dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-top: 72px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27,27,47,.35) 0%, rgba(27,27,47,.6) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 24px;
  max-width: 720px;
}

.hero__badge {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(200,169,81,.25);
  border: 1px solid rgba(200,169,81,.5);
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background-color .3s ease, transform .2s ease, box-shadow .3s ease;
}

.hero__cta:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,169,81,.35);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  animation: bounce 2s infinite;
}

.hero__scroll svg {
  width: 28px;
  height: 28px;
  stroke: rgba(255,255,255,.6);
  fill: none;
  stroke-width: 2;
}

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

/* ── Sections ─────────────────────────────────────── */
.section {
  padding: 100px 0;
}

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

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.section__desc {
  max-width: 640px;
  margin: 16px auto 0;
  font-size: 1.05rem;
  color: var(--text-light);
}

/* ── Willkommen / About ──────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__text p {
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about__text p:last-child { margin-bottom: 0; }

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  transition: box-shadow .3s ease, transform .3s ease;
}

.feature:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feature__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--white);
  border-radius: 10px;
  font-size: 1.2rem;
}

.feature__icon--wide {
  width: auto;
  padding: 0 14px;
}

.feature__label {
  font-weight: 600;
  font-size: .95rem;
  color: var(--dark);
}

.feature__value {
  font-size: .85rem;
  color: var(--text-light);
}

.about__image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform .6s ease;
}

.about__image:hover img { transform: scale(1.03); }

.about__image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 12px 32px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold-dark);
}

.about__image-badge span {
  display: block;
  font-size: .75rem;
  font-weight: 500;
  color: var(--text-light);
}

/* ── Rooms ────────────────────────────────────────── */
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.room {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.room--reverse .room__images { order: 2; }
.room--reverse .room__info  { order: 1; }

.room__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.room__images img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform .4s ease, box-shadow .4s ease;
}

.room__images img:first-child {
  grid-column: 1 / -1;
  height: 300px;
}

.room__images img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow);
}

.room__info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

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

.room__list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.room__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
}

.room__list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* ── Services ─────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--gold-light);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--gold-pale);
  border-radius: 12px;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.service-card p {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.6;
}

.service-note {
  margin-top: 40px;
  padding: 24px 32px;
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .95rem;
  color: var(--text);
}

/* ── Gallery ──────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 4px;
}

.gallery-grid__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--gold-pale);
  border: none;
  padding: 0;
  font: inherit;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

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

.gallery-grid__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.3) 100%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

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

.gallery-grid__item-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 1;
  font-size: .8rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

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

/* ── Area / Ausflugsziele ─────────────────────────── */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.area-card {
  padding: 28px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  transition: box-shadow .3s ease, transform .3s ease;
}

.area-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

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

.area-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.area-card p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── Contact / Kontakt ────────────────────────────── */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact__cards {
  display: grid;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .3s ease, border-color .3s ease;
}

.contact-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--gold-light);
}

.contact-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--white);
  border-radius: 12px;
  font-size: 1.3rem;
}

.contact-card__label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-card__value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
}

.contact-card__value a {
  color: var(--dark);
  transition: color .3s ease;
}

.contact-card__value a:hover { color: var(--gold); }

.contact-card__note {
  font-size: .85rem;
  color: var(--text-light);
  margin-top: 4px;
}

.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 400px;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* ── Footer ───────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 60px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer__brand span { color: var(--gold); }

.footer__desc {
  font-size: .92rem;
  line-height: 1.7;
  max-width: 360px;
}

.footer h4 {
  font-size: .85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer__list a {
  font-size: .92rem;
  color: rgba(255,255,255,.6);
  transition: color .3s ease;
}

.footer__list a:hover { color: var(--gold-light); }

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
}

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

.footer__legal button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  cursor: pointer;
  transition: color .3s ease;
}

.footer__legal button:hover { color: var(--gold-light); }

/* ── Modal ────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(24px);
  transition: transform .3s ease;
}

.modal-overlay.is-open .modal { transform: translateY(0); }

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}

.modal__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
}

.modal__close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--gold-pale);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color .3s ease;
}

.modal__close:hover { background: var(--gold-light); }

.modal__close svg {
  width: 20px;
  height: 20px;
  stroke: var(--dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.modal__body {
  padding: 32px;
}

.modal__body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin: 24px 0 8px;
}

.modal__body h3:first-child { margin-top: 0; }

.modal__body p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 8px;
}

/* ── Mobile Nav ───────────────────────────────────── */
.nav__mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  padding: 32px 24px;
}

.nav__mobile.is-open { display: block; }

.nav__mobile a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

/* ── Lightbox / Slider ────────────────────────────── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.lightbox-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay__stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 60px 80px;
}

.lightbox-overlay__stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  user-select: none;
}

.lightbox-overlay__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: background-color .3s ease;
}

.lightbox-overlay__close:hover { background: rgba(255,255,255,.25); }

.lightbox-overlay__close svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.lightbox-overlay__prev,
.lightbox-overlay__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: background-color .3s ease;
}

.lightbox-overlay__prev { left: 16px; }
.lightbox-overlay__next { right: 16px; }

.lightbox-overlay__prev:hover,
.lightbox-overlay__next:hover { background: rgba(255,255,255,.25); }

.lightbox-overlay__prev svg,
.lightbox-overlay__next svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lightbox-overlay__counter {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  user-select: none;
}

/* ── Cookie Consent Banner ────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 24px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(200,169,81,.2);
  box-shadow: 0 -4px 24px rgba(0,0,0,.06);
  transform: translateY(100%);
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
}

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

.cookie-banner__text {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.cookie-banner__text a {
  color: var(--gold-dark);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .3s ease, transform .2s ease;
}

.cookie-banner__btn--accept {
  background: var(--gold);
  color: var(--white);
}

.cookie-banner__btn--accept:hover {
  background: var(--gold-dark);
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
}

/* ── Scroll to Top ────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 90;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(200,169,81,.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease, background-color .3s ease;
}

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

.scroll-top:hover {
  background: var(--gold-dark);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .about { grid-template-columns: 1fr; gap: 40px; }
  .room  { grid-template-columns: 1fr; gap: 32px; }
  .room--reverse .room__images { order: 1; }
  .room--reverse .room__info  { order: 2; }
  .contact { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .hero { min-height: 60vh; }
  .hero__content { padding: 48px 20px; }
  .hero__title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .section { padding: 64px 0; }
  .about__features { grid-template-columns: 1fr; }
  .about__image img { height: 340px; }
  .room__images img:first-child { height: 220px; }
  .room__images img { height: 160px; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer__legal { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero { min-height: 50vh; }
  .hero__content { padding: 32px 16px; }
  .hero__title { font-size: 1.6rem; }
  .hero__subtitle { font-size: .9rem; margin-bottom: 24px; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
  }
  .lightbox-overlay__stage { padding: 56px 12px; }
  .lightbox-overlay__prev { left: 8px; width: 40px; height: 40px; }
  .lightbox-overlay__next { right: 8px; width: 40px; height: 40px; }
}

/* ── Reduced Motion ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}