:root {
  --bg: #f7f2eb;
  --bg-soft: #efe7da;
  --card: rgba(255, 252, 247, 0.92);
  --card-strong: #fffaf4;
  --text: #2c241d;
  --muted: #6d5a4e;
  --line: rgba(81, 62, 43, 0.12);
  --primary: #1f8b72;
  --primary-deep: #156553;
  --accent: #ddb557;
  --shadow: 0 18px 48px rgba(44, 31, 19, 0.11);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #efe7da 0%, #f7f2eb 28%, #fcfaf6 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }

.app-shell {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
  padding: 28px 20px;
  background: rgba(31, 139, 114, 0.08);
  border-right: 1px solid rgba(31, 139, 114, 0.12);
  display: grid;
  gap: 22px;
}

.sidebar-topbar,
.sidebar-panel {
  display: grid;
  gap: 22px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 12px 16px;
  border-radius: 18px;
  border: 1px solid rgba(31, 139, 114, 0.16);
  background: rgba(255, 255, 255, 0.76);
  color: var(--primary-deep);
  box-shadow: var(--shadow);
  font: inherit;
  text-align: left;
}

.nav-toggle span {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.nav-toggle strong {
  display: block;
  margin-top: 4px;
  font-size: 1rem;
}

.nav-toggle::after {
  content: '▾';
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.18s ease;
}

.sidebar.mobile-open .nav-toggle::after {
  transform: rotate(180deg);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: white;
  background: linear-gradient(145deg, var(--primary), var(--primary-deep));
  box-shadow: var(--shadow);
}
.brand small { display: block; color: var(--muted); margin-top: 4px; }

.side-nav {
  display: grid;
  gap: 8px;
}
.side-link {
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 700;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.side-link:hover,
.side-link.active {
  background: rgba(31, 139, 114, 0.12);
  color: var(--primary-deep);
  transform: translateX(2px);
}

.sidebar-card,
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.sidebar-card {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.content {
  padding: 26px;
  display: grid;
  gap: 26px;
}

.hero,
.section,
.footer,
.intro-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero {
  background: linear-gradient(145deg, rgba(23, 84, 71, 0.98), rgba(41, 58, 51, 0.94));
  color: #fbf8f1;
  border-radius: 34px;
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 22px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: var(--muted);
}
.hero .eyebrow { color: rgba(251, 248, 241, 0.72); }
.hero h1 {
  margin-top: 14px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.98;
  max-width: 10ch;
}
.lead {
  margin-top: 20px;
  color: rgba(251, 248, 241, 0.82);
  line-height: 1.7;
  font-size: 1.05rem;
}
.hero-actions,
.hero-pills,
.form-actions,
.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-actions { margin-top: 24px; }
.hero-pills { margin-top: 20px; }
.hero-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary { background: var(--accent); color: #2f261c; }
.button.secondary { background: rgba(255, 255, 255, 0.1); color: white; border-color: rgba(255, 255, 255, 0.18); }
.button.secondary.alt { background: white; color: var(--primary-deep); border-color: rgba(31, 139, 114, 0.18); }
.button.full { width: 100%; }

.hero-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.image-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 24px;
  background: #ddd;
}
.image-card.large { grid-column: span 2; min-height: 320px; }
.image-card.tall { min-height: 100%; }
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.48);
  color: white;
  backdrop-filter: blur(8px);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.intro-card,
.booking-form,
.booking-summary,
.tip-card,
.offer-card { padding: 24px; }
.intro-card h2,
.section-head h2 { margin-top: 8px; font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.08; }
.intro-card p:last-child,
.section-head p:last-child,
.offer-card p,
.booking-summary p,
.summary-note,
.tip-card li,
label { color: var(--muted); line-height: 1.65; }

.inline-note {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(31, 139, 114, 0.14);
  background: rgba(31, 139, 114, 0.08);
  color: var(--muted);
}

.section {
  display: grid;
  gap: 20px;
}
.section-alt {
  background: var(--bg-soft);
  border-radius: 34px;
  padding: 28px;
}
.section-head { display: grid; gap: 10px; }

.detail-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 20px;
  align-items: start;
}
.detail-layout.reverse { grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr); }
.detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.detail-gallery .large,
.detail-gallery .tall { grid-column: span 2; }
.detail-copy { display: grid; gap: 16px; }
.detail-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.detail-points div {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--card-strong);
}
.detail-points strong { display: block; font-size: 1.2rem; margin-bottom: 6px; }

