:root {
  --bg: #f6f2eb;
  --surface: #fffaf3;
  --surface-strong: #ffffff;
  --ink: #1e2520;
  --muted: #67726b;
  --line: rgba(30, 37, 32, 0.12);
  --brand: #8f5b35;
  --brand-dark: #5b361f;
  --accent: #d9a24f;
  --shadow: 0 24px 70px rgba(43, 31, 20, 0.16);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

body.is-modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 8%, rgba(217, 162, 79, 0.2), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(143, 91, 53, 0.12), transparent 26rem);
}

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

a {
  color: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  left: 16px;
}

.site-header {
  position: fixed;
  inset: 24px 0 auto;
  z-index: 50;
  transition: transform 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled .header-grid {
  padding: 8px 12px;
  background: rgba(255, 250, 243, 0.94);
  box-shadow: 0 14px 42px rgba(33, 25, 18, 0.18);
}

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.86);
  box-shadow: 0 16px 50px rgba(33, 25, 18, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-left: 18px;
  text-decoration: none;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.22rem;
  letter-spacing: -0.03em;
}

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.main-nav a {
  padding: 8px 0;
  border-radius: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.header-phone {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(30, 37, 32, 0.18);
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-phone:hover,
.header-phone:focus-visible {
  transform: translateY(-2px);
  background: var(--brand-dark);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background: #1b1d19;
}

.hero-slider,
.slide {
  min-height: 820px;
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

.slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 16, 12, 0.78), rgba(12, 16, 12, 0.18) 54%, rgba(12, 16, 12, 0.52)),
    linear-gradient(0deg, rgba(12, 16, 12, 0.72), rgba(12, 16, 12, 0.05) 55%);
}

.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100% - 64px));
  margin: 0 auto 128px;
  color: #fff;
}

.slide-content h1,
.slide-content h2 {
  max-width: 820px;
  margin: 0 0 28px;
  font-size: clamp(3.4rem, 6.8vw, 6.05rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.slide-content .eyebrow {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: var(--accent);
  color: #23190d;
  box-shadow: 0 16px 36px rgba(217, 162, 79, 0.28);
}

.button-light {
  background: #fff;
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button-soft {
  background: rgba(143, 91, 53, 0.1);
  color: var(--brand-dark);
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.slider-controls {
  position: absolute;
  z-index: 3;
  right: max(40px, calc((100% - 1160px) / 2));
  bottom: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.slider-controls button {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  font-size: 1.7rem;
  transition: background 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(14px);
}

.slider-controls button:hover {
  background: rgba(255, 255, 255, 0.26);
  transform: translateY(-2px);
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  font-size: 0;
}

.slider-dots button.is-active {
  width: 28px;
  border-radius: 999px;
  background: #fff;
}

.reservation-band {
  position: relative;
  z-index: 4;
  margin-top: -64px;
}

.band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.reservation-title {
  display: grid;
  gap: 6px;
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.reservation-title span {
  color: var(--muted);
  font-weight: 800;
}

.reservation-phone {
  width: fit-content;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.08em;
  text-decoration: none;
  white-space: nowrap;
}

.band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.section {
  padding: 110px 0;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 64px;
}

.section-copy h2,
.section-heading h2 {
  margin: 0 0 22px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.08em;
}

.section-copy p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-panel {
  display: grid;
  gap: 14px;
}

.feature-panel div {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
}

.feature-panel span {
  display: block;
  margin-bottom: 6px;
  color: var(--brand);
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
}

.feature-panel p {
  margin: 0;
  color: var(--muted);
}

.rooms-section {
  background:
    radial-gradient(circle at 15% 0%, rgba(217, 162, 79, 0.18), transparent 32%),
    #eee5d9;
}

.section-heading {
  margin-bottom: 42px;
  text-align: center;
}

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

.room-card,
.tip-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 0 20px 50px rgba(43, 31, 20, 0.1);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.room-card:hover,
.tip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(43, 31, 20, 0.16);
}

.room-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.room-image img,
.tip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover .room-image img,
.tip-card:hover img {
  transform: scale(1.04);
}

.room-content {
  padding: 30px;
}

.room-content h3,
.tip-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.05em;
  line-height: 1.1;
  font-size: 28px;
}

.room-content h3 strong {
  color: var(--brand);
  white-space: nowrap;
}

.room-content p,
.tip-card p {
  color: var(--muted);
}

.room-content p {
  position: relative;
  max-height: 138px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.room-content p::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 46px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--surface-strong));
  pointer-events: none;
}

.room-content.is-expanded p {
  max-height: 900px;
}

.room-content.is-expanded p::after {
  display: none;
}

.room-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 6px 0 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brand-dark);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.text-link {
  display: block;
  color: var(--brand-dark);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.text-link::after {
  content: " →";
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.tip-card img {
  aspect-ratio: 16 / 9;
}

.tip-card div {
  padding: 30px;
}

.tip-card small {
  color: var(--muted);
}

.gallery-section {
  background:
    radial-gradient(circle at 82% 8%, rgba(217, 162, 79, 0.14), transparent 30%),
    #f6f1e9;
}

.breakfast-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(143, 91, 53, 0.12), transparent 32%),
    #fffaf3;
}

.breakfast-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  align-items: stretch;
  gap: 26px;
}

