:root {
  --bg: #f2efe7;
  --bg-2: #e8e3d5;
  --bg-3: #dcd5c0;
  --fg: #1e241c;
  --fg-2: #3c4238;
  --fg-3: #6b6d5f;
  --fg-4: #8f9181;
  --line: rgba(30, 36, 28, 0.14);
  --line-2: rgba(30, 36, 28, 0.08);
  --forest: #2f3a2c;
  --forest-deep: #1f2a1d;
  --moss: #627a58;
  --teal: #3c6a6a;
  --ocker: #b58a48;
  --rust: #a65a2a;
  --paper: #faf7ee;

  --serif: "Fraunces", "Source Serif 4", Georgia, serif;
  --sans: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "DM Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* a11y adjustable */
  --a11y-font-scale: 1;
  --a11y-line: 1.55;
  --a11y-letter: 0;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: var(--a11y-line);
  letter-spacing: var(--a11y-letter);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* A11y: scale entire page reliably (works on headings, buttons, layout) */
html { zoom: var(--a11y-font-scale, 1); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }

/* a11y modes — contrast must override variant-b which is set after these by default */
body.a11y-contrast,
body.a11y-contrast.variant-b {
  --bg: #fff !important; --bg-2: #f4f4f0 !important; --bg-3: #e6e4d8 !important;
  --fg: #000 !important; --fg-2: #111 !important; --fg-3: #222 !important; --fg-4: #333 !important;
  --forest: #000 !important; --forest-deep: #000 !important;
  --moss: #1a3a10 !important; --paper: #fff !important;
  --line: rgba(0,0,0,0.6) !important; --line-2: rgba(0,0,0,0.35) !important;
}
body.a11y-contrast .place-card { background: #fff !important; color: #000 !important; border: 2px solid #000; }
body.a11y-contrast .place-card .sub,
body.a11y-contrast .place-card .code,
body.a11y-contrast .place-card .note,
body.a11y-contrast .place-card .unit { color: #222 !important; }
body.a11y-contrast .blog-card { background: #fff !important; color: #000 !important; border: 2px solid #000; }
body.a11y-contrast .stats-strip,
body.a11y-contrast .activities,
body.a11y-contrast .cta-band,
body.a11y-contrast .footer { background: #fff !important; color: #000 !important; }
body.a11y-contrast .activities .h-1,
body.a11y-contrast .cta-band h2,
body.a11y-contrast .footer * { color: #000 !important; }
body.a11y-contrast .hero-bg-shade { background: rgba(255,255,255,0.85) !important; }

/* Buttons must stay visible in contrast mode (overrides ghost-on-light bug) */
body.a11y-contrast .btn-primary,
body.a11y-contrast .btn-header {
  background: #000 !important;
  color: #fff !important;
  border: 2px solid #000 !important;
}
body.a11y-contrast .btn-inverse {
  background: #fff !important;
  color: #000 !important;
  border: 2px solid #000 !important;
}
body.a11y-contrast .btn-ghost,
body.a11y-contrast .hero-btn-ghost {
  background: #fff !important;
  color: #000 !important;
  border: 2px solid #000 !important;
}
body.a11y-contrast .hero-cta-row .btn { box-shadow: 0 0 0 1px #fff; }
body.a11y-contrast .hero-wordmark,
body.a11y-contrast .hero-sub,
body.a11y-contrast .hero-mark { color: #000 !important; }
body.a11y-contrast .hero-mark { filter: none !important; }
body.a11y-contrast .hero-scroll-cue {
  background: #000 !important;
  color: #fff !important;
}
body.a11y-contrast .lang-toggle,
body.a11y-contrast .nav-burger,
body.a11y-contrast .modal-close,
body.a11y-contrast .a11y-trigger { color: #000 !important; }
body.a11y-contrast .a11y-trigger { background: #fff !important; border: 2px solid #000 !important; }

body.a11y-grayscale { filter: grayscale(1); }

/* Hide images: cover <img>, <video>, .ph placeholders, hero background div, anything with bg-image */
body.a11y-hide-images img,
body.a11y-hide-images video,
body.a11y-hide-images .ph,
body.a11y-hide-images .hero-bg-img,
body.a11y-hide-images .hero-bg,
body.a11y-hide-images .hero-bg-shade { visibility: hidden !important; }
body.a11y-hide-images .hero-bg-img,
body.a11y-hide-images [style*="background-image"] { background-image: none !important; }
body.a11y-hide-images .hero { background: var(--forest-deep) !important; }
body.a11y-hide-images .place-card .img,
body.a11y-hide-images .g-tile,
body.a11y-hide-images .intro-image,
body.a11y-hide-images .bistro-img,
body.a11y-hide-images .about-img { background-image: none !important; }

body.a11y-stop-motion *, body.a11y-stop-motion *::before, body.a11y-stop-motion *::after { animation-duration: 0s !important; animation-delay: 0s !important; transition-duration: 0s !important; }
body.a11y-readable { --serif: "Atkinson Hyperlegible", Arial, sans-serif; --sans: "Atkinson Hyperlegible", Arial, sans-serif; }
body.a11y-links a:not(.unstyled) { text-decoration: underline !important; text-underline-offset: 2px; font-weight: 600; }

/* typography */
.kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.h-display {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(44px, 7vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-style: normal;
}
.h-display em { font-style: italic; color: var(--moss); font-weight: 400; }
.h-1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.015em;
}
.h-2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.lede {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.45;
  color: var(--fg-2);
  max-width: 58ch;
}
.body { font-size: 16px; line-height: 1.6; color: var(--fg-2); }
.mono { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; }

/* layout */
.container { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }
.row { display: flex; gap: 32px; align-items: flex-start; }
.rule { height: 1px; background: var(--line); width: 100%; }
.rule-dark { background: rgba(255,255,255,0.2); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--forest); color: var(--paper); }
.btn-primary:hover { background: var(--forest-deep); }
.btn-ghost { background: transparent; color: var(--fg); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--bg-2); }
.btn-inverse { background: var(--paper); color: var(--forest); }
.btn-inverse:hover { background: #fff; }
.btn-small { padding: 8px 14px; font-size: 12px; }
.btn-arrow::after { content: "→"; display: inline-block; transition: transform 0.25s ease; }
.btn-arrow:hover::after { transform: translateX(3px); }

/* header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 40;
  background: rgba(242, 239, 231, 0.86);
  backdrop-filter: saturate(140%) blur(14px);
  color: var(--fg);
  border-bottom: 1px solid var(--line-2);
  transition: background 0.3s ease, color 0.3s ease;
}
.site-header.on-hero { color: var(--fg); }
.site-header.scrolled {
  background: rgba(242, 239, 231, 0.92);
}
.site-header .inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-size: 19px; letter-spacing: -0.01em;
}
.brand-mark {
  width: 34px; height: 34px; border-radius: 50%;
  background: currentColor;
  mask: radial-gradient(circle at 40% 40%, transparent 30%, #000 31%);
  -webkit-mask: radial-gradient(circle at 40% 40%, transparent 30%, #000 31%);
  position: relative;
}
.nav-links {
  display: flex; align-items: center; gap: 22px;
  font-size: 14px; font-weight: 450;
  white-space: nowrap;
}
.nav-links a { opacity: 0.82; transition: opacity 0.2s ease; }
.nav-links a:hover { opacity: 1; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.lang-toggle {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  display: inline-flex; align-items: center; gap: 6px;
  opacity: 0.8;
}
.lang-toggle .active { font-weight: 600; opacity: 1; }
.lang-toggle .sep { opacity: 0.4; }

@media (max-width: 1040px) {
  .nav-links { display: none; }
}

/* hero */
.hero {
  position: relative;
  background: var(--forest-deep);
  overflow: hidden;
  padding-top: 72px;
}
.hero-stage {
  position: relative;
  height: calc(100vh - 72px);
  min-height: 640px;
  max-height: 920px;
  overflow: hidden;
}
.hero-video-single { position: absolute; inset: 0; overflow: hidden; }
.hero-video-single video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: var(--op, center);
  transform: scale(var(--scale, 1.2));
  transform-origin: center;
  transition: object-position 1.4s cubic-bezier(0.4, 0, 0.2, 1), transform 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-video-single::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,26,18,0.45) 0%, rgba(20,26,18,0.1) 30%, rgba(20,26,18,0.1) 55%, rgba(20,26,18,0.85) 100%);
  pointer-events: none;
}
.hero-overlay-content {
  position: relative; z-index: 3;
  height: 100%;
  display: flex; flex-direction: column;
  color: var(--paper);
}
.hero-content-inner {
  flex: 1;
  display: flex; flex-direction: column;
  padding: 32px 0 48px;
}
.hero-overlay-top {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.hero-kicker-top {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.88);
  display: inline-flex; align-items: center; gap: 10px;
}
.hero-kicker-top::before {
  content: ""; width: 28px; height: 1px; background: currentColor;
}
.hero-region-top {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.72);
}
.hero-overlay-bottom {
  margin-top: auto;
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: end;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 340;
  font-size: clamp(52px, 7.8vw, 124px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--paper);
  max-width: 14ch;
  margin: 0 0 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title em {
  font-style: italic; font-weight: 380;
  color: oklch(0.88 0.08 85);
}
.hero-lede {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(17px, 1.2vw, 20px); line-height: 1.5;
  color: rgba(250,247,238,0.92);
  max-width: 42ch;
  margin: 0 0 28px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-btn-ghost { color: var(--paper) !important; border-color: rgba(255,255,255,0.35) !important; }
.hero-btn-ghost:hover { background: rgba(255,255,255,0.1) !important; }

.hero-right-col {
  display: flex; flex-direction: column; gap: 24px;
  padding-bottom: 8px;
}
.scene-label {
  display: flex; align-items: center; gap: 14px;
  background: rgba(0,0,0,0.32);
  backdrop-filter: blur(10px);
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 4px;
  align-self: flex-start;
}
.scene-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: oklch(0.82 0.14 75);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.14);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.85); } }
.scene-text { display: flex; flex-direction: column; gap: 2px; }
.scene-badge {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.65);
}
.scene-name {
  font-family: var(--serif); font-style: italic; font-size: 22px;
  font-weight: 400; color: var(--paper);
  animation: fade-in 0.5s ease;
}
@keyframes fade-in { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }

.scene-ticks {
  display: flex; flex-direction: column; gap: 10px;
}
.scene-tick {
  display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: center;
  background: none; border: none; padding: 4px 0; cursor: pointer;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  text-align: left;
  transition: color 0.25s ease;
}
.scene-tick:hover { color: rgba(255,255,255,0.9); }
.scene-tick .tick-bar {
  height: 2px; background: rgba(255,255,255,0.24);
  position: relative; overflow: hidden;
  border-radius: 1px;
}
.scene-tick.done .tick-bar { background: rgba(255,255,255,0.7); }
.scene-tick.on { color: var(--paper); }
.scene-tick.on .tick-bar::after {
  content: ""; position: absolute; inset: 0;
  background: var(--paper);
  animation: fill 4.5s linear;
}
@keyframes fill { from { transform: translateX(-100%); } to { transform: translateX(0); } }

.hero-stats-band {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.hero-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  align-items: center;
}
.hero-stat .k {
  font-family: var(--serif); font-size: clamp(22px, 1.8vw, 30px); font-weight: 380;
  line-height: 1; letter-spacing: -0.01em; color: var(--fg);
}
.hero-stat .v {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--fg-3); margin-top: 6px;
}

@media (max-width: 1040px) {
  .hero-overlay-bottom { grid-template-columns: 1fr; gap: 32px; }
  .hero-right-col { padding-bottom: 0; }
  .scene-ticks { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .scene-tick { grid-template-columns: 24px auto; }
}
@media (max-width: 600px) {
  .hero-stats-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero-stage { min-height: 580px; height: auto; max-height: none; padding-bottom: 24px; }
  .hero-overlay-top { flex-wrap: wrap; gap: 10px; }
}

/* Gallery */
.gallery { background: var(--bg); padding-top: 100px; padding-bottom: 100px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
.g-tile {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  transition: transform 0.35s ease;
}
.g-tile:hover { transform: scale(1.01); }
.g-big { grid-column: span 2; grid-row: span 2; }
.g-tall { grid-column: span 1; grid-row: span 2; }
.g-wide { grid-column: span 2; grid-row: span 1; }
.g-meta {
  position: absolute; bottom: 12px; left: 14px; right: 14px;
  display: flex; align-items: center; gap: 10px;
  color: var(--paper);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.g-num {
  background: rgba(255,255,255,0.2); backdrop-filter: blur(4px);
  padding: 3px 7px; border-radius: 2px;
}
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .g-big, .g-wide { grid-column: span 2; }
  .g-tall { grid-column: span 1; }
}
/* Gallery: suppress duplicate label from .ph::before — .g-meta already shows it */
.g-tile.ph::before { content: none !important; }

/* section */
section { padding: 120px 0; }
@media (max-width: 720px) { section { padding: 80px 0; } }

.section-head {
  display: grid; grid-template-columns: 1fr 2fr; gap: 40px;
  margin-bottom: 72px;
  align-items: end;
}
.section-head .left .kicker { margin-bottom: 16px; }
.section-head .left .num {
  font-family: var(--serif); font-size: 14px; color: var(--fg-4); font-style: italic;
}
@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
}

/* intro */
.intro {
  background: var(--bg);
}
.intro-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center;
}
.intro-image {
  aspect-ratio: 4/5; border-radius: 4px;
}
.intro-text .h-1 { margin: 18px 0 28px; max-width: 14ch; }
.intro-text p { margin: 0 0 18px; max-width: 48ch; }
.intro-sig { margin-top: 28px; font-family: var(--serif); font-style: italic; color: var(--fg-3); }
@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* places */
.places { background: var(--bg-2); }
.places-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.place-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 24px 28px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 520px;
  background: var(--bg-2);
  transition: background 0.2s ease;
  cursor: pointer;
  position: relative;
}
.place-card:last-child { border-right: none; }
.place-card:hover { background: var(--bg); }
.place-card .code {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  color: var(--fg-4);
}
.place-card .img {
  aspect-ratio: 4/5; margin: 8px 0 4px;
}
.place-card .name {
  font-family: var(--serif); font-size: 26px; line-height: 1.05; font-weight: 400;
}
.place-card .sub {
  font-size: 13px; color: var(--fg-3); margin-top: -6px;
}
.place-card .price-row {
  display: flex; align-items: baseline; gap: 6px;
  border-top: 1px solid var(--line-2); padding-top: 14px;
  margin-top: auto;
}
.place-card .price {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
}
.place-card .unit { font-size: 12px; color: var(--fg-3); }
.place-card .note { font-size: 13px; color: var(--fg-3); line-height: 1.5; }
.place-card .ams {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.place-card .am {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.04em;
  padding: 4px 8px; border: 1px solid var(--line); border-radius: 99px;
  color: var(--fg-2);
}
.place-card .size {
  font-family: var(--mono); font-size: 11px; color: var(--fg-4);
}
@media (max-width: 1100px) {
  .places-grid { grid-template-columns: repeat(2, 1fr); }
  .place-card { border-right: 1px solid var(--line); }
  .place-card:nth-child(2n) { border-right: none; }
}
@media (max-width: 600px) {
  /* Carousel: each card takes full width — no peek */
  .places-grid {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding: 0;
    -webkit-overflow-scrolling: touch;
    border-top: none;
    margin: 0;
    padding: 0;
    scrollbar-width: none;
  }
  .places-grid::-webkit-scrollbar { display: none; }
  .place-card {
    flex: 0 0 100%;
    max-width: none;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    border: 1px solid var(--line);
    border-radius: 6px;
    min-height: auto;
    padding: 24px 20px;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  }
  .place-card + .place-card { margin-left: 16px; }
  /* All cards share one calm tone — multiple greens were too busy */
  .place-card,
  .place-card.tone-1,
  .place-card.tone-2,
  .place-card.tone-3,
  .place-card.tone-4,
  .place-card.tone-5 {
    background: var(--bg-2) !important;
    color: var(--fg) !important;
    border-color: var(--line) !important;
  }
  .place-card .sub,
  .place-card .code,
  .place-card .note,
  .place-card .unit { color: var(--fg-3) !important; }
  .place-card .price { color: var(--fg) !important; }
  .place-card .am {
    background: rgba(30,36,28,0.06) !important;
    color: var(--fg-2) !important;
    border-color: transparent !important;
  }
  .place-card .card-cta { color: var(--forest) !important; opacity: 1; transform: none; margin-top: 6px; }
  .place-card .img { aspect-ratio: 16/10; max-height: 200px; mix-blend-mode: normal; opacity: 1; }
  .place-card .name { font-size: 24px; }
  .places-foot { padding: 0 20px; flex-direction: column; align-items: stretch; gap: 16px; margin-top: 18px; }
  .places-foot .muted { font-size: 12px; }
}

/* Carousel arrows + dots — visible only on mobile */
.places-carousel-controls { display: none; }
@media (max-width: 600px) {
  .places-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
    padding: 0 20px;
  }
  .carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--fg);
    transition: background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
    cursor: pointer;
  }
  .carousel-btn:not(:disabled):hover { background: var(--bg-3); }
  .carousel-btn:not(:disabled):active { transform: scale(0.94); }
  .carousel-btn:disabled { opacity: 0.35; cursor: default; }
  .carousel-dots { display: flex; gap: 6px; align-items: center; padding: 0 4px; }
  .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--line);
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: background 0.25s ease, width 0.25s ease;
  }
  .carousel-dot.active {
    background: var(--forest);
    width: 22px;
    border-radius: 4px;
  }
}
.places-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 32px 0 0; gap: 24px;
}
.places-foot .muted { font-size: 13px; color: var(--fg-3); max-width: 48ch; }

