/* ==========================================================================
   THRIVE OUTSIDE — Design System v2
   Visual language: editorial, airy, warm — per mockup concept
   ========================================================================== */

:root {
  /* Palette */
  --forest-deep: #1E3A1E;
  --moss: #3D5C2E;
  --sage: #7B9E72;
  --warm-cream: #F5EFE0;
  --cream: #F5EFE0;
  --sand: #EDE5D4;
  --charcoal: #2C2A25;
  --warm-white: #FEFCF8;
  --off-white: #F9F6F0;
  --amber: #B8711E;
  --amber-light: #C98A3A;
  --amber-deep: #9A5E16;

  /* Typography */
  --font-display: 'Zodiak', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, system-ui, sans-serif;

  /* Type scale */
  --text-hero: clamp(2.4rem, 5.5vw, 5.2rem);
  --text-display: clamp(2.4rem, 5vw, 4.5rem);
  --text-h1: clamp(2rem, 4vw, 3.25rem);
  --text-h2: clamp(1.6rem, 2.8vw, 2.5rem);
  --text-h3: clamp(1.2rem, 2vw, 1.6rem);
  --text-lg: 1.125rem;
  --text-base: 1rem;
  --text-sm: 0.875rem;
  --text-xs: 0.75rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --max-width: 1320px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  /* Shape */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(44,42,37,0.06);
  --shadow-md: 0 4px 16px rgba(44,42,37,0.08);
  --shadow-lg: 0 12px 40px rgba(44,42,37,0.12);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 200ms;
  --t-med: 400ms;
  --t-slow: 700ms;
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--charcoal);
}
p { margin: 0 0 var(--space-4) 0; }

/* Subtle paper grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(var(--space-16), 9vw, var(--space-32));
  position: relative;
  z-index: 1;
}
.section--tight { padding-block: clamp(var(--space-12), 6vw, var(--space-20)); }
.section--white { background: var(--warm-white); }
.section--off-white { background: var(--off-white); }
.section--cream { background: var(--cream); }
.section--sand { background: var(--sand); }
.section--forest { background: var(--forest-deep); color: var(--warm-cream); }
.section--forest h1,.section--forest h2,.section--forest h3 { color: var(--warm-cream); }

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-4);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.section--forest .eyebrow { color: var(--sage); }

/* Section headings */
.section-head { margin-bottom: var(--space-12); }
.section-head--center { text-align: center; }
.section-title { font-size: var(--text-h2); color: var(--charcoal); }
.section-title--light { color: var(--warm-cream); }
.section-subtitle {
  margin-top: var(--space-4);
  font-size: var(--text-lg);
  color: #6b6860;
  max-width: 56ch;
  line-height: 1.65;
}
.section-head--center .section-subtitle { margin-inline: auto; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: var(--space-6) 0;
  transition: background var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), padding var(--t-med) var(--ease);
}
.site-header.is-scrolled {
  background: rgba(254, 252, 248, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(44,42,37,0.08);
  padding: var(--space-3) 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

/* Brand — circular logo */
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--warm-cream);
  transition: color var(--t-med) var(--ease);
  flex-shrink: 0;
}
.site-header.is-scrolled .brand { color: var(--charcoal); }

.brand__logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  transition: filter var(--t-med) var(--ease);
  filter: brightness(0) invert(1);
}
.site-header.is-scrolled .brand__logo-img { filter: none; }

.brand__mark { width: 40px; height: 40px; flex: none; }
.brand__word {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Nav */
.nav { display: flex; align-items: center; gap: var(--space-8); }
.nav__links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(var(--space-6), 2vw, var(--space-8));
}
.nav__link {
  color: rgba(245,239,224,0.9);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  position: relative;
  transition: color var(--t-fast) var(--ease);
}
.site-header.is-scrolled .nav__link { color: var(--charcoal); }
.nav__link:hover { color: var(--amber); }
.nav__link.has-dropdown::after {
  content: "";
  display: inline-block;
  width: 5px; height: 5px;
  border-right: 1.2px solid currentColor;
  border-bottom: 1.2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
  margin-left: 5px;
  opacity: 0.5;
}

/* Dropdown */
.nav__item { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: -20px;
  min-width: 240px;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-3);
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), visibility var(--t-fast) var(--ease);
  border: 1px solid rgba(44,42,37,0.06);
}
.nav__item:hover .dropdown, .nav__item:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  color: #2a3a25; /* WCAG AA: 11.8:1 on white dropdown bg, replaces var(--charcoal) which scanned ambiguously */
  font-size: 0.875rem;
}
.dropdown a:hover { background: var(--off-white); color: var(--moss); }
.dropdown-group-label {
  padding: var(--space-3) var(--space-4) var(--space-1);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: var(--space-2);
}
.dropdown-group-label:first-child { margin-top: 0; }

/* Lang toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  border: 1px solid rgba(245,239,224,0.5);
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--warm-cream);
}
.site-header.is-scrolled .lang-toggle { color: var(--charcoal); border-color: rgba(44,42,37,0.2); }
.lang-toggle button { padding: 2px 7px; border-radius: 999px; font: inherit; opacity: 0.5; transition: opacity var(--t-fast) var(--ease); }
.lang-toggle button.is-active { opacity: 1; background: currentColor; }
.lang-toggle button.is-active span { color: var(--forest-deep); }
.site-header.is-scrolled .lang-toggle button.is-active span { color: var(--warm-white); }

/* Hamburger */
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--warm-cream); }
.site-header.is-scrolled .nav-toggle { color: var(--charcoal); }
.nav-toggle__bars { position: relative; width: 22px; height: 14px; }
.nav-toggle__bars::before, .nav-toggle__bars::after, .nav-toggle__bars span {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--t-med) var(--ease), opacity var(--t-fast) var(--ease), top var(--t-med) var(--ease);
}
.nav-toggle__bars::before { top: 0; }
.nav-toggle__bars span { top: 50%; transform: translateY(-50%); }
.nav-toggle__bars::after { bottom: 0; }
.nav-toggle.is-open .nav-toggle__bars::before { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle.is-open .nav-toggle__bars span { opacity: 0; }
.nav-toggle.is-open .nav-toggle__bars::after { bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .nav__links {
    position: fixed;
    inset: 0;
    background: var(--forest-deep);
    color: var(--warm-cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: var(--space-20) var(--gutter) var(--space-12);
    gap: var(--space-6);
    transform: translateX(100%);
    transition: transform var(--t-slow) var(--ease);
    z-index: 99;
  }
  body.menu-open .nav__links { transform: translateX(0); }
  .nav__link { color: var(--warm-cream); font-size: 1.4rem; font-family: var(--font-display); }
  .dropdown { position: static; background: none; box-shadow: none; padding: 0; margin: var(--space-2) 0 0 var(--space-4); opacity: 1; visibility: visible; transform: none; border: none; }
  .dropdown a { color: var(--brand-mint-on-dark, #9BC191); padding: var(--space-1) 0; font-size: 0.95rem; }
  .dropdown a:hover { background: transparent; color: var(--amber); }
  .lang-toggle { margin-top: var(--space-6); }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.85rem 1.8rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform var(--t-fast) var(--ease), background var(--t-med) var(--ease), color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  white-space: nowrap;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--forest-deep); color: var(--warm-cream); border-color: var(--forest-deep); }
.btn--primary:hover { background: var(--moss); border-color: var(--moss); box-shadow: 0 8px 24px rgba(30,58,30,0.28); }

.btn--ghost { background: transparent; color: var(--warm-cream); border-color: rgba(245,239,224,0.55); }
.btn--ghost:hover { background: rgba(245,239,224,0.12); border-color: var(--warm-cream); }

.btn--outline { border-color: var(--charcoal); color: var(--charcoal); background: transparent; }
.btn--outline:hover { background: var(--charcoal); color: var(--warm-white); }

.btn--amber { background: var(--amber); color: var(--warm-white); border-color: var(--amber); }
.btn--amber:hover { background: var(--amber-deep); box-shadow: 0 8px 24px rgba(184,113,30,0.3); }

.btn--outline-light { border-color: rgba(253,250,244,0.6); color: var(--warm-cream); background: transparent; }
.btn--outline-light:hover { background: var(--warm-cream); color: var(--forest-deep); }

.btn--dark { background: var(--charcoal); color: var(--warm-white); border-color: var(--charcoal); }
.btn--dark:hover { background: var(--forest-deep); }

/* Inline text link CTA (mockup style: "MEHR ERFAHREN →") */
.link-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  transition: gap var(--t-med) var(--ease), color var(--t-fast) var(--ease);
}
.link-cta:hover { gap: var(--space-3); color: var(--amber-deep); }
.link-cta .arrow { font-size: 0.85em; }

.btn .arrow { display: inline-block; transition: transform var(--t-med) var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ==========================================================================
   Hero — Full bleed, editorial
   ========================================================================== */
.hero {
  position: relative;
  min-height: min(100svh, 780px);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(var(--space-12), 9vw, var(--space-20));
  padding-top: var(--space-24);
  color: var(--warm-cream);
  overflow: hidden;
}

/* Slideshow */
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
  transform: scale(1.04);
  transition: opacity 1.4s ease, transform 7s ease;
}
.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

/* Hero media (single image pages) */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  will-change: transform;
}

/* Gradient overlay — bottom-weighted, warm */
.hero__overlay,
.hero__slides::after,
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 20, 18, 0.18) 0%,
    rgba(20, 20, 18, 0.05) 40%,
    rgba(20, 20, 18, 0.65) 100%
  );
  z-index: 1;
}
.hero__slides::after { z-index: 1; pointer-events: none; }

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

/* Large editorial headline */
.hero__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.75);
  margin-bottom: var(--space-4);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--warm-cream);
  margin-bottom: var(--space-4);
}
/* Thin rule under headline — mockup detail */
.hero__title::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: rgba(245,239,224,0.6);
  margin-top: var(--space-6);
  margin-bottom: var(--space-4);
}

.hero__sub {
  font-size: var(--text-base);
  line-height: 1.65;
  color: rgba(245,239,224,0.82);
  max-width: 46ch;
  margin-bottom: var(--space-8);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  right: var(--gutter);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.55);
}

/* Slide indicators */
.hero__dots {
  position: absolute;
  bottom: var(--space-8);
  left: var(--gutter);
  z-index: 2;
  display: flex;
  gap: var(--space-2);
}
.hero__dot {
  width: 24px; height: 2px;
  background: rgba(245,239,224,0.35);
  border-radius: 1px;
  transition: background var(--t-med) var(--ease), width var(--t-med) var(--ease);
  cursor: pointer;
  border: none;
}
.hero__dot.is-active { background: var(--warm-cream); width: 40px; }

/* Short hero for subpages */
.hero--short {
  min-height: clamp(360px, 52vh, 520px);
  align-items: flex-end;
  padding-bottom: clamp(var(--space-12), 7vw, var(--space-20));
}

/* ==========================================================================
   Location Cards — mockup style: image top, text below, no border-radius
   ========================================================================== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.loc-card {
  display: flex;
  flex-direction: column;
  background: var(--warm-white);
}
.loc-card__link {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
}

.loc-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  max-height: clamp(220px, 28vw, 400px);
  background: var(--sand);
}
.loc-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.loc-card:hover .loc-card__media img { transform: scale(1.04); }

/* Hover overlay */
.loc-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,58,30,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-cream);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
}
.loc-card:hover .loc-card__overlay { opacity: 1; }

.loc-card__body {
  padding: var(--space-6) 0 var(--space-4);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.loc-card__tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a8680;
  margin-bottom: var(--space-2);
}
.loc-card__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}
.loc-card__desc {
  font-size: 0.9rem;
  color: #6b6860;
  line-height: 1.65;
  margin-bottom: var(--space-4);
  flex: 1;
}
.loc-card__tags {
  list-style: none;
  margin: 0 0 var(--space-4) 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.loc-card__tags li {
  font-size: 0.72rem;
  color: #7a7670;
  padding: var(--space-1) var(--space-3);
  background: var(--off-white);
  border: 1px solid rgba(44,42,37,0.08);
  letter-spacing: 0.04em;
}

/* Premium loc-card extensions for occasion cards */
.loc-card__lead {
  font-size: 0.95rem;
  color: #6b6860;
  line-height: 1.65;
  margin: 0 0 var(--space-5) 0;
  flex: 1;
}
.loc-card__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  transition: gap var(--t-med) var(--ease), color var(--t-med) var(--ease);
}
.loc-card:hover .loc-card__cta {
  gap: var(--space-3);
  color: var(--forest-deep);
}