.breakfast-photo {
  display: block;
  overflow: hidden;
  border-radius: 24px;
  background: #ddd2c3;
  box-shadow: 0 18px 42px rgba(43, 31, 20, 0.1);
}

.breakfast-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.breakfast-photo:hover img {
  transform: scale(1.04);
}

.breakfast-copy {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(30, 37, 32, 0.08);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 0 18px 42px rgba(43, 31, 20, 0.08);
}

.breakfast-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.breakfast-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #ddd2c3;
  box-shadow: 0 18px 42px rgba(43, 31, 20, 0.12);
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-item:hover img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.045);
}

.gallery-section .tip-card {
  display: none;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 76px 88px;
  background: rgba(11, 14, 12, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.gallery-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-modal-frame {
  display: grid;
  gap: 14px;
  width: min(1120px, 100%);
  margin: 0;
  color: #fff;
}

.gallery-modal-frame img {
  width: 100%;
  max-height: calc(100vh - 170px);
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
}

.gallery-modal-frame figcaption {
  min-height: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  display: none;
}

.gallery-modal-close,
.gallery-modal-nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.14);
  color: #fff;
  font-family: Arial, sans-serif;
  font-weight: 400;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-modal-close:hover,
.gallery-modal-nav:hover {
  background: rgba(255, 250, 243, 0.24);
  transform: translateY(-1px);
}

.gallery-modal-close {
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  padding: 0px;
  font-size: 2rem;
  line-height: 1;
}

.gallery-modal-nav {
  top: 50%;
  width: 56px;
  height: 56px;
  padding: 0 0 5px;
  font-size: 2.6rem;
  line-height: 1;
  transform: translateY(-50%);
}

.gallery-modal-prev {
  padding-right: 3px;
}

.gallery-modal-next {
  padding-left: 3px;
}

.gallery-modal-nav:hover {
  transform: translateY(calc(-50% - 1px));
}

.gallery-modal-prev {
  left: 24px;
}

.gallery-modal-next {
  right: 24px;
}

.gallery-modal.is-single-image .gallery-modal-nav {
  display: none;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(217, 162, 79, 0.32), transparent 32%),
    radial-gradient(circle at 86% 8%, rgba(143, 91, 53, 0.28), transparent 28%),
    #151914;
  color: #fff;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
}

.contact-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1.15fr);
  gap: 22px;
  align-items: stretch;
}

.contact-card,
.map-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
  transform: translateZ(0);
}

.contact-card {
  padding: clamp(28px, 5vw, 48px);
}

.contact-card h2 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.08em;
}