/* activities */
.activities { background: var(--forest); color: var(--paper); }
.activities .kicker { color: rgba(255,255,255,0.6); }
.activities .section-head { color: var(--paper); }
.activities .section-head .num { color: rgba(255,255,255,0.5); }
.act-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.act-col {
  border-right: 1px solid rgba(255,255,255,0.2);
  padding: 40px 32px;
}
.act-col:last-child { border-right: none; }
.act-col h3 {
  font-family: var(--serif); font-weight: 350; font-size: 30px;
  margin: 0 0 28px; letter-spacing: -0.01em;
}
.act-col ul { list-style: none; padding: 0; margin: 0; }
.act-col li {
  padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; gap: 12px; font-size: 15px;
}
.act-col li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: oklch(0.78 0.12 75);
}
@media (max-width: 900px) {
  .act-grid { grid-template-columns: 1fr; }
  .act-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
}

/* bistro */
.bistro { background: var(--paper); }
.bistro-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center;
}
.bistro-img {
  aspect-ratio: 5/6;
}
.bistro-text .body { max-width: 42ch; margin: 24px 0 36px; }
.menu-card {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 28px 30px;
}
.menu-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 12px; margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.menu-head h4 {
  font-family: var(--serif); font-weight: 400; font-size: 18px; margin: 0; font-style: italic;
}
.menu-head .hours { font-family: var(--mono); font-size: 11px; color: var(--fg-3); letter-spacing: 0.08em; }
.menu-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0; gap: 14px;
  font-size: 14.5px;
}
.menu-row .line { flex: 1; position: relative; }
.menu-row .line::after {
  content: ""; position: absolute; bottom: 5px; left: 0; right: 8px;
  border-bottom: 1px dotted var(--line);
  z-index: 0;
}
.menu-row .line span {
  background: var(--bg); padding-right: 8px; position: relative; z-index: 1;
}
.menu-row .price { font-family: var(--mono); font-size: 12.5px; color: var(--fg-2); }
@media (max-width: 900px) { .bistro-grid { grid-template-columns: 1fr; gap: 40px; } }