/* Premium occasion-card variant: card surface lifts on hover */
.loc-card--occasion {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(44,42,37,0.06);
  transition: transform var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease);
}
.loc-card--occasion:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px -28px rgba(30, 58, 30, 0.28),
              0 10px 24px -16px rgba(0,0,0,0.18);
  border-color: rgba(30, 58, 30, 0.12);
}
.loc-card--occasion .loc-card__body {
  padding: var(--space-6) var(--space-6) var(--space-6);
}
.loc-card--occasion .loc-card__media {
  aspect-ratio: 4/3;
  max-height: clamp(220px, 28vw, 360px);
}
.loc-card--occasion .loc-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(30,58,30,0.35) 100%);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
  pointer-events: none;
}
.loc-card--occasion:hover .loc-card__media::after { opacity: 1; }

@media (max-width: 860px) {
  .locations-grid { grid-template-columns: 1fr; gap: var(--space-10); }
}

/* Occasion grid (loc-card variant) — responsive 3 -> 1 columns */
.occasions-grid--cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}
@media (max-width: 900px) {
  .occasions-grid--cards { grid-template-columns: 1fr; gap: var(--space-8); }
}

/* ==========================================================================
   Services accordion (global — used on all location pages)
   ========================================================================== */
.services-list { border-top: 1px solid var(--sand); margin-top: var(--space-8); }
.service-item { border-bottom: 1px solid var(--sand); }
.service-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-5) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--t-fast) var(--ease);
}
.service-toggle:hover .service-name { color: var(--forest-deep); }
.service-name {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--charcoal);
  transition: color var(--t-fast) var(--ease);
}
.service-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-deep);
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 300;
  transition: transform var(--t-med) var(--ease),
              background var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease);
}
.service-item.is-open .service-icon {
  transform: rotate(45deg);
  background: var(--forest-deep);
  color: var(--warm-cream);
  border-color: var(--forest-deep);
}
.service-body {
  display: none;
  padding-bottom: var(--space-5);
  padding-right: var(--space-10);
}
.service-item.is-open .service-body { display: block; }
.service-body p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #5a5850;
  margin: 0;
}
@media (max-width: 600px) {
  .service-body { padding-right: var(--space-2); }
}

/* ==========================================================================
   Distances / Lage section (global)
   ========================================================================== */
.distances {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-10);
}
.distance-item {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--sand);
  border-radius: 1px;
  transition: transform var(--t-med) var(--ease), background var(--t-med) var(--ease);
}
.distance-item:hover { transform: translateY(-2px); }
.distance-time {
  font-size: 1.4rem;
  font-family: var(--font-display);
  color: var(--forest-deep);
  white-space: nowrap;
}
.distance-label {
  font-size: 0.8rem;
  color: var(--charcoal);
}
/* Variant: dark-forest backdrop (used on location pages) */
.section--forest-distances {
  background: var(--forest-deep);
  color: var(--warm-cream);
}
.section--forest-distances .section__eyebrow { color: rgba(245, 239, 224, 0.5); }
.section--forest-distances .section__title { color: var(--warm-cream); }
.section--forest-distances .section__lead { color: rgba(245, 239, 224, 0.75); max-width: 600px; margin-top: var(--space-4); margin-bottom: var(--space-10); }
.section--forest-distances .distance-item {
  background: rgba(245, 239, 224, 0.08);
}
.section--forest-distances .distance-time { color: var(--warm-cream); }
.section--forest-distances .distance-label { color: rgba(245, 239, 224, 0.7); }
.section--forest-distances .distance-item:hover {
  background: rgba(245, 239, 224, 0.14);
}


/* ==========================================================================
   Facts Bar (stat strip)
   ========================================================================== */
.facts-bar {
  background: var(--forest-deep);
  color: var(--warm-cream);
  padding: var(--space-8) 0;
}

.facts-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.fact__num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--warm-cream);
  line-height: 1.1;
  margin-bottom: var(--space-1);
}

.fact > span:not(.fact__num) {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 239, 224, 0.55);
}

/* Dividers between facts */
.fact + .fact {
  border-left: 1px solid rgba(245, 239, 224, 0.12);
  padding-left: var(--space-6);
}

@media (max-width: 680px) {
  .facts-bar__inner {
    justify-content: center;
    gap: var(--space-4);
  }
  .fact + .fact {
    border-left: none;
    padding-left: 0;
  }
  .fact {
    min-width: 140px;
    flex: 0 0 calc(50% - var(--space-4));
  }
}

/* ==========================================================================
   Occasions Grid
   ========================================================================== */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.occasion-tile {
  position: relative;
  overflow: hidden;
  background: var(--off-white);
  cursor: pointer;
}
.occasion-tile__media {
  aspect-ratio: 4/3;
  max-height: clamp(160px, 18vw, 240px);
  overflow: hidden;
  position: relative;
}
.occasion-tile__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.occasion-tile:hover .occasion-tile__media img { transform: scale(1.06); }

.occasion-tile__body {
  padding: var(--space-5) var(--space-4) var(--space-4);
}
.occasion-tile__icon {
  display: none; /* clean minimal — no icon in mockup style */
}
.occasion-tile__body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}
.occasion-tile__body p {
  font-size: 0.85rem;
  color: #6b6860;
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

/* Occasion CTA dropdown */
.occ-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: gap var(--t-med) var(--ease);
}
.occ-cta:hover { gap: var(--space-3); }
.occ-cta__chevron { transition: transform var(--t-med) var(--ease); opacity: 0.7; }
.occ-cta[aria-expanded="true"] .occ-cta__chevron { transform: rotate(180deg); }

