:root {
  --bg: #f7f4ee;
  --surface: #ffffff;
  --muted: #ede7dd;
  --text: #1f2a24;
  --soft: #67736b;
  --line: rgba(31,42,36,.14);
  --accent: #2f5d50;
  --accent-dark: #23483e;
  --radius: 26px;
  --shadow: 0 24px 70px rgba(31,42,36,.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

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

.site-header {
  position: fixed;
  inset: 18px 18px auto;
  z-index: 50;
  height: 72px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 999px;
  background: rgba(247,244,238,.76);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  gap: 24px;
  transition: .3s ease;
}

.site-header.scrolled {
  box-shadow: 0 16px 50px rgba(31,42,36,.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

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

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

.brand small {
  color: var(--soft);
  font-size: 12px;
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  color: var(--soft);
}

.nav a:hover {
  color: var(--text);
}

.header-cta {
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.menu-btn {
  display: none;
}

.hero {
  min-height: 100vh;
  padding: 120px 18px 36px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}

.hero-image {
  min-height: calc(100vh - 156px);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.hero-content {
  border-radius: 34px;
  background: var(--surface);
  padding: clamp(34px, 6vw, 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow);
}

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

h1,
h2 {
  font-family: "Playfair Display", serif;
  line-height: .98;
  margin: 0;
  letter-spacing: -.04em;
}

h1 {
  font-size: clamp(46px, 7vw, 88px);
}

h2 {
  font-size: clamp(36px, 5vw, 66px);
}

p {
  color: var(--soft);
  line-height: 1.75;
}

.hero-content p:not(.eyebrow) {
  max-width: 620px;
  font-size: 18px;
}

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

.btn {
  border: 0;
  border-radius: 999px;
  padding: 16px 24px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
}

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

.btn.primary:hover {
  background: var(--accent-dark);
}

.btn.secondary {
  background: var(--muted);
  color: var(--text);
}

.hero-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hero-facts div {
  background: var(--surface);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 40px rgba(31,42,36,.08);
}

.hero-facts strong {
  display: block;
  font-size: 34px;
  font-family: "Playfair Display", serif;
}

.hero-facts span {
  color: var(--soft);
}

.section {
  padding: 110px 18px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.section-copy p {
  font-size: 17px;
}

.image-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-card img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
}

.feature-list {
  margin-top: 34px;
  display: grid;
  gap: 18px;
}

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

.feature-list span {
  color: var(--accent);
  font-weight: 800;
}

.feature-list p {
  margin: 0;
}

.muted {
  background: var(--muted);
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-card {
  background: var(--surface);
  padding: 34px;
  border-radius: var(--radius);
  min-height: 230px;
  box-shadow: 0 18px 50px rgba(31,42,36,.08);
}

.info-card h3 {
  font-size: 24px;
  margin: 0 0 14px;
}

.map-box {
  min-height: 460px;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(47,93,80,.72), rgba(47,93,80,.72)),
    url("../aussenansicht_front.png") center/cover;
  color: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow);
}

.map-box span {
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.map-box strong {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
}

.gallery {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 18px;
}

.gallery img {
  height: 460px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(31,42,36,.08);
}

.gallery img:first-child {
  height: 560px;
}

.booking-section {
  padding-top: 40px;
}

.booking-card {
  background: var(--text);
  color: white;
  border-radius: 34px;
  padding: clamp(30px, 6vw, 70px);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.booking-card p {
  color: rgba(255,255,255,.72);
}

.booking-card .eyebrow {
  color: #b8d5ca;
}

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

.booking-form input {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: white;
  border-radius: 16px;
  padding: 17px 18px;
  font: inherit;
  outline: 0;
}

.booking-form input::placeholder {
  color: rgba(255,255,255,.55);
}

.booking-form button {
  grid-column: 1 / -1;
}

.footer {
  padding: 42px 18px;
  background: #17201b;
  color: white;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer p {
  margin-bottom: 0;
  color: rgba(255,255,255,.62);
}

.footer a {
  margin-left: 24px;
  color: rgba(255,255,255,.72);
}

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

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

@media (max-width: 900px) {
  .site-header {
    inset: 12px;
    height: 66px;
    border-radius: 22px;
  }

  .nav {
    position: fixed;
    inset: 84px 12px auto;
    display: none;
    flex-direction: column;
    background: rgba(255,255,255,.96);
    border-radius: 22px;
    padding: 24px;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    font-size: 18px;
    color: var(--text);
  }

  .header-cta {
    display: none;
  }

  .menu-btn {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--muted);
    display: grid;
    place-items: center;
    gap: 4px;
  }

  .menu-btn span {
    width: 18px;
    height: 2px;
    background: var(--text);
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 96px;
  }

  .hero-image {
    min-height: 48vh;
    order: 1;
  }

  .hero-content {
    order: 2;
    padding: 34px 24px;
  }

  .hero-facts {
    order: 3;
    grid-template-columns: 1fr;
  }

  .two-col,
  .booking-card {
    grid-template-columns: 1fr;
  }

  .reverse-mobile .map-box {
    order: 2;
  }

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

  .gallery img,
  .gallery img:first-child {
    height: 320px;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

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

  .footer a {
    display: block;
    margin: 10px 0 0;
  }
}

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .section {
    padding: 76px 16px;
  }

  .hero {
    padding-left: 12px;
    padding-right: 12px;
  }

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

  .btn {
    width: 100%;
  }

  .hero-facts div {
    padding: 20px;
  }

  .feature-list div {
    grid-template-columns: 1fr;
  }
}