:root {
  --ink: #15231d;
  --pine: #12372f;
  --pine-2: #0b261f;
  --moss: #5f7748;
  --brass: #c8a15c;
  --brass-2: #e4c984;
  --cream: #f4efe4;
  --snow: #fbfaf6;
  --sky: #dfeef2;
  --berry: #873238;
  --muted: #64716b;
  --line: rgba(21, 35, 29, 0.14);
  --shadow: 0 24px 70px rgba(16, 30, 25, 0.16);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--snow);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}
body.menu-open {
  overflow: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

.site-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 3px;
  z-index: 80;
  background: linear-gradient(90deg, var(--brass), var(--moss));
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(1180px, calc(100% - 36px));
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.76);
  box-shadow: 0 16px 44px rgba(7, 18, 14, 0.18);
  backdrop-filter: blur(18px);
  transition:
    top 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  top: 10px;
  background: rgba(251, 250, 246, 0.94);
  box-shadow: 0 12px 34px rgba(7, 18, 14, 0.16);
}
.brand img {
  width: 154px;
  height: auto;
}

.main-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 12px 14px;
  border-radius: 999px;
  color: rgba(21, 35, 29, 0.78);
  font-size: 13px;
  font-weight: 850;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.main-nav a:hover {
  color: var(--pine);
  background: rgba(200, 161, 92, 0.18);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  justify-self: end;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--snow);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 3px 0;
  border-radius: 999px;
  background: var(--pine);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 150px max(22px, calc((100vw - 1180px) / 2)) 38px;
  color: white;
  background: var(--pine);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 900ms ease,
    transform 5600ms ease;
}

.hero-media img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(6, 22, 17, 0.88) 0%,
      rgba(6, 22, 17, 0.58) 42%,
      rgba(6, 22, 17, 0.12) 100%
    ),
    linear-gradient(0deg, rgba(6, 22, 17, 0.82) 0%, rgba(6, 22, 17, 0) 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
  padding-bottom: 104px;
}

.eyebrow,
.section-kicker,
.mini-label {
  margin: 0 0 16px;
  color: var(--brass-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
h2 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  letter-spacing: 0;
  line-height: 0.95;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(58px, 8vw, 122px);
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
  font-weight: 650;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 950;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}
.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--brass-2);
  color: #1c2018;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.btn.ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.btn.dark {
  background: var(--pine);
  color: white;
  box-shadow: 0 16px 34px rgba(18, 55, 47, 0.22);
}

.btn.light {
  background: var(--cream);
  color: var(--pine);
  border-color: var(--line);
}

.hero-dots {
  position: absolute;
  z-index: 4;
  right: max(22px, calc((100vw - 1180px) / 2));
  bottom: 190px;
  display: grid;
  gap: 10px;
}

.hero-dots button {
  width: 42px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}
.hero-dots button.is-active {
  background: var(--brass-2);
}

.summit-strip {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 44px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px);
}

.summit-strip span {
  min-height: 78px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(10, 32, 25, 0.18);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.summit-strip strong {
  display: block;
  color: white;
  font-size: 22px;
  font-weight: 950;
}

.section-pad {
  padding: 108px max(22px, calc((100vw - 1180px) / 2));
}

h2 {
  font-size: clamp(36px, 5vw, 72px);
  color: var(--pine-2);
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 600;
}

.intro {
  background: linear-gradient(180deg, var(--snow), var(--cream));
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 70px;
  align-items: center;
}
.intro-copy p {
  max-width: 760px;
}

.quote {
  margin: 34px 0 0;
  color: var(--pine);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.quote-name {
  margin-top: 10px;
  color: var(--moss);
  font-size: 14px;
  font-weight: 950;
}

.feature-photo {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transition: transform 700ms ease;
}
.feature-photo:hover img {
  transform: scale(1.045);
}

.feature-photo span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 8px;
  color: white;
  background: rgba(11, 38, 31, 0.72);
  backdrop-filter: blur(14px);
  font-size: 13px;
  font-weight: 900;
}

.experience {
  background: var(--pine-2);
  color: white;
}
.experience h2,
.experience p {
  color: white;
}
.experience .section-kicker {
  color: var(--brass-2);
}

.experience-head,
.split-head,
.gallery-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 36px;
  align-items: end;
  margin-bottom: 38px;
}