.occ-location-picker {
  display: none;
  flex-direction: column;
  margin-top: var(--space-3);
  gap: var(--space-1);
  border-top: 1px solid rgba(44,42,37,0.08);
  padding-top: var(--space-3);
}
.occ-location-picker.is-open { display: flex; }
.occ-location-picker a {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.85rem;
  color: var(--charcoal);
  padding: var(--space-2) 0;
  transition: color var(--t-fast) var(--ease);
}
.occ-location-picker a:hover { color: var(--moss); }
.occ-loc__pin { color: var(--sage); font-size: 0.55rem; }

@media (max-width: 860px) {
  .occasions-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .occasions-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Quote / Impression section
   ========================================================================== */
.section--forest-img {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-block: clamp(var(--space-20), 14vw, var(--space-32));
  color: var(--warm-cream);
  text-align: center;
  overflow: hidden;
}
.section--forest-img__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 16, 0.62);
  z-index: 0;
}
.section--forest-img .container { position: relative; z-index: 1; }
.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--sage);
  opacity: 0.6;
  margin-bottom: var(--space-6);
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--warm-cream);
  margin: 0 auto var(--space-6);
  max-width: 640px;
}
.quote-author {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.6);
  margin: 0;
}

/* ==========================================================================
   Why Us Grid
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}
.why-card {
  padding: var(--space-8) var(--space-6);
  border-top: 1px solid rgba(44,42,37,0.1);
}
.why-card__icon {
  margin-bottom: var(--space-5);
  color: var(--sage);
}
.why-card h3 {
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}
.why-card p { font-size: 0.9rem; color: #6b6860; line-height: 1.65; margin: 0; }

@media (max-width: 860px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
  .why-card { padding: var(--space-6) 0; }
}
@media (max-width: 520px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.testimonial {
  margin: 0;
  padding: var(--space-8) var(--space-6);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(245,239,224,0.12);
}
.testimonial__text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--warm-cream);
  margin-bottom: var(--space-6);
}
.testimonial__author { display: flex; flex-direction: column; gap: var(--space-1); }
.testimonial__name { font-size: 0.85rem; font-weight: 600; color: var(--warm-cream); }
.testimonial__event { font-size: 0.75rem; color: rgba(245,239,224,0.5); letter-spacing: 0.06em; }

@media (max-width: 860px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   FAQ home grid
   ========================================================================== */
.faq-home-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.faq-home-item {
  padding: var(--space-6) var(--space-8);
  border-bottom: 1px solid rgba(44,42,37,0.08);
  border-right: 1px solid rgba(44,42,37,0.08);
}
.faq-home-item:nth-child(even) { border-right: none; }
.faq-home-item:nth-last-child(-n+2) { border-bottom: none; }
.faq-home-q {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: var(--space-2);
  letter-spacing: -0.005em;
}
.faq-home-a { font-size: 0.88rem; color: #6b6860; line-height: 1.65; margin: 0; }
.faq-home-a strong { color: var(--charcoal); font-weight: 600; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-4);
}
.section-eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }

@media (max-width: 640px) {
  .faq-home-grid { grid-template-columns: 1fr; }
  .faq-home-item { border-right: none; border-bottom: 1px solid rgba(44,42,37,0.08); }
  .faq-home-item:last-child { border-bottom: none; }
}

/* ==========================================================================
   CTA Box
   ========================================================================== */
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  padding: var(--space-12) var(--space-12);
  background: var(--forest-deep);
  color: var(--warm-cream);
}
.cta-box__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--warm-cream);
  letter-spacing: -0.01em;
}
.cta-box__sub { font-size: 0.9rem; color: rgba(245,239,224,0.65); margin: var(--space-2) 0 0; }
.cta-box__actions { display: flex; gap: var(--space-3); flex-shrink: 0; flex-wrap: wrap; }

@media (max-width: 760px) {
  .cta-box { flex-direction: column; align-items: flex-start; padding: var(--space-8) var(--space-6); }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--charcoal);
  color: rgba(245,239,224,0.7);
  padding-block: var(--space-16) var(--space-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}
.footer-brand .brand { color: var(--warm-cream); margin-bottom: var(--space-4); }
.footer-tagline { font-size: 0.88rem; color: rgba(245,239,224,0.55); line-height: 1.6; margin: 0 0 var(--space-6); max-width: 28ch; }
.footer-social { display: flex; gap: var(--space-4); }
.footer-social a { color: rgba(245,239,224,0.5); transition: color var(--t-fast) var(--ease); }
.footer-social a:hover { color: var(--warm-cream); }

.footer-col h4,
.footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.4);
  margin-bottom: var(--space-4);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-2); }
.footer-col ul a { font-size: 0.88rem; color: rgba(245,239,224,0.65); transition: color var(--t-fast) var(--ease); }
.footer-col ul a:hover { color: var(--warm-cream); }

.footer-bottom {
  border-top: 1px solid rgba(245,239,224,0.08);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: 0.78rem;
  color: rgba(245,239,224,0.35);
}
.footer-bottom__legal { display: flex; gap: var(--space-6); }
.footer-bottom__legal a { color: rgba(245,239,224,0.35); }
.footer-bottom__legal a:hover { color: rgba(245,239,224,0.7); }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Reveal animations
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Lang helpers
   ========================================================================== */
html.lang-de .en { display: none; }
html.lang-en .de { display: none; }

/* ==========================================================================
   Breadcrumb bar
   ========================================================================== */
