:root {
  --ink: #17211b;
  --muted: #5f6c64;
  --paper: #fbfaf5;
  --warm: #f1eadf;
  --line: #ded6c7;
  --green: #395f47;
  --green-2: #183d2b;
  --rust: #b25732;
  --gold: #d8a74f;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(23, 33, 27, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(251, 250, 245, 0.92);
  border-bottom: 1px solid rgba(222, 214, 199, 0.85);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--green-2);
  border-radius: 50%;
  font-weight: 800;
}

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

.brand small {
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 18px;
  color: var(--muted);
  font-size: 15px;
}

nav a,
.site-footer a {
  transition: color 160ms ease;
}

nav a:hover,
.site-footer a:hover {
  color: var(--rust);
}

.header-call {
  flex: 0 0 auto;
  padding: 10px 14px;
  color: var(--white);
  background: var(--rust);
  border-radius: 999px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 26, 18, 0.78), rgba(13, 26, 18, 0.25) 58%, rgba(13, 26, 18, 0.1)),
    linear-gradient(0deg, rgba(13, 26, 18, 0.58), rgba(13, 26, 18, 0));
}

.hero-content {
  width: min(820px, calc(100% - 36px));
  padding: 0 0 clamp(120px, 16vw, 190px) clamp(18px, 5vw, 72px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rust);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd68b;
}

h1,
h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(48px, 8vw, 92px);
}

h2 {
  font-size: clamp(32px, 5vw, 56px);
}

.lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

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

.secondary {
  color: var(--ink);
  background: var(--white);
}

.quick-panel {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(920px, calc(100% - 36px));
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.quick-panel div {
  min-height: 112px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.quick-panel div:last-child {
  border-right: 0;
}

.quick-panel strong,
.quick-panel span,
.info-grid strong,
.info-grid span {
  display: block;
}

.quick-panel strong,
.info-grid strong {
  margin-bottom: 8px;
}

.quick-panel span,
.info-grid span {
  color: var(--muted);
}

.section,
.feature-band,
.kegelbahn {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.intro p:last-child,
.section-copy p,
.feature-copy p,
.kegelbahn p,
.gallery-head p,
.prices-head p,
.contact-card p {
  color: var(--muted);
  font-size: 18px;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: center;
  background: var(--warm);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(216, 167, 79, 0.22);
}

.photo-stack {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 16px;
  align-items: end;
}

.photo-stack img:first-child {
  aspect-ratio: 4 / 5;
}

.photo-stack img:last-child {
  aspect-ratio: 3 / 4;
  margin-bottom: 52px;
}

.photo-stack img,
.section-image img,
.gallery-grid img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.split {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: center;
}

.section-image {
  aspect-ratio: 4 / 5;
}

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

.info-grid div {
  min-height: 126px;
  padding: 20px;
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.prices {
  background: var(--white);
}

.prices-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  margin-bottom: 34px;
}

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

.price-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: clamp(26px, 5vw, 42px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.price-card.featured {
  color: var(--white);
  background: var(--green-2);
  border-color: rgba(255, 255, 255, 0.18);
}

.room-type {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--rust);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-card.featured .room-type {
  color: #ffd68b;
}

.price-card strong {
  display: block;
  font-size: clamp(56px, 9vw, 92px);
  line-height: 0.95;
}

.price-card p {
  margin: 14px 0 28px;
  color: var(--muted);
  font-size: 18px;
}

.price-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.price-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--rust);
  border-radius: 999px;
  font-weight: 800;
}

.price-card.featured a {
  color: var(--ink);
  background: var(--white);
}

.price-note {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.kegelbahn {
  color: var(--white);
  background:
    linear-gradient(rgba(24, 61, 43, 0.88), rgba(24, 61, 43, 0.88)),
    url("assets/photos/img_1681-large.jpg") center / cover;
}

.kegelbahn-inner {
  max-width: 760px;
}

.kegelbahn p {
  color: rgba(255, 255, 255, 0.86);
}

.gallery-head {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.sights {
  background: var(--warm);
}

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

.sight-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.sight-card img {
  aspect-ratio: 16 / 10;
}

.sight-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 22px;
}

.sight-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.sight-card p {
  margin: 0;
  color: var(--muted);
}

.sight-card a {
  display: inline-block;
  margin-top: auto;
  padding-top: 18px;
  color: var(--rust);
  font-weight: 800;
}

.faq {
  background: var(--paper);
}

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

.faq-grid article {
  min-height: 190px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.faq-grid h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
}

.gallery-grid img {
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-grid img:hover,
.gallery-grid img:focus {
  outline: 3px solid rgba(216, 167, 79, 0.82);
  outline-offset: 3px;
  transform: translateY(-3px);
}

.has-lightbox {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(10, 15, 12, 0.88);
}

.lightbox.is-open {
  display: flex;
}

.lightbox figure {
  width: min(1080px, 100%);
  margin: 0;
}

.lightbox img {
  max-height: 78vh;
  width: 100%;
  object-fit: contain;
  background: #111;
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.45);
}

.lightbox figcaption {
  min-height: 32px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.84);
  text-align: center;
}

.lightbox button {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
}

.lightbox button:hover,
.lightbox button:focus {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.lightbox-close {
  top: 22px;
  right: 22px;
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.legal-page {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.legal-content {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.legal-content h1 {
  color: var(--ink);
  font-size: clamp(36px, 6vw, 64px);
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 24px;
}

.legal-content p {
  color: var(--muted);
  font-size: 17px;
}

.legal-content a {
  color: var(--rust);
  font-weight: 800;
}

.location {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(300px, 1fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: stretch;
  background: var(--warm);
}

.contact-card,
.map-placeholder {
  border-radius: 8px;
}

.contact-card {
  padding: clamp(28px, 5vw, 50px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  font-size: 18px;
  font-weight: 800;
}

.contact-lines span {
  color: var(--muted);
  font-weight: 700;
}

.map-placeholder {
  display: grid;
  place-content: center;
  min-height: 420px;
  padding: 34px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(57, 95, 71, 0.93), rgba(178, 87, 50, 0.86)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 22px);
}

.map-placeholder span {
  font-size: 18px;
}

.map-placeholder strong {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
}

.map-placeholder small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.74);
  background: var(--green-2);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .header-call {
    position: absolute;
    right: 18px;
    top: 16px;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 820px;
  }

  .hero-content {
    padding-bottom: 300px;
  }

  .quick-panel {
    left: 18px;
    right: 18px;
    grid-template-columns: 1fr;
  }

  .quick-panel div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-panel div:last-child {
    border-bottom: 0;
  }

  .intro,
  .prices-head,
  .feature-band,
  .split,
  .location {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }
}

@media (max-width: 560px) {
  .header-call {
    position: static;
  }

  h1 {
    font-size: 44px;
  }

  .hero {
    min-height: 920px;
  }

  .hero-content {
    width: 100%;
    padding-right: 18px;
  }

  .lead {
    font-size: 18px;
  }

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

  .button {
    width: 100%;
  }

  .photo-stack,
  .info-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .photo-stack img:last-child {
    margin-bottom: 0;
  }

  .site-footer {
    flex-direction: column;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox button {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }
}