.experience-head p,
.split-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  gap: 18px;
}

.experience-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border-radius: 8px;
  background: #0b1d18;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.experience-card.tall {
  grid-row: span 2;
  min-height: 620px;
}

.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition:
    transform 700ms ease,
    opacity 700ms ease;
}

.experience-card:hover img {
  transform: scale(1.045);
  opacity: 0.92;
}

.experience-card div {
  position: absolute;
  inset: auto 0 0;
  padding: 26px;
  background: linear-gradient(0deg, rgba(8, 22, 18, 0.96), rgba(8, 22, 18, 0));
}

.experience-card span {
  color: var(--brass-2);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.experience-card h3 {
  max-width: 430px;
  margin: 8px 0 6px;
  color: white;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
}

.experience-card p {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

.visit {
  background: var(--sky);
}
.visit .section-kicker,
.visit .mini-label {
  color: var(--berry);
}

.text-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: white;
  color: var(--pine);
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(27, 62, 67, 0.12);
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.visit-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(21, 35, 29, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 46px rgba(43, 78, 82, 0.12);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.visit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(43, 78, 82, 0.16);
}

.visit-card.open {
  background: var(--pine);
  color: white;
}
.visit-card.open h3,
.visit-card.open p,
.visit-card.open .mini-label {
  color: white;
}

.visit-card.alert {
  background: #fff6ed;
  border-color: rgba(135, 50, 56, 0.18);
}

.visit-card h3 {
  margin: 0 0 16px;
  color: var(--pine);
  font-size: 25px;
  line-height: 1.05;
}

.visit-card p {
  margin: 0;
  font-size: 15px;
}

.big-time {
  color: var(--brass-2) !important;
  margin: 0 0 12px !important;
  font-size: 30px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
}

.food {
  background: var(--snow);
}

.food-layout,
.mood,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.74fr);
  gap: 72px;
  align-items: center;
}
.food-copy p {
  max-width: 660px;
}

.food-photos {
  position: relative;
  min-height: 620px;
}

.food-photos img {
  position: absolute;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.main-food {
  inset: 0 auto auto 0;
  width: 68%;
  height: 78%;
}

.second-food {
  right: 0;
  bottom: 0;
  width: 52%;
  height: 58%;
  border: 10px solid var(--snow);
}

.mood {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 0.86fr);
  background: var(--cream);
}

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

.mood-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 900ms ease;
}
.mood-image:hover img {
  transform: scale(1.035);
}
.mood-copy p {
  max-width: 640px;
}

.webcams {
  background: var(--pine);
  color: white;
}
.webcams h2,
.webcams p {
  color: white;
}

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

.webcam-card {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  border-radius: 8px;
  background: #06130f;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.webcam-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition:
    transform 700ms ease,
    opacity 700ms ease;
}

.webcam-card:hover img {
  transform: scale(1.035);
  opacity: 1;
}

.webcam-card span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: 999px;
  color: white;
  background: rgba(8, 24, 19, 0.72);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 950;
}

.gallery {
  background: var(--snow);
}