.breadcrumb-bar {
  background: var(--off-white);
  border-bottom: 1px solid rgba(44,42,37,0.07);
  padding: var(--space-3) 0;
  margin-top: 72px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.78rem;
  color: #8a8680;
}
.breadcrumb a { color: #8a8680; }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb__sep { opacity: 0.4; }
.breadcrumb__current { color: var(--charcoal); }

/* ==========================================================================
   Stats row
   ========================================================================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(44,42,37,0.08);
}
.stat-item {
  padding: var(--space-8) var(--space-6);
  text-align: center;
  border-right: 1px solid rgba(44,42,37,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: var(--space-2);
}
.stat-item__label { font-size: 0.78rem; color: #8a8680; letter-spacing: 0.08em; }

@media (max-width: 640px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(44,42,37,0.08); }
}

/* ==========================================================================
   Gallery grid (lightbox)
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
}
.gallery-grid--4 { grid-template-columns: repeat(4, 1fr); }

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  max-height: clamp(180px, 22vw, 320px);
  cursor: zoom-in;
  background: var(--sand);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item--tall { grid-row: span 2; aspect-ratio: unset; }
.gallery-item--wide { grid-column: span 2; }

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 1; }
}

/* ==========================================================================
   Pricing table
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.pricing-card {
  padding: var(--space-8) var(--space-6);
  border: 1px solid rgba(44,42,37,0.1);
  background: var(--warm-white);
  position: relative;
}
.pricing-card--featured {
  border-color: var(--forest-deep);
  background: var(--forest-deep);
  color: var(--warm-cream);
}
.pricing-card--featured h3, .pricing-card--featured .pricing-badge { color: var(--warm-cream); }
.pricing-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-3);
}
.pricing-card--featured .pricing-badge { color: var(--sage); }
.pricing-name { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: var(--space-4); }
.pricing-amount { font-size: 2.5rem; font-family: var(--font-display); font-weight: 400; line-height: 1; margin-bottom: var(--space-2); }
.pricing-amount span { font-size: 0.9rem; font-family: var(--font-body); opacity: 0.6; }
.pricing-note { font-size: 0.8rem; color: #8a8680; margin-bottom: var(--space-6); }
.pricing-card--featured .pricing-note { color: rgba(245,239,224,0.55); }
.pricing-list { list-style: none; margin: 0 0 var(--space-8); padding: 0; display: flex; flex-direction: column; gap: var(--space-3); }
.pricing-list li { font-size: 0.88rem; display: flex; gap: var(--space-3); align-items: baseline; }
.pricing-list li::before { content: "—"; color: var(--sage); flex-shrink: 0; font-size: 0.7rem; }
.pricing-card--featured .pricing-list li { color: rgba(245,239,224,0.82); }

@media (max-width: 800px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Vendor / Partner page
   ========================================================================== */
.vendor-categories { display: flex; flex-direction: column; gap: var(--space-12); }
.vendor-category__title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(44,42,37,0.08);
}
.vendor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.vendor-card {
  padding: var(--space-5) var(--space-5);
  border: 1px solid rgba(44,42,37,0.08);
  background: var(--warm-white);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.vendor-card:hover { border-color: rgba(44,42,37,0.18); box-shadow: var(--shadow-sm); }
.vendor-card__name { font-size: 0.95rem; font-weight: 600; color: var(--charcoal); margin-bottom: var(--space-1); }
.vendor-card__desc { font-size: 0.82rem; color: #6b6860; margin: 0 0 var(--space-3); line-height: 1.5; }
.vendor-card a.vendor-link { font-size: 0.75rem; color: var(--amber); font-weight: 500; letter-spacing: 0.06em; }
.vendor-card a.vendor-link:hover { color: var(--amber-deep); }

@media (max-width: 760px) { .vendor-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .vendor-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Offer Wizard
   ========================================================================== */
.wizard { background: var(--warm-white); border: 1px solid rgba(44,42,37,0.08); }
.wizard__header { padding: var(--space-8) var(--space-8) var(--space-6); border-bottom: 1px solid rgba(44,42,37,0.06); }
.wizard__progress { display: flex; gap: var(--space-2); margin-bottom: var(--space-4); }
.wizard__step-dot {
  width: 28px; height: 2px;
  background: rgba(44,42,37,0.15);
  border-radius: 1px;
  border: none;
  cursor: default;
  transition: background var(--t-med) var(--ease), width var(--t-med) var(--ease);
}
.wizard__step-dot.is-active { background: var(--amber); width: 44px; }
.wizard__step-dot.is-done { background: var(--moss); }
.wizard__title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; }
.wizard__body { padding: var(--space-8); }
.wizard__step { display: none; }
.wizard__step.is-active { display: block; }
.wizard__footer { padding: var(--space-6) var(--space-8); border-top: 1px solid rgba(44,42,37,0.06); display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); }

/* Wizard cards */
.wizard-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: var(--space-3); }
.wizard-card {
  padding: var(--space-5) var(--space-4);
  border: 1.5px solid rgba(44,42,37,0.1);
  cursor: pointer;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
  text-align: center;
}
.wizard-card:hover { border-color: var(--moss); }
.wizard-card.is-selected { border-color: var(--forest-deep); background: rgba(30,58,30,0.04); }
.wizard-card__label { font-size: 0.9rem; font-weight: 500; color: var(--charcoal); margin-bottom: var(--space-1); }
.wizard-card__sub { font-size: 0.78rem; color: #8a8680; }

/* Form fields */
.form-group { margin-bottom: var(--space-5); }
.form-label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #8a8680; margin-bottom: var(--space-2); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font: inherit;
  font-size: var(--text-base);
  background: var(--warm-white);
  border: 1.5px solid rgba(44,42,37,0.15);
  border-radius: 0;
  color: var(--charcoal);
  transition: border-color var(--t-fast) var(--ease);
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--forest-deep); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* ==========================================================================
   Tabs
   ========================================================================== */
.tabs { display: flex; gap: 0; border-bottom: 2px solid rgba(44,42,37,0.08); margin-bottom: var(--space-8); }
.tab {
  padding: var(--space-3) var(--space-6);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #8a8680;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
  background: none;
}
.tab:hover { color: var(--charcoal); }
.tab.is-active { color: var(--charcoal); border-bottom-color: var(--charcoal); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

/* ==========================================================================
   Lightbox
   ========================================================================== */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med) var(--ease);
}
#lightbox.is-open { opacity: 1; pointer-events: all; }
.lb-backdrop { position: absolute; inset: 0; background: rgba(18,18,16,0.92); cursor: zoom-out; }
.lb-stage { position: relative; z-index: 1; max-width: 90vw; max-height: 90vh; display: flex; flex-direction: column; align-items: center; }
.lb-img { max-width: 100%; max-height: 85vh; object-fit: contain; opacity: 0; transition: opacity var(--t-med) var(--ease); display: block; }
.lb-img.lb-loaded { opacity: 1; }
.lb-caption { font-size: 0.8rem; color: rgba(245,239,224,0.55); margin-top: var(--space-3); text-align: center; }
.lb-close, .lb-prev, .lb-next {
  position: fixed;
  z-index: 2;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  color: var(--warm-cream);
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease);
  backdrop-filter: blur(8px);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.18); }