.offer-cards { display: grid; gap: 14px; }
.offer-card {
  background: var(--card-strong);
  border: 1px solid var(--line);
}
.offer-card h3 { margin-bottom: 8px; }
.offer-card .price { font-size: 1.35rem; font-weight: 800; color: var(--primary-deep); }
.meta,
.availability,
.summary-chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.meta span,
.availability b,
.summary-chip {
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.82);
  color: var(--muted);
  font-size: 0.92rem;
}
.availability b { background: rgba(221, 181, 87, 0.16); color: #7a5d1a; }

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.tip-card ul { margin: 12px 0 0; padding-left: 18px; display: grid; gap: 8px; }

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

.media-highlight-card,
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--card-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.media-highlight-card {
  min-height: 240px;
}

.media-highlight-card.wide {
  grid-column: span 2;
  min-height: 320px;
}

.media-highlight-card img,
.gallery-card img,
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-highlight-copy {
  position: absolute;
  inset: auto 16px 16px 16px;
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(17, 24, 39, 0.52);
  color: white;
  backdrop-filter: blur(10px);
}

.media-highlight-copy span {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
}

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

.gallery-card {
  aspect-ratio: 1 / 1;
}

.gallery-card figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(17, 24, 39, 0.42);
  color: white;
  backdrop-filter: blur(8px);
}

.gallery-card figcaption span {
  color: rgba(255,255,255,0.78);
  font-size: 0.88rem;
}

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

.video-card {
  overflow: hidden;
  padding: 0;
}

.video-card video {
  aspect-ratio: 16 / 9;
  background: #0f1720;
}

.video-copy {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 18px;
}
.booking-form { display: grid; gap: 16px; }
.form-grid { display: grid; gap: 14px; }
.form-grid.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-grid.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
label { display: grid; gap: 8px; font-weight: 600; }
input,
select,
textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: white;
  color: var(--text);
  font: inherit;
}
textarea { resize: vertical; }
.summary-stack { display: grid; gap: 14px; }
.summary-block {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.84);
}
.summary-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.summary-total { font-size: 1.4rem; font-weight: 800; color: var(--primary-deep); }
.summary-note,
.result {
  padding: 16px;
  border-radius: 18px;
}
.summary-note {
  background: rgba(31, 139, 114, 0.08);
  border: 1px solid rgba(31, 139, 114, 0.14);
}
.result {
  background: rgba(221, 181, 87, 0.18);
  border: 1px solid rgba(221, 181, 87, 0.28);
  color: #664e14;
  line-height: 1.6;
}
.hidden { display: none !important; }

.section-cta { margin-top: 8px; }
.section-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.section-cta-row .section-cta { margin-top: 0; }

.anfahrt-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.anfahrt-card {
  padding: 24px;
}
.anfahrt-card strong { display: block; margin-bottom: 8px; }
.anfahrt-card p { color: var(--muted); line-height: 1.65; }

.legal-section {
  max-width: 720px;
}
.legal-card {
  padding: 28px;
  display: grid;
  gap: 14px;
}
.legal-card p { color: var(--muted); line-height: 1.65; }