.contact-lead {
  max-width: 520px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.contact-list {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
}

.contact-list a {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 70px;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.contact-list a:last-child {
  border-bottom: 0;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  transform: none;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.contact-list span {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-list strong {
  color: #fff;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.35;
}

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

.map-card {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}

.map-card::after {
  content: "Oswald-Bölke-Str.7 · 31515 Wunstorf";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 48px);
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(21, 25, 20, 0.84);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  filter: saturate(0.92) contrast(1.02);
}

.site-footer {
  padding: 32px 0;
  background: #181c18;
  color: rgba(255, 255, 255, 0.72);
}

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

.footer-grid a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.footer-grid p {
  margin: 0;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    inset: 12px 0 auto;
  }

  .header-grid {
    grid-template-columns: 1fr auto;
    border-radius: 28px;
    gap: 12px;
    padding: 10px;
    position: relative;
  }

  .nav-toggle {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 0;
    border-radius: 16px;
    background: var(--ink);
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 2px 0;
    border-radius: 99px;
    background: #fff;
  }

  .main-nav {
    display: grid;
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .header-actions {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 26px;
    background: rgba(255, 250, 243, 0.96);
    box-shadow: 0 24px 64px rgba(33, 25, 18, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(18px);
  }

  .header-actions.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border: 1px solid rgba(30, 37, 32, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    text-align: left;
  }

  .main-nav a::after {
    content: "→";
    color: var(--accent);
  }

  .header-phone {
    min-height: 52px;
    border-radius: 18px;
  }

  .hero,
  .hero-slider,
  .slide {
    min-height: 760px;
  }

  .slide-content {
    width: min(100% - 28px, 840px);
    margin-bottom: 118px;
  }

  .slide-content h1,
  .slide-content h2 {
    font-size: clamp(3rem, 10vw, 5.4rem);
    line-height: 1;
  }

  .slide::after {
    background:
      linear-gradient(180deg, rgba(12, 16, 12, 0.56), rgba(12, 16, 12, 0.08) 36%, rgba(12, 16, 12, 0.84)),
      linear-gradient(90deg, rgba(12, 16, 12, 0.58), rgba(12, 16, 12, 0.18));
  }

  .slider-controls {
    right: 20px;
    left: 20px;
    bottom: 146px;
    justify-content: space-between;
  }

  .band-grid,
  .split-grid,
  .room-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .breakfast-showcase {
    grid-template-columns: 1fr;
  }

  .breakfast-photo img {
    min-height: 340px;
  }

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

  .reservation-title {
    gap: 8px;
  }

  .reservation-phone {
    font-size: clamp(2rem, 9vw, 3.1rem);
  }

  .contact-section {
    padding: 86px 0;
  }

  .map-card {
    min-height: 420px;
  }

  .section {
    padding: 82px 0;
  }

  .band-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 520px) {
  .container {
    width: min(100% - 22px, 1160px);
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 1rem;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .header-actions {
    border-radius: 22px;
    padding: 10px;
  }

  .hero,
  .hero-slider,
  .slide {
    min-height: 690px;
  }

  .slide-content h1,
  .slide-content h2 {
    margin-bottom: 20px;
    font-size: clamp(2.25rem, 12vw, 3.45rem);
    line-height: 1.02;
    letter-spacing: -0.07em;
  }

  .slide-content {
    width: min(100% - 22px, 840px);
    margin-bottom: 106px;
  }

  .hero-highlights {
    gap: 8px;
    margin-top: 16px;
  }

  .hero-highlights span {
    min-height: 34px;
    padding: 8px 11px;
    font-size: 0.76rem;
  }

  .slider-controls {
    right: 16px;
    left: 16px;
    bottom: 112px;
    justify-content: center;
    display: none;
  }

  .slider-controls button {
    width: 42px;
    height: 42px;
  }

  .band-grid {
    gap: 20px;
    padding: 22px;
    border-radius: 24px;
  }

  .reservation-phone {
    font-size: clamp(1.75rem, 9vw, 2.45rem);
    letter-spacing: -0.065em;
    white-space: nowrap;
  }

  .button {
    width: 100%;
  }

  .section-copy h2,
  .section-heading h2,
  .contact-card h2 {
    font-size: clamp(2rem, 12vw, 3rem);
    letter-spacing: -0.07em;
  }

  .feature-panel div,
  .room-content,
  .breakfast-copy,
  .tip-card div,
  .contact-card {
    padding: 22px;
  }

  .room-card,
  .tip-card,
  .gallery-item,
  .contact-card,
  .map-card {
    border-radius: 24px;
  }

  .room-image {
    aspect-ratio: 4 / 3;
  }

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

  .gallery-item,
  .gallery-item-large {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .gallery-modal {
    padding: 72px 14px 96px;
  }

  .gallery-modal-frame img {
    max-height: calc(100vh - 210px);
    border-radius: 14px;
  }

  .gallery-modal-close {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
  }

  .gallery-modal-nav {
    top: auto;
    bottom: 28px;
    width: 48px;
    height: 48px;
    font-size: 2.2rem;
    transform: none;
  }

  .gallery-modal-nav:hover {
    transform: translateY(-1px);
  }

  .gallery-modal-prev {
    left: calc(50% - 58px);
  }

  .gallery-modal-next {
    right: calc(50% - 58px);
  }

  .contact-list a {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: auto;
    padding: 16px;
  }

  .contact-list span {
    font-size: 0.68rem;
  }

  .contact-actions {
    flex-direction: column;
  }

  .map-card {
    min-height: 340px;
  }

  .map-card::after {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    max-width: calc(100% - 28px);
    padding: 12px 14px;
    border-radius: 20px;
    font-size: 0.84rem;
  }

  .mobile-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 22px;
    background: rgba(255, 250, 243, 0.9);
    box-shadow: 0 18px 50px rgba(33, 25, 18, 0.24);
    backdrop-filter: blur(18px);
  }

  .mobile-cta a {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--ink);
    color: #fff;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-cta a:first-child {
    background: var(--accent);
    color: #23190d;
  }

  .site-footer {
    padding-bottom: 98px;
  }

}

@media (max-width: 380px) {
  .slide-content h1,
  .slide-content h2 {
    font-size: 2.05rem;
  }

  .hero-highlights span {
    font-size: 0.72rem;
  }

  .contact-list strong {
    overflow-wrap: anywhere;
  }
}



.legal-page {
  min-height: 72vh;
  padding-top: 108px;
}

.legal-section,
.hotel-page {
  background:
    radial-gradient(circle at 80% 10%, rgba(217, 162, 79, 0.16), transparent 32%),
    #f6f1e9;
}

.legal-shell {
  max-width: 820px;
}

.legal-shell h1,
.hotel-detail-shell h1 {
  margin: 0 0 28px;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.08em;
}

.legal-content,
.hotel-detail-card {
  margin-bottom: 32px;
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 0 20px 50px rgba(43, 31, 20, 0.1);
}

.legal-content h2,
.hotel-info-grid h2 {
  margin: 0 0 18px;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.legal-content h2:not(:first-child) {
  margin-top: 34px;
}

.legal-content h3,
.hotel-info-grid h3 {
  margin: 28px 0 10px;
  color: var(--brand);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.legal-content p,
.hotel-copy p,
.hotel-info-grid p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.06rem;
}

.legal-content a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.legal-content ul {
  margin: 0 0 20px;
  padding-left: 20px;
  color: var(--muted);
  font-size: 1.04rem;
}

.legal-content li + li {
  margin-top: 7px;
}

.legal-content hr {
  height: 1px;
  margin: 32px 0;
  border: 0;
  background: var(--line);
}

.legal-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.legal-list div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.legal-list dt {
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.hotel-page-hero {
  position: relative;
  height: 100vh;
  min-height: 520px;
  max-height: 820px;
  overflow: hidden;
  background: #1b1d19;
}

.hotel-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 16, 12, 0.46), transparent 42%, rgba(12, 16, 12, 0.24)),
    linear-gradient(0deg, rgba(246, 241, 233, 1), rgba(246, 241, 233, 0) 28%);
}

.hotel-page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-detail-section {
  padding-top: 84px;
}

.hotel-detail-shell {
  max-width: 1040px;
}

.hotel-copy {
  max-width: 860px;
}

.hotel-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.hotel-info-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fffaf3;
}

.hotel-info-grid h3:first-of-type {
  margin-top: 0;
}

@media (max-width: 760px) {
  .legal-page {
    padding-top: 88px;
  }

  .legal-list div,
  .hotel-info-grid {
    grid-template-columns: 1fr;
  }

  .hotel-page-hero,
  .hotel-page-hero img {
    height: 100vh;
    min-height: 560px;
    max-height: 760px;
  }
}