/* about */
.about { background: var(--bg); }
.about-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start;
}
.about-text p { margin: 0 0 18px; max-width: 48ch; }
.timeline {
  border-left: 1px solid var(--line);
  padding-left: 28px;
  margin-top: 40px;
}
.tl-row {
  display: grid; grid-template-columns: 80px 1fr; gap: 24px;
  padding: 14px 0; position: relative;
  align-items: baseline;
}
.tl-row::before {
  content: ""; position: absolute; left: -32px; top: 22px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--moss);
}
.tl-row .y { font-family: var(--mono); font-size: 12px; color: var(--fg-3); letter-spacing: 0.08em; }
.tl-row .t { font-family: var(--serif); font-size: 18px; font-style: italic; color: var(--fg-2); font-weight: 400; }
.about-img { aspect-ratio: 4/5; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

/* faq */
.faq { background: var(--bg-2); }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px;
}
.faq-list { border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; text-align: left;
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  letter-spacing: -0.005em;
  gap: 16px;
}
.faq-q .plus {
  font-family: var(--mono); font-size: 16px; color: var(--fg-3);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--fg-2); font-size: 15.5px; line-height: 1.65;
  max-width: 54ch;
}
.faq-item.open .faq-a {
  max-height: 1200px; padding-top: 14px;
}
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; gap: 32px; } }

/* cta band */
.cta-band {
  background: var(--forest);
  color: var(--paper);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-band .inner {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: end;
}
.cta-band h2 {
  font-family: var(--serif); font-weight: 360;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1; letter-spacing: -0.02em;
  margin: 0; max-width: 14ch;
}
.cta-band p { color: rgba(255,255,255,0.8); max-width: 40ch; }
.cta-band .ctas { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
@media (max-width: 900px) { .cta-band .inner { grid-template-columns: 1fr; } }

/* footer */
.footer {
  background: var(--forest-deep);
  color: rgba(250,247,238,0.85);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  padding-bottom: 48px;
}
.footer-grid h4 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin: 0 0 18px; font-weight: 500;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-brand { font-family: var(--serif); font-size: 34px; line-height: 1; letter-spacing: -0.015em; color: var(--paper); margin-bottom: 20px; }
.footer-address { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.65); max-width: 38ch; }
.footer-bot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap; gap: 16px;
}
.footer-bot a { color: rgba(255,255,255,0.6); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* Booking modal */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(20, 24, 18, 0.6);
  backdrop-filter: blur(8px);
  display: flex; align-items: stretch; justify-content: stretch;
  animation: fade-in 0.3s ease;
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.modal-backdrop .sheet {
  margin: auto;
  width: min(1100px, 96vw);
  height: min(820px, 92vh);
  background: var(--bg);
  border-radius: 6px;
  display: flex; flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.modal-bar {
  background: var(--forest);
  color: var(--paper);
  padding: 18px 28px;
  display: flex; align-items: center; gap: 28px;
  flex-shrink: 0;
}
.modal-bar .title {
  font-family: var(--serif); font-size: 22px; font-weight: 400; line-height: 1;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.modal-steps {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  flex: 1;
  min-width: 0;
}
.modal-step {
  display: inline-flex; align-items: center; gap: 8px;
  opacity: 0.55; transition: opacity 0.2s ease;
  cursor: pointer;
  padding: 4px 0;
  border: none;
  line-height: 1.2;
  flex-shrink: 0;
}
.modal-step .s-num {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  flex-shrink: 0;
}
.modal-step .s-label {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.2;
  white-space: nowrap;
}
.modal-step.active { opacity: 1; }
.modal-step.active .s-label { font-weight: 600; }
.modal-step.done { opacity: 0.85; }

.modal-main {
  padding: 32px 40px;
  display: flex; flex-direction: column;
  overflow-y: auto;
  flex: 1;
}
.modal-close {
  position: absolute; top: 20px; right: 20px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 16px;
}
.field {
  display: flex; flex-direction: column; gap: 6px;
}
.field label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--fg-3);
}
.field input, .field select {
  background: transparent;
  border: none; border-bottom: 1px solid var(--line);
  padding: 10px 0; font-size: 16px;
  font-family: var(--serif); font-weight: 400;
  outline: none;
  transition: border-color 0.2s ease;
}
.field input:focus, .field select:focus { border-color: var(--forest); }
.fields-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px 28px;
}
.counter {
  display: flex; align-items: center; gap: 14px; padding: 6px 0;
  border-bottom: 1px solid var(--line);
}
.counter .cnt-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 13px;
}
.counter .cnt-val { font-family: var(--serif); font-size: 20px; min-width: 28px; text-align: center; }

