/* ==========================================================================
   Heiterkite – Design Tokens
   Palette direkt aus dem Logo abgeleitet:
   Bodden-Teal (Ring & Wasser), Sonnengold, Kite-Rot, Wiesengrün, warmes Sandpapier
   Type: Fraunces (Display, maritim-warm) + Karla (Text, klar & ruhig)
   ========================================================================== */

:root{
  --ink:        #0c2f31;   /* Logo-Dunkelteal – Text, fast schwarz */
  --teal:       #12868a;   /* Logo-Ringteal – Hauptmarkenfarbe */
  --teal-deep:  #0a4749;   /* dunkleres Teal – Header/Footer/Overlays */
  --teal-light: #6fb9bb;   /* helleres Teal – Sekundärtöne, Badges */
  --sand:       #faf3df;   /* warmes Sandpapier – Seitenhintergrund */
  --sand-deep:  #ecdfb0;   /* dunklerer Sand – Trennlinien/Rahmen */
  --paper:      #fffdf6;   /* Kartenhintergrund, warmes Weiß */
  --coral:      #c6371f;   /* Logo-Kite-Rot – Akzent/CTA */
  --coral-dark: #9c2a17;
  --gold:       #e8b91a;   /* Logo-Sonnengelb – Highlights/Badges */
  --gold-dark:  #a9820a;
  --green:      #4f7a3a;   /* Logo-Wiesengrün – dezenter Zweitakzent */
  --lemon:      #9ec13e;   /* echtes Hausfassaden-Lemongreen (aus Fotos) */
  --lemon-dark: #5c7a1e;   /* dunklere Variante für Text/Icons auf Hell */
  --white:      #ffffff;

  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-body: "Karla", "Segoe UI", system-ui, -apple-system, sans-serif;

  --radius: 6px;
  --radius-lg: 14px;
  --shadow-soft: 0 12px 30px -14px rgba(12,47,49,0.35);
  --container: 1180px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; cursor: url("../img/cursor-shaka-32.png") 4 4, auto; }
