/* =====================================================================
   The Big 5 Golfhouse — Design System
   Warm, editorial style inspired by the printed flyer
   (kraft/terracotta tones, elegant serif + brush-script wordmark)
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Palette */
  --paper:        #FBF7F1;   /* page background (warm paper)      */
  --paper-2:      #F4EBDD;   /* alt tan surface                   */
  --cream:        #FFFFFF;
  --tan:          #C29A6B;   /* brand tan (flyer kraft)           */
  --tan-deep:     #A67C4C;
  --espresso:     #2B241D;   /* primary text                     */
  --espresso-2:   #4E4235;   /* secondary text                   */
  --muted:        #7C6F60;
  --green:        #4F6B41;   /* golf / nature                    */
  --green-deep:   #3A4F2F;
  --ocean:        #2E6E7C;   /* indian ocean teal                */
  --ocean-deep:   #1E5460;
  --terracotta:   #C0563A;   /* hibiscus accent / CTA            */
  --terracotta-d: #A2452D;
  --gold:         #C6A868;
  --line:         rgba(43,36,29,.14);
  --line-soft:    rgba(43,36,29,.08);
  --shadow-sm:    0 2px 10px rgba(43,36,29,.07);
  --shadow-md:    0 12px 34px rgba(43,36,29,.13);
  --shadow-lg:    0 26px 60px rgba(43,36,29,.20);

  /* Type */
  --f-serif:  "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --f-script: "Yellowtail", "Cormorant Garamond", cursive;
  --f-sans:   "Jost", "Segoe UI", system-ui, -apple-system, sans-serif;

  --maxw: 1200px;
  --gutter: clamp(1.15rem, 4vw, 3rem);
  --radius: 14px;
  --radius-lg: 22px;

  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--f-sans);
  color: var(--espresso);
  background: var(--paper);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

/* ---------- Language visibility ---------- */
html[data-lang="de"] [data-l="en"] { display: none !important; }
html[data-lang="en"] [data-l="de"] { display: none !important; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--f-serif); font-weight: 500; line-height: 1.12; color: var(--espresso); }
.eyebrow {
  font-family: var(--f-sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--tan-deep);
  display: inline-flex; align-items: center; gap: .7rem;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--tan); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 34px; height: 1px; background: var(--tan); }