.lb-close { top: var(--space-6); right: var(--space-6); }
.lb-prev { left: var(--space-6); top: 50%; transform: translateY(-50%); }
.lb-next { right: var(--space-6); top: 50%; transform: translateY(-50%); }
.lb-counter { position: fixed; bottom: var(--space-6); left: 50%; transform: translateX(-50%); font-size: 0.8rem; color: rgba(245,239,224,0.45); z-index: 2; }

/* ==========================================================================
   WhatsApp button
   ========================================================================== */
.whatsapp-btn {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 500;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.whatsapp-btn:hover { transform: scale(1.08); box-shadow: 0 8px 24px rgba(37,211,102,0.45); }
.whatsapp-btn svg { width: 24px; height: 24px; }

/* ==========================================================================
   Cookie banner
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--charcoal);
  color: rgba(245,239,224,0.8);
  padding: var(--space-4) var(--space-6);
  /* leave room so chat-widget bubble doesn't cover the Accept button */
  padding-right: calc(var(--space-6) + 88px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  z-index: 10001;
  font-size: 0.85rem;
  transform: translateY(100%);
  transition: transform var(--t-med) var(--ease);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner p { margin: 0; }
.cookie-banner__actions { display: flex; gap: var(--space-3); flex-shrink: 0; }
.cookie-banner .decline {
  padding: var(--space-2) var(--space-4);
  border: 1px solid rgba(245,239,224,0.2);
  color: rgba(245,239,224,0.6);
  font-size: 0.8rem;
  border-radius: 0;
  cursor: pointer;
  background: none;
  transition: border-color var(--t-fast) var(--ease);
}
.cookie-banner .decline:hover { border-color: rgba(245,239,224,0.5); color: var(--warm-cream); }
.cookie-banner .accept {
  padding: var(--space-2) var(--space-4);
  background: var(--forest-deep);
  color: var(--warm-cream);
  font-size: 0.8rem;
  border: 1px solid var(--forest-deep);
  border-radius: 0;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease);
}
.cookie-banner .accept:hover { background: var(--moss); }

/* ==========================================================================
   Subpage: content blocks
   ========================================================================== */
.content-block { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: center; }
.content-block--reverse { direction: rtl; }
.content-block--reverse > * { direction: ltr; }
.content-block__img { position: relative; overflow: hidden; max-height: clamp(280px, 36vw, 460px); }
.content-block__img img { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; }
.content-block__body { display: flex; flex-direction: column; gap: var(--space-4); }
.content-block__body h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: var(--space-2); }
.content-block__body p { font-size: 0.95rem; color: #6b6860; line-height: 1.7; margin: 0; }

@media (max-width: 860px) {
  .content-block { grid-template-columns: 1fr; }
  .content-block--reverse { direction: ltr; }
}

/* ==========================================================================
   Rooms / features grid
   ========================================================================== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}
.room-card { }
.room-card__gallery { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-1); margin-bottom: var(--space-4); }
.room-card__gallery .gallery-item:first-child { grid-column: span 2; aspect-ratio: 16/9; }
.room-card__title { font-size: 1.15rem; margin-bottom: var(--space-2); }
.room-card__desc { font-size: 0.88rem; color: #6b6860; line-height: 1.65; margin: 0; }
.room-card__specs { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-3); }
.room-card__spec {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: var(--space-1) var(--space-3);
  background: var(--off-white);
  border: 1px solid rgba(44,42,37,0.08);
  color: #7a7670;
}

@media (max-width: 700px) { .rooms-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Stories / Blog teaser
   ========================================================================== */
.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.story-card { }
.story-card__img { aspect-ratio: 3/2; overflow: hidden; margin-bottom: var(--space-4); }
.story-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.story-card:hover .story-card__img img { transform: scale(1.04); }
.story-card__meta { font-size: 0.72rem; color: var(--amber); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: var(--space-2); }
.story-card__title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; margin-bottom: var(--space-2); }
.story-card__excerpt { font-size: 0.88rem; color: #6b6860; line-height: 1.6; }

@media (max-width: 760px) { .stories-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Admin image gallery editor
   ========================================================================== */
.admin-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
.admin-img-slot {
  position: relative;
  aspect-ratio: 4/3;
  border: 2px dashed rgba(44,42,37,0.15);
  overflow: hidden;
  cursor: pointer;
  background: var(--off-white);
}
.admin-img-slot img { width: 100%; height: 100%; object-fit: cover; }
.admin-img-slot__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,58,30,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--warm-cream);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.admin-img-slot:hover .admin-img-slot__overlay { opacity: 1; }




/* ==========================================================================
   Solid dark nav — for pages without a full-bleed dark hero
   ========================================================================== */
.site-header--solid-dark,
.site-header--solid-dark.is-scrolled {
  background: var(--forest-deep) !important;
  backdrop-filter: none;
  box-shadow: 0 1px 0 rgba(0,0,0,0.15);
}
.site-header--solid-dark .brand,
.site-header--solid-dark.is-scrolled .brand { color: var(--warm-cream); }
.site-header--solid-dark .brand__logo-img,
.site-header--solid-dark.is-scrolled .brand__logo-img { filter: brightness(0) invert(1); }
.site-header--solid-dark .nav__link,
.site-header--solid-dark.is-scrolled .nav__link { color: var(--warm-cream); }
.site-header--solid-dark .nav__link:hover,
.site-header--solid-dark.is-scrolled .nav__link:hover { color: var(--amber); }
.site-header--solid-dark .lang-toggle,
.site-header--solid-dark.is-scrolled .lang-toggle { color: var(--warm-cream); border-color: rgba(245,239,224,0.3); }
.site-header--solid-dark.is-scrolled .lang-toggle button.is-active span { color: var(--forest-deep); }
.site-header--solid-dark .nav-toggle,
.site-header--solid-dark.is-scrolled .nav-toggle { color: var(--warm-cream); }
.site-header--solid-dark .dropdown,
.site-header--solid-dark.is-scrolled .dropdown { background: var(--forest-deep); }

/* ==========================================================================
   Split Layout (text + image side-by-side)
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.split__media {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  max-height: clamp(280px, 36vw, 480px);
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/3;
}

/* Full-width image section */
.section--fullimg {
  position: relative;
  overflow: hidden;
  max-height: clamp(300px, 40vw, 520px);
}

.section--fullimg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16/7;
  max-height: inherit;
}