button, a, [role="button"], label{
  cursor: url("../img/cursor-shaka-32.png") 4 4, pointer;
}
body{ overflow-x: hidden; max-width: 100%; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body{
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  cursor: url("../img/cursor-shaka-32.png") 4 4, auto;
}

img{ max-width: 100%; display: block; }
figure img, .room-block img{ transition: transform .35s ease; }
figure:hover img{ transform: scale(1.045); }
.room-block:hover img{ transform: scale(1.03); }
svg{ width: 1em; height: 1em; display: inline-block; vertical-align: -0.125em; flex-shrink: 0; }
a{ color: var(--teal); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline: 3px solid var(--coral);
  outline-offset: 2px;
}

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1,h2,h3,h4{
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 0.5em;
  font-weight: 600;
}
h1{ font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 650; letter-spacing: -0.01em; }
@media (max-width: 700px){
  h1{ font-size: 2rem; }
}
h2{ font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3{ font-size: 1.3rem; }
p{ margin: 0 0 1em; }
.eyebrow{
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--coral-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.9em;
}
.eyebrow svg{ width: 16px; height: 16px; }

.lede{ font-size: 1.15rem; color: var(--teal); max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: url("../img/cursor-shaka-32.png") 4 4, pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  font-family: var(--font-body);
}
.btn svg{ width: 18px; height: 18px; flex-shrink:0; }
.btn-primary{
  background: var(--lemon);
  color: var(--ink);
  box-shadow: 0 8px 20px -8px rgba(116,149,42,0.55);
}
.btn-primary:hover{ background: var(--lemon-dark); color: var(--white); transform: translateY(-1px); }
.btn-ghost{
  background: transparent;
  border-color: rgba(250,247,239,0.55);
  color: var(--white);
}
.btn-ghost:hover{ background: rgba(250,247,239,0.12); }
.btn-outline{
  background: transparent;
  border-color: var(--teal);
  color: var(--teal);
}
.btn-outline:hover{ background: var(--teal); color: var(--white); }

/* ---------- Header / Nav ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,247,239,0.9);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--sand-deep);
}
.nav-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 20px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.15;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.brand-logo{ width: 52px; height: 52px; flex-shrink:0; object-fit: contain; filter: drop-shadow(0 2px 5px rgba(12,47,49,0.35)); }
.brand small{
  display:block; font-family: var(--font-body); font-weight: 700;
  font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral);
}
.main-nav{
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.main-nav a{
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
  padding: 8px 12px;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}
.main-nav a:hover, .main-nav a[aria-current="page"]{
  background: var(--teal);
  color: var(--white);
}
.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-toggle{ display:none; }

@media (max-width: 900px){
  .nav-wrap{ padding: 10px 14px; gap: 8px; }
  .brand{ font-size: 0.92rem; gap: 8px; }
  .brand-logo{ width: 40px; height: 40px; }
  .brand small{ font-size: 0.52rem; }
  .main-nav{
    position: absolute;
    inset: 64px 0 auto 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 16px 18px;
    border-bottom: 1px solid var(--sand-deep);
    display: none;
  }
  .main-nav.open{ display: flex; }
  .main-nav a{ padding: 12px 14px; }
  .nav-toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border-radius: 10px;
    border: 1px solid var(--sand-deep);
    background: var(--paper);
  }
  .nav-toggle svg{ width: 22px; height: 22px; }
  .nav-cta .btn-primary span.long{ display:none; }
  .nav-cta .btn-primary{ padding: 10px 16px; font-size: 0.88rem; }
}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  color: var(--white);
  min-height: 420px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding: 0;
  background-color: var(--teal-deep);
}
.hero picture, .hero img.hero-bg{
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center bottom; z-index: 0;
}
@media (min-width: 700px){
  .hero{ min-height: 320px; }
}
.hero::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,40,42,0.18) 0%, rgba(16,40,42,0.24) 45%, rgba(16,40,42,0.42) 100%);
  z-index: 1;
}
.hero-content{
  position: relative;
  z-index: 2;
  padding: 20px 24px 24px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-left{ width: 100%; }
.hero-eyebrow{ margin: 0; }
.hero h1{ color: var(--white); max-width: 16ch; margin-top: 10px; }
.hero .lede{ color: rgba(255,255,255,0.92); }
.hero-right{ display:flex; flex-direction:column; align-items:flex-end; width:100%; }
.hero-actions{ display:flex; gap:14px; flex-wrap: wrap; justify-content: flex-end; }
.hero-logo-img{
  width: min(495px, 62vw);
  height: min(495px, 62vw);
  margin: 0 auto 32px auto;
}
@media (max-width: 899px){
  .hero-actions .btn-preise{ order: 2; }
  .hero-actions .btn-haus{ order: 1; }
  .hero-actions .btn{ font-size: 0.85rem; padding: 12px 20px; }
}
@media (min-width: 700px){
  .hero-content{ padding: 24px 24px 32px; }
}
@media (min-width: 900px){
  .hero-content{
    padding: 24px 24px 40px;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  .hero-left{ width: auto; flex: 1 1 auto; max-width: 600px; }
  .hero-right{ width: auto; flex-shrink: 0; align-items: stretch; }
  .hero-actions{ justify-content: center; }
  .hero-logo-img{
    width: 622px;
    height: 622px;
    margin: 0 0 32px auto;
  }
}

/* ---------- Facts strip ---------- */
.facts{
  position: relative;
  z-index: 2;
  width: 100%;
  background: var(--ink);
  color: var(--sand);
}
.facts-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
  gap: 20px 32px;
  padding: 30px 0;
}
.fact{ display:flex; align-items:center; gap:12px; font-size: 0.95rem; }
.fact svg{ width: 26px; height: 26px; flex-shrink:0; color: var(--coral); }
.fact strong{ display:block; font-family: var(--font-display); font-size:1.05rem; font-weight:700; color: var(--white);}

/* ---------- Sections ---------- */
section{ padding: 84px 0; }
.section-tight{ padding: 56px 0; }
.split{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.split.reverse .split-media{ order: 2; }
@media (max-width: 860px){
  .split{ grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media{ order: 0; }
}
.split-media img{ border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); width: 100%; height: auto; display: block; transition: transform .35s ease; overflow: hidden; }
.split-media{ overflow: hidden; border-radius: var(--radius-lg); }
.split-media:hover img{ transform: scale(1.04); }

.bg-paper{ background: var(--paper); }
.bg-teal{ background: var(--teal-deep); color: var(--sand); }
.bg-teal h2, .bg-teal h3{ color: var(--white); }
.bg-ink{ background: var(--ink); color: var(--sand); }
.bg-ink h2, .bg-ink h3{ color: var(--white); }

/* ---------- Poem block (Signature element) ---------- */
.poem-block{
  position: relative;
  padding: 90px 0;
  background: var(--teal-deep);
  color: var(--sand);
  overflow: hidden;
}
.poem-wind{
  position: absolute; inset: 0;
  opacity: 0.16;
  z-index: 0;
}
.poem-inner{
  position: relative; z-index:1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.poem-inner p.verse{
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  line-height: 1.55;
  margin: 0 0 1.1em;
  color: var(--white);
}
.poem-sign{
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--coral);
}

/* ---------- Cards / Grids ---------- */
.grid-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.grid-4{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.grid-2{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
@media (max-width: 860px){
  .grid-3{ grid-template-columns: 1fr 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .grid-4{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .grid-3{ grid-template-columns: 1fr; }
  .grid-4{ grid-template-columns: 1fr; }
}
.card{
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--sand-deep);
}
.card h3{ margin-bottom: 0.4em; }
.card svg{ width:30px; height:30px; color: var(--coral-dark); margin-bottom: 12px; }

.destination-card{
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--sand-deep);
}
.destination-card .body{ padding: 18px 20px; }
.destination-card .dist{
  display:inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  background: var(--teal);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

/* ---------- Gallery ---------- */
.gallery{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery a{ border-radius: var(--radius); overflow:hidden; display:block; position:relative; }
.gallery img{ width:100%; height: auto; transition: transform .35s ease; }
.gallery a:hover img{ transform: scale(1.06); }
@media (max-width: 860px){ .gallery{ grid-template-columns: repeat(2,1fr);} }

.room-block{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--sand-deep);
}
.room-block:last-child{ border-bottom: none; }
.room-block img{ border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); width:100%; height:auto; }
@media (max-width: 860px){ .room-block{ grid-template-columns: 1fr; gap:20px; } }
.amenity-list{ list-style:none; padding:0; margin: 1em 0 0; display:grid; grid-template-columns: 1fr 1fr; gap: 8px 20px;}
.amenity-list li{ display:flex; gap:8px; align-items:flex-start; font-size:0.96rem; }
.amenity-list svg{ width:18px; height:18px; color: var(--green); flex-shrink:0; margin-top:3px; }

/* ---------- Pricing table ---------- */
.price-table{
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.price-table th, .price-table td{
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--sand-deep);
  font-size: 0.96rem;
}
.price-table thead th{
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
}
.price-table tbody tr:last-child td{ border-bottom:none; }
.price-table td.price{ font-weight: 700; color: var(--coral-dark); font-size: 1.1rem; white-space: nowrap; }
.price-table td.season{ font-weight:700; }

.calendar-callout{
  background: var(--paper);
  border: 2px dashed var(--sand-deep);
  border-radius: var(--radius-lg);
  padding: 34px;
  text-align: center;
}
.calendar-callout-full{
  width: 100%;
  border-top: 1px solid var(--sand-deep);
  border-bottom: 1px solid var(--sand-deep);
  background: var(--white);
  display: flex;
  justify-content: center;
}
.calendar-scale-wrapper{
  width: 100%;
  display: flex;
  justify-content: center;
}
.calendar-scale-wrapper iframe{
  width: 1150px;
  height: 1100px;
  border: 0;
  zoom: calc(100vw / 1150);
}
@media (min-width: 1150px){
  .calendar-scale-wrapper iframe{ zoom: 1; }
}
@media (min-width: 1300px){
  .calendar-scale-wrapper iframe{ zoom: 1.2; }
}
@media (min-width: 1600px){
  .calendar-scale-wrapper iframe{ zoom: 1.4; }
}
.calendar-callout svg{ width:38px; height:38px; color: var(--coral); margin-bottom: 10px; }

/* ---------- Wind widget placeholder ---------- */
.wind-embed{
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand-deep);
  box-shadow: var(--shadow-soft);
  padding: 28px;
  text-align:center;
}
.wind-embed .placeholder-box{
  border: 2px dashed var(--sand-deep);
  border-radius: var(--radius);
  padding: 46px 20px;
  color: var(--teal-light);
  font-size: 0.92rem;
}

/* ---------- Forms ---------- */
.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full{ grid-column: 1/-1; }
@media (max-width: 700px){ .form-grid{ grid-template-columns:1fr; } }
label{ display:block; font-weight:700; font-size:0.88rem; margin-bottom:6px; color: var(--teal); }
input, textarea{
  width:100%;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1.5px solid var(--sand-deep);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
}
textarea{ resize: vertical; min-height: 130px; }
.field{ margin-bottom: 4px; }
.required-note{ font-size:0.82rem; color: var(--teal-light); margin-top: 18px;}

/* ---------- Map ---------- */
.map-embed{
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--sand-deep);
  aspect-ratio: 16/9;
  background: var(--paper);
  display:flex; align-items:center; justify-content:center;
  color: var(--teal-light);
  text-align:center;
  padding: 20px;
}
.map-embed svg{ width: 36px; height: 36px; color: var(--coral); margin-bottom: 10px; }
.card h3 svg{ width: 20px; height: 20px; color: var(--coral-dark); margin: 0 6px 0 0; vertical-align: -4px; }

/* ---------- News banner ---------- */
.news-banner{
  background: var(--gold);
  color: var(--ink);
}
.news-banner-inner{
  display:flex; align-items:center; gap:18px; padding: 16px 0; flex-wrap:wrap;
}
.news-banner-icon{
  flex-shrink:0; width:44px; height:44px; border-radius:50%;
  background: var(--ink); color: var(--gold);
  display:flex; align-items:center; justify-content:center;
}
.news-banner-icon svg{ width:22px; height:22px; }
.news-banner-tag{
  text-transform:uppercase; font-weight:800; font-size:0.72rem; letter-spacing:0.1em;
  background: var(--ink); color: var(--gold); padding:3px 10px; border-radius:999px; margin-right:10px;
}
.news-banner p{ margin:0; flex:1; min-width:220px; font-weight:600; }
.news-banner a.btn{ flex-shrink:0; }

.news-banner-carousel{
  position: relative;
  background: var(--gold);
  color: var(--ink);
  overflow: hidden;
}
.news-banner-slides{
  position: relative;
  min-height: 88px;
}
.news-banner-slide{
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
}
.news-banner-slide.active{ opacity: 1; pointer-events: auto; }
.news-banner-slide .news-banner-inner{ width: 100%; }
.news-banner-slide:nth-child(2) .news-banner-inner{ color: var(--ink); }
.news-banner-slide:nth-child(2) .news-banner-tag{ background: var(--coral); color: #fff; }
.news-banner-dots{
  position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
  display: flex; gap: 7px; z-index: 2;
}
.news-banner-dots button{
  width: 8px; height: 8px; border-radius: 50%; border: 2px solid var(--ink);
  background: transparent; padding: 0; opacity: 0.5;
  cursor: url("../img/cursor-shaka-32.png") 4 4, pointer;
}
.news-banner-dots button.active{ background: var(--ink); opacity: 1; }
@media (max-width: 700px){
  .news-banner-dots{ display: none; }
}

/* ---------- Slideshow ---------- */
.slideshow{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--ink);
  aspect-ratio: 4/3;
}
@media (min-width: 700px){ .slideshow{ aspect-ratio: 16/7; } }
.slide{
  position:absolute; inset:0;
  opacity:0;
  transition: opacity .7s ease;
  pointer-events:none;
}
.slide.active{ opacity:1; pointer-events:auto; }
.slide img{ width:100%; height:100%; object-fit:cover; }
.slide-caption{
  position:absolute; left:0; right:0; top:0;
  padding: 20px 26px 44px;
  background: linear-gradient(180deg, rgba(12,47,49,0.85) 0%, rgba(12,47,49,0) 100%);
  color: var(--white);
}
.slide-caption span{
  display:inline-block; font-family:var(--font-display); font-style:italic; font-size:1.15rem;
}
.slideshow-dots{
  position:absolute; right:20px; bottom:16px; z-index:3;
  display:flex; gap:8px;
}
.slideshow-dots button{
  width:10px; height:10px; border-radius:50%; border:2px solid var(--white);
  background: transparent; padding:0; cursor: url("../img/cursor-shaka-32.png") 4 4, pointer; opacity:0.7;
}
.slideshow-dots button.active{ background: var(--gold); border-color: var(--gold); opacity:1; }
.slideshow-nav{
  position:absolute; top:50%; transform:translateY(-50%); z-index:3;
  width:40px; height:40px; border-radius:50%;
  background: rgba(12,47,49,0.55); color:var(--white); border:none;
  display:flex; align-items:center; justify-content:center; cursor: url("../img/cursor-shaka-32.png") 4 4, pointer;
}
.slideshow-nav svg{ width:20px; height:20px; }
.slideshow-nav.prev{ left:16px; }
.slideshow-nav.next{ right:16px; }
@media (max-width: 560px){ .slideshow-nav{ display:none; } }


/* ---------- Legal pages ---------- */
.legal{ max-width: 76ch; margin: 0 auto; }
.legal h2{ font-size: 1.4rem; margin-top: 1.6em; }
.legal ol, .legal ul{ padding-left: 1.3em; }
.legal p{ font-size: 0.98rem; }

/* ---------- Footer ---------- */
footer.site-footer{
  background: var(--ink);
  color: var(--sand);
  padding: 60px 0 30px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 760px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-grid h4{ color: var(--white); font-size:1rem; margin-bottom: 14px;}
.footer-grid ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:8px;}
.footer-grid a{ color: var(--sand); text-decoration:none; opacity:0.85; }
.footer-grid a:hover{ opacity:1; text-decoration:underline; }
.footer-bottom{
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(239,232,214,0.16);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-size: 0.85rem;
  color: var(--sand-deep);
}
.footer-brand{ font-family: var(--font-display); font-size:1.3rem; color:var(--white); display:block;}
.footer-brand-row{ display:flex; align-items:center; gap:14px; margin-bottom:16px; }
.footer-brand-row img{ flex-shrink:0; object-fit: contain; width:64px; height:64px; filter: drop-shadow(0 3px 8px rgba(0,0,0,0.35)); }
.footer-tagline{ display:block; font-size:0.78rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color: var(--gold); margin-top:2px; }

/* ---------- Utility ---------- */
.text-center{ text-align:center; }
.mx-auto{ margin-left:auto; margin-right:auto; }
.mt-lg{ margin-top: 40px; }
.badge-row{ display:flex; gap:10px; flex-wrap:wrap; margin-top:18px;}
.badge{
  display:inline-block;
  background: var(--paper); border:1px solid var(--sand-deep); border-radius:999px;
  padding: 6px 14px; font-size:0.82rem; font-weight:700; color: var(--teal);
}
.badge-lemon{
  background: var(--lemon); border-color: var(--lemon-dark);
  color: var(--ink);
}
.skip-link{
  position:absolute; left:-999px; top:auto;
  background: var(--coral); color:#fff; padding:10px 16px; border-radius:6px; z-index:100;
}
.skip-link:focus{ left: 16px; top: 16px; }
.page-header{
  padding: 64px 0 40px;
  background: var(--teal-deep);
  color: var(--white);
}
.page-header .eyebrow{ color: var(--gold); }
.page-header h1{ color:var(--white); font-size: clamp(2rem,4vw,3rem); max-width: 22ch;}
.page-header.has-photo{
  position: relative;
  padding: 100px 0 56px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-header.has-photo::before{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,71,73,0.35) 0%, rgba(10,71,73,0.5) 60%, rgba(10,71,73,0.62) 100%);
  z-index: 0;
}
.page-header.has-photo .container{ position: relative; z-index: 1; }
.page-header p{ color: rgba(255,255,255,0.88); max-width: 60ch; }

/* ---------- Video block (click-to-play) ---------- */
.video-carousel-wrap{
  width: 100%;
  display: flex;
  justify-content: center;
  background: var(--ink);
  border-radius: var(--radius-lg);
}
.video-carousel-wrap .video-carousel{
  width: min(92%, 640px);
  height: auto;
  margin: 24px auto;
}
@media (min-width: 900px){
  .video-carousel-wrap .video-carousel{ width: min(70%, 460px); }
}
.video-carousel{
  position: relative;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 900px){
  .video-carousel{ max-width: var(--container); }
}
.video-carousel .video-block{
  position: absolute; inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
  margin: 0;
}
.video-carousel .video-block.active{
  position: relative;
  opacity: 1;
  pointer-events: auto;
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
}
.video-carousel-nav{ z-index: 4; }
.video-carousel-dots{ z-index: 4; bottom: 16px; }
.video-block{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--ink);
  aspect-ratio: 16 / 9;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 900px){
  .video-block{ max-width: var(--container); }
}
.video-poster{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-block video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 900px){
  .video-block video::-webkit-media-controls-fullscreen-button{ display: none !important; }
}
.video-block video::-webkit-media-controls-fullscreen-button{ display: none !important; }
.video-play-btn{
  position: absolute;
  inset: 0;
  margin: auto;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(16,40,42,0.75);
  border: 3px solid rgba(255,255,255,0.9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: url("../img/cursor-shaka-32.png") 4 4, pointer;
  transition: transform .15s ease, background .15s ease;
}
.video-play-btn svg{ width: 34px; height: 34px; margin-left: 4px; }
.video-play-btn:hover{ background: var(--coral); transform: scale(1.08); }

/* ---------- Fischbroetchen banner + lightbox ---------- */
.news-banner-food{ background: var(--paper); border-top: 1px solid var(--sand-deep); }
.news-banner-thumb{ width: 52px; height: 52px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.news-banner-tag-food{ background: var(--coral); }
#fischbroetchenOpenBtn{ font-family: var(--font-body); font-weight: 700; }

.lightbox{
  display: none;
  position: fixed; inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
}
.lightbox.open{ display: flex; }
.lightbox-backdrop{
  position: absolute; inset: 0;
  background: rgba(10,20,20,0.86);
}
.lightbox-content{
  position: relative;
  z-index: 1;
  max-width: min(92vw, 1000px);
  max-height: 90vh;
  width: 100%;
}
.lightbox-slides{
  position: relative;
  width: 100%;
  max-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.lightbox-slide{
  display: none;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}
.lightbox-slide.active{ display: block; }
.lightbox-close{
  position: absolute; top: -46px; right: 0;
  background: none; border: none;
  color: #fff; font-size: 2rem; line-height: 1;
  cursor: url("../img/cursor-shaka-32.png") 4 4, pointer;
}
.lightbox-nav{
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(16,40,42,0.7); border: 2px solid rgba(255,255,255,0.85);
  color: #fff; display: flex; align-items: center; justify-content: center;
  cursor: url("../img/cursor-shaka-32.png") 4 4, pointer;
}
.lightbox-nav svg{ width: 22px; height: 22px; }
.lightbox-nav.prev{ left: 12px; }
.lightbox-nav.next{ right: 12px; }
.lightbox-dots{
  display: flex; justify-content: center; gap: 10px; margin-top: 16px;
}
.lightbox-dots button{
  width: 10px; height: 10px; border-radius: 50%;
  border: none; background: rgba(255,255,255,0.4); cursor: url("../img/cursor-shaka-32.png") 4 4, pointer; padding: 0;
}
.lightbox-dots button.active{ background: #fff; }
@media (max-width: 560px){
  .lightbox-nav{ width: 38px; height: 38px; }
  .lightbox-close{ top: -40px; }
}

/* ---------- Rack before/after toggle ---------- */
.rack-toggle{
  position: relative;
  max-width: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.rack-toggle-img{
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  position: absolute;
  inset: 0;
  transition: opacity .4s ease;
}
.rack-toggle-img.active{
  opacity: 1;
  position: relative;
}
.rack-toggle-btn{
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16,40,42,0.85);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: url("../img/cursor-shaka-32.png") 4 4, pointer;
  transition: background .15s ease, transform .15s ease;
}
.rack-toggle-btn svg{ width: 18px; height: 18px; flex-shrink: 0; }
.rack-toggle-btn:hover{ background: var(--coral); }

/* ---------- Sound toggle button ---------- */
.sound-toggle{
  position: fixed;
  top: 84px;
  right: 20px;
  z-index: 60;
}
.sound-toggle-btn{
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--teal-deep);
  color: var(--sand);
  border: 2px solid rgba(255,255,255,0.4);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  cursor: url("../img/cursor-shaka-32.png") 4 4, pointer;
  transition: transform .15s ease, background .15s ease;
}
.sound-toggle-btn:hover{ background: var(--coral); transform: scale(1.06); }
.sound-icon-off{ width: 22px; height: 22px; }
.sound-bar{
  display: none;
  width: 4px;
  height: 10px;
  background: currentColor;
  border-radius: 2px;
  animation: soundBarPulse 0.9s ease-in-out infinite;
}
.sound-bar:nth-child(2){ animation-delay: 0.15s; }
.sound-bar:nth-child(3){ animation-delay: 0.3s; }
.sound-toggle-btn.playing .sound-bar{ display: block; }
.sound-toggle-btn.playing .sound-icon-off{ display: none; }
@keyframes soundBarPulse{
  0%, 100% { height: 8px; }
  50% { height: 20px; }
}
@media (max-width: 700px){
  .sound-toggle{ top: 76px; right: 14px; }
  .sound-toggle-btn{ width: 44px; height: 44px; }
}

/* ---------- Footer social icons ---------- */
.footer-social{
  display: flex;
  gap: 12px;
  margin: 16px 0 4px;
}
.footer-social a{
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, transform .15s ease, border-color .15s ease;
}
.footer-social a:hover{
  background: var(--coral);
  border-color: var(--coral);
  transform: translateY(-2px);
}
.footer-social svg{ width: 18px; height: 18px; }