.script { font-family: var(--f-script); font-weight: 400; color: var(--terracotta); }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--espresso-2); font-weight: 300; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: 760px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--f-sans); font-weight: 500; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .95rem 1.9rem; border-radius: 100px; border: 1.5px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--terracotta); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--terracotta-d); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { border-color: currentColor; color: var(--espresso); }
.btn-outline:hover { background: var(--espresso); color: var(--paper); transform: translateY(-2px); }
.btn-light { border-color: rgba(255,255,255,.6); color: #fff; }
.btn-light:hover { background: #fff; color: var(--espresso); border-color:#fff; transform: translateY(-2px); }
.btn-ghost { color: var(--espresso); padding-inline: .4rem; }
.btn-ghost:hover { color: var(--terracotta); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.site-header.solid, body:not(.has-hero) .site-header {
  background: rgba(251,247,241,.92);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 4px 24px rgba(43,36,29,.06);
}

/* Wordmark */
.brand { display: flex; align-items: center; gap: .75rem; line-height: 1; }
.brand .mark {
  width: 40px; height: 40px; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--tan), var(--tan-deep));
  color: #fff; box-shadow: var(--shadow-sm);
}
.brand .mark span { font-family: var(--f-serif); font-weight: 600; font-size: 1.15rem; letter-spacing: .01em; }
/* Kudu aus dem Original-Logo als Header-Bildmarke (dunkel/hell je nach Header-Zustand) */
.brand .mark-kudu { flex: none; display: block; height: 52px; margin-top: -2px; }
.brand .mark-kudu img { height: 52px; width: auto; display: block; }
.site-header .mark-kudu .k-hell { display: none; }
.site-header.on-hero:not(.solid) .mark-kudu .k-hell { display: block; }
.site-header.on-hero:not(.solid) .mark-kudu .k-dunkel { display: none; }
.brand .wm { display: flex; flex-direction: column; }
.brand .wm .l1 { font-family: var(--f-serif); font-weight: 600; font-size: 1.16rem; letter-spacing: .02em; color: var(--espresso); }
.brand .wm .l1 b { color: var(--terracotta); font-weight: 600; }
.brand .wm .l2 { font-size: .58rem; letter-spacing: .42em; text-transform: uppercase; color: var(--tan-deep); margin-top: 2px; }
.site-header.on-hero:not(.solid) .brand .wm .l1 { color: #fff; }
.site-header.on-hero:not(.solid) .brand .wm .l1 b { color: #fff; }
.site-header.on-hero:not(.solid) .brand .wm .l2 { color: rgba(255,255,255,.8); }

/* Nav */
.nav { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; align-items: center; gap: 1.7rem; }
.nav-links a {
  font-size: .82rem; letter-spacing: .06em; font-weight: 400; color: var(--espresso-2);
  position: relative; padding: .3rem 0; transition: color .2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1.5px;
  background: var(--terracotta); transition: right .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--espresso); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.site-header.on-hero:not(.solid) .nav-links a { color: rgba(255,255,255,.85); }
.site-header.on-hero:not(.solid) .nav-links a:hover,
.site-header.on-hero:not(.solid) .nav-links a.active { color: #fff; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }

/* Language toggle */
.lang { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 100px; overflow: hidden; }
.site-header.on-hero:not(.solid) .lang { border-color: rgba(255,255,255,.4); }
.lang button {
  background: none; border: none; padding: .35rem .7rem; font-size: .74rem; font-weight: 500;
  letter-spacing: .08em; color: var(--muted); transition: background .2s, color .2s;
}
.site-header.on-hero:not(.solid) .lang button { color: rgba(255,255,255,.8); }
.lang button.active { background: var(--terracotta); color: #fff; }
.nav .btn { padding: .7rem 1.35rem; }

/* Burger */
.burger { display: none; width: 44px; height: 44px; border: none; background: none; position: relative; }
.burger span { position: absolute; left: 10px; right: 10px; height: 2px; background: var(--espresso); transition: transform .3s, opacity .3s, top .3s; }
.site-header.on-hero:not(.solid) .burger span { background: #fff; }
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
body.menu-open .burger span:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  color: #fff; padding-top: var(--header-h);
}
.hero.compact { min-height: 66vh; }
/* Oben nur leicht abgedunkelt (Haus wirkt für sich), unten kräftiger
   Verlauf als kontrastreicher Grund für Logo und Text */
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(20,16,12,.42) 0%,
    rgba(20,16,12,.08) 24%,
    rgba(20,16,12,.24) 40%,
    rgba(20,16,12,.80) 62%,
    rgba(20,16,12,.97) 100%);
}
.hero .hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 0%; z-index: -1; }
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 860px; margin-inline: auto; text-align: center; padding-block: 2rem 3rem; }
.hero .eyebrow { color: #fff; }
.hero .eyebrow::before, .hero .eyebrow::after { background: rgba(255,255,255,.7); }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 500; letter-spacing: .01em; text-shadow: 0 2px 30px rgba(0,0,0,.45); }
.hero h1 .script { display: block; color: #fff; font-size: clamp(2rem, 4.2vw, 3.4rem); line-height: .9; margin-top: .2rem; }
.hero p.lead { color: rgba(255,255,255,.92); margin-top: 1.2rem; max-width: 620px; margin-inline: auto; }
.hero .hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; margin-top: 1.6rem; }
.hero .hero-facts {
  /* Im neuen ruhigen Hero ausgeblendet — die Fakten stehen direkt
     darunter als eigene Sektion */
  display: none;
}
.hero-facts .f { line-height: 1.1; }
.hero-facts .f b { font-family: var(--f-serif); font-size: 1.7rem; font-weight: 600; display: block; }
.hero-facts .f span { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.8); }