.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-social a {
  color: rgba(241,247,243,0.68);
  transition: color 0.2s;
  display: flex;
}
.footer-social a:hover { color: #fff; }

.footer-legal {
  display: flex;
  gap: 16px;
}
.footer-legal a {
  color: rgba(241,247,243,0.68);
  font-size: 0.88rem;
}
.footer-legal a:hover { color: rgba(241,247,243,0.92); }

.footer {
  background: #1f312b;
  color: #f1f7f3;
  border-radius: 30px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.footer p { color: rgba(241,247,243,0.78); margin-top: 6px; }
.footer-links a { color: rgba(241,247,243,0.92); }

@media (max-width: 1180px) {
  .app-shell { grid-template-columns: 1fr; }
  .sidebar {
    position: sticky;
    top: 0;
    z-index: 20;
    height: auto;
    padding: 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(31, 139, 114, 0.12);
    backdrop-filter: blur(14px);
  }
  .sidebar-topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .sidebar-panel {
    display: none;
    margin-top: 14px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 252, 247, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .sidebar.mobile-open .sidebar-panel {
    display: grid;
  }
}

@media (max-width: 980px) {
  .hero,
  .detail-layout,
  .detail-layout.reverse,
  .booking-layout,
  .intro-grid,
  .tips-grid,
  .media-highlight-grid,
  .video-grid,
  .anfahrt-details {
    grid-template-columns: 1fr;
  }
  .detail-points,
  .form-grid.two-up,
  .form-grid.three-up,
  .hero-gallery,
  .detail-gallery,
  .photo-stream-grid {
    grid-template-columns: 1fr;
  }
  .image-card.large,
  .detail-gallery .large,
  .detail-gallery .tall,
  .media-highlight-card.wide { grid-column: span 1; }
}

@media (max-width: 680px) {
  .content { padding: 16px; }
  .hero,
  .section-alt,
  .footer { padding: 20px; }
  .hero-actions,
  .hero-pills,
  .form-actions,
  .footer-links { flex-direction: column; }
  .button,
  .side-link,
  .nav-toggle { width: 100%; }
  .summary-top,
  .footer { align-items: stretch; flex-direction: column; }
  .brand { gap: 12px; }
  .brand strong { font-size: 1rem; }
  .sidebar-panel {
    max-height: min(70vh, 520px);
    overflow: auto;
  }
}

/* Landing pages */
.landing-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 26px;
  display: grid;
  gap: 26px;
  min-height: 100vh;
}

.landing-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.landing-nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.landing-nav-links a:not(.button) {
  font-weight: 700;
  color: var(--muted);
  transition: color 0.18s ease;
}

.landing-nav-links a:not(.button):hover {
  color: var(--primary-deep);
}

.landing-main {
  display: grid;
  gap: 32px;
}

.landing-hero {
  background: linear-gradient(145deg, rgba(23, 84, 71, 0.98), rgba(41, 58, 51, 0.94));
  color: #fbf8f1;
  border-radius: 34px;
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 26px;
  align-items: center;
}

.landing-hero-copy { display: grid; gap: 14px; }

.landing-hero h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.landing-lead {
  color: rgba(251, 248, 241, 0.82);
  line-height: 1.7;
  font-size: 1.05rem;
}

.landing-hero-image .image-card { min-height: 340px; }

.landing-section {
  display: grid;
  gap: 20px;
}

.landing-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.1;
}

.landing-section-alt {
  background: var(--bg-soft);
  border-radius: 34px;
  padding: 28px;
}

.landing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.landing-offer-card {
  display: grid;
  gap: 12px;
  border-radius: var(--radius);
}

.landing-offer-card .price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-deep);
}

.landing-extras {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.landing-extra-card {
  padding: 20px;
  border-radius: var(--radius);
}

.landing-extra-card strong { display: block; margin-bottom: 6px; }
.landing-extra-card p { color: var(--muted); line-height: 1.5; }

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

.landing-info-card {
  padding: 24px;
  border-radius: var(--radius);
}

.landing-info-card strong { display: block; margin-bottom: 8px; }
.landing-info-card p { color: var(--muted); line-height: 1.65; }

.landing-cta-section {
  text-align: center;
  padding: 40px 20px;
  display: grid;
  gap: 16px;
  justify-items: center;
}

.landing-cta-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.1;
}

.landing-cta-section p {
  color: var(--muted);
  max-width: 480px;
  line-height: 1.65;
}

.landing-footer {
  background: #1f312b;
  color: #f1f7f3;
  border-radius: 30px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.landing-footer p { color: rgba(241,247,243,0.78); margin-top: 6px; }

@media (max-width: 980px) {
  .landing-hero,
  .landing-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .landing-page { padding: 0 16px; }
  .landing-hero { padding: 20px; }
  .landing-nav { flex-direction: column; align-items: flex-start; }
  .landing-nav-links { flex-wrap: wrap; }
  .landing-footer { align-items: stretch; flex-direction: column; }
}

.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  position: sticky;
  top: 0;
  z-index: 40;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(251, 248, 241, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 40px rgba(31, 49, 43, 0.08);
}

.site-nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 12px 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.site-nav-panel {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.site-nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  transition: background 0.18s ease, color 0.18s ease;
}

.site-nav-link:hover,
.site-nav-link:focus-visible {
  background: rgba(23, 84, 71, 0.08);
  color: var(--primary-deep);
}

.site-nav-link.active {
  background: rgba(23, 84, 71, 0.12);
  color: var(--primary-deep);
}

.site-nav-cta {
  white-space: nowrap;
}

.sidebar-topbar.sidebar-topbar-compact {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 920px) {
  .site-header {
    width: calc(100% - 24px);
    margin-top: 12px;
  }

  .site-header-inner {
    position: relative;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .site-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .site-nav-panel {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    padding-top: 6px;
  }

  .site-header.nav-open .site-nav-panel {
    display: flex;
  }

  .site-nav-links {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav-link,
  .site-nav-cta {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: calc(100% - 16px);
  }

  .site-header-inner {
    padding: 14px;
  }
}