.gallery-head {
  grid-template-columns: minmax(0, 900px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 12px;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  min-height: 230px;
  border-radius: 8px;
  background: var(--cream);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(7) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(4),
.gallery-item:nth-child(10) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

.contact {
  background: var(--cream);
}

.contact-visual {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

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

.contact-list a {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--pine);
  font-size: 14px;
  font-weight: 950;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.contact-list a:hover {
  transform: translateY(-2px);
  background: white;
}

.site-footer {
  padding: 58px max(22px, calc((100vw - 1180px) / 2)) 30px;
  background: #07100d;
  color: white;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-top img {
  width: 210px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.footer-top p {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 900;
}

/* ============================================================================
   POWERED-BY-SCHWARZWALD-FOOTER — exakt wie Projekt Tsunami.
   Self-contained (fixe Werte, kein Token-Bezug), damit es auf JEDER Insel
   identisch aussieht — unabhängig vom Insel-CSS. Helle Kreditzeile, zentriert,
   Mono-Label + Tannen-Icon + grüner Display-Schriftzug, dezent (75 %→100 %).
   ========================================================================== */
.pbStrip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 26px 16px 22px;
  text-align: center;
  background: #fefdf9;
  border-top: 1px solid #e8e0d5;
}

.pbStrip .pbLink {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  opacity: 0.75;
  transition: opacity 0.18s ease;
  text-decoration: none;
}
.pbStrip .pbLink:hover {
  opacity: 1;
  text-decoration: none;
}

.pbStrip .pbLabel {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: #8b7355;
}
.pbStrip .pbIcon {
  height: 32px;
  width: 32px;
  object-fit: contain;
  display: block;
}

.pbStrip .pbName {
  font-family:
    "Plus Jakarta Sans",
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    Arial,
    sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0d4a3c;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms ease var(--delay, 0ms),
    transform 650ms ease var(--delay, 0ms);
}

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

.summit-strip[data-reveal] {
  transform: translateX(-50%) translateY(22px);
}

.summit-strip[data-reveal].is-visible {
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    width: min(720px, calc(100% - 28px));
  }
  .menu-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(251, 250, 246, 0.98);
    box-shadow: 0 24px 60px rgba(7, 18, 14, 0.18);
  }
  .main-nav.is-open {
    display: flex;
  }
  .main-nav a {
    text-align: center;
  }
  .hero {
    min-height: 940px;
  }
  .summit-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-content {
    padding-bottom: 228px;
  }
  .hero-dots {
    bottom: 314px;
  }

  .intro-grid,
  .food-layout,
  .mood,
  .contact {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .feature-photo,
  .feature-photo img {
    min-height: 480px;
  }

  .experience-head,
  .split-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .text-link {
    justify-self: start;
  }
  .experience-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .experience-card.tall {
    min-height: 520px;
  }
  .visit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .food-photos {
    min-height: 560px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    min-height: 62px;
    padding: 9px 10px;
  }
  .brand img {
    width: 126px;
  }

  .hero {
    min-height: 860px;
    padding: 118px 18px 22px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 22, 17, 0.9), rgba(6, 22, 17, 0.35)),
      linear-gradient(0deg, rgba(6, 22, 17, 0.9), rgba(6, 22, 17, 0) 62%);
  }
  .hero h1 {
    font-size: clamp(52px, 16vw, 76px);
  }
  .hero-copy {
    font-size: 17px;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .hero-dots {
    right: 18px;
    bottom: 306px;
  }

  .summit-strip {
    bottom: 18px;
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
  }
  .summit-strip span {
    min-height: 56px;
    padding: 11px 14px;
  }
  .summit-strip strong {
    font-size: 18px;
  }
  .section-pad {
    padding: 76px 18px;
  }
  h2 {
    font-size: clamp(34px, 12vw, 52px);
  }
  p {
    font-size: 16px;
  }
  .feature-photo,
  .feature-photo img {
    min-height: 420px;
  }
  .experience-card,
  .experience-card.tall {
    min-height: 430px;
  }
  .visit-grid,
  .webcam-grid,
  .contact-list {
    grid-template-columns: 1fr;
  }
  .food-photos {
    min-height: auto;
    display: grid;
    gap: 12px;
  }

  .food-photos img {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .second-food {
    border: 0;
  }
  .mood {
    grid-template-columns: 1fr;
  }
  .webcam-card {
    min-height: 280px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(7),
  .gallery-item:nth-child(10) {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 190px;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 900px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item {
    min-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