.modal-foot {
  padding: 16px 40px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  border-top: 1px solid var(--line-2);
  background: var(--bg-2);
  flex-shrink: 0;
}
.modal-summary {
  display: flex; align-items: baseline; gap: 12px;
  font-size: 13px;
  color: var(--fg-2);
  flex-wrap: wrap;
  min-width: 0;
}
.modal-summary .sum-item {
  display: inline-flex; align-items: baseline; gap: 6px;
}
.modal-summary .sum-item .k {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.modal-summary .sum-item .v {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--fg);
}
.modal-summary .sum-sep {
  color: var(--fg-4);
  opacity: 0.6;
}
.modal-summary .sum-total {
  display: inline-flex; align-items: baseline; gap: 8px;
  margin-left: auto;
  padding-left: 16px;
  border-left: 1px solid var(--line);
}
.modal-summary .sum-total .k {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.modal-summary .sum-total .v {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--forest);
}
.modal-actions {
  display: flex; gap: 12px;
  flex-shrink: 0;
}

/* Success sheet override */
.sheet-success { display: flex; flex-direction: column; }
.sheet-success .modal-main { padding: 0; }
.step-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 28px;
}
.step-head h3 {
  font-family: var(--serif); font-weight: 400; font-size: 28px; margin: 0;
  letter-spacing: -0.01em;
}
.step-head .meta { font-family: var(--mono); font-size: 11px; color: var(--fg-3); letter-spacing: 0.08em; }

/* Map */
.map-wrap {
  flex: 1; min-height: 420px;
  position: relative;
  background: #cfd8c6;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-legend {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(250,247,238,0.94);
  padding: 10px 12px;
  display: flex; gap: 14px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em;
  color: var(--fg-2);
  border-radius: 3px;
  text-transform: uppercase;
}
.map-legend .swatch { display: inline-flex; align-items: center; gap: 6px; }
.map-legend .sw {
  width: 10px; height: 10px; border-radius: 50%; display: inline-block;
}
.pitch {
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
  transform-origin: center;
  transform-box: fill-box;
}
.pitch:hover { filter: brightness(1.15); transform: scale(1.15); }
.pitch.taken { opacity: 0.28; cursor: not-allowed; }
.pitch.selected { filter: brightness(1.3) drop-shadow(0 0 4px rgba(255,255,255,0.8)); transform: scale(1.3); }

.map-tooltip {
  position: absolute;
  background: var(--forest);
  color: var(--paper);
  padding: 12px 16px;
  font-size: 12.5px; line-height: 1.4;
  border-radius: 3px;
  pointer-events: none;
  transform: translate(-50%, calc(-100% - 14px));
  white-space: nowrap;
  font-family: var(--sans);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.map-tooltip::after {
  content: ""; position: absolute; bottom: -5px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px; background: var(--forest);
}
.map-tooltip .code {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.6); text-transform: uppercase;
}
.map-tooltip .name { font-family: var(--serif); font-weight: 400; font-size: 15px; }

/* Extras */
.extras-list { display: flex; flex-direction: column; gap: 2px; }
.extra-item {
  display: grid; grid-template-columns: auto 1fr auto auto; gap: 16px;
  align-items: center; padding: 18px 0;
  border-bottom: 1px solid var(--line-2);
}
.extra-check {
  width: 22px; height: 22px; border-radius: 4px;
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.extra-item.on .extra-check {
  background: var(--forest); border-color: var(--forest); color: var(--paper);
}
.extra-item.on .extra-check::after {
  content: "✓"; font-family: var(--mono); font-size: 12px;
}
.extra-label {
  font-family: var(--serif); font-size: 18px; font-weight: 400;
}
.extra-per { font-family: var(--mono); font-size: 11px; color: var(--fg-3); letter-spacing: 0.06em; }
.extra-price { font-family: var(--serif); font-size: 18px; font-weight: 400; }

/* Confirm step */
.confirm-box {
  background: var(--bg-2);
  padding: 28px 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px 28px;
  margin-top: 24px;
}
.confirm-box .big-total {
  grid-column: 1 / -1;
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px solid var(--line);
  padding-top: 18px; margin-top: 8px;
}
.confirm-box .big-total .label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-3); }
.confirm-box .big-total .val { font-family: var(--serif); font-size: 38px; font-weight: 380; letter-spacing: -0.01em; }
.confirm-box .row-line {
  display: flex; justify-content: space-between; font-size: 14.5px;
}
.confirm-box .row-line .k { color: var(--fg-3); }
.confirm-box .row-line .v { font-family: var(--serif); font-size: 16px; }

@media (max-width: 900px) {
  .modal-backdrop .sheet { grid-template-columns: 1fr; height: 100vh; width: 100vw; border-radius: 0; }
  .modal-side { padding: 20px; gap: 16px; }
  .modal-side .title { font-size: 22px; }
  .modal-steps { flex-direction: row; flex-wrap: wrap; }
  .modal-step { border-top: none; padding: 4px 0; }
  .modal-side .summary { display: none; }
  .modal-main { padding: 20px; }
  .fields-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* a11y panel */
.a11y-trigger {
  position: fixed; bottom: 24px; left: 24px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--forest); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}
.a11y-trigger:hover { transform: scale(1.06); }
.a11y-trigger svg { width: 26px; height: 26px; }

.a11y-panel {
  position: fixed; bottom: 94px; left: 24px; z-index: 92;
  width: 360px; max-width: calc(100vw - 48px);
  max-height: calc(100vh - 120px);
  background: var(--paper);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  overflow: hidden;
  display: flex; flex-direction: column;
  animation: slide-up 0.3s ease;
}
@keyframes slide-up { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.a11y-head {
  background: var(--forest);
  color: var(--paper);
  padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between;
  position: relative;
}
.a11y-head::after {
  content: ""; position: absolute; bottom: -10px; left: 30px;
  width: 20px; height: 20px; background: var(--forest);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.a11y-head .t { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; }
.a11y-head .t .avatar {
  width: 30px; height: 30px; border-radius: 50%; background: var(--paper); color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.a11y-body { overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.a11y-section h5 {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-3); margin: 6px 0 10px; font-weight: 500;
}
.a11y-section {
  background: var(--bg); border-radius: 12px; padding: 12px;
}
.a11y-opt {
  display: grid; grid-template-columns: 36px 1fr auto; gap: 10px; align-items: center;
  padding: 10px; border-radius: 8px;
  transition: background 0.15s ease;
  cursor: pointer; width: 100%; text-align: left;
}
.a11y-opt:hover { background: rgba(0,0,0,0.04); }
.a11y-opt .ic {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--fg); flex-shrink: 0;
}
.a11y-opt .lb { font-size: 14px; }
.a11y-opt .toggle {
  display: flex; gap: 4px;
}
.a11y-opt .toggle .pip {
  width: 20px; height: 10px; border-radius: 99px;
  background: rgba(0,0,0,0.12);
}
.a11y-opt .toggle .pip.on { background: var(--forest); }
.a11y-opt.active { background: rgba(47, 58, 44, 0.07); }

.a11y-foot {
  padding: 14px 18px;
  display: flex; justify-content: center; gap: 10px;
  border-top: 1px solid var(--line-2);
}
.a11y-foot button {
  padding: 8px 14px; border-radius: 99px;
  font-size: 13px; font-family: var(--sans);
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; gap: 6px;
}

/* Tweaks panel */
.tweaks-panel {
  position: fixed; bottom: 24px; right: 24px; z-index: 88;
  width: 280px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.18);
  padding: 18px;
  font-size: 13px;
}
.tweaks-panel h5 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--fg-3);
  margin: 0 0 14px;
}
.tweak-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.tweak-row label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; color: var(--fg-3); text-transform: uppercase; }
.tweak-opts { display: flex; gap: 4px; flex-wrap: wrap; }
.tweak-opts button {
  padding: 6px 10px; border: 1px solid var(--line); border-radius: 99px;
  font-size: 11.5px; font-family: var(--sans);
}
.tweak-opts button.on { background: var(--forest); color: var(--paper); border-color: var(--forest); }

/* Variant B styling */
body.variant-b {
  --bg: #e9e5d6;
  --bg-2: #dfd9c5;
  --forest: #3d5134;
  --forest-deep: #2a3a24;
  --moss: #7a9464;
}
body.variant-b .hero-title { font-weight: 420; }
body.variant-b .place-card { border-radius: 0; }
body.variant-b .place-card .img { border-radius: 2px; }
body.variant-b .h-display em { color: oklch(0.72 0.1 75); }