.scroll-cue { display: none; }
.scroll-cue .mouse { width: 22px; height: 34px; border: 1.5px solid rgba(255,255,255,.6); border-radius: 12px; position: relative; }
.scroll-cue .mouse::after { content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 3px; height: 6px; border-radius: 3px; background: #fff; animation: scrolldot 1.7s infinite; }
@keyframes scrolldot { 0%{opacity:0; top:6px;} 40%{opacity:1;} 80%{opacity:0; top:15px;} 100%{opacity:0;} }

/* Page hero (interior pages) */
.page-hero { position: relative; padding: calc(var(--header-h) + 4.5rem) 0 3.4rem; color: #fff; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,16,12,.62), rgba(20,16,12,.5)); }
.page-hero .hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2.3rem, 5vw, 3.8rem); text-shadow: 0 2px 24px rgba(0,0,0,.4); }
.page-hero .eyebrow { color: #fff; }
.page-hero .eyebrow::before, .page-hero .eyebrow::after { background: rgba(255,255,255,.7); }
.page-hero p { color: rgba(255,255,255,.9); max-width: 620px; margin-top: 1rem; }
.breadcrumbs { font-size: .74rem; letter-spacing: .08em; color: rgba(255,255,255,.75); margin-bottom: 1rem; text-transform: uppercase; }
.breadcrumbs a:hover { color: #fff; }

/* ---------- Sections ---------- */
.section { padding-block: clamp(3.6rem, 8vw, 6.5rem); position: relative; }
.section.tan { background: var(--paper-2); }
.section.dark { background: var(--espresso); color: var(--paper); }
.section.dark h2, .section.dark h3 { color: #fff; }
.section-head { max-width: 720px; margin-bottom: 2.8rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-top: .8rem; }
.section-head p { margin-top: 1rem; color: var(--espresso-2); }

/* Split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; height: 100%; max-height: 560px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.split-media .tag {
  position: absolute; bottom: 18px; left: 18px; background: rgba(251,247,241,.94); color: var(--espresso);
  padding: .6rem 1.1rem; border-radius: 100px; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.split-body h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
.split-body p { margin-top: 1.1rem; color: var(--espresso-2); }
.split-body .btn { margin-top: 1.7rem; }

/* Highlights grid */
.grid { display: grid; gap: 1.3rem; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--cream); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 1.9rem 1.7rem; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .ic {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 1.1rem;
  background: var(--paper-2); color: var(--green);
}
.card .ic svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.35rem; }
.card p { margin-top: .5rem; color: var(--espresso-2); font-size: .96rem; }

/* Facts strip */
.facts { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; text-align: center; }
.facts .f { padding: 1.2rem .6rem; }
.facts .f b { font-family: var(--f-serif); font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 600; color: var(--espresso); display: block; line-height: 1; }
.facts .f span { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: .5rem; display: block; }
.facts .f + .f { border-left: 1px solid var(--line); }

/* Amenities list */
.amenlist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 2rem; }
.amenlist li { display: flex; gap: .85rem; align-items: flex-start; padding-bottom: 1rem; border-bottom: 1px solid var(--line-soft); }
.amenlist li svg { width: 22px; height: 22px; color: var(--green); flex: none; margin-top: 3px; }
.amenlist li b { font-family: var(--f-serif); font-weight: 600; font-size: 1.12rem; display: block; }
.amenlist li span { color: var(--espresso-2); font-size: .92rem; }

/* Golf course cards */
.course {
  display: flex; align-items: center; gap: 1.2rem; background: var(--cream); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 1.2rem 1.5rem; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s;
}
.course:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.course .dist { flex: none; width: 74px; height: 74px; border-radius: 50%; display: grid; place-items: center; text-align: center; background: linear-gradient(150deg, var(--green), var(--green-deep)); color: #fff; }
.course .dist b { font-family: var(--f-serif); font-size: 1.3rem; font-weight: 600; line-height: 1; }
.course .dist span { font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; opacity: .9; }
.course .info { flex: 1; }
.course .info h3 { font-size: 1.28rem; }
.course .info a { color: var(--ocean); font-size: .84rem; letter-spacing: .02em; display: inline-flex; align-items: center; gap: .3rem; }
.course .info a:hover { color: var(--ocean-deep); text-decoration: underline; }
.course .info a svg { width: 13px; height: 13px; }
.featured-course { grid-column: 1 / -1; }

/* Info / travel list */
.timeline { display: grid; gap: 1.1rem; }
.timeline li { display: flex; gap: 1.1rem; background: var(--cream); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 1.3rem 1.5rem; box-shadow: var(--shadow-sm); }
.timeline li .n { flex: none; width: 42px; height: 42px; border-radius: 50%; background: var(--paper-2); color: var(--ocean); display: grid; place-items: center; }
.timeline li .n svg { width: 22px; height: 22px; }
.timeline li h3 { font-size: 1.2rem; }
.timeline li p { color: var(--espresso-2); font-size: .95rem; margin-top: .25rem; }

/* pill list */
.pills { display: flex; flex-wrap: wrap; gap: .6rem; }
.pills li { background: var(--paper-2); border: 1px solid var(--line-soft); color: var(--espresso-2); padding: .5rem 1.05rem; border-radius: 100px; font-size: .86rem; display:flex; align-items:center; gap:.5rem; }
.pills li svg { width: 16px; height: 16px; color: var(--green); }

/* Sprungmenue (Seite "Erleben") */
.sprungmenue { justify-content: center; margin-top: clamp(2.4rem, 5vw, 3.6rem); }
.sprungmenue li { padding: 0; transition: border-color .2s, color .2s; }
.sprungmenue li a { display: flex; align-items: center; gap: .5rem; padding: .5rem 1.05rem; color: inherit; text-decoration: none; }
.sprungmenue li:hover { border-color: var(--green); color: var(--green); }
[id="vor-der-tuer"], [id="abenteuer"], [id="safari"], [id="essen"], [id="anreise"], [id="lage"] { scroll-margin-top: var(--header-h); }

/* Quote band */
.quote { text-align: center; max-width: 860px; margin-inline: auto; }
.quote p { font-family: var(--f-serif); font-style: italic; font-size: clamp(1.5rem, 3.4vw, 2.4rem); line-height: 1.35; color: var(--espresso); }
.section.dark .quote p { color: #fff; }
.quote .hibiscus { margin: 0 auto 1.4rem; }

/* ---------- Gallery ---------- */
.gallery { columns: 3; column-gap: 1rem; }
.gallery .g-item { break-inside: avoid; margin-bottom: 1rem; border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; box-shadow: var(--shadow-sm); }
.gallery .g-item img { width: 100%; transition: transform .55s ease; }
.gallery .g-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(20,16,12,.4)); opacity: 0; transition: opacity .3s; }
.gallery .g-item:hover img { transform: scale(1.06); }
.gallery .g-item:hover::after { opacity: 1; }
.gallery .g-cap { position: absolute; left: 14px; bottom: 12px; color: #fff; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; z-index: 2; opacity: 0; transform: translateY(6px); transition: opacity .3s, transform .3s; }
.gallery .g-item:hover .g-cap { opacity: 1; transform: none; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(18,14,10,.92); display: none; align-items: center; justify-content: center; padding: 4vw; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close, .lightbox .lb-nav { position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: #fff; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; transition: background .2s; }
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: rgba(255,255,255,.28); }
.lightbox .lb-close { top: 4vw; right: 4vw; }
.lightbox .lb-nav.prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.lightbox .lb-nav.next { right: 3vw; top: 50%; transform: translateY(-50%); }
.lightbox svg { width: 22px; height: 22px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.form-card { background: var(--cream); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow-md); }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .45rem; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--f-sans); font-size: 1rem; color: var(--espresso);
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: .8rem .95rem; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--terracotta); box-shadow: 0 0 0 3px rgba(192,86,58,.14); }
/* Live-Validierung: grün bei gültiger Eingabe, terrakotta bei ungültiger */
.field input.feld-ok, .field input.feld-ok:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(79,107,65,.16); }
.field input.feld-fehler, .field input.feld-fehler:focus { border-color: var(--terracotta); box-shadow: 0 0 0 3px rgba(192,86,58,.18); }
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: .4rem; }
.form-card .btn { width: 100%; margin-top: .4rem; }