.section--fullimg__caption {
  position: absolute;
  bottom: var(--space-4);
  right: var(--space-6);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.65);
}

@media (max-width: 1366px) {
  .split__media {
    max-height: clamp(240px, 30vw, 400px);
  }
  .section--fullimg {
    max-height: clamp(260px, 34vw, 440px);
  }
}

@media (max-width: 1024px) {
  .split {
    grid-template-columns: 1fr;
  }
  .split__media {
    max-height: clamp(220px, 55vw, 380px);
  }
  .section--fullimg {
    max-height: clamp(200px, 50vw, 360px);
  }
}

@media (max-width: 680px) {
  .split__media {
    max-height: 240px;
  }
  .section--fullimg {
    max-height: 200px;
  }
  .section--fullimg__img {
    aspect-ratio: 16/9;
  }
}


/* ==========================================================================
   Responsive Image Sizing — 13-inch screen / tablet optimizations
   ========================================================================== */

/* Cap all hero images on screens <= 1400px */
@media (max-width: 1400px) {
  .hero {
    min-height: min(90svh, 700px);
  }
}

/* Mid-size laptops: 13-inch (1280px-ish) */
@media (max-width: 1366px) {
  .hero {
    min-height: min(85svh, 640px);
  }
  .hero--short {
    min-height: clamp(320px, 46vh, 480px);
  }
  .gallery-item {
    max-height: clamp(160px, 20vw, 280px);
  }
  .content-block__img {
    max-height: clamp(260px, 32vw, 420px);
  }
  .content-block__img img {
    aspect-ratio: 16/10;
  }
}