/* ---------- Legal modal (Impressum / Datenschutz / AGB) ---------- */
.legal-sheet {
  margin: auto;
  width: min(820px, 96vw);
  max-height: 92vh;
  background: var(--bg);
  border-radius: 6px;
  position: relative;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.legal-inner { padding: 56px 56px 48px; }
@media (max-width: 700px) {
  .legal-sheet { width: 100vw; height: 100vh; max-height: 100vh; border-radius: 0; }
  .legal-inner { padding: 56px 24px 32px; }
}

/* ---------- Form: validation states + success ---------- */
.field input.invalid, .field select.invalid, .field textarea.invalid {
  border-color: #b53d2c;
  background: rgba(181, 61, 44, 0.04);
}
.field-error {
  font-family: var(--mono);
  font-size: 11px;
  color: #b53d2c;
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.consent-row {
  display: flex; gap: 12px; align-items: flex-start;
  margin-top: 24px; padding: 14px 16px;
  background: var(--bg-2);
  border-radius: 4px;
  font-size: 13px; line-height: 1.55;
}
.consent-row input[type="checkbox"] {
  margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0; cursor: pointer;
}
.consent-row label { cursor: pointer; }
.consent-row a, .consent-row button.link {
  color: var(--forest); text-decoration: underline; text-underline-offset: 2px;
  background: none; border: 0; padding: 0; font: inherit; cursor: pointer;
}
.consent-row.invalid { background: rgba(181, 61, 44, 0.08); }

.booking-success {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 32px 16px; gap: 18px; min-height: 320px;
}
.booking-success .check {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--forest); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
}
.booking-success h3 {
  font-family: var(--serif); font-size: 36px; font-weight: 380;
  letter-spacing: -0.01em; line-height: 1.1; max-width: 14ch;
}
.booking-success p { max-width: 44ch; line-height: 1.6; color: var(--fg-2, var(--fg)); }

.required-hint {
  font-family: var(--mono); font-size: 11px; color: var(--fg-3);
  letter-spacing: 0.04em; margin-top: 4px;
}

/* ---------- Hero video fallback (gradient) when video fails to load ---------- */
.hero-video-fallback {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.18), transparent 60%),
    linear-gradient(180deg, #6e8a86 0%, #4a6663 50%, #2f4642 100%);
}

/* Make sure burger button doesn't affect desktop spacing */
.nav-right { gap: 14px; align-items: center; display: flex; }

/* ---------- Hero v2: full-viewport image stage with centered wordmark ---------- */
.hero.hero-full {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.6s ease, transform 8s ease;
  will-change: opacity, transform;
}
.hero-bg-img.is-active {
  opacity: 0.3;
  transform: scale(1);
}
.hero-bg { background: var(--forest-deep, #1f2a1f); }
.hero-bg-shade {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,30,20,0.25) 0%, rgba(20,30,20,0.05) 30%, rgba(20,30,20,0.35) 100%),
    radial-gradient(ellipse at center, rgba(0,0,0,0) 45%, rgba(0,0,0,0.2) 100%);
}

.hero-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
  gap: 28px;
}
.hero-mark {
  width: clamp(120px, 18vw, 220px);
  height: auto;
  color: #fff;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35));
  animation: hero-mark-in 1.2s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes hero-mark-in {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to { opacity: 1; transform: none; }
}
.hero-wordmark {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(40px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 22px rgba(0,0,0,0.35);
  animation: hero-mark-in 1.2s cubic-bezier(.2,.8,.2,1) 0.15s both;
}
.hero-sub {
  font-family: var(--mono);
  font-size: clamp(11px, 1.1vw, 13px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  animation: hero-mark-in 1.2s cubic-bezier(.2,.8,.2,1) 0.3s both;
}

/* Stats band stays at bottom of full-viewport hero */
.hero.hero-full .hero-stats-band {
  position: relative;
  width: 100%;
  background: rgba(238, 232, 214, 0.95);
  backdrop-filter: blur(6px);
  color: var(--fg, #1d1d1b);
  padding: 22px 0;
  z-index: 2;
}
.hero.hero-full .hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: end;
}
.hero.hero-full .hero-stat .k {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
}
.hero.hero-full .hero-stat .v {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3, rgba(0,0,0,0.55));
  margin-top: 4px;
}
@media (max-width: 720px) {
  .hero.hero-full .hero-stats-row { grid-template-columns: repeat(2, 1fr); gap: 18px 24px; }
}

/* Header bleibt immer dunkel, auch über dem Hero */
.site-header,
.site-header.on-hero {
  color: var(--fg);
  background: rgba(242, 239, 231, 0.92);
}
.site-header .brand,
.site-header .nav-links a,
.site-header .lang-toggle,
.site-header .nav-burger { color: var(--fg); }

/* ---------- Stats strip (own section between hero and gallery) ---------- */
.stats-strip {
  background: var(--paper, #eee8d6);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  padding: 36px 0;
}
.stats-strip .stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: end;
}
.stats-strip .stats-item .k {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.stats-strip .stats-item .v {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3, rgba(0,0,0,0.55));
  margin-top: 6px;
}
@media (max-width: 720px) {
  .stats-strip { padding: 28px 0; }
  .stats-strip .stats-row { grid-template-columns: repeat(2, 1fr); gap: 22px 24px; }
}

/* ---------- Lake aerial illustration ---------- */
.lake-view { padding: 140px 0; background: var(--bg); }
.lake-view .section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.lake-view .section-head .num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; color: var(--fg-3); }
.lake-svg-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 78vh;
  overflow: hidden;
  border-radius: 4px;
  background: #2d5052;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}
.lake-svg { width: 100%; height: 100%; display: block; }

/* Wave animation: continuous horizontal drift */
@keyframes lake-wave-drift {
  from { transform: translateX(0); }
  to   { transform: translateX(-200px); }
}
.lake-svg .wave {
  animation: lake-wave-drift 18s linear infinite;
  transform-origin: center;
}
.lake-svg .wave-2 { animation-duration: 24s; animation-direction: reverse; }
.lake-svg .wave-3 { animation-duration: 30s; }
.lake-svg .wave-4 { animation-duration: 22s; animation-direction: reverse; }
.lake-svg .wave-5 { animation-duration: 28s; }

/* Shimmer pulse on water */
@keyframes lake-shimmer-pulse {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 0.85; }
}
.lake-svg .shimmer { animation: lake-shimmer-pulse 4s ease-in-out infinite; }

/* Boat gentle bob */
@keyframes lake-boat-bob {
  0%, 100% { transform: translate(470px, 420px) rotate(-2deg); }
  50%      { transform: translate(472px, 422px) rotate(2deg); }
}
.lake-svg .boat { animation: lake-boat-bob 6s ease-in-out infinite; transform-origin: center; }

/* Birds: each flies its own arc, wings flap */
@keyframes bird-flap {
  0%, 100% { transform: scaleY(1); }
  50%      { transform: scaleY(0.4); }
}
@keyframes bird-fly-1 {
  from { transform: translate(80px, 110px) scale(1); }
  to   { transform: translate(640px, 80px) scale(1); }
}
@keyframes bird-fly-2 {
  from { transform: translate(720px, 150px) scale(1); }
  to   { transform: translate(120px, 200px) scale(1); }
}
@keyframes bird-fly-3 {
  from { transform: translate(180px, 210px) scale(1); }
  to   { transform: translate(580px, 140px) scale(1); }
}
@keyframes bird-fly-4 {
  from { transform: translate(560px, 90px) scale(1); }
  to   { transform: translate(260px, 170px) scale(1); }
}
.lake-svg .bird path { animation: bird-flap 0.8s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.lake-svg .bird-1 { animation: bird-fly-1 22s linear infinite; }
.lake-svg .bird-2 { animation: bird-fly-2 28s linear infinite; }
.lake-svg .bird-3 { animation: bird-fly-3 26s linear infinite; }
.lake-svg .bird-4 { animation: bird-fly-4 30s linear infinite; }

.lake-caption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-top: 18px;
  text-align: right;
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .lake-svg .wave,
  .lake-svg .shimmer,
  .lake-svg .boat,
  .lake-svg .bird,
  .lake-svg .bird path { animation: none !important; }
}
body.a11y-stop-motion .lake-svg .wave,
body.a11y-stop-motion .lake-svg .shimmer,
body.a11y-stop-motion .lake-svg .boat,
body.a11y-stop-motion .lake-svg .bird,
body.a11y-stop-motion .lake-svg .bird path { animation: none !important; }