.contact-cards { display: grid; gap: 1.1rem; }
.contact-card { background: var(--cream); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 1.5rem 1.6rem; box-shadow: var(--shadow-sm); }
.contact-card .role { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--tan-deep); }
.contact-card h3 { font-size: 1.4rem; margin: .25rem 0 .8rem; }
.contact-card .row { display: flex; align-items: center; gap: .7rem; color: var(--espresso-2); font-size: .95rem; padding: .3rem 0; }
.contact-card .row svg { width: 18px; height: 18px; color: var(--green); flex: none; }
.contact-card .row a:hover { color: var(--terracotta); }
.wa { margin-top: 1rem; background: #25D366; color: #fff; }
.wa:hover { background: #1EB456; }

/* platform badges */
.platforms { display: flex; flex-wrap: wrap; gap: .8rem; }
.platforms a {
  display: inline-flex; align-items: center; gap: .55rem; background: var(--cream); border: 1px solid var(--line);
  border-radius: 100px; padding: .65rem 1.25rem; font-size: .88rem; font-weight: 400; color: var(--espresso-2);
  transition: transform .2s, border-color .2s, color .2s;
}
.platforms a:hover { transform: translateY(-2px); border-color: var(--terracotta); color: var(--espresso); }
.platforms a svg { width: 16px; height: 16px; color: var(--tan-deep); }

/* Map */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line-soft); }
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; filter: saturate(.9); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; color: #fff; text-align: center; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30,84,96,.86), rgba(20,16,12,.82)); }
.cta-band .cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; }
.cta-band .container { position: relative; z-index: 2; padding-block: clamp(4rem, 8vw, 6.5rem); }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.2rem); }
.cta-band p { color: rgba(255,255,255,.9); max-width: 560px; margin: 1rem auto 2rem; }
.cta-band .btns { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--espresso); color: rgba(255,255,255,.72); padding-block: 3.5rem 2rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.4rem; }
.site-footer h4 { color: #fff; font-family: var(--f-sans); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 500; margin-bottom: 1.1rem; }
.site-footer .brand .wm .l1 { color: #fff; }
.site-footer .brand .wm .l1 b { color: var(--gold); }
.site-footer .brand .wm .l2 { color: rgba(255,255,255,.6); }
.site-footer .f-about { font-size: .92rem; margin-top: 1.1rem; max-width: 300px; }
.site-footer ul.f-links li { padding: .32rem 0; }
.site-footer ul.f-links a { font-size: .92rem; color: rgba(255,255,255,.72); transition: color .2s; }
.site-footer ul.f-links a:hover { color: #fff; }
.site-footer .f-contact .row { display: flex; flex-wrap: wrap; gap: .6rem; align-items: flex-start; font-size: .92rem; padding: .3rem 0; }
.site-footer .f-contact .row a, .site-footer .f-contact .row span { overflow-wrap: anywhere; min-width: 0; }
.site-footer .f-contact svg { width: 17px; height: 17px; color: var(--gold); flex: none; margin-top: 3px; }
.footer-bottom { margin-top: 2.8rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.14); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; color: rgba(255,255,255,.55); }

/* ---------- Reveal animation (progressive enhancement) ----------
   Only hidden when JS is active (html.js). Without JS the content stays
   fully visible, so the page never depends on scripting to be readable. */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- Decorative hibiscus ---------- */
.hibiscus { width: 40px; height: 40px; color: var(--terracotta); }

/* ---------- Galerie-Tabs ---------- */
.galerie-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.2rem; }
.tab-btn {
  border: 1.5px solid var(--line); background: var(--cream); color: var(--espresso-2);
  padding: .72rem 1.6rem; border-radius: 100px; font-family: var(--f-sans);
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
  transition: background .2s, color .2s, border-color .2s;
}
.tab-btn:hover { border-color: var(--terracotta); color: var(--espresso); }
.tab-btn.active { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }
.gaeste-hinweis { text-align: center; max-width: 620px; margin: 1.8rem auto 0; color: var(--espresso-2); }
.gaeste-hinweis a { color: var(--ocean); }
.gaeste-hinweis a:hover { color: var(--ocean-deep); text-decoration: underline; }

/* ---------- Film / Video ---------- */
.video-wrap { max-width: 1000px; margin-inline: auto; }
.video-wrap video, .video-wrap .video-platzhalter { width: 100%; display: block; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.video-wrap .video-platzhalter { position: relative; overflow: hidden; }
.video-wrap .video-platzhalter img { width: 100%; display: block; }
.video-wrap .video-platzhalter .note {
  position: absolute; inset: auto 0 0 0; padding: .8rem 1.2rem; text-align: center;
  background: rgba(20,16,12,.72); color: #fff; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
}

/* ---------- Gästestimmen / reviews ---------- */
.score-card { text-align: center; padding-block: 2.3rem; }
.score-card .score { font-family: var(--f-serif); font-weight: 600; font-size: 3.4rem; color: var(--green-deep); line-height: 1; }
.score-card .score .of { font-size: 1.35rem; color: var(--muted); font-weight: 500; }
.score-card h3 { margin-top: .55rem; }
.score-card .stars { color: var(--gold); letter-spacing: .18em; font-size: 1.05rem; margin-top: .25rem; }
.score-card p { margin-top: .35rem; }
.score-card a { display: inline-flex; align-items: center; gap: .3rem; margin-top: .9rem; color: var(--ocean); font-size: .88rem; }
.score-card a:hover { color: var(--ocean-deep); text-decoration: underline; }
.review-quote { display: flex; flex-direction: column; justify-content: center; }
.review-quote .q { font-family: var(--f-serif); font-style: italic; font-size: 1.22rem; line-height: 1.45; color: var(--espresso); }
.review-quote .who { margin-top: .55rem; font-size: .78rem; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }

/* ---------- Logo ---------- */
.hero-logo {
  width: clamp(195px, 20vw, 260px); height: auto;
  margin: 0 auto 1.1rem;
  filter: drop-shadow(0 4px 26px rgba(0,0,0,.4));
}
.site-footer .f-logo { width: 210px; height: auto; margin-bottom: .4rem; }
.footer-bottom .legal a { color: rgba(255,255,255,.55); }
.footer-bottom .legal a:hover { color: #fff; }
.legal-page h2 { font-size: 1.6rem; margin-top: 2.2rem; }
.legal-page p, .legal-page li { color: var(--espresso-2); margin-top: .6rem; }
.legal-page .hint { background: var(--paper-2); border: 1px dashed var(--tan); border-radius: 10px; padding: .9rem 1.1rem; font-size: .92rem; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media img { max-height: 420px; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery { columns: 2; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .facts { grid-template-columns: repeat(3, 1fr); }
  .facts .f:nth-child(4) { border-left: none; }
  .facts .f:nth-child(n+4) { border-top: 1px solid var(--line); }
}
@media (max-width: 720px) {
  :root { --header-h: 66px; }
  .nav-links, .nav > .btn { display: none; }
  .burger { display: block; }
  .nav { gap: .6rem; }
  /* Mobile menu panel */
  .nav-links {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--paper); padding: 1rem var(--gutter) 1.6rem; gap: 0; box-shadow: var(--shadow-md);
    transform: translateY(-140%); transition: transform .35s ease; border-bottom: 1px solid var(--line);
  }
  body.menu-open .nav-links { display: flex; transform: none; }
  .nav-links a { padding: .95rem 0; border-bottom: 1px solid var(--line-soft); color: var(--espresso-2); font-size: 1rem; }
  .nav-links a::after { display: none; }
  .site-header.on-hero:not(.solid) .nav-links a { color: var(--espresso-2); }
  .field-row { grid-template-columns: 1fr; }
  .amenlist { grid-template-columns: 1fr; }
  .grid.cols-3, .grid.cols-4, .grid.cols-2 { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .facts .f { border-left: none !important; }
  .facts .f:nth-child(n+3) { border-top: 1px solid var(--line); }
  .hero-facts .f b { font-size: 1.4rem; }
  .course { flex-direction: row; }
  /* Footer auf dem Handy einspaltig, damit nichts rechts überläuft */
  .footer-top { grid-template-columns: 1fr; gap: 1.8rem; }
}
@media (max-width: 560px) {
  /* Auf schmalen Handys nur das Kudu-Emblem zeigen, sonst kollidiert
     der Schriftzug mit DE/EN-Schalter und Anfragen-Knopf */
  .brand .wm { display: none; }
  .nav-actions { gap: .6rem; }
  .nav .btn { padding: .6rem 1rem; font-size: .76rem; }
}
@media (max-width: 420px) {
  .hero-facts { gap: 1.1rem 1.6rem; }
}

/* ---- Google-Karte erst nach Zustimmung laden (Datenschutz) ---- */
.map-consent { position: relative; min-height: 420px; background: var(--paper-2); }
.map-platzhalter { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem; text-align: center; padding: 2rem; }
.map-platzhalter svg { width: 40px; height: 40px; color: var(--green); }
.map-platzhalter b { font-family: var(--f-serif); font-size: 1.2rem; }
.map-platzhalter span { color: var(--espresso-2); font-size: .88rem; max-width: 42ch; line-height: 1.5; }
.map-platzhalter .map-laden { margin-top: .6rem; }
.map-consent iframe { width: 100%; height: 420px; border: 0; display: block; }

.course .dist.dist-text b { font-family: var(--f-sans); font-size: .74rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; line-height: 1.2; }