/* Tablets (768px-1024px) */
@media (max-width: 1024px) {
  .hero {
    min-height: min(80svh, 580px);
  }
  .hero--short {
    min-height: clamp(280px, 44vh, 420px);
  }
  .content-block {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .content-block--reverse {
    direction: ltr;
  }
  .content-block__img {
    max-height: clamp(220px, 45vw, 380px);
  }
  .content-block__img img {
    aspect-ratio: 16/9;
  }
  .occasion-tile__media {
    aspect-ratio: 4/3;
    max-height: clamp(140px, 24vw, 200px);
  }
  .loc-card__media {
    max-height: clamp(200px, 35vw, 340px);
  }
}

/* Mobile phones */
@media (max-width: 680px) {
  .hero {
    min-height: min(75svh, 520px);
  }
  .hero--short {
    min-height: clamp(240px, 56vw, 380px);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item {
    aspect-ratio: 1/1;
    max-height: none;
  }
  .content-block__img {
    aspect-ratio: 16/10;
    max-height: 280px;
  }
  .occasions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .occasion-tile__media {
    aspect-ratio: 4/3;
    max-height: 160px;
  }
  .loc-card__media {
    aspect-ratio: 16/10;
    max-height: 220px;
  }
}

/* 13-inch laptops — ensure images don't overflow viewport height */
@media (max-width: 1366px) and (max-height: 900px) {
  .hero {
    min-height: min(82svh, 620px);
  }
  .hero--short {
    min-height: clamp(300px, 42vh, 460px);
  }
  .content-block__img {
    max-height: clamp(240px, 30vw, 400px);
  }
  .content-block__img img {
    aspect-ratio: 16/10;
  }
}

/* Cookie banner — compact on mobile */
@media (max-width: 680px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    font-size: 0.78rem;
  }
  .cookie-banner__actions {
    display: flex;
    gap: var(--space-3);
    width: 100%;
  }
  .cookie-banner__actions button {
    flex: 1;
    padding: var(--space-2) var(--space-3);
    font-size: 0.78rem;
  }
}

/* ==========================================================================
   A11y Remediation — 2026-06-11
   Fixes: FIX 3 sr-only, FIX 4 dropdown contrast, FIX 8 focus-ring + skip-link
   ========================================================================== */

/* FIX 3: Screen-reader only utility class */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* FIX 4: Dropdown contrast — brand mint on dark background
   #9BC191 on #1E3A1E = 6.21:1 (WCAG AA pass, minimum 4.5:1)
   --brand-mint-on-dark replaces --sage (#7B9E72, ratio 4.15:1) in dark contexts */
:root {
  --brand-mint-on-dark: #9BC191;
}

/* Override dropdown link color when on dark (forest-deep) background */
.site-header--solid-dark .dropdown a,
.site-header--solid-dark.is-scrolled .dropdown a {
  color: var(--brand-mint-on-dark);
}

.site-header--solid-dark .dropdown-group-label,
.site-header--solid-dark.is-scrolled .dropdown-group-label {
  color: var(--brand-mint-on-dark);
}

/* Mobile nav dropdown uses forest-deep background — fix contrast there too */
@media (max-width: 1023px) {
  .dropdown a { color: var(--brand-mint-on-dark); }
}

/* FIX 8: Custom focus-ring — brand-aligned, WCAG 2.2 2.4.11 compliant */
:focus-visible {
  outline: 2px solid var(--brand-accent, #9BC191);
  outline-offset: 2px;
  border-radius: 2px;
}
:focus:not(:focus-visible) { outline: none; }

/* FIX 8: Skip-link — visible on keyboard focus */
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--forest-deep, #1e3a1e);
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  text-decoration: none;
  font-size: 0.875rem;
}
.skip-link:focus { top: 0; }

/* ==========================================================================
   A11y Runde 4 (2026-06-11): WCAG AA Kontrast — verbleibende Violations
   ==========================================================================
   Strategie: Statt --sage global zu ändern (würde Light-Kontexte beschädigen),
   überschreiben wir gezielt in dark-context Komponenten + helleren Footer-Text.
   ========================================================================== */

/* Tokens ergänzen */
:root {
  --sage-on-light: #4F6A48;      /* Dunkleres Sage für Light-Backgrounds (Kontrast 5.25:1 auf #f5efe0) */
  --amber-deep: #9A5E16;          /* Dunkleres Amber für CTA-Kontrast 4.5:1+ */
  --cream-readable: rgba(245,239,224,0.85);  /* Footer-Text lesbar */
  --cream-secondary: rgba(245,239,224,0.7);  /* Footer-Subtext lesbar */
}

/* 1) section--forest (dark green bg) — Eyebrows, Pins, Pricing-Accents auf mint umstellen */
.section--forest .eyebrow,
.section--forest-img .eyebrow,
.section--forest .occ-loc__pin {
  color: var(--brand-mint-on-dark);
}

/* 2) Pricing card auf dark bg */
.pricing-card--featured .pricing-badge,
.pricing-card--featured .pricing-list li::before {
  color: var(--brand-mint-on-dark);
}

/* 3) Anfrage-Wizard — Progress liegt auf dark forest-deep + Price-Total auf dark sidebar */
/*    Diese werden im inline <style>-Block von anfrage.html bereits auf mint gesetzt */
/*    Addon-Card price liegt auf cream → dark sage */
.addon-card__price {
  color: var(--sage-on-light);
}

/* 4) Footer-Kontrast — auf rgba(245,239,224,0.55) zu dim, jetzt 0.85/0.7 */
.footer-tagline {
  color: var(--cream-readable);
}
.footer-col h4,
.footer-col h3 {
  color: var(--cream-secondary) !important;
}
.footer-col ul a {
  color: var(--cream-readable);
}
.footer-social a {
  color: var(--cream-secondary);
}
.footer-bottom {
  color: var(--cream-secondary);
}
.footer-bottom__legal a {
  color: var(--cream-secondary);
}

/* 5) CTA Button on amber — darken for 4.5:1+ */
.btn--amber,
.btn[style*="b8711e"],
.btn[style*="B8711E"] {
  background: var(--amber-deep, #9A5E16) !important;
  border-color: var(--amber-deep, #9A5E16) !important;
}

/* 6) Mobile nav — falls Overlay mit cream-on-cream auftritt */
@media (max-width: 1023px) {
  .nav-mobile-overlay,
  .mobile-nav-menu {
    background: var(--forest-deep, #1e3a1e);
  }
  .nav-mobile-overlay a,
  .mobile-nav-menu a {
    color: var(--warm-cream, #f5efe0);
  }
}

/* 7) Choice-Card Sub-Text — von #807f7c auf dunkler */
.choice-card__sub,
.choice-card__description {
  color: #5e5c58;
}

/* 8) Cookie-Banner Links — sage auf cream zu blass */
.cookie-banner a,
.cookie-notice a {
  color: var(--sage-on-light) !important;
}

/* 9) Feature-Tags auf dark bg */
.feature-tag,
.tag--dark {
  color: var(--brand-mint-on-dark);
}

/* ================================================================
   UNIFIED LOCATION GALLERY (Sardinien-Style Tabs)
   Used on: sardinia.html, lebetet.html, projekt-draussen.html
   ================================================================ */
.room-tabs {
  display: flex;
  gap: var(--space-2);
  border-bottom: 2px solid var(--sand);
  margin-bottom: var(--space-8);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.room-tabs::-webkit-scrollbar { display: none; }
.room-tab {
  padding: var(--space-3) var(--space-5);
  font-size: .78rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--charcoal);
  opacity: .5;
  border: none;
  background: none;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: opacity .2s, border-color .2s, color .2s;
}
.room-tab:hover { opacity: .85; }
.room-tab.is-active {
  opacity: 1;
  color: var(--forest-deep);
  border-bottom-color: var(--forest-deep);
}
.room-tab:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
  border-radius: 2px;
}
.room-panel { display: none; }
.room-panel.is-active { display: block; animation: roomFade .35s ease-out; }
@keyframes roomFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.room-panel__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-4);
}
.room-panel__grid--wide {
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
}

.room-photo {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--sand);
  border-radius: 2px;
}
.room-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
  display: block;
}
.room-photo:hover img { transform: scale(1.04); }
.room-photo__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--space-3) var(--space-3) var(--space-2);
  background: linear-gradient(180deg, rgba(15, 30, 20, 0) 0%, rgba(15, 30, 20, .55) 60%, rgba(15, 30, 20, .82) 100%);
  color: #fff;
  font-family: var(--font-sans, system-ui, sans-serif);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}
.room-photo:hover .room-photo__overlay,
.room-photo:focus-visible .room-photo__overlay {
  opacity: 1;
  transform: translateY(0);
}
.room-photo__zoom {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(245, 239, 224, .92);
  color: var(--forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(.85);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.room-photo:hover .room-photo__zoom {
  opacity: 1;
  transform: scale(1);
}
.room-photo:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.room-spec-row {
  display: flex;
  gap: var(--space-8);
  flex-wrap: wrap;
  margin-top: var(--space-6);
}
.room-spec {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.room-spec__label {
  display: block;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sage);
}
.room-spec__val,
.room-spec__value {
  display: block;
  font-size: 1.1rem;
  font-family: var(--font-display);
  color: var(--forest-deep);
}
.room-panel__lead {
  margin-top: var(--space-5);
  color: #5a5850;
  line-height: 1.75;
  max-width: 680px;
}

@media (max-width: 640px) {
  .room-panel__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-2); }
  .room-spec-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4) var(--space-5);
  }
  .room-tabs { gap: var(--space-3); }
  .room-tab { font-size: .7rem; padding-bottom: var(--space-2); }
}