@media (max-width: 720px) {
  .lake-view { padding: 90px 0; }
  .lake-view .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
}

/* ---------- Section rhythm: balanced spacing ---------- */
.gallery, .intro, .places, .activities, .bistro, .about, .faq {
  padding-top: 140px;
  padding-bottom: 140px;
}
.stats-strip { padding: 56px 0; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.cta-band { padding-top: 130px; padding-bottom: 130px; }
@media (max-width: 1040px) {
  .gallery, .intro, .places, .activities, .bistro, .about, .faq {
    padding-top: 110px;
    padding-bottom: 110px;
  }
  .cta-band { padding-top: 100px; padding-bottom: 100px; }
}
@media (max-width: 720px) {
  .gallery, .intro, .places, .activities, .bistro, .about, .faq {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .stats-strip { padding: 40px 0; }
  .cta-band { padding-top: 76px; padding-bottom: 76px; }
}

/* ---------- Global focus-visible (WCAG 2.4.7) ---------- */
*:focus { outline: none; }
*:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 2px;
  border-radius: 2px;
}
.btn:focus-visible,
.lang-toggle:focus-visible,
.nav-burger:focus-visible,
.modal-close:focus-visible,
.a11y-trigger:focus-visible,
.faq-q:focus-visible,
.place-card:focus-visible,
.scene-tick:focus-visible {
  outline: 3px solid #ffd400;
  outline-offset: 3px;
}
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 0;
  border-color: var(--forest);
}
/* Skip link visible state — already styled inline; reinforce */
.skip-link:focus-visible { outline: 3px solid #ffd400; outline-offset: 2px; }

/* ---------- Touch-target sizing (WCAG 2.5.8) ---------- */
.cnt-btn { min-width: 36px; min-height: 36px; }
.lang-toggle { padding: 8px 4px; }
.nav-burger { padding: 10px; }
.modal-close { width: 36px; height: 36px; }

/* SR-only utility for invisible-but-readable text */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ---------- Link hover: underline slides in from left, out to right ---------- */
.nav-links a,
.footer ul a,
.footer ul button.unstyled {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.nav-links a::after,
.footer ul a::after,
.footer ul button.unstyled::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
  pointer-events: none;
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.footer ul a:hover::after,
.footer ul a:focus-visible::after,
.footer ul button.unstyled:hover::after,
.footer ul button.unstyled:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* a11y mode (links highlighted): keep underline static */
body.a11y-links .nav-links a::after,
body.a11y-links .footer ul a::after,
body.a11y-links .footer ul button.unstyled::after { display: none; }

@media (prefers-reduced-motion: reduce) {
  .nav-links a::after,
  .footer ul a::after,
  .footer ul button.unstyled::after { transition: none; }
}

/* ---------- Hero CTA row + scroll cue ---------- */
.hero-cta-row {
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
  animation: hero-mark-in 1.2s cubic-bezier(.2,.8,.2,1) 0.45s both;
}
.hero-btn-ghost {
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.45) !important;
  background: transparent !important;
}
.hero-btn-ghost:hover { background: rgba(255,255,255,0.12) !important; }
.hero-cta-row .btn-inverse { background: #fff; color: var(--forest); }

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  z-index: 3;
  animation: scroll-cue-bounce 2.4s ease-in-out infinite;
}
.hero-scroll-cue:hover { background: rgba(255,255,255,0.3); }
@keyframes scroll-cue-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 6px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue { animation: none; }
}

/* ---------- Place-card now <button> — restore left-align + add hover/CTA ---------- */
.place-card {
  text-align: left;
  width: 100%;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}
.place-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}
.place-card .card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.place-card:hover .card-cta,
.place-card:focus-visible .card-cta {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Stats-strip context anchor + smaller stat label hint ---------- */
.stats-strip { scroll-margin-top: 90px; }

/* ---------- Heading h3 in footer should match prior h4 visual ---------- */
.footer h3 {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin: 0 0 14px;
}

/* ---------- Bistro h3 (was h4) — match menu-head sizing ---------- */
.menu-head h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.01em;
}

/* Anchor offset for smooth-scroll into sections beneath fixed header */
section[id] { scroll-margin-top: 90px; }

/* ---------- Step 4 (Confirm): two-column layout, no scroll on desktop ---------- */
.step-confirm-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 32px;
  margin-top: 8px;
  align-items: start;
}
.confirm-form { min-width: 0; }
.confirm-intro {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0 0 8px;
  max-width: 46ch;
}
.confirm-fields { gap: 14px 18px; margin-top: 12px; }
.confirm-fields .field input { padding: 10px 12px; font-size: 14px; }
.confirm-fields .field label { font-size: 9.5px; }
.step-confirm-grid .consent-row {
  margin-top: 14px;
  padding: 12px 14px;
  font-size: 12.5px;
  line-height: 1.45;
}
.step-confirm-grid .confirm-box {
  margin-top: 0;
  padding: 18px 20px;
  position: sticky;
  top: 0;
}
.step-confirm-grid .confirm-box .row-line {
  font-size: 12.5px;
  padding: 6px 0;
}
.step-confirm-grid .confirm-box .big-total {
  margin-top: 10px;
  padding-top: 10px;
}

@media (max-width: 900px) {
  .step-confirm-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .step-confirm-grid .confirm-box { position: static; }
}

/* ---------- Place-cards: one color per type ---------- */
/* tone-1 = Stellplatz · hellgrün */
/* tone-2 = Zeltplatz · dunkelgrün */
/* tone-3 = Mobilheim · grau */
/* tone-4 = Safarizelt · beige */
/* tone-5 = Seehütte · blau */
.place-card.tone-1 { background: #d4e3b8; color: #1f2a1d; }
.place-card.tone-2 { background: #2f4628; color: #faf7ee; }
.place-card.tone-3 { background: #b8b6ad; color: #1f2a1d; }
.place-card.tone-4 { background: #d8c79c; color: #2a2218; }
.place-card.tone-5 { background: #6a8ca0; color: #faf7ee; }

/* Light cards (dark text): tone-1, tone-3, tone-4 */
.place-card.tone-1 .sub,
.place-card.tone-3 .sub,
.place-card.tone-4 .sub { color: rgba(31,42,29,0.65); }
.place-card.tone-1 .code,
.place-card.tone-3 .code,
.place-card.tone-4 .code { color: rgba(31,42,29,0.55); }
.place-card.tone-1 .note,
.place-card.tone-3 .note,
.place-card.tone-4 .note { color: rgba(31,42,29,0.7); }
.place-card.tone-1 .am,
.place-card.tone-3 .am,
.place-card.tone-4 .am {
  background: rgba(31,42,29,0.08);
  color: rgba(31,42,29,0.85);
  border-color: transparent;
}
.place-card.tone-1 .price,
.place-card.tone-3 .price,
.place-card.tone-4 .price { color: #1f2a1d; }
.place-card.tone-1 .unit,
.place-card.tone-3 .unit,
.place-card.tone-4 .unit { color: rgba(31,42,29,0.6); }
.place-card.tone-1 .card-cta,
.place-card.tone-3 .card-cta,
.place-card.tone-4 .card-cta { color: #1f2a1d; }

/* Dark cards (light text): tone-2, tone-5 */
.place-card.tone-2 .sub,
.place-card.tone-5 .sub { color: rgba(250,247,238,0.78); }
.place-card.tone-2 .code,
.place-card.tone-5 .code { color: rgba(250,247,238,0.7); }
.place-card.tone-2 .note,
.place-card.tone-5 .note { color: rgba(250,247,238,0.85); }
.place-card.tone-2 .am,
.place-card.tone-5 .am {
  background: rgba(250,247,238,0.18);
  color: rgba(250,247,238,0.95);
  border-color: transparent;
}
.place-card.tone-2 .price,
.place-card.tone-5 .price { color: #faf7ee; }
.place-card.tone-2 .unit,
.place-card.tone-5 .unit { color: rgba(250,247,238,0.72); }
.place-card.tone-2 .card-cta,
.place-card.tone-5 .card-cta { color: #faf7ee; }

/* Image tiles inside coloured cards — neutral & subtle, not colourful */
.place-card .img.ph,
.place-card .img.ph.moss,
.place-card .img.ph.teal,
.place-card .img.ph.ocker,
.place-card .img.ph.dark {
  background-color: rgba(0, 0, 0, 0.08);
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 12px,
    rgba(0, 0, 0, 0.05) 12px 13px
  );
}
.place-card.tone-2 .img.ph,
.place-card.tone-2 .img.ph.moss,
.place-card.tone-2 .img.ph.teal,
.place-card.tone-2 .img.ph.ocker,
.place-card.tone-2 .img.ph.dark,
.place-card.tone-5 .img.ph,
.place-card.tone-5 .img.ph.moss,
.place-card.tone-5 .img.ph.teal,
.place-card.tone-5 .img.ph.ocker,
.place-card.tone-5 .img.ph.dark {
  background-color: rgba(255, 255, 255, 0.12);
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 12px,
    rgba(255, 255, 255, 0.08) 12px 13px
  );
}
.place-card .img.ph::before { color: rgba(0, 0, 0, 0.45); }
.place-card.tone-2 .img.ph::before,
.place-card.tone-5 .img.ph::before { color: rgba(255, 255, 255, 0.65); }

/* Soften image tile inside coloured card */
.place-card.tone-3 .img,
.place-card.tone-4 .img,
.place-card.tone-5 .img { mix-blend-mode: luminosity; opacity: 0.85; }

/* ---------- Blog page ---------- */
.blog-page { background: var(--bg); }
.blog-hero {
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--line-2);
}
.blog-hero .kicker { margin-bottom: 18px; }
.blog-headline {
  margin: 0 0 24px;
  max-width: 18ch;
}
.blog-hero .lede { max-width: 56ch; }

.blog-grid-section { padding: 90px 0 140px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1040px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; gap: 18px; } }

.blog-card {
  display: flex; flex-direction: column;
  padding: 28px 26px 24px;
  min-height: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  position: relative;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}
.blog-card.tone-1 { background: #e3ecd4; color: #1f2a1d; }
.blog-card.tone-2 { background: #b9c89c; color: #1f2a1d; }
.blog-card.tone-3 { background: #7d9166; color: #faf7ee; }
.blog-card.tone-4 { background: #4f6248; color: #faf7ee; }
.blog-card.tone-5 { background: #2c3a28; color: #faf7ee; }

.blog-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 18px;
  opacity: 0.8;
}
.blog-meta .dot { opacity: 0.5; }

.blog-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.blog-excerpt {
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 0 auto;
  opacity: 0.92;
  max-width: 38ch;
}
.blog-read {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid currentColor;
  opacity: 0.85;
}

/* ---------- Header-buchen Button (between btn-small and full btn) ---------- */
.btn-header {
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 720px) {
  .btn-header { padding: 10px 16px; font-size: 13px; }
}

/* ---------- Mobile: hide brand text, keep only the mark ---------- */
@media (max-width: 720px) {
  .brand-text {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
  }
}

/* =========================================================
   Mobile audit fixes (UX Architect findings)
   ========================================================= */

/* P2: Tap-highlight + touch-action global */
html { -webkit-tap-highlight-color: rgba(60,106,106,0.15); }
button, a, [role="button"] { touch-action: manipulation; }

/* P1: Hyphens for long German compounds */
body { hyphens: auto; -webkit-hyphens: auto; word-break: normal; overflow-wrap: anywhere; }
.hero-wordmark, .h-1, .h-display, .h-2, .btn, .mono, .footer-brand, .nav-links a, .lang-toggle { hyphens: manual; word-break: normal; overflow-wrap: normal; }

/* P0-3: iOS prevents zoom on focus only when input font-size >= 16px */
.field input, .field select, .field textarea { font-size: 16px; }
.confirm-fields .field input { font-size: 16px !important; padding: 12px 12px; }
.counter .cnt-btn, .cnt-btn { width: 44px; height: 44px; font-size: 18px; }

/* P1: Modal-close 44x44 minimum */
.modal-close { width: 44px; height: 44px; }

/* P2: Legal modal 100svh */
.legal-sheet { max-height: 92svh; }

/* P2: FAQ-Q min-height */
.faq-q { min-height: 44px; }

/* P0-4: A11y-trigger smaller on mobile + hidden when modal open */
@media (max-width: 480px) {
  .a11y-trigger { width: 48px; height: 48px; bottom: 16px; left: 16px; }
  .a11y-trigger svg { width: 22px; height: 22px; }
  .a11y-panel { left: 12px; right: 12px; width: auto; max-width: none; bottom: 76px; max-height: calc(100svh - 100px); }
}
body:has(.modal-backdrop) .a11y-trigger { display: none; }

/* ====== Mobile breakpoint refinements ====== */
@media (max-width: 720px) {
  /* Header backdrop — lighter blur for performance */
  .site-header { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
  body { overscroll-behavior-y: none; }

  /* Burger-Menu: full-screen drawer, gap to 72px header */
  .nav-links.is-mobile-open, .nav-links.is-mobile-closing {
    position: fixed !important;
    top: 72px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: calc(100svh - 72px) !important;
    padding: 24px !important;
    gap: 4px !important;
    overflow-y: auto !important;
    align-items: stretch !important;
  }
  .nav-links.is-mobile-open a,
  .nav-links.is-mobile-closing a {
    padding: 16px 4px !important;
    font-size: 20px !important;
    border-bottom: 1px solid var(--line-2);
    opacity: 1 !important;
  }
  .nav-links.is-mobile-open a:last-child,
  .nav-links.is-mobile-closing a:last-child { border-bottom: none; }

  /* Activities: less side-padding on cards */
  .act-col { padding: 32px 0; }
  .act-col h3 { font-size: 24px; margin-bottom: 18px; }

  /* Hero scroll-cue smaller */
  .hero-scroll-cue { bottom: 18px; width: 36px; height: 36px; }
}

/* P0-1: Hero compact on small phones */
@media (max-width: 480px) {
  .hero-center { padding: 96px 20px 96px; gap: 18px; }
  .hero-mark { width: 92px; }
  .hero-wordmark { font-size: 38px; line-height: 1; }
  .hero-sub { font-size: 11px; }
  .hero-cta-row { flex-direction: column; width: 100%; align-items: stretch; max-width: 280px; margin: 16px auto 0; }
  .hero-cta-row .btn { width: 100%; }

  /* CTA-Band: stacked full-width buttons */
  .cta-band h2 { font-size: 32px; max-width: none; line-height: 1.1; }
  .cta-band .ctas { flex-direction: column; align-items: stretch; }
  .cta-band .ctas .btn { width: 100%; }

  /* Bistro menu: stack price below name */
  .menu-row { flex-direction: column; gap: 2px; align-items: flex-start; padding: 12px 0; border-bottom: 1px dotted var(--line); }
  .menu-row .line::after { display: none; }
  .menu-row .line span { background: transparent; padding: 0; }
  .menu-row .price { align-self: flex-end; margin-top: -22px; }
}

/* Booking-modal mobile — full-screen, compact bar + stacked summary */
@media (max-width: 900px) {
  .modal-backdrop .sheet {
    height: 100svh;
    max-height: 100svh;
    width: 100vw;
    border-radius: 0;
  }
  .modal-bar {
    padding: 14px 20px;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
  }
  .modal-bar .title {
    font-size: 16px;
    flex: 1 0 auto;
  }
  .modal-steps {
    gap: 8px;
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
    justify-content: space-between;
  }
  .modal-step {
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
    gap: 4px;
  }
  .modal-step .s-label {
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .modal-step .s-num { font-size: 10px; }
  .modal-main { padding: 20px 16px 16px; }
  .modal-close { top: 8px; right: 8px; background: rgba(255,255,255,0.95); width: 44px; height: 44px; }
  /* Footer stacks: summary on top, actions below */
  .modal-foot {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 16px;
    gap: 12px;
  }
  .modal-summary {
    font-size: 12px;
    gap: 8px;
    width: 100%;
    flex-wrap: wrap;
  }
  .modal-summary .sum-total {
    margin-left: auto;
    padding-left: 12px;
  }
  .modal-summary .sum-total .v { font-size: 20px; }
  .modal-actions {
    width: 100%;
    justify-content: space-between;
  }
  .modal-actions .btn { flex: 1; }
}
/* Tiny phones: hide labels of inactive steps to guarantee fit */
@media (max-width: 380px) {
  .modal-step:not(.active) .s-label { display: none; }
}

/* P1: Place-card tone-3/4/5 image NOT luminosity on mobile */
@media (max-width: 600px) {
  .place-card.tone-3 .img,
  .place-card.tone-4 .img,
  .place-card.tone-5 .img { mix-blend-mode: normal; opacity: 1; }
}

/* ========================================================
   Burger drawer: liquid metaball background animation
   (Pure SVG + CSS gooey filter — no library dependency)
   ======================================================== */
.nav-links.is-mobile-open, .nav-links.is-mobile-closing { position: fixed; isolation: isolate; }
.nav-liquid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.nav-links.is-mobile-open > a,
.nav-links.is-mobile-closing > a { position: relative; z-index: 2; }
.nav-liquid-svg {
  width: 100%;
  height: 100%;
  display: block;
}
/* Each blob orbits a slow elliptical path while breathing in scale */
.nav-liquid .blob {
  transform-origin: center;
  transform-box: fill-box;
  will-change: transform;
}
.nav-liquid .b1 { animation: nav-blob-1 14s ease-in-out infinite; }
.nav-liquid .b2 { animation: nav-blob-2 18s ease-in-out infinite; }
.nav-liquid .b3 { animation: nav-blob-3 16s ease-in-out infinite; }
.nav-liquid .b4 { animation: nav-blob-4 20s ease-in-out infinite; }
.nav-liquid .b5 { animation: nav-blob-5 12s ease-in-out infinite; }

@keyframes nav-blob-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%      { transform: translate(60px, 40px) scale(1.25); }
  50%      { transform: translate(120px, 80px) scale(1.05); }
  75%      { transform: translate(40px, 120px) scale(1.4); }
}
@keyframes nav-blob-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  30%      { transform: translate(-90px, 60px) scale(1.3); }
  60%      { transform: translate(-40px, -80px) scale(0.95); }
}
@keyframes nav-blob-3 {
  0%, 100% { transform: translate(0, 0) scale(1.05); }
  35%      { transform: translate(80px, -60px) scale(1.35); }
  70%      { transform: translate(20px, 50px) scale(0.9); }
}
@keyframes nav-blob-4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%      { transform: translate(-70px, -100px) scale(1.4); }
  80%      { transform: translate(40px, -50px) scale(1.1); }
}
@keyframes nav-blob-5 {
  0%, 100% { transform: translate(0, 0) scale(0.9); }
  50%      { transform: translate(60px, 80px) scale(1.5); }
}

/* Drawer base — opaque enough that hero image doesn't bleed through; blobs sit ON TOP via stacking */
@media (max-width: 1040px) {
  .nav-links.is-mobile-open, .nav-links.is-mobile-closing {
    background: var(--paper, #faf7ee) !important;
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-liquid .blob { animation: none !important; }
}
body.a11y-stop-motion .nav-liquid .blob { animation: none !important; }

/* ========================================================
   Burger drawer open/close — liquid clip-path animation
   ======================================================== */

/* Drawer reveals from the burger button (top-right) as a growing circle */
@media (max-width: 1040px) {
  .nav-links.is-mobile-open {
    animation: nav-drawer-open 0.55s cubic-bezier(0.65, 0, 0.25, 1) both;
  }
  .nav-links.is-mobile-closing {
    animation: nav-drawer-close 0.45s cubic-bezier(0.65, 0, 0.25, 1) both;
    pointer-events: none;
  }
}

@keyframes nav-drawer-open {
  from {
    clip-path: circle(0% at calc(100% - 30px) -36px);
    opacity: 0.4;
  }
  to {
    clip-path: circle(150% at calc(100% - 30px) -36px);
    opacity: 1;
  }
}
@keyframes nav-drawer-close {
  from {
    clip-path: circle(150% at calc(100% - 30px) -36px);
    opacity: 1;
  }
  to {
    clip-path: circle(0% at calc(100% - 30px) -36px);
    opacity: 0.6;
  }
}

/* Blobs burst out from the burger origin while the drawer reveals */
.nav-links.is-mobile-open .nav-liquid .blob {
  animation:
    nav-blob-burst-in 0.7s cubic-bezier(0.4, 0, 0.2, 1) both,
    nav-blob-1 14s ease-in-out 0.7s infinite;
}
.nav-links.is-mobile-open .nav-liquid .b2 {
  animation:
    nav-blob-burst-in 0.75s cubic-bezier(0.4, 0, 0.2, 1) 0.05s both,
    nav-blob-2 18s ease-in-out 0.8s infinite;
}
.nav-links.is-mobile-open .nav-liquid .b3 {
  animation:
    nav-blob-burst-in 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both,
    nav-blob-3 16s ease-in-out 0.8s infinite;
}
.nav-links.is-mobile-open .nav-liquid .b4 {
  animation:
    nav-blob-burst-in 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.15s both,
    nav-blob-4 20s ease-in-out 0.95s infinite;
}
.nav-links.is-mobile-open .nav-liquid .b5 {
  animation:
    nav-blob-burst-in 0.65s cubic-bezier(0.4, 0, 0.2, 1) 0.05s both,
    nav-blob-5 12s ease-in-out 0.7s infinite;
}

/* Closing: blobs collapse back toward the burger origin */
.nav-links.is-mobile-closing .nav-liquid .blob {
  animation: nav-blob-collapse 0.45s cubic-bezier(0.65, 0, 0.25, 1) forwards;
}
.nav-links.is-mobile-closing .nav-liquid .b2 { animation-delay: 0.04s; }
.nav-links.is-mobile-closing .nav-liquid .b3 { animation-delay: 0.07s; }
.nav-links.is-mobile-closing .nav-liquid .b4 { animation-delay: 0.1s; }
.nav-links.is-mobile-closing .nav-liquid .b5 { animation-delay: 0.02s; }

@keyframes nav-blob-burst-in {
  from {
    transform: translate(140px, -240px) scale(0);
    opacity: 0;
  }
  60% { opacity: 0.7; }
  to {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}
@keyframes nav-blob-collapse {
  from {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  to {
    transform: translate(140px, -240px) scale(0);
    opacity: 0;
  }
}

/* Nav links fade in slightly after the drawer opens */
.nav-links.is-mobile-open > a {
  animation: nav-link-in 0.5s cubic-bezier(0.25, 0.6, 0.3, 1) backwards;
}
.nav-links.is-mobile-open > a:nth-of-type(1) { animation-delay: 0.25s; }
.nav-links.is-mobile-open > a:nth-of-type(2) { animation-delay: 0.30s; }
.nav-links.is-mobile-open > a:nth-of-type(3) { animation-delay: 0.35s; }
.nav-links.is-mobile-open > a:nth-of-type(4) { animation-delay: 0.40s; }
.nav-links.is-mobile-open > a:nth-of-type(5) { animation-delay: 0.45s; }
.nav-links.is-mobile-open > a:nth-of-type(6) { animation-delay: 0.50s; }
@keyframes nav-link-in {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.nav-links.is-mobile-closing > a {
  animation: nav-link-out 0.3s cubic-bezier(0.4, 0, 0.6, 1) both;
}
@keyframes nav-link-out {
  from { opacity: 1; }
  to   { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .nav-links.is-mobile-open,
  .nav-links.is-mobile-closing { animation: none !important; }
  .nav-links.is-mobile-open .blob,
  .nav-links.is-mobile-closing .blob,
  .nav-links.is-mobile-open > a,
  .nav-links.is-mobile-closing > a { animation: none !important; }
}

/* ========================================================
   Burger drawer: B/W hero photo as background at 20% opacity
   ======================================================== */
@media (max-width: 1040px) {
  .nav-links.is-mobile-open,
  .nav-links.is-mobile-closing {
    isolation: isolate;
    overflow: hidden auto;
  }
  .nav-links.is-mobile-open::before,
  .nav-links.is-mobile-closing::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('img/hero-1.jpg');
    background-size: cover;
    background-position: center;
    filter: grayscale(1);
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
  }
  .nav-links.is-mobile-open > a,
  .nav-links.is-mobile-closing > a {
    position: relative;
    z-index: 2;
  }
}
