/* =========================================================
   gut salzig — Design-System v3
   Light · Boho · Elegant · Image-heavy
   Inspired by: Attika Seafood · Picante · Patio Time · Benoit
   ========================================================= */

/* --- Brand Font: Kulacino Rough (nur für Logo & Brand-Akzente) --- */
@font-face {
  font-family: 'Kulacino Rough';
  src: url('../logo/KulacinoRough.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* --- Palette: direkt aus den echten gut-salzig Fotos gesampelt --- */
  /* Quelle: Gastraum-Wände (#D9B4A1), Holz-Tische (#422112),
     beige Samtstühle (#E0D0C3), Hex-Fliesen, Messing-Pendants */
  --bg:          #FBF5EC;   /* Warm Off-White mit Pfirsich-Hauch */
  --bg-2:        #F4E6D1;   /* Warm Cream (wie der Boden) */
  --bg-3:        #E9CEB9;   /* Sand (wie Samtstühle) */
  --bg-4:        #D9B4A1;   /* Terrakotta (wie Wand) */
  --surface:     #FFFFFF;

  --ink:         #1F140C;   /* Reiches Treibholz-Braun */
  --ink-2:       #3C2A1B;
  --ink-soft:    #6B5A45;
  --ink-mute:    #9E8E75;

  --line:        #E9DBC4;
  --line-soft:   #F3E9D4;

  --accent:      #C97552;   /* Warme Terrakotta (gesättigter als Wand) */
  --accent-2:    #E09A6E;   /* Helles Sunset */
  --sage:        #8B9B78;   /* Salbei */
  --ocean:       #6E8B91;   /* gedämpftes Meer */
  --gold:        #B8925A;   /* Messing (Pendant-Leuchten) */

  /* --- Typografie --- */
  --ff-display:  'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --ff-sans:     'Inter', -apple-system, 'Segoe UI', sans-serif;
  --ff-script:   'Tangerine', 'Caveat', cursive;
  --ff-brand:    'Kulacino Rough', 'Fraunces', serif;
  --ff-mono:     'IBM Plex Mono', 'JetBrains Mono', ui-monospace, monospace;

  --fs-mega:     clamp(4rem, 14vw, 18rem);
  --fs-hero:     clamp(3.2rem, 9vw, 11rem);
  --fs-h1:       clamp(2.6rem, 5.5vw, 5.8rem);
  --fs-h2:       clamp(2rem, 3vw, 3.4rem);
  --fs-h3:       clamp(1.25rem, 1.3vw + 0.8rem, 1.8rem);
  --fs-body:     1.0625rem;
  --fs-small:    0.78rem;
  --fs-xs:       0.68rem;

  /* --- Layout --- */
  --wrap:        1360px;
  --wrap-wide:   1560px;
  --r-sm:        4px;
  --r:           2px;
  --r-lg:        0;

  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --dur:         700ms;
  --dur-fast:    360ms;

  --nav-h:       90px;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-sans);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
  overflow-x: hidden;
}

img, picture, video, svg {
  max-width: 100%;
  display: block;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--accent); color: #fff; }

/* ----- Typografie ----- */
.display,
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-optical-sizing: auto;
}
h1 em, h2 em, h3 em, .display em {
  font-style: italic;
  font-weight: 300;
}
.script {
  font-family: var(--ff-script);
  font-size: 1.6em;
  line-height: 0.7;
  color: var(--accent);
  font-weight: 400;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--ff-sans);
  font-size: var(--fs-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: currentColor;
}

.lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  line-height: 1.8;
  font-weight: 300;
  max-width: 58ch;
}

/* ----- Layout Helpers ----- */
.wrap        { width: 100%; max-width: var(--wrap);      margin-inline: auto; padding-inline: clamp(1.5rem, 4vw, 3rem); }
.wrap-wide   { width: 100%; max-width: var(--wrap-wide); margin-inline: auto; padding-inline: clamp(1.5rem, 4vw, 3rem); }

section { padding-block: clamp(5rem, 10vw, 10rem); position: relative; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.05rem 2.2rem;
  font-family: var(--ff-sans);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all var(--dur-fast) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn .arrow {
  display: inline-block;
  transition: transform var(--dur-fast) var(--ease);
}
.btn:hover .arrow { transform: translateX(5px); }

.btn--primary {
  background: var(--ink);
  color: var(--bg);
}
.btn--primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}
.btn--accent {
  background: var(--accent);
  color: #fff;
}
.btn--accent:hover {
  background: var(--ink);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--ghost:hover {
  background: #fff;
  color: var(--ink);
}
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--bg);
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: var(--fs-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  transition: all var(--dur-fast) var(--ease);
}
.link:hover {
  color: var(--accent);
  letter-spacing: 0.28em;
}

/* =========================================================
   NAVIGATION (minimal, Attika-Style)
   ========================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--dur-fast) var(--ease), height var(--dur-fast);
}
.nav__inner {
  width: 100%;
  max-width: var(--wrap-wide);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  height: 44px;
  transition: opacity var(--dur-fast);
}
.nav__brand img {
  height: 100%;
  width: auto;
  display: block;
  transition: opacity var(--dur-fast) var(--ease);
}
.nav__brand .logo-wht { display: block; }
.nav__brand .logo-blk { display: none; position: absolute; }
.nav--scrolled .nav__brand .logo-wht { display: none; }
.nav--scrolled .nav__brand .logo-blk { display: block; position: static; }
.nav--scrolled .nav__brand { height: 40px; }
.nav__brand:hover { opacity: 0.85; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 2.2vw, 2.6rem);
}
.nav__menu a {
  position: relative;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.6rem 0;
  transition: color var(--dur-fast) var(--ease);
}
.nav__menu a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width var(--dur) var(--ease);
}
.nav__menu a:hover { color: var(--gold); }
.nav__menu a:hover::after { width: 100%; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav__phone {
  color: #fff;
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: color var(--dur-fast);
}
.nav__phone::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.nav__reserve {
  color: #fff;
  font-size: var(--fs-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.8rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 2px;
  transition: all var(--dur-fast) var(--ease);
}
.nav__reserve:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.nav__burger {
  width: 48px;
  height: 48px;
  display: none;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  transition: all var(--dur-fast);
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: #fff;
  transition: all var(--dur-fast);
}
.nav__burger:hover {
  background: rgba(255,255,255,0.14);
}

/* Scrolled state — Frosted Glass (wie Grand Restaurant) */
.nav--scrolled {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(32px) saturate(1.8);
  -webkit-backdrop-filter: blur(32px) saturate(1.8);
  height: 74px;
  border-bottom: 1px solid rgba(31, 20, 12, 0.06);
  box-shadow: 0 20px 60px -30px rgba(31, 20, 12, 0.12);
}
.nav--scrolled .nav__brand,
.nav--scrolled .nav__phone,
.nav--scrolled .nav__reserve,
.nav--scrolled .nav__menu a { color: var(--ink); }
.nav--scrolled .nav__menu a:hover { color: var(--accent); }
.nav--scrolled .nav__menu a::after { background: var(--accent); }
.nav--scrolled .nav__reserve { border-color: var(--ink); }
.nav--scrolled .nav__reserve:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.nav--scrolled .nav__burger {
  background: rgba(28,26,22,0.05);
  border-color: rgba(28,26,22,0.12);
}
.nav--scrolled .nav__burger span { background: var(--ink); }

/* ----- Fullscreen Menu Overlay ----- */
.menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 5vw, 4rem);
  transform: translateY(-100%);
  transition: transform 900ms var(--ease);
  overflow-y: auto;
}
.menu.is-open { transform: translateY(0); }
.menu__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: auto;
}
.menu__brand {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--ink);
  line-height: 1;
}
.menu__brand em { font-style: italic; color: var(--accent); }
.menu__close {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-family: var(--ff-display);
  font-size: 1.5rem;
  transition: all var(--dur-fast);
}
.menu__close:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.menu__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 4rem 0;
  flex: 1;
}
.menu__list li {
  overflow: hidden;
  line-height: 1;
  padding: 0.3em 0;
}
.menu__list a {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  display: inline-block;
  transition: color var(--dur-fast), transform var(--dur-fast) var(--ease);
  position: relative;
}
.menu__list a:hover {
  color: var(--accent);
  font-style: italic;
  transform: translateX(30px);
}
.menu__list a::before {
  content: attr(data-num);
  position: absolute;
  top: 0.4em;
  right: calc(100% + 1rem);
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
  opacity: 0;
  transition: opacity var(--dur-fast);
}
.menu__list a:hover::before { opacity: 1; }

.menu__aside {
  padding-left: 3rem;
  border-left: 1px solid var(--line);
}
.menu__aside h4 {
  font-family: var(--ff-sans);
  font-size: var(--fs-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.menu__aside p { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.8; margin-bottom: 1.8rem; }
.menu__aside .hours { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 2rem; }
.menu__aside .hours strong { color: var(--ink); font-weight: 500; }
.menu__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.menu__social { display: flex; gap: 1.5rem; }
.menu__social a { transition: color var(--dur-fast); }
.menu__social a:hover { color: var(--accent); }

/* =========================================================
   HERO — Full-bleed, minimal, elegant
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 1.4s cubic-bezier(0.65, 0, 0.35, 1), opacity 1.4s ease-out;
  will-change: transform, opacity;
}
.hero__slide.is-active {
  opacity: 1;
  transform: translateX(0);
}
.hero__slide.is-leaving {
  opacity: 0;
  transform: translateX(-100%);
}
.hero__slide img,
.hero__slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}
.hero__slide.is-active img,
.hero__slide.is-active video {
  animation: kenburns 14s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1.08); }
  to   { transform: scale(1.2); }
}
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,13,10,0.45) 0%, rgba(15,13,10,0.25) 20%, rgba(15,13,10,0.3) 50%, rgba(15,13,10,0.75) 100%),
    radial-gradient(ellipse at center, rgba(15,13,10,0.35) 0%, rgba(15,13,10,0.15) 40%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.hero__content { text-shadow: 0 2px 30px rgba(15,13,10,0.35); }

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(1rem, 4vw, 3rem);
  max-width: 1200px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: var(--fs-xs);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  font-weight: 400;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero__title {
  font-size: clamp(2.8rem, 7vw, 8rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 2rem;
  font-style: italic;
  max-width: 14ch;
  margin-inline: auto;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  position: relative;
}
.hero__title em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 2px;
  background: var(--gold);
  opacity: 0.5;
}

.hero__sub {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  color: rgba(255,255,255,0.86);
  font-weight: 300;
  max-width: 48ch;
  margin: 0 auto 3rem;
  line-height: 1.8;
}
.hero__slogan {
  font-family: var(--ff-display);
  font-size: clamp(1.15rem, 1.5vw + 0.5rem, 1.7rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.95);
  max-width: 32ch;
  margin: 0 auto 2.8rem;
  line-height: 1.45;
  letter-spacing: -0.005em;
  font-style: italic;
}
.hero__slogan em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  position: relative;
  white-space: nowrap;
}
.hero__slogan em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.08em;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero bottom bar */
.hero__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem clamp(1.5rem, 4vw, 3rem);
  max-width: var(--wrap-wide);
  margin-inline: auto;
  color: rgba(255,255,255,0.8);
  font-size: var(--fs-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero__dots {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.hero__dots button {
  width: 30px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  transition: all var(--dur) var(--ease);
}
.hero__dots button.is-active {
  background: #fff;
  width: 52px;
  height: 2px;
}
.hero__coords { letter-spacing: 0.22em; }
.hero__scroll {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 30px;
  background: #fff;
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

/* =========================================================
   TILES — 3 große quadratische Angebots-Kacheln (Picante)
   ========================================================= */
.tiles {
  padding-block: 0;
  background: var(--bg);
}
.tiles__header {
  text-align: center;
  padding: clamp(5rem, 8vw, 8rem) 1.5rem 3rem;
}
.tiles__header h2 {
  font-size: var(--fs-h1);
  line-height: 1;
  margin-bottom: 1rem;
}
.tiles__header h2 em { font-family: var(--ff-display); color: var(--accent); }
.tiles__header p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 55ch;
  margin-inline: auto;
  font-weight: 300;
  line-height: 1.8;
}

.tiles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--wrap-wide);
  margin-inline: auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem) clamp(5rem, 8vw, 8rem);
}
.tiles__grid--four {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) {
  .tiles__grid--four { grid-template-columns: repeat(2, 1fr); }
}
.tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
  isolation: isolate;
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.95);
  transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,13,10,0.85));
  z-index: 1;
}
.tile:hover img {
  transform: scale(1.1);
  filter: brightness(0.9) saturate(1.1);
}
.tile__inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.8rem, 3vw, 3rem);
  color: #fff;
}
.tile__num {
  position: absolute;
  top: clamp(1.8rem, 3vw, 3rem);
  left: clamp(1.8rem, 3vw, 3rem);
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.8;
  letter-spacing: 0.15em;
}
.tile__kicker {
  font-size: var(--fs-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}
.tile__title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.8rem;
  transition: transform var(--dur) var(--ease);
}
.tile__title em { font-style: italic; }
.tile__desc {
  font-size: 0.96rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  font-weight: 300;
  max-width: 32ch;
  opacity: 0;
  max-height: 0;
  margin-bottom: 0;
  transition: all var(--dur) var(--ease);
  overflow: hidden;
}
.tile:hover .tile__desc {
  opacity: 1;
  max-height: 100px;
  margin-bottom: 1.5rem;
}
.tile__arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: var(--fs-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
}
.tile__arrow::after {
  content: '→';
  font-size: 1rem;
  transition: transform var(--dur-fast) var(--ease);
}
.tile:hover .tile__arrow::after { transform: translateX(6px); }

/* =========================================================
   INTRO — Editorial Split, hell & elegant
   ========================================================= */
.intro { background: var(--bg-2); overflow: hidden; position: relative; }
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.intro__media {
  position: relative;
  aspect-ratio: 4 / 5;
}
.intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro__media .img-1 {
  position: absolute;
  inset: 0;
  width: 80%;
  height: 90%;
}
.intro__media .img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 45%;
  object-fit: cover;
  border: 14px solid var(--bg-2);
}
.intro__text h2 {
  font-size: var(--fs-h1);
  margin-bottom: 2rem;
  max-width: 14ch;
  line-height: 1;
}
.intro__text h2 em { font-family: var(--ff-display); color: var(--accent); }
.intro__text p {
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 1.08rem;
  max-width: 50ch;
  margin-bottom: 1.5rem;
  line-height: 1.85;
}
.intro__signature {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.intro__signature-line { width: 50px; height: 1px; background: var(--accent); }
.intro__signature-text {
  font-family: var(--ff-script);
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 0.8;
}

/* =========================================================
   BRUNCH — elegant, image-driven
   ========================================================= */
.brunch { background: var(--bg); overflow: hidden; }
.brunch__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.brunch__content .eyebrow { color: var(--accent); }
.brunch__content h2 {
  font-size: var(--fs-h1);
  line-height: 1;
  margin-bottom: 1.8rem;
  max-width: 14ch;
}
.brunch__content h2 em { font-family: var(--ff-display); color: var(--accent); }
.brunch__content > p {
  color: var(--ink-soft);
  max-width: 50ch;
  font-weight: 300;
  font-size: 1.08rem;
  margin-bottom: 2rem;
  line-height: 1.85;
}
.brunch__meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 2.5rem;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brunch__days {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2.5rem 0;
}
.brunch__day {
  padding: 1.8rem 1.6rem;
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative;
  transition: all var(--dur-fast) var(--ease);
}
.brunch__day:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.brunch__day--highlight {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.brunch__day-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.9rem;
}
.brunch__day--highlight .brunch__day-label {
  color: rgba(255,255,255,0.85);
}
.brunch__day-title {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  font-weight: 300;
  line-height: 1.02;
  color: var(--ink);
  margin-bottom: 1rem;
}
.brunch__day--highlight .brunch__day-title {
  color: #fff;
}
.brunch__day-meta {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.55;
  font-weight: 300;
}
.brunch__day--highlight .brunch__day-meta {
  color: rgba(255,255,255,0.88);
}
.brunch__meta div { display: flex; flex-direction: column; }
.brunch__meta strong {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.brunch__meta span {
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 0.6rem;
  font-weight: 400;
}
.brunch__menu-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1rem;
  display: block;
}
.brunch__menu { margin-bottom: 2rem; }
.brunch__menu li {
  padding: 0.9rem 0;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
  font-size: 1.02rem;
  font-weight: 300;
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
  transition: padding var(--dur-fast);
}
.brunch__menu li::before {
  content: attr(data-n);
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 400;
}
.brunch__menu li:hover { padding-left: 0.5rem; }
.brunch__menu li:last-child { border-bottom: none; }

.brunch__image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.brunch__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.8s var(--ease);
}
.brunch__image:hover img { transform: scale(1.05); }
.brunch__badge {
  position: absolute;
  top: 1.8rem;
  left: 1.8rem;
  background: rgba(251, 247, 238, 0.95);
  backdrop-filter: blur(6px);
  color: var(--ink);
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  font-size: var(--fs-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  z-index: 2;
}
.brunch__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.4; transform: scale(1.4); }
}

/* =========================================================
   BOARDING SOUND TOGGLE — fixed bottom-left
   ========================================================= */
.sound-toggle {
  position: fixed;
  bottom: 1.4rem;
  left: 1.4rem;
  z-index: 40;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(31, 20, 12, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(184, 146, 90, 0.3);
  color: rgba(255, 255, 255, 0.85);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  opacity: 0;
  transform: translateY(10px);
  box-shadow: 0 16px 40px -18px rgba(31, 20, 12, 0.4);
}
.sound-toggle.is-visible {
  opacity: 1;
  transform: none;
}
.sound-toggle:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.sound-toggle svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.sound-toggle__ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  opacity: 0;
  transition: opacity var(--dur-fast);
}
.sound-toggle.is-playing .sound-toggle__ring {
  opacity: 0.8;
  animation: sound-ping 1.4s ease-out;
}
@keyframes sound-ping {
  0%   { transform: scale(0.9); opacity: 0.9; }
  70%  { transform: scale(1.6); opacity: 0.15; }
  100% { transform: scale(1.8); opacity: 0; }
}

@media (max-width: 720px) {
  .sound-toggle { bottom: 0.8rem; left: 0.8rem; width: 38px; height: 38px; }
}

/* =========================================================
   JOBS — Crew Wanted, Job Cards, Application
   ========================================================= */

/* Job Values Strip */
.job-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.job-value {
  text-align: center;
  padding: 2rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.job-value:hover { transform: translateY(-4px); box-shadow: 0 16px 36px -16px rgba(31,20,12,0.18); }
.job-value__icon { font-size: 1.6rem; margin-bottom: 0.8rem; display: block; color: var(--accent); }
.job-value__title {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.15;
}
.job-value__desc {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.6;
  font-weight: 300;
}

/* Job Department Tabs */
.job-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.job-tab {
  padding: 0.7rem 1.4rem;
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  background: var(--surface);
}
.job-tab:hover, .job-tab.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* Job Cards — Boarding Pass with Photo */
.job-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}
.job-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: var(--ff-mono);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.job-card__photo {
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
  border-bottom: 2px dashed var(--line);
  aspect-ratio: 16 / 9;
}
.job-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.job-card:hover .job-card__photo img { transform: scale(1.08); }
/* Round perforation notches (left + right at bottom edge) */
.job-card__photo::before,
.job-card__photo::after {
  content: '';
  position: absolute;
  bottom: -11px;
  width: 22px;
  height: 22px;
  background: var(--bg);
  border-radius: 50%;
  z-index: 4;
}
.job-card__photo::before { left: -11px; }
.job-card__photo::after  { right: -11px; }
.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px -22px rgba(31,20,12,0.22);
}
.job-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.5rem;
  background: var(--ink);
  color: #fff;
  font-size: 0.54rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}
.job-card__brand { display: flex; align-items: center; gap: 0.5rem; }
.job-card__brand-icon { color: var(--gold); font-size: 1rem; }
.job-card__dept { color: var(--gold); font-weight: 700; }

.job-card__body { padding: 1.6rem 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 1rem; }

.job-card__title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.job-card__title {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  color: var(--ink);
  line-height: 1.1;
}
.job-card__title em { font-style: italic; color: var(--accent); }
.job-card__badge {
  flex-shrink: 0;
  padding: 0.35rem 0.7rem;
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px;
  background: rgba(201,117,82,0.12);
  color: var(--accent);
  white-space: nowrap;
}

.job-card__desc {
  font-family: var(--ff-sans);
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.65;
  font-weight: 300;
}

.job-card__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  padding-top: 0.8rem;
  border-top: 1px dashed rgba(31,20,12,0.15);
}
.job-card__meta-item { display: flex; flex-direction: column; gap: 0.2rem; }
.job-card__meta-label {
  font-size: 0.48rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.job-card__meta-value {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.job-card__tasks {
  padding: 0.8rem 0;
  border-top: 1px dashed rgba(31,20,12,0.15);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.job-card__tasks li {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
  font-weight: 300;
}
.job-card__tasks li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.job-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.5rem;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.job-card__code {
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.job-card__apply {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--ff-mono);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px;
  border: 0;
  cursor: pointer;
  transition: background var(--dur-fast);
}
.job-card__apply:hover { background: var(--ink); }

/* Perks Strip (text-only pills) */
.perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}
.perk {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.perk__icon { color: var(--accent); font-size: 0.9rem; }

/* Lifestyle Grid — Bild-Kacheln mit Label */
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.lifestyle-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 2px;
  cursor: default;
  background: var(--ink);
}
.lifestyle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) saturate(0.95);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.lifestyle-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,13,10,0.75));
  z-index: 1;
}
.lifestyle-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.95) saturate(1.1);
}
.lifestyle-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem;
  z-index: 2;
  color: #fff;
}
.lifestyle-card__title {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.lifestyle-card__title em { font-style: italic; color: var(--gold); }
.lifestyle-card__desc {
  font-family: var(--ff-mono);
  font-size: 0.54rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
}

@media (max-width: 1100px) { .lifestyle-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px)  { .lifestyle-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; } }

@media (max-width: 1100px) {
  .job-values { grid-template-columns: 1fr 1fr; }
  .job-cards { grid-template-columns: 1fr; max-width: 680px; margin-inline: auto; }
}
@media (max-width: 720px) {
  .job-values { grid-template-columns: 1fr; }
  .job-card__photo { aspect-ratio: 16 / 10; }
}

/* =========================================================
   SUBPAGE LAYOUT — Hero, Breadcrumb, Page-Header
   ========================================================= */
.subpage-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding-top: var(--nav-h);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.subpage-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.subpage-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.subpage-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,13,10,0.5) 0%, rgba(15,13,10,0.25) 35%, rgba(15,13,10,0.7) 100%);
}
.subpage-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
}
.subpage-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--ff-mono);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.8rem;
  font-weight: 500;
}
.subpage-hero__breadcrumb a { color: rgba(255, 255, 255, 0.78); transition: color var(--dur-fast); }
.subpage-hero__breadcrumb a:hover { color: #fff; }
.subpage-hero__breadcrumb .sep { color: var(--gold); }
.subpage-hero__breadcrumb .current { color: #fff; }
.subpage-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.subpage-hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.subpage-hero__title {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 300;
  line-height: 0.95;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 18ch;
}
.subpage-hero__title em {
  font-style: italic;
  color: var(--gold);
  position: relative;
}
.subpage-hero__title em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.04em;
  height: 2px;
  background: var(--gold);
  opacity: 0.5;
}
.subpage-hero__sub {
  font-family: var(--ff-sans);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 58ch;
}
.subpage-hero__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 1.3rem clamp(1.5rem, 4vw, 3rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--ff-mono);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 2;
}
.subpage-hero__bar-flight { color: var(--gold); font-weight: 600; }

/* Subpage section helpers */
/* ---- Resmio Reservierungs-Widget ---- */
.resmio-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: clamp(1rem, 2vw, 1.5rem);
  box-shadow:
    0 1px 0 rgba(31, 20, 12, 0.04),
    0 30px 60px -25px rgba(31, 20, 12, 0.18);
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.resmio-wrap > div { width: 100%; }
.resmio-wrap iframe { max-width: 100% !important; width: 100% !important; border: 0 !important; }

/* ---- Menu Card (Speisekarte) — editorial, ruhig, edel ---- */
.menu-card {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 5vw, 4.5rem);
  background: var(--surface, #fff);
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.8rem, 4vw, 3.5rem);
  border: 1px solid var(--line);
  position: relative;
}
.menu-card::before,
.menu-card::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid var(--accent);
}
.menu-card::before { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.menu-card::after  { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }

.menu-card__section { break-inside: avoid; }

.menu-card__head {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: baseline;
  column-gap: 1rem;
  margin-bottom: 1.6rem;
  position: relative;
}
.menu-card__num {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.menu-card__eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.menu-card__title {
  grid-column: 1 / -1;
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 300;
  font-style: normal;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0.55rem 0 0.9rem;
  color: var(--ink);
}
.menu-card__title em {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--accent);
}
.menu-card__rule {
  grid-column: 1 / -1;
  display: block;
  height: 1px;
  background: linear-gradient(to right, var(--accent) 0, var(--accent) 36px, var(--line) 36px, var(--line) 100%);
}

.menu-card__list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-card__list li { padding: 0; border: 0; }

.menu-card__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 0.7rem;
}
.menu-card__name {
  font-family: var(--ff-base, var(--ff-body, system-ui));
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.35;
}
.menu-card__leader {
  align-self: end;
  border-bottom: 1px dotted var(--line);
  height: 0.6em;
  min-width: 1.5rem;
  transform: translateY(-0.18em);
}
.menu-card__price {
  font-family: var(--ff-mono);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.menu-card__price::after {
  content: ' \20AC'; /* Euro-Zeichen */
  font-weight: 400;
  color: var(--ink-mute);
  margin-left: 0.18em;
}
.menu-card__desc {
  margin: 0.35rem 0 0;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 56ch;
}

@media (max-width: 640px) {
  .menu-card { padding: 2rem 1.4rem; }
  .menu-card__name { font-size: 0.95rem; }
  .menu-card__desc { font-size: 0.86rem; }
}

/* ---- Spargel Saison-Special ---- */
.spargel-special {
  background: linear-gradient(180deg, #faf6ee 0%, #f5efdf 100%);
  position: relative;
}
.spargel-special::before,
.spargel-special::after {
  content: '✦';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: var(--accent);
  font-size: 0.9rem;
  opacity: 0.6;
}
.spargel-special::before { top: 2.5rem; }
.spargel-special::after  { bottom: 2.5rem; }
.spargel-special .page-head h2 em {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
}
.menu-card--spargel {
  background: #fffdf7;
}

.subpage-section {
  padding-block: clamp(5rem, 9vw, 9rem);
  background: var(--bg);
}
.subpage-section--cream { background: var(--bg-2); }
.subpage-section--dark { background: var(--ink); color: #fff; }

/* Page-Header (smaller than section-head) for sub-sections */
.page-head {
  max-width: 760px;
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);
  text-align: center;
}
.page-head .eyebrow { justify-content: center; }
.page-head h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1.2rem;
}
.page-head h2 em { font-style: italic; color: var(--accent); }
.page-head p {
  font-size: 1.08rem;
  color: var(--ink-soft);
  line-height: 1.75;
  font-weight: 300;
}

/* =========================================================
   COCKPIT WEATHER WIDGET — fixed bottom-right
   ========================================================= */
.cockpit {
  position: fixed;
  bottom: 1.4rem;
  right: 1.4rem;
  z-index: 40;
  background: rgba(31, 20, 12, 0.92);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  color: rgba(255, 255, 255, 0.92);
  padding: 0.7rem 1rem 0.65rem;
  font-family: var(--ff-mono);
  border-radius: 2px;
  border: 1px solid rgba(184, 146, 90, 0.3);
  box-shadow: 0 20px 50px -20px rgba(31, 20, 12, 0.35);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  pointer-events: none;
  max-width: 280px;
}
.cockpit.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.cockpit__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7CD97C;
  box-shadow: 0 0 10px rgba(124, 217, 124, 0.9);
  animation: pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
.cockpit__label {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.22em;
}
.cockpit__divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.12);
}
.cockpit__data {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  line-height: 1;
}
.cockpit__temp {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0;
}
.cockpit__meta {
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.14em;
}
.cockpit__close {
  position: absolute;
  top: 0.3rem;
  right: 0.3rem;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  line-height: 1;
  cursor: pointer;
  transition: color var(--dur-fast);
  background: none;
  border: 0;
  padding: 0;
}
.cockpit__close:hover { color: #fff; }

@media (max-width: 720px) {
  .cockpit { bottom: 0.8rem; right: 0.8rem; font-size: 0.52rem; padding: 0.5rem 0.8rem; }
  .cockpit__temp { font-size: 0.95rem; }
}

/* =========================================================
   TRAVEL ACCENTS — Passport Stamps, Flight Arcs, Labels
   ========================================================= */

/* ---- Passport Stamp (dezenter Akzent in Section-Headers) ---- */
.passport-stamp {
  --stamp-color: var(--accent);
  position: absolute;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 118px;
  height: 118px;
  border: 1.5px solid var(--stamp-color);
  border-radius: 50%;
  color: var(--stamp-color);
  font-family: var(--ff-mono);
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: rotate(-25deg) scale(1.6);
  padding: 0.8rem;
  line-height: 1.2;
  mix-blend-mode: multiply;
  transition: opacity 0.5s var(--ease), transform 0.65s var(--ease);
}
.passport-stamp.is-stamped {
  opacity: 0.45;
  transform: rotate(-9deg) scale(1);
}
.passport-stamp::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid var(--stamp-color);
  border-radius: 50%;
}
.passport-stamp__top,
.passport-stamp__bottom {
  font-size: 0.48rem;
  opacity: 0.95;
  white-space: nowrap;
}
.passport-stamp__main {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  line-height: 1;
  margin: 0.15rem 0;
  text-transform: none;
}
.passport-stamp__divider {
  width: 60%;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
  margin: 0.15rem 0;
}
/* Rectangular visa-stamp variant */
.passport-stamp--rect {
  width: auto;
  min-width: 140px;
  height: auto;
  border-radius: 2px;
  padding: 0.7rem 1.1rem;
}
.passport-stamp--rect::before {
  inset: 3px;
  border-radius: 1px;
}

/* ---- Flight Arc Divider (zwischen Sektionen) ---- */
.flight-divider {
  position: relative;
  height: 80px;
  color: var(--accent);
  opacity: 0.3;
  pointer-events: none;
  margin-block: -40px;
  z-index: 1;
}
.flight-divider svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.flight-divider svg path {
  stroke: currentColor;
  stroke-width: 1;
  stroke-dasharray: 3 5;
  fill: none;
  stroke-linecap: round;
}
.flight-divider__plane {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  background: var(--bg);
  padding: 0 0.8rem;
  color: var(--accent);
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0.7;
}
.flight-divider--on-cream .flight-divider__plane { background: var(--bg-2); }

/* ---- Luggage Tag (Gepäck-Anhänger für Menü-Kategorien) ---- */
.luggage-tag {
  position: absolute;
  top: 1.3rem;
  left: 1.3rem;
  background: rgba(251, 245, 236, 0.96);
  backdrop-filter: blur(6px);
  color: var(--ink);
  border: 1px solid rgba(31, 20, 12, 0.15);
  padding: 0.7rem 1rem 0.7rem 1.3rem;
  font-family: var(--ff-mono);
  z-index: 3;
  opacity: 0;
  transform: translateY(-20px) rotate(-15deg);
  box-shadow: 0 10px 24px -14px rgba(31, 20, 12, 0.25);
  min-width: 118px;
  border-radius: 2px 4px 4px 2px;
  transition: opacity 0.55s var(--ease), transform 0.7s var(--ease);
}
.luggage-tag.is-stamped {
  opacity: 1;
  transform: translateY(0) rotate(-2deg);
}
.luggage-tag {
  /* Notch für das Loch auf der linken Seite — extension */
  -webkit-mask-image: radial-gradient(circle at 0.45rem 50%, transparent 3px, #000 3.5px);
          mask-image: radial-gradient(circle at 0.45rem 50%, transparent 3px, #000 3.5px);
}
.luggage-tag::before {
  /* Loch-Verstärkung */
  content: '';
  position: absolute;
  top: 50%;
  left: 0.45rem;
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0.8;
}
.luggage-tag__number {
  font-size: 0.48rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-bottom: 0.2rem;
}
.luggage-tag__label {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.005em;
  display: block;
  margin-bottom: 0.3rem;
}
.luggage-tag__code {
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.luggage-tag__code::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--accent);
}

/* String/Schnur des Anhängers — dezenter Strich vom Loch zum Bildrand */
.luggage-tag-string {
  position: absolute;
  top: calc(1.3rem + 1.3rem);
  left: 0;
  width: 0.9rem;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
  z-index: 3;
  pointer-events: none;
}

/* ---- Travel Label (kreisförmiges Siegel-Label) ---- */
.travel-label {
  position: absolute;
  width: 130px;
  height: 130px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mono);
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transform: rotate(-25deg) scale(1.8);
  background: rgba(251, 245, 236, 0.92);
  backdrop-filter: blur(4px);
  z-index: 4;
  box-shadow: 0 8px 24px -12px rgba(201, 117, 82, 0.35);
  transition: opacity 0.55s var(--ease), transform 0.7s var(--ease);
}
.travel-label.is-stamped {
  opacity: 0.85;
  transform: rotate(-8deg) scale(1);
}
.travel-label::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px dashed currentColor;
  border-radius: 50%;
  opacity: 0.45;
}
.travel-label__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.5rem;
}
.travel-label__top,
.travel-label__bottom {
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}
.travel-label__main {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: none;
  margin: 0.1rem 0;
}
.travel-label__stars {
  color: var(--gold);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
}

/* =========================================================
   SECTION HEADER (shared)
   ========================================================= */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: clamp(3rem, 5vw, 5rem);
  position: relative;
}
.section-head .passport-stamp {
  top: -1.2rem;
  right: 0;
}
.section-head h2 {
  font-size: var(--fs-h1);
  line-height: 0.95;
  max-width: 14ch;
}
.section-head h2 em { font-family: var(--ff-display); color: var(--accent); }
.section-head p {
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 1.08rem;
  max-width: 46ch;
  line-height: 1.85;
}

/* =========================================================
   EVENTS — Boarding Passes (Airport Ticket Style)
   ========================================================= */
.events {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.events::before {
  content: '✈';
  position: absolute;
  top: 8%;
  right: -2%;
  font-size: clamp(12rem, 22vw, 26rem);
  color: rgba(184, 146, 90, 0.06);
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
  transform: rotate(-15deg);
}

.departure-board {
  background: var(--ink);
  color: var(--gold);
  padding: 1rem 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  border-radius: 2px;
}
.departure-board__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7CD97C;
  box-shadow: 0 0 12px rgba(124, 217, 124, 0.8);
  animation: pulse 2s ease-in-out infinite;
}
.departure-board__label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.departure-board__marquee {
  text-align: center;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
}
.departure-board__clock {
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

/* Flight Search Widget — wie bei einem Flugportal */
.flight-search {
  background: var(--surface);
  border-radius: 2px;
  display: grid;
  grid-template-columns: 1fr auto 1fr 1fr 1fr auto;
  gap: 0;
  margin-bottom: 2.5rem;
  box-shadow:
    0 1px 0 rgba(31, 20, 12, 0.05),
    0 20px 50px -30px rgba(31, 20, 12, 0.22);
  align-items: stretch;
  font-family: var(--ff-mono);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.flight-search__field {
  padding: 1.2rem 1.4rem;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  min-width: 0;
  transition: background var(--dur-fast);
}
.flight-search__field:hover { background: var(--bg); }
.flight-search__field:last-of-type { border-right: 0; }
.flight-search__label {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.flight-search__label::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.flight-search__value {
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 1.2vw + 0.3rem, 1.35rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.1;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-optical-sizing: auto;
  appearance: none;
  -webkit-appearance: none;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%23C97552' stroke-width='1.4' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.2rem center;
  padding-right: 1.1rem;
}
.flight-search__value:focus { outline: none; }
.flight-search__value--static {
  background-image: none;
  padding-right: 0;
  pointer-events: none;
}

.flight-search__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  color: var(--accent);
  font-size: 1.1rem;
  background: var(--bg-2);
  border-right: 1px solid var(--line);
}

.flight-search__submit {
  padding: 0 1.8rem;
  background: var(--ink);
  color: #fff;
  border: 0;
  font-family: var(--ff-mono);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  transition: background var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.flight-search__submit:hover {
  background: var(--accent);
}
.flight-search__submit .arrow {
  display: inline-block;
  transition: transform var(--dur-fast) var(--ease);
}
.flight-search__submit:hover .arrow { transform: translateX(4px); }

.tickets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
}

.ticket {
  background: var(--surface);
  display: grid;
  grid-template-columns: 46% 1fr;
  position: relative;
  border-radius: 2px;
  box-shadow:
    0 1px 0 rgba(31, 20, 12, 0.05),
    0 14px 32px -18px rgba(31, 20, 12, 0.18),
    0 60px 80px -40px rgba(31, 20, 12, 0.08);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  cursor: pointer;
  min-height: 360px;
  font-family: var(--ff-mono);
}
.ticket:hover {
  transform: translateY(-6px);
  box-shadow:
    0 1px 0 rgba(31, 20, 12, 0.05),
    0 30px 60px -20px rgba(31, 20, 12, 0.25),
    0 80px 120px -50px rgba(31, 20, 12, 0.12);
}

/* Perforation: round notches between photo|body */
.ticket > .ticket__photo::before,
.ticket > .ticket__photo::after {
  content: '';
  position: absolute;
  right: -11px;
  width: 22px;
  height: 22px;
  background: var(--bg-2);
  border-radius: 50%;
  z-index: 4;
}
.ticket > .ticket__photo::before { top: -11px; }
.ticket > .ticket__photo::after  { bottom: -11px; }

.ticket__photo {
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
  border-right: 2px dashed var(--line);
}
.ticket__photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.ticket:hover .ticket__photo > img { transform: scale(1.08); }

/* Status + Category pills stacked top-left of photo */
.ticket__tags {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  z-index: 3;
  align-items: flex-start;
}
.ticket__status,
.ticket__category {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  color: var(--ink);
  padding: 0.32rem 0.7rem;
  font-family: var(--ff-mono);
  font-size: 0.54rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}
.ticket__status--ticket  { background: var(--accent); color: #fff; }
.ticket__status--reserve { background: var(--sage); color: #fff; }
.ticket__status--info    { background: rgba(255,255,255,0.95); color: var(--ink); }
.ticket__category {
  background: rgba(31, 20, 12, 0.82);
  color: #fff;
  backdrop-filter: blur(6px);
}
.ticket__category-icon {
  font-size: 0.72rem;
  line-height: 1;
  color: var(--gold);
}

/* === MAIN BODY === */
.ticket__body {
  padding: 1.5rem 1.8rem 1.3rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  min-width: 0;
}

/* Airline header: logo + brand + flight code */
.ticket__airline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(31, 20, 12, 0.15);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}
.ticket__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ticket__brand-icon {
  color: var(--accent);
  font-size: 1rem;
  line-height: 0.8;
  display: inline-flex;
}
.ticket__brand-name {
  letter-spacing: 0.24em;
  font-weight: 700;
}
.ticket__airline small {
  font-size: 0.5rem;
  color: var(--ink-mute);
  letter-spacing: 0.2em;
  font-weight: 500;
}

/* Route: FROM → TO with IATA codes + cities */
.ticket__route {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.6rem;
  align-items: center;
  padding: 0.2rem 0 0.3rem;
}
.ticket__route-item { min-width: 0; }
.ticket__route-item--to { text-align: right; }
.ticket__iata {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 2vw + 0.6rem, 2.4rem);
  font-weight: 400;
  line-height: 0.85;
  color: var(--ink);
  letter-spacing: 0.02em;
  display: block;
}
.ticket__city {
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin-top: 0.3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* SVG flight arc between FROM and TO */
.ticket__arc {
  height: 28px;
  width: 80px;
  display: block;
  color: var(--accent);
  position: relative;
}
.ticket__arc svg { width: 100%; height: 100%; display: block; }
.ticket__arc svg path { stroke: currentColor; stroke-width: 1; stroke-dasharray: 2 2.5; fill: none; }
.ticket__arc svg text { fill: currentColor; font-size: 14px; }

/* Meta grid: 4 columns */
.ticket__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  padding-top: 0.6rem;
  border-top: 1px dashed rgba(31, 20, 12, 0.18);
  margin-top: 0.1rem;
}
.ticket__meta-item { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }
.ticket__meta-label {
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.ticket__meta-value {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ticket__meta-value--accent { color: var(--accent); }

/* Bottom: PNR + Share + Book Button */
.ticket__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(31, 20, 12, 0.08);
  gap: 0.8rem;
}
.ticket__footer-left {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 1 1 auto;
}
.ticket__pnr {
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticket__pnr strong {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-left: 0.3rem;
}
.ticket__book {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem;
  background: var(--ink);
  color: #fff;
  font-family: var(--ff-mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  transition: all var(--dur-fast) var(--ease);
  white-space: nowrap;
  flex: 0 0 auto;
}
.ticket__book .arrow {
  display: inline-block;
  transition: transform var(--dur-fast) var(--ease);
}
.ticket:hover .ticket__book {
  background: var(--accent);
  transform: translateX(-2px);
}
.ticket:hover .ticket__book .arrow { transform: translateX(4px); }

/* === Share (dezent, im Body neben PNR) === */
.ticket__share {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.8rem;
  padding-left: 0.8rem;
  border-left: 1px solid rgba(31, 20, 12, 0.1);
}
.ticket__share-label {
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin-right: 0.2rem;
}
.ticket__share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-mute);
  transition: color var(--dur-fast) var(--ease);
  padding: 0.1rem;
  line-height: 0;
}
.ticket__share-btn svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  stroke: currentColor;
  display: block;
}
.ticket__share-btn:hover { color: var(--accent); }

/* =========================================================
   CELEBRATIONS — große Bildstrecke
   ========================================================= */
.celebrations { background: var(--bg); }
.celebrations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.celebration {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ink);
}
.celebration--wide { grid-column: span 2; aspect-ratio: 3 / 2; }
.celebration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.celebration::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,13,10,0.8));
  z-index: 1;
}
.celebration:hover img { transform: scale(1.08); filter: brightness(0.95); }
.celebration__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  z-index: 2;
  color: #fff;
}
.celebration__body h3 {
  font-size: clamp(1.7rem, 2.4vw, 2.6rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 0.4rem;
  line-height: 1;
}
.celebration__body h3 em { font-style: italic; }
.celebration__body p {
  font-size: var(--fs-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  font-weight: 400;
}

/* =========================================================
   PARALLAX Callout
   ========================================================= */
.parallax {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  text-align: center;
}
.parallax__bg {
  position: absolute;
  inset: -12% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,13,10,0.4), rgba(15,13,10,0.55));
  z-index: 1;
}
.parallax__content {
  position: relative;
  z-index: 2;
  padding: 4rem 1.5rem;
  max-width: 820px;
}
.parallax__content .eyebrow { color: var(--gold); }
.parallax__content .eyebrow::before { background: var(--gold); }
.parallax__content h2 {
  color: #fff;
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  margin-bottom: 2rem;
  line-height: 1;
}
.parallax__content h2 em { font-style: italic; }
.parallax__content .script {
  display: block;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 0.8;
  margin: 0.3em 0;
}
.parallax__content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.86);
  margin-bottom: 2.5rem;
  max-width: 54ch;
  margin-inline: auto;
  font-weight: 300;
  line-height: 1.8;
}

/* =========================================================
   GALLERY — horizontaler Scroll
   ========================================================= */
.gallery-strip {
  padding-block: clamp(4rem, 8vw, 8rem);
  background: var(--bg);
  overflow: hidden;
}
.gallery-strip__head {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}
.gallery-strip__head h2 { font-size: var(--fs-h2); max-width: 16ch; line-height: 1; }
.gallery-strip__head h2 em { font-family: var(--ff-display); color: var(--accent); }
.gallery-strip__track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: 2rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg-3);
}
.gallery-strip__track::-webkit-scrollbar { height: 3px; }
.gallery-strip__track::-webkit-scrollbar-track { background: var(--bg-3); }
.gallery-strip__track::-webkit-scrollbar-thumb { background: var(--accent); }
.gallery-strip__item {
  flex: 0 0 clamp(260px, 30vw, 420px);
  aspect-ratio: 3 / 4;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}
.gallery-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.gallery-strip__item:hover img { transform: scale(1.06); }
.gallery-strip__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,13,10,0.65));
}
.gallery-strip__label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  color: #fff;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 300;
}

/* =========================================================
   CAPTAIN'S LOG — Journal-Style News Section
   ========================================================= */
.captains-log {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.captains-log::before {
  content: 'Log';
  position: absolute;
  top: 4%;
  right: -1%;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(10rem, 22vw, 26rem);
  color: rgba(31, 20, 12, 0.035);
  line-height: 0.8;
  font-weight: 400;
  pointer-events: none;
  user-select: none;
}
.captains-log__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  position: relative;
}
.log-entry {
  background: var(--surface);
  padding: 2rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  box-shadow: 0 1px 0 rgba(31, 20, 12, 0.03);
}
.log-entry:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -20px rgba(31, 20, 12, 0.2);
}

/* Captain's Log Slider */
.log-slider {
  position: relative;
  margin-inline: calc(-1 * clamp(1.5rem, 4vw, 3rem));
  padding-inline: clamp(1.5rem, 4vw, 3rem);
}
.log-slider__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, calc((100% - 3.2rem) / 3));
  gap: 1.6rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.5rem;
}
.log-slider__track::-webkit-scrollbar { display: none; }
.log-slider__track > .log-entry { scroll-snap-align: start; }
.log-slider__nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: 1.6rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  box-shadow: 0 8px 24px -10px rgba(31, 20, 12, 0.2);
  transform: translateY(-50%);
}
.log-slider__nav:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.05);
}
.log-slider__nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: translateY(-50%) scale(0.95);
}
.log-slider__nav--prev { left: -10px; }
.log-slider__nav--next { right: -10px; }
@media (max-width: 720px) {
  .log-slider__track { grid-auto-columns: minmax(280px, 85vw); }
  .log-slider__nav { display: none; }
}

/* Instagram-Eintrag als Foto-Karte mit Caption */
.log-entry--instagram .log-entry__ribbon {
  background: linear-gradient(45deg, #fa7e1e, #d62976);
  color: #fff;
  border: 0;
}
.log-entry--instagram .log-entry__body {
  font-size: 0.92rem;
  line-height: 1.7;
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 14em;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to bottom, #000 75%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, #000 75%, transparent);
}
.log-entry--instagram:hover .log-entry__body {
  max-height: none;
  mask-image: none;
  -webkit-mask-image: none;
}
.log-entry__ribbon {
  position: absolute;
  top: -1px;
  left: 2rem;
  background: var(--ink);
  color: var(--gold);
  padding: 0.4rem 0.8rem 0.45rem;
  font-family: var(--ff-mono);
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 0 0 2px 2px;
}
.log-entry__header {
  padding-top: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px dashed var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.log-entry__date {
  font-family: var(--ff-mono);
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.log-entry__date::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.log-entry__title {
  font-family: var(--ff-display);
  font-size: 1.55rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  font-style: italic;
}
.log-entry__title em { font-style: italic; color: var(--accent); }
.log-entry__body {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 300;
  flex: 1;
}
.log-entry__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px dashed var(--line);
}
.log-entry__signature {
  font-family: var(--ff-script);
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 0.7;
}
.log-entry__author {
  font-family: var(--ff-mono);
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  text-align: right;
  line-height: 1.4;
}
.log-entry__author strong {
  color: var(--ink);
  display: block;
  font-weight: 600;
}

/* =========================================================
   TESTIMONIALS — 2×2 photo grid + quote (Patio Time)
   ========================================================= */
.testimonials {
  background: var(--bg);
  overflow: hidden;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.photo-quad {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative;
}
.photo-quad .travel-label {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
}
.photo-quad__item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-3);
}
.photo-quad__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.photo-quad__item:hover img { transform: scale(1.06); }

.testimonials__content .eyebrow { color: var(--accent); }
.testimonials__content h2 {
  font-size: var(--fs-h1);
  margin-bottom: 2rem;
  max-width: 14ch;
  line-height: 0.95;
}
.testimonials__content h2 em { font-family: var(--ff-display); color: var(--accent); }
.testimonials__quote {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 1.2vw + 0.6rem, 1.45rem);
  font-style: italic;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 44ch;
  margin-bottom: 2rem;
  padding-left: 2rem;
  border-left: 1px solid var(--accent);
}
.testimonials__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.testimonials__author strong {
  color: var(--ink);
  font-weight: 600;
}
.testimonials__author::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--accent);
}
.testimonials__stars {
  display: inline-flex;
  gap: 0.2rem;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* ---- Slider ---- */
.testimonials__slider { position: relative; }
.testimonials__viewport {
  position: relative;
  min-height: 240px;
}
.testimonials__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  pointer-events: none;
}
.testimonials__slide.is-active {
  position: relative;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.testimonials__nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.2rem;
}
.testimonials__btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 1.1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: all 0.25s var(--ease);
  font-family: var(--ff-mono);
}
.testimonials__btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.testimonials__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.testimonials__counter {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* =========================================================
   NEWSLETTER — Newsletter Boarding Pass
   ========================================================= */
.announcement {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.announcement::before {
  content: 'Logbuch';
  position: absolute;
  top: 8%;
  left: -2%;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(10rem, 22vw, 26rem);
  color: rgba(201, 117, 82, 0.05);
  line-height: 0.8;
  font-weight: 400;
  pointer-events: none;
  user-select: none;
}

.newsletter-pass {
  position: relative;
  max-width: 1080px;
  margin-inline: auto;
  background: var(--surface);
  border-radius: 2px;
  font-family: var(--ff-mono);
  box-shadow:
    0 1px 0 rgba(31, 20, 12, 0.05),
    0 30px 60px -25px rgba(31, 20, 12, 0.22),
    0 80px 140px -60px rgba(201, 117, 82, 0.15);
  display: grid;
  grid-template-columns: 320px 1fr;
}

/* Round perforation notches between photo|main */
.newsletter-pass::before,
.newsletter-pass::after {
  content: '';
  position: absolute;
  left: calc(320px - 12px);
  width: 24px;
  height: 24px;
  background: var(--bg);
  border-radius: 50%;
  z-index: 4;
}
.newsletter-pass::before { top: -12px; }
.newsletter-pass::after  { bottom: -12px; }

/* LEFT: Photo Panel */
.newsletter-pass__photo {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border-right: 2px dashed var(--line);
  min-height: 100%;
}
.newsletter-pass__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  filter: brightness(0.55);
}
.newsletter-pass__photo-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.8rem 1.6rem;
  color: #fff;
}
.newsletter-pass__photo-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.newsletter-pass__photo-badge {
  background: var(--accent);
  color: #fff;
  padding: 0.4rem 0.7rem;
  font-family: var(--ff-mono);
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.newsletter-pass__photo-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.newsletter-pass__photo-issue {
  font-family: var(--ff-mono);
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  text-align: right;
}
.newsletter-pass__photo-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.newsletter-pass__photo-eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.newsletter-pass__photo-title {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: 2.6rem;
  color: #fff;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}
.newsletter-pass__photo-title em { font-style: italic; color: var(--gold); }
.newsletter-pass__photo-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  padding-top: 0.9rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  font-family: var(--ff-mono);
}
.newsletter-pass__photo-meta div { display: flex; flex-direction: column; gap: 0.15rem; }
.newsletter-pass__photo-meta dt {
  font-size: 0.46rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}
.newsletter-pass__photo-meta dd {
  font-size: 0.68rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* RIGHT: Main column */
.newsletter-pass__main {
  display: flex;
  flex-direction: column;
}

/* Airline header */
.newsletter-pass__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 2rem;
  background: var(--ink);
  color: #fff;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}
.newsletter-pass__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.newsletter-pass__brand-icon {
  color: var(--gold);
  font-size: 1.05rem;
  line-height: 0.8;
}
.newsletter-pass__brand-name {
  letter-spacing: 0.26em;
  font-weight: 700;
}
.newsletter-pass__class {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.2em;
}

/* Route section */
.newsletter-pass__route {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.8rem 2rem 1.4rem;
  border-bottom: 1px dashed rgba(31, 20, 12, 0.15);
}
.newsletter-pass__route-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.newsletter-pass__route-item--to { text-align: right; }
.newsletter-pass__route-label {
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.newsletter-pass__iata {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.newsletter-pass__city {
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.newsletter-pass__arc {
  width: 120px;
  height: 36px;
  color: var(--accent);
  display: block;
}
.newsletter-pass__arc svg { width: 100%; height: 100%; }
.newsletter-pass__arc svg path {
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-dasharray: 3 3;
  fill: none;
  stroke-linecap: round;
}
.newsletter-pass__arc svg text { fill: currentColor; font-size: 16px; }

/* Form body */
.newsletter-pass__body {
  padding: 2rem 2rem 2rem;
}
.newsletter-pass__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.newsletter-pass__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.newsletter-pass__field label {
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.newsletter-pass__field input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(31, 20, 12, 0.25);
  padding: 0.65rem 0;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--ink);
  transition: border-color var(--dur-fast);
}
.newsletter-pass__field input:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.newsletter-pass__field input::placeholder {
  color: rgba(31, 20, 12, 0.3);
}

/* Topics — Auswahl wovon man informiert werden will */
.newsletter-pass__topics-label {
  display: block;
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  margin-bottom: 1rem;
  padding-top: 0.4rem;
  border-top: 1px dashed rgba(31, 20, 12, 0.15);
}
.newsletter-pass__topics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 2rem;
}
.topic {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  background: var(--surface);
}
.topic:hover {
  border-color: var(--accent);
  background: rgba(201, 117, 82, 0.04);
}
.topic input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.topic__check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(31, 20, 12, 0.3);
  border-radius: 2px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  transition: all var(--dur-fast) var(--ease);
  background: var(--surface);
}
.topic__check::after {
  content: '✓';
  font-family: var(--ff-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  opacity: 0;
  transform: scale(0.5);
  transition: all var(--dur-fast) var(--ease);
}
.topic input:checked ~ .topic__check {
  background: var(--accent);
  border-color: var(--accent);
}
.topic input:checked ~ .topic__check::after {
  opacity: 1;
  transform: scale(1);
}
.topic input:checked ~ .topic__label .topic__title { color: var(--accent); }
.topic__label {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.topic__title {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.1;
  transition: color var(--dur-fast);
}
.topic__desc {
  font-family: var(--ff-mono);
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}

/* Footer with submit button + barcode */
.newsletter-pass__footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1.4rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(31, 20, 12, 0.15);
}
.newsletter-pass__pnr {
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  line-height: 1.5;
}
.newsletter-pass__pnr strong {
  color: var(--ink);
  font-weight: 700;
  margin-left: 0.3rem;
  letter-spacing: 0.1em;
}
.newsletter-pass__barcode {
  height: 32px;
  width: 110px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--ink) 0 1px,
    transparent 1px 3px,
    var(--ink) 3px 4px,
    transparent 4px 5px,
    var(--ink) 5px 8px,
    transparent 8px 9px,
    var(--ink) 9px 10px,
    transparent 10px 13px,
    var(--ink) 13px 15px,
    transparent 15px 16px
  );
  opacity: 0.85;
}

/* Boarding meta strip — under route */
.newsletter-pass__boarding {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 0.9rem 2rem 1rem;
  background: var(--bg);
  border-bottom: 1px dashed rgba(31, 20, 12, 0.15);
  font-family: var(--ff-mono);
}
.newsletter-pass__boarding-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.newsletter-pass__boarding-label {
  font-size: 0.46rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.newsletter-pass__boarding-value {
  font-size: 0.78rem;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.newsletter-pass__boarding-value--accent { color: var(--accent); }
.newsletter-pass__submit {
  padding: 0.9rem 1.6rem;
  background: var(--ink);
  color: #fff;
  border: 0;
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 2px;
  transition: all var(--dur-fast) var(--ease);
}
.newsletter-pass__submit:hover {
  background: var(--accent);
}
.newsletter-pass__submit .arrow { transition: transform var(--dur-fast); }
.newsletter-pass__submit:hover .arrow { transform: translateX(4px); }

@media (max-width: 900px) {
  .newsletter-pass { grid-template-columns: 1fr; }
  .newsletter-pass::before,
  .newsletter-pass::after { display: none; }
  .newsletter-pass__photo { min-height: 280px; border-right: 0; border-bottom: 2px dashed var(--line); }
}
@media (max-width: 720px) {
  .newsletter-pass__route { grid-template-columns: 1fr; gap: 0.8rem; text-align: center; }
  .newsletter-pass__route-item--to { text-align: center; }
  .newsletter-pass__arc { transform: rotate(90deg); width: 36px; margin-inline: auto; }
  .newsletter-pass__row { grid-template-columns: 1fr; gap: 1.2rem; }
  .newsletter-pass__topics { grid-template-columns: 1fr; }
  .newsletter-pass__footer { grid-template-columns: 1fr; gap: 1rem; }
  .newsletter-pass__barcode { display: none; }
  .newsletter-pass__submit { justify-content: center; }
  .newsletter-pass__boarding { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   FLIGHT VOUCHERS — Gutscheine als Boarding Passes
   ========================================================= */
.vouchers {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.vouchers::before {
  content: 'Gift';
  position: absolute;
  top: 10%;
  left: -2%;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(10rem, 22vw, 26rem);
  color: rgba(201, 117, 82, 0.05);
  line-height: 0.8;
  font-weight: 400;
  pointer-events: none;
  user-select: none;
}
.vouchers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.voucher {
  position: relative;
  background: var(--surface);
  padding: 2.2rem 1.8rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: var(--ff-mono);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  box-shadow: 0 1px 0 rgba(31, 20, 12, 0.04);
  overflow: hidden;
}
.voucher:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -25px rgba(31, 20, 12, 0.25);
}
.voucher--featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.voucher--featured .voucher__airline,
.voucher--featured .voucher__category-label,
.voucher--featured .voucher__value-label,
.voucher--featured .voucher__footer-label,
.voucher--featured .voucher__code { color: rgba(255, 255, 255, 0.75); }
.voucher--featured .voucher__brand-name { color: #fff; }
.voucher--featured .voucher__value { color: #fff; }
.voucher--featured .voucher__label { color: var(--gold); }
.voucher--featured .voucher__body { color: rgba(255, 255, 255, 0.78); border-color: rgba(255, 255, 255, 0.15); }
.voucher--featured .voucher__buy { background: var(--accent); color: #fff; }
.voucher--featured .voucher__buy:hover { background: #fff; color: var(--ink); }

.voucher__airline {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(31, 20, 12, 0.12);
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.voucher--featured .voucher__airline { border-color: rgba(255, 255, 255, 0.15); }
.voucher__brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink);
  font-weight: 600;
}
.voucher__brand-icon {
  color: var(--accent);
  font-size: 1rem;
  line-height: 0.8;
}
.voucher__label {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.18em;
}

.voucher__value-block {
  text-align: center;
  padding: 0.6rem 0 0.8rem;
}
.voucher__value-label {
  display: block;
  font-size: 0.5rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.voucher__value {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(3.2rem, 4vw + 1rem, 4.6rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 0.9;
  letter-spacing: -0.01em;
  display: block;
}
.voucher__value sup {
  font-size: 0.35em;
  vertical-align: 0.8em;
  margin-left: 0.12em;
  font-style: normal;
  font-weight: 400;
}

.voucher__body {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  font-family: var(--ff-sans);
  text-align: center;
  padding: 0.8rem 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
}

.voucher__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.voucher__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: center;
}
.voucher__meta-label {
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.voucher__meta-value {
  font-size: 0.72rem;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.voucher--featured .voucher__meta-value { color: #fff; }

.voucher__buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.2rem;
  background: var(--ink);
  color: #fff;
  font-family: var(--ff-mono);
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  margin-top: auto;
  transition: background var(--dur-fast) var(--ease);
  border: 0;
  cursor: pointer;
  text-decoration: none;
}
.voucher__buy:hover { background: var(--accent); }
.voucher__buy .arrow { transition: transform var(--dur-fast); }
.voucher__buy:hover .arrow { transform: translateX(3px); }

.voucher__code {
  font-size: 0.46rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: center;
  font-weight: 500;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: var(--bg-2); }
.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.photo-pair__item {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-3);
}
.photo-pair__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.photo-pair__item:first-child {
  transform: translateY(2rem);
}
.photo-pair__item:hover img { transform: scale(1.06); }
.contact h2 {
  font-size: var(--fs-h1);
  margin-bottom: 2rem;
  max-width: 13ch;
  line-height: 1;
}
.contact h2 em { font-family: var(--ff-display); color: var(--accent); }
.contact > .wrap > div > p {
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 1.08rem;
  max-width: 42ch;
  margin-bottom: 2.5rem;
  line-height: 1.85;
}

.contact__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}
.contact__info > div { display: flex; flex-direction: column; gap: 0.4rem; }
.contact__info strong {
  font-size: var(--fs-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.contact__info span {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  line-height: 1.4;
  font-weight: 300;
}

.form {
  background: var(--surface);
  padding: clamp(2rem, 3vw, 3rem);
  border: 1px solid var(--line);
}

/* =========================================================
   POSTCARD — Kontaktformular als Postkarte
   ========================================================= */
.postcard {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: #F8EFDC;
  background-image:
    radial-gradient(circle at 20% 40%, rgba(201, 117, 82, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(184, 146, 90, 0.05) 0%, transparent 50%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  border: 1px solid rgba(31, 20, 12, 0.12);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.4) inset,
    0 2px 0 rgba(31, 20, 12, 0.06),
    0 40px 80px -40px rgba(31, 20, 12, 0.25),
    0 80px 140px -60px rgba(201, 117, 82, 0.15);
  font-family: var(--ff-mono);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 4rem;
  transform: rotate(-0.4deg);
  transition: transform var(--dur) var(--ease);
}
.postcard:hover { transform: rotate(0deg); }

.postcard__header {
  grid-column: 1 / -1;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed rgba(31, 20, 12, 0.22);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.postcard__header strong {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.18em;
}
.postcard__greetings {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 1.3vw + 0.3rem, 1.5rem);
  color: var(--ink);
  letter-spacing: -0.005em;
  text-transform: none;
}

/* LEFT: Message */
.postcard__left {
  padding: 2rem 2.4rem 2rem 2.4rem;
  border-right: 1px dashed rgba(31, 20, 12, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.postcard__left::before {
  content: '✈';
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  font-size: 3rem;
  color: rgba(201, 117, 82, 0.12);
  transform: rotate(-20deg);
}

/* VISA/CLEARED Stempel über dem Message-Bereich */
.postcard__visa {
  position: absolute;
  bottom: 3rem;
  left: 2.6rem;
  width: 150px;
  height: 60px;
  border: 2.5px solid var(--accent);
  border-radius: 3px;
  color: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--ff-mono);
  opacity: 0;
  transform: rotate(-22deg) scale(1.5);
  pointer-events: none;
  mix-blend-mode: multiply;
  padding: 0.3rem 0.6rem;
  transition: opacity 0.5s var(--ease), transform 0.7s var(--ease);
}
.postcard__visa.is-stamped {
  opacity: 0.48;
  transform: rotate(-6deg) scale(1);
}
.postcard__visa::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid currentColor;
  border-radius: 1px;
  opacity: 0.6;
}
.postcard__visa-top {
  font-size: 0.52rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
}
.postcard__visa-main {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin: 0.1rem 0;
}
.postcard__visa-bottom {
  font-size: 0.48rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.postcard__left > .passport-stamp {
  bottom: 3rem;
  right: 2.5rem;
  opacity: 0.4;
  transform: rotate(-12deg);
  z-index: 2;
}

.postcard__label {
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.postcard__message {
  flex: 1 1 auto;
  min-height: 200px;
  background: transparent;
  border: 0;
  border-bottom: 1px dashed rgba(31, 20, 12, 0.2);
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.08rem;
  color: var(--ink);
  line-height: 2.2;
  padding: 0.5rem 0;
  resize: none;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2.1rem,
    rgba(31, 20, 12, 0.15) 2.1rem,
    rgba(31, 20, 12, 0.15) calc(2.1rem + 1px)
  );
}
.postcard__message:focus {
  outline: none;
}
.postcard__message::placeholder {
  color: rgba(31, 20, 12, 0.35);
  font-style: italic;
}

.postcard__from {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding-top: 0.4rem;
  position: relative;
  z-index: 1;
}
.postcard__from label {
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  white-space: nowrap;
}
.postcard__from input {
  flex: 1;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(31, 20, 12, 0.35);
  padding: 0.4rem 0;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: var(--ink);
}
.postcard__from input:focus { outline: none; border-bottom-color: var(--accent); }

/* RIGHT: Stamp + Postmark + Address */
.postcard__right {
  padding: 2rem 2.4rem;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 1.3rem;
  position: relative;
}
.postcard__stamp-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

/* Briefmarke */
.postcard__stamp {
  width: 100px;
  height: 120px;
  background: var(--surface);
  border: 1px dashed rgba(31, 20, 12, 0.3);
  padding: 0.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 4px 12px -4px rgba(31, 20, 12, 0.15);
  /* Perforated edge effect */
  mask-image:
    radial-gradient(circle at 0 0, transparent 3px, #000 3.5px),
    radial-gradient(circle at 100% 0, transparent 3px, #000 3.5px),
    radial-gradient(circle at 0 100%, transparent 3px, #000 3.5px),
    radial-gradient(circle at 100% 100%, transparent 3px, #000 3.5px);
}
.postcard__stamp-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  padding: 0.3rem 0;
  border: 1px solid rgba(201, 117, 82, 0.4);
}
.postcard__stamp img {
  width: 50px;
  height: auto;
  opacity: 0.85;
}
.postcard__stamp-value {
  font-family: var(--ff-brand);
  font-size: 0.82rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  line-height: 1;
}
.postcard__stamp-region {
  font-size: 0.48rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}

/* Poststempel (rund) */
.postcard__postmark {
  width: 110px;
  height: 110px;
  border: 2px solid rgba(201, 117, 82, 0.55);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--accent);
  position: relative;
  transform: rotate(-8deg);
  flex-shrink: 0;
  opacity: 0.88;
  padding: 0.5rem;
}
.postcard__postmark::before,
.postcard__postmark::after {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(201, 117, 82, 0.55);
}
.postcard__postmark::before { top: 22%; }
.postcard__postmark::after  { bottom: 22%; }
.postcard__postmark-city {
  font-family: var(--ff-mono);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  font-weight: 700;
  text-transform: uppercase;
}
.postcard__postmark-date {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-block: 0.15rem;
}
.postcard__postmark-country {
  font-family: var(--ff-mono);
  font-size: 0.48rem;
  letter-spacing: 0.2em;
  font-weight: 500;
}

/* Address lines */
.postcard__to {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 0.5rem;
  border-top: 1px dashed rgba(31, 20, 12, 0.15);
}
.postcard__to-label {
  font-size: 0.54rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.postcard__to-field {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: baseline;
  gap: 0.6rem;
}
.postcard__to-field > label {
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.postcard__to-field input,
.postcard__to-field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(31, 20, 12, 0.35);
  padding: 0.45rem 0 0.25rem;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: 0.98rem;
  color: var(--ink);
  min-width: 0;
}
.postcard__to-field input:focus,
.postcard__to-field select:focus {
  outline: none;
  border-bottom-color: var(--accent);
}

/* Send Button */
.postcard__send {
  padding: 0.9rem 1.5rem;
  background: var(--ink);
  color: #fff;
  border: 0;
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  transition: background var(--dur-fast) var(--ease);
  border-radius: 2px;
  margin-top: 0.5rem;
}
.postcard__send:hover { background: var(--accent); }
.postcard__send .arrow { transition: transform var(--dur-fast) var(--ease); }
.postcard__send:hover .arrow { transform: translateX(4px); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.form__field { display: flex; flex-direction: column; margin-bottom: 1.5rem; }
.form__field label {
  font-size: var(--fs-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.form__field input,
.form__field textarea,
.form__field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 0.8rem 0;
  color: var(--ink);
  transition: border-color var(--dur-fast);
  font-weight: 300;
}
.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
  outline: none;
  border-color: var(--accent);
}
.form__field textarea { min-height: 110px; resize: vertical; }
.form .btn { width: 100%; justify-content: center; margin-top: 1rem; }

/* =========================================================
   FOOTER — große Navigation, Attika-Stil
   ========================================================= */
.footer {
  background: var(--accent);
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 5vw, 5rem) 1.5rem;
}

.footer__main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  align-items: start;
}

.footer__col { min-width: 0; }
.footer__col--brand { padding-right: 1rem; }

.footer__brand {
  display: inline-block;
  margin-bottom: 1rem;
}
.footer__brand img {
  height: 32px;
  width: auto;
  display: block;
}
.footer__tagline {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.45;
  max-width: 24ch;
  margin-bottom: 1.5rem;
}

.footer__heading {
  font-family: var(--ff-sans);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.1rem;
  font-weight: 600;
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.footer__nav-list a {
  font-family: var(--ff-sans);
  font-size: 0.86rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
  letter-spacing: 0.01em;
  transition: color var(--dur-fast) var(--ease);
  width: fit-content;
  position: relative;
}
.footer__nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width var(--dur-fast) var(--ease);
}
.footer__nav-list a:hover { color: #fff; }
.footer__nav-list a:hover::after { width: 100%; }

.footer__address {
  font-family: var(--ff-sans);
  font-size: 0.86rem;
  font-style: normal;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.1rem;
}
.footer__contact {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin-bottom: 0.25rem;
  transition: color var(--dur-fast);
}
.footer__contact:hover { color: #fff; }

/* ---- Flight Schedule Board (Öffnungszeiten — kompakt) ---- */
.flight-schedule {
  font-family: var(--ff-mono);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.flight-schedule__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  padding: 0.42rem 0;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
  align-items: center;
}
.flight-schedule__row:last-child { border-bottom: none; }
.flight-schedule__day {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  letter-spacing: 0;
}
.flight-schedule__status {
  font-size: 0.48rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.flight-schedule__status::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 6px currentColor;
}
.flight-schedule__status--ontime   { color: #8EDB82; }
.flight-schedule__status--boarding { color: #F3C66B; }
.flight-schedule__status--closed   { color: rgba(255, 255, 255, 0.4); }
.flight-schedule__status--closed::before { box-shadow: none; }

/* Hide unused old footer mark */
.footer__mark { display: none; }
.footer__mark-OLD {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}
.footer__mark img {
  width: clamp(90px, 12vw, 150px);
  height: auto;
  opacity: 1;
  filter: drop-shadow(0 10px 40px rgba(255, 255, 255, 0.15));
}
.footer__mark-text {
  font-family: var(--ff-brand);
  font-size: clamp(3rem, 8vw, 7rem);
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 0.9;
  text-align: center;
  user-select: none;
}

.footer__bottom {
  padding-top: 1.4rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}
.footer__bottom-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  justify-self: center;
  color: rgba(255, 255, 255, 0.78);
}
.footer__bottom-mark img {
  height: 18px;
  width: auto;
  opacity: 0.85;
}
.footer__legal {
  display: flex;
  gap: 1.4rem;
  justify-self: end;
}
.footer__legal a { transition: color var(--dur-fast); }
.footer__legal a:hover { color: #fff; }

.footer__social {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.3rem;
}
.footer__social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
  transition: all var(--dur-fast) var(--ease);
}
.footer__social a:hover {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}

/* =========================================================
   Scroll Reveals
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 120ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 240ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 360ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 480ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 600ms; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1180px) {
  .nav__menu { gap: clamp(1rem, 1.6vw, 1.6rem); }
  .nav__menu a { font-size: 0.68rem; letter-spacing: 0.16em; }
  .nav__phone { display: none; }
}

@media (max-width: 880px) {
  .nav__menu { display: none; }
  .nav__burger { display: flex; }
  .tiles__grid { grid-template-columns: 1fr; }
  .tickets { grid-template-columns: 1fr; }
  .flight-search {
    grid-template-columns: 1fr 1fr;
  }
  .flight-search__arrow { display: none; }
  .flight-search__submit { grid-column: 1 / -1; padding: 1.2rem; }
  .ticket { grid-template-columns: 42% 1fr; min-height: 320px; }
  .postcard { grid-template-columns: 1fr; }
  .postcard__left { border-right: 0; border-bottom: 1px dashed rgba(31, 20, 12, 0.2); }
  .tile { aspect-ratio: 4 / 3; }
  .intro__grid,
  .brunch__grid,
  .contact__grid,
  .section-head,
  .footer__nav-grid { grid-template-columns: 1fr; gap: 3rem; }
  .section-head { align-items: start; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__col--brand { grid-column: 1 / -1; }
  .footer__bottom { grid-template-columns: 1fr; text-align: center; gap: 0.8rem; }
  .footer__bottom-mark { justify-self: center; }
  .footer__legal { justify-self: center; }
  .celebrations__grid { grid-template-columns: repeat(2, 1fr); }
  .celebration--wide { grid-column: span 2; aspect-ratio: 16 / 9; }
  .menu__grid { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 0; }
  .menu__aside { padding-left: 0; padding-top: 2rem; border-left: 0; border-top: 1px solid var(--line); }
  .event-row { grid-template-columns: 90px 1fr auto; gap: 1.5rem; }
  .event-row__meta,
  .event-row__arrow { display: none; }
}

@media (max-width: 720px) {
  :root { --nav-h: 72px; }
  .flight-search { grid-template-columns: 1fr; }
  .ticket { grid-template-columns: 1fr; min-height: auto; }
  .ticket__photo { aspect-ratio: 4/3; }
  .ticket > .ticket__photo::before,
  .ticket > .ticket__photo::after { display: none; }
  .nav__phone { display: none; }
  .nav__reserve { display: none; }
  .hero { min-height: 620px; }
  .hero__bar { flex-wrap: wrap; gap: 1rem; }
  .hero__coords { order: 3; flex-basis: 100%; }
  .celebrations__grid { grid-template-columns: 1fr; }
  .celebration--wide { grid-column: span 1; aspect-ratio: 3 / 2; }
  .brunch__meta { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .form__row { grid-template-columns: 1fr; }
  .contact__info { grid-template-columns: 1fr; gap: 1.5rem; }
  .event-row { grid-template-columns: 70px 1fr; gap: 1rem; }
  .event-row__type { grid-column: 1 / -1; justify-self: start; margin-top: 0.5rem; }
}

/* ---- Info-Band: Eckdaten-Strip (Frühstück / Brunch) ---- */
.info-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--surface, #fff);
}
.info-band__item {
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-right: 1px solid var(--line);
}
.info-band__item:last-child { border-right: 0; }
.info-band__label {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.info-band__value {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.35;
  color: var(--ink);
}
@media (max-width: 720px) {
  .info-band { grid-template-columns: 1fr 1fr; }
  .info-band__item:nth-child(2) { border-right: 0; }
  .info-band__item:nth-child(1),
  .info-band__item:nth-child(2) { border-bottom: 1px solid var(--line); }
}


/* ---- Inline-Link (im Fließtext) ---- */
.link-inline {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.link-inline:hover { color: var(--ink); }

/* ---- Button-Variante für dunklen Hintergrund ---- */
.btn--on-dark {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.btn--on-dark:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

/* ---- Voucher Request Form ---- */
.voucher-form {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  background: var(--surface, #fff);
  border: 1px solid var(--line);
  padding: clamp(2rem, 4vw, 3.5rem);
}
.voucher-form__step { border: 0; padding: 0; margin: 0; }
.voucher-form__step legend {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 1.6vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 1.4rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
  width: 100%;
}
.voucher-form__num {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  font-style: normal;
}

/* Beträge-Chips */
.voucher-form__amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: stretch;
}
.voucher-form__chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border: 1px solid var(--line);
  background: var(--bg);
  cursor: pointer;
  font-family: var(--ff-mono);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.2s var(--ease);
}
.voucher-form__chip input[type="radio"] {
  position: absolute; opacity: 0; pointer-events: none;
}
.voucher-form__chip:hover { border-color: var(--accent); }
.voucher-form__chip:has(input:checked) {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.voucher-form__chip--custom {
  flex: 1 1 280px;
  min-width: 280px;
  padding: 0.5rem 1rem 0.5rem 1.4rem;
  cursor: text;
  gap: 0.7rem;
}
.voucher-form__chip--custom span:first-child {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
  flex-shrink: 0;
}
.voucher-form__chip--custom input[type="number"] {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  border: 0;
  background: transparent;
  font-family: var(--ff-mono);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  padding: 0.4rem 0.4rem;
  outline: none;
  -moz-appearance: textfield;
  text-align: left;
}
.voucher-form__chip--custom input[type="number"]::-webkit-outer-spin-button,
.voucher-form__chip--custom input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}
.voucher-form__chip-suffix {
  font-family: var(--ff-mono);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
}

/* Radios als Karten */
.voucher-form__radios {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}
.voucher-form__radios--two { grid-template-columns: 1fr 1fr; }
.voucher-form__radio {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  border: 1px solid var(--line);
  background: var(--bg);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.voucher-form__radio:hover { border-color: var(--accent); }
.voucher-form__radio:has(input:checked) {
  border-color: var(--accent);
  background: var(--surface, #fff);
  box-shadow: inset 3px 0 0 0 var(--accent);
}
.voucher-form__radio input[type="radio"] {
  margin-top: 0.25rem;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.voucher-form__radio strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: var(--ink);
}
.voucher-form__radio span {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* Form-Felder */
.voucher-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 1.4rem;
}
.voucher-form__field--full { grid-column: 1 / -1; }
.voucher-form__field label {
  display: block;
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.voucher-form__field input,
.voucher-form__field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  background: var(--bg);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.2s;
}
.voucher-form__field input:focus,
.voucher-form__field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface, #fff);
}
.voucher-form__hint {
  font-size: 0.78rem;
  color: var(--ink-mute);
  font-style: italic;
  margin-top: 0.8rem;
}

/* Simple-Variante der Celebration-Karte (für die "So geht's"-Schritte) */
.celebration--simple {
  background: var(--surface, #fff);
  border: 1px solid var(--line);
  padding: 2rem 1.6rem;
  text-align: left;
}
.celebration--simple .celebration__num {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-bottom: 0.6rem;
}
.celebration--simple h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 0.6rem;
}
.celebration--simple h3 em { font-style: italic; color: var(--accent); }
.celebration--simple p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.btn--lg { padding: 1.1rem 2.5rem; font-size: 0.85rem; }

@media (max-width: 720px) {
  .voucher-form__radios--two { grid-template-columns: 1fr; }
  .voucher-form__grid { grid-template-columns: 1fr; }
  .voucher-form__chip--custom { min-width: 100%; }
}

/* ---- Verfügbarkeits-Widget — minimal & edel ---- */
.availability-section { background: var(--bg-2, #f7f1e6); }
.availability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  list-style: none;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0;
}
.availability-card {
  position: relative;
  background: var(--surface, #fff);
  border: 1px solid var(--line);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
  overflow: hidden;
}
.availability-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

/* Boarding-Pass Airline-Header — dunkel, klar abgesetzt */
.availability-card__airline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 1.2rem;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--ff-mono);
  font-size: 0.55rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
}
.availability-card__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.22em;
}
.availability-card__brand-icon {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0;
}
.availability-card__pass-label { font-weight: 500; }

/* Datum-Zeile: große Zahl + Wochentag/Monat */
.availability-card__date-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.2rem 0.8rem;
  line-height: 1;
}
.availability-card__day {
  font-family: var(--ff-display);
  font-size: 3.2rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 0.85;
}
.availability-card__date-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}
.availability-card__weekday {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  font-weight: 700;
}
.availability-card__month {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--ink);
  font-weight: 600;
}
.availability-card__special {
  align-self: flex-start;
  padding: 0.18rem 0.5rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--ff-mono);
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Progress-Bar im Body */
.availability-card .avail-progress {
  padding: 0 1.2rem 1rem;
}
.availability-card__note {
  padding: 0 1.2rem;
  margin: 0 0 0.8rem;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* Perforations-Tear (gestrichelte Linie mit gestanzten Halbkreisen an den Rändern) */
.availability-card__tear {
  position: relative;
  height: 1px;
  margin: 0 1rem;
  background-image: linear-gradient(90deg, var(--line) 50%, transparent 50%);
  background-size: 6px 1px;
  background-repeat: repeat-x;
}
.availability-card__tear::before,
.availability-card__tear::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  background: var(--bg-2, #f7f1e6);
  border-radius: 50%;
  transform: translateY(-50%);
}
.availability-card__tear::before { left: -1.7rem; }
.availability-card__tear::after  { right: -1.7rem; }

/* Stub: PNR links · Button rechts */
.availability-card__stub {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1rem 0.85rem 1.2rem;
}
.availability-card__pnr {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--ff-mono);
  white-space: nowrap;
}
.availability-card__pnr-label {
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.availability-card__pnr-code {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  font-weight: 700;
}
/* === Eleganter Progress-Bar mit Skala & Zeiger === */
.avail-progress {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.6rem;
}

/* Skala-Labels (0% / 25% / 50% / 75% / 100%) */
.avail-progress__scale {
  display: flex;
  justify-content: space-between;
  font-family: var(--ff-mono);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  font-weight: 600;
  padding: 0 1px;
}

/* Tick-Reihe — 21 kleine Striche, davon 5 lang (0/25/50/75/100) */
.avail-progress__ticks {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 14px;
  padding: 0;
}
.avail-progress__tick {
  width: 1px;
  height: 5px;
  background: var(--ink-mute);
  opacity: 0.4;
}
.avail-progress__tick.is-major {
  height: 9px;
  opacity: 0.7;
}

/* Aktueller Zeiger — etwas dicker und Akzent-Farben */
.avail-progress__pointer {
  position: absolute;
  bottom: 0;
  width: 2px;
  height: 14px;
  background: var(--ink);
  border-radius: 1px;
  transform: translateX(-50%);
  transition: left 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 0 2px var(--surface, #fff);
}

/* Track — Pill, hellgrau */
.avail-progress__track {
  position: relative;
  height: 14px;
  background: #ece8e0;
  border-radius: 99px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
}

/* Fill — ruhiger Akzent-Ton, kein Verlauf */
.avail-progress__fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--accent);
  border-radius: 99px;
  transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Caption darunter */
.avail-progress__caption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 0.4rem;
  gap: 0.5rem;
}
.avail-progress__status {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
}
.avail-progress__pct {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-mute);
}

.availability-card__status { margin: 0; }
.availability-card__label {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--ink);
}
.availability-card__note {
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-style: italic;
  margin: 0;
  line-height: 1.55;
  font-family: var(--ff-display);
}

.availability-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px;
  transition: background 0.25s var(--ease);
  white-space: nowrap;
}
.availability-card__cta:hover {
  background: var(--ink);
  color: #fff;
}
.availability-card__cta .arrow {
  transition: transform 0.2s;
  display: inline-block;
}
.availability-card__cta:hover .arrow { transform: translateX(3px); }
/* Urgent CTA — bei „Wenige Plätze": warmes Bronze mit Pulsing */
.availability-card__cta--urgent {
  background: #c89352;
  position: relative;
  padding-left: 1.7rem;
}
.availability-card__cta--urgent::before {
  content: '';
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 0.4; transform: translateY(-50%) scale(1); }
  50%      { opacity: 1;   transform: translateY(-50%) scale(1.3); }
}
.availability-card__cta--urgent:hover { background: #b97f1e; }

/* Waitlist CTA — bei „Ausgebucht": dunkler Ink */
.availability-card__cta--waitlist {
  background: var(--ink);
  color: #fff;
}
.availability-card__cta--waitlist:hover { background: #c95252; }

/* Ribbon (oben rechts auf der Karte) */
.availability-card__ribbon {
  position: absolute;
  top: 0.85rem;
  right: -0.5rem;
  padding: 0.25rem 0.7rem;
  background: #c89352;
  color: #fff;
  font-family: var(--ff-mono);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(200, 147, 82, 0.25);
}
.availability-card__ribbon::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 0;
  width: 0;
  height: 0;
  border-top: 4px solid #8a6432;
  border-right: 5px solid transparent;
}
.availability-card__ribbon--full {
  background: var(--ink);
  box-shadow: 0 4px 12px rgba(28, 26, 22, 0.3);
}
.availability-card__ribbon--full::after { border-top-color: rgba(0,0,0,0.6); }

/* Status-Varianten — einfarbige Töne in Theme-Sprache */
.availability-card.is-fast-voll {
  border-color: rgba(200, 147, 82, 0.5);
  box-shadow: 0 0 0 1px rgba(200, 147, 82, 0.2);
}
.availability-card.is-fast-voll .avail-progress__fill { background: #c89352; }
.availability-card.is-fast-voll .avail-progress__status { color: #b88126; }

.availability-card.is-ausgebucht {
  background: #fbf6f4;
  border-color: rgba(201, 82, 82, 0.18);
}
.availability-card.is-ausgebucht .availability-card__airline {
  background: #f4e3df;
  border-color: rgba(201, 82, 82, 0.18);
}
.availability-card.is-ausgebucht .avail-progress__fill { background: #c95252; }
.availability-card.is-ausgebucht .avail-progress__status { color: #c95252; }
.availability-card.is-ausgebucht .availability-card__day { color: rgba(28,26,22,0.45); }
.availability-card.is-ausgebucht .availability-card__tear::before,
.availability-card.is-ausgebucht .availability-card__tear::after { background: #fbf6f4; }

.availability-foot {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-style: italic;
  font-family: var(--ff-display);
}

/* ---- Announcement Popup ---- */
.anc-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s var(--ease);
}
.anc-popup.is-open { opacity: 1; pointer-events: auto; }
.anc-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 26, 22, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.anc-popup__dialog {
  position: relative;
  background: var(--surface, #fff);
  border: 1px solid var(--line);
  width: min(720px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}
.anc-popup.is-open .anc-popup__dialog { transform: translateY(0); }

.anc-popup__close {
  position: absolute;
  top: 0.7rem;
  right: 0.85rem;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 0;
  font-size: 1.5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s, transform 0.2s;
}
.anc-popup__close:hover {
  color: #fff;
  transform: rotate(90deg);
}

/* Boarding-Pass-Header oben */
.anc-popup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.4rem;
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
}
.anc-popup__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
  font-weight: 700;
}
.anc-popup__brand-icon { color: var(--accent); font-size: 0.95rem; letter-spacing: 0; }

.anc-popup__intro {
  padding: 2rem clamp(1.4rem, 3vw, 2.2rem) 1.2rem;
  text-align: center;
}
.anc-popup__intro .eyebrow { color: var(--accent); }
.anc-popup__intro h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  font-family: var(--ff-display);
  margin: 0.3rem 0 0.6rem;
  line-height: 1;
}
.anc-popup__intro h2 em {
  font-style: italic;
  color: var(--accent);
  font-family: var(--ff-display);
}
.anc-popup__intro p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  max-width: 42ch;
  margin: 0 auto;
  line-height: 1.55;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
}

.anc-popup__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0.5rem clamp(1.4rem, 3vw, 2.2rem) 1.6rem;
}

/* Einzelnes Item */
.anc-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 0;
  background: var(--bg-2, #f7f1e6);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.anc-item:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}
.anc-item__media {
  position: relative;
  overflow: hidden;
}
.anc-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 140px;
}
.anc-item__type-tag {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  padding: 0.2rem 0.55rem;
  background: rgba(28, 26, 22, 0.85);
  color: #fff;
  font-family: var(--ff-mono);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  backdrop-filter: blur(2px);
}
.anc-item--saison .anc-item__type-tag { background: var(--accent); }
.anc-item--angebot .anc-item__type-tag { background: #c89352; }
.anc-item--event .anc-item__type-tag { background: var(--ink); }
.anc-item--jobs .anc-item__type-tag { background: #6e9c5b; }

.anc-item__body {
  padding: 1rem 1.2rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.anc-item__eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.anc-item__title {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  margin: 0;
  line-height: 1.15;
}
.anc-item__body-text {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.anc-item__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  align-self: flex-start;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.2rem;
  transition: color 0.2s, padding-left 0.2s;
}
.anc-item__cta:hover {
  color: var(--accent);
  padding-left: 0.2rem;
}

.anc-popup__footer {
  padding: 0.6rem 1.4rem 1.4rem;
  display: flex;
  justify-content: center;
  border-top: 1px dashed var(--line);
  margin: 0 1.2rem;
}
.anc-popup__dismiss {
  background: transparent;
  border: 0;
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  cursor: pointer;
  padding: 0.7rem 1rem;
  transition: color 0.2s;
}
.anc-popup__dismiss:hover { color: var(--ink); }

@media (max-width: 540px) {
  .anc-item {
    grid-template-columns: 1fr;
  }
  .anc-item__media img { min-height: 160px; max-height: 180px; }
}

/* ---- Feiern-Sektion (auf Frühstück & Brunch) ---- */
.celebrate {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.celebrate__bg {
  position: absolute;
  inset: -12% 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  will-change: transform;
}
.celebrate::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Dezenter cremig-warmer Schleier — Bild bleibt deutlich sichtbar */
  background: linear-gradient(180deg,
    rgba(247, 241, 230, 0.55) 0%,
    rgba(247, 241, 230, 0.7) 100%);
}
.celebrate .wrap { position: relative; z-index: 1; }
.celebrate__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
  max-width: 1180px;
  margin-inline: auto;
}
.celebrate__content {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: clamp(1.6rem, 3vw, 2.4rem);
}
.celebrate__content .eyebrow { color: var(--accent); }
.celebrate__content h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.05;
  margin: 0.4rem 0 1.4rem;
  letter-spacing: -0.01em;
}
.celebrate__content h2 em {
  font-style: italic;
  color: var(--accent);
  font-family: var(--ff-display);
}
.celebrate__content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 42ch;
  margin: 0 0 2rem;
}

.celebrate__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.celebrate__benefit {
  position: relative;
  background: var(--surface, #fff);
  border: 1px solid var(--line);
  padding: 1.6rem 1.8rem 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 1.4rem;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.celebrate__benefit:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}
.celebrate__num {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  grid-row: 1 / 3;
  align-self: flex-start;
  padding-top: 0.35rem;
}
.celebrate__benefit h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0 0 0.3rem;
  color: var(--ink);
  line-height: 1.2;
}
.celebrate__benefit h3 em {
  font-style: italic;
  color: var(--accent);
  font-family: var(--ff-display);
  font-weight: 300;
}
.celebrate__benefit p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

.celebrate__hint {
  margin: 3rem auto 0;
  max-width: 880px;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--ink-soft);
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  backdrop-filter: blur(4px);
}
.celebrate__hint strong {
  font-style: normal;
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

@media (max-width: 880px) {
  .celebrate__grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---- Philosophie-Seite ---- */
.philosophy-lead {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.philosophy-lead__text {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
}
.philosophy-lead__text em {
  font-style: italic;
  color: var(--accent);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.philosophy-block {
  position: relative;
  padding: 2rem 1.8rem 1.8rem 5rem;
  background: var(--surface, #fff);
  border: 1px solid var(--line);
}
.philosophy-block__num {
  position: absolute;
  top: 2rem;
  left: 1.8rem;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
}
.philosophy-block h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--ink);
}
.philosophy-block h2 em {
  font-style: italic;
  color: var(--accent);
  font-family: var(--ff-display);
}
.philosophy-block p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 760px) {
  .philosophy-grid { grid-template-columns: 1fr; }
  .philosophy-block { padding: 1.6rem 1.4rem 1.4rem 4rem; }
  .philosophy-block__num { top: 1.6rem; left: 1.4rem; }
}

.philosophy-tagline {
  background: var(--ink);
  color: #fff;
  text-align: center;
}
.philosophy-tagline__inner {
  max-width: 640px;
  margin: 0 auto;
}
.philosophy-tagline__lead {
  display: block;
  font-family: var(--ff-mono);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.philosophy-tagline__sub {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  color: #fff;
  margin: 0;
}
.philosophy-tagline__sub em {
  font-style: italic;
  color: var(--accent);
  font-family: var(--ff-display);
}

/* ---- Quote-Block (auf kueche.php) ---- */
.quote-block { background: var(--bg-2, #f7f1e6); }
.quote-block__inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  padding: 0 0 0 4rem;
}
.quote-block__mark {
  position: absolute;
  top: -2.5rem;
  left: 0;
  font-family: var(--ff-display);
  font-size: 8rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.5;
  font-style: italic;
  font-weight: 300;
}
.quote-block__inner p {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 1.5rem;
}
.quote-block__inner p em {
  font-style: italic;
  color: var(--accent);
  font-family: var(--ff-display);
}
.quote-block__foot {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.quote-block__line {
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.quote-block__link {
  margin-left: auto;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
.quote-block__link:hover { color: var(--ink); }

/* Intro-Motto (auf der Startseite) */
.intro__motto {
  font-family: var(--ff-mono);
  font-size: 0.78rem !important;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-top: 1.2rem !important;
}

/* ---- Cross-Card (kompakter Querverweis Frühstück ↔ Brunch) ---- */
.cross-card-section {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--bg);
}
.cross-card {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1000px;
  margin-inline: auto;
  background: var(--surface, #fff);
  border: 1px solid var(--line);
  padding: clamp(1.4rem, 2.5vw, 2rem);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.cross-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.cross-card__photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.cross-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.cross-card:hover .cross-card__photo img { transform: scale(1.04); }

.cross-card__body { min-width: 0; }
.cross-card__body .eyebrow {
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.cross-card__body h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  font-weight: 300;
  line-height: 1.15;
  margin: 0 0 0.6rem;
  color: var(--ink);
}
.cross-card__body h3 em {
  font-style: italic;
  color: var(--accent);
  font-family: var(--ff-display);
}
.cross-card__body p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 52ch;
}
.cross-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.2rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-family: var(--ff-mono);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.25s;
}
.cross-card__cta:hover { background: var(--ink); }
.cross-card__cta .arrow { transition: transform 0.2s; }
.cross-card__cta:hover .arrow { transform: translateX(2px); }

@media (max-width: 760px) {
  .cross-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cross-card__photo { aspect-ratio: 16 / 9; max-height: 200px; }
  .cross-card__body p { margin-inline: auto; }
  .cross-card__cta { justify-self: center; }
}

/* ---- Pinned Captain's Log Entry ---- */
.log-entry--pinned {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 4px 18px rgba(176,142,90,0.12);
  position: relative;
}
.log-entry__pin {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 0.85rem;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(176,142,90,0.35);
}

/* =============================================================
   MOBILE FIXES — Overflow & Reading-Comfort auf kleinen Geräten
   ============================================================= */

/* Globale Schutzmaßnahmen gegen Horizontal-Overflow */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
img, video, iframe, svg {
  max-width: 100%;
  height: auto;
}

/* Lange Wörter & URLs sauber umbrechen */
.ticket__body p,
.ticket__city,
.testimonials__quote,
.testimonials__author,
.voucher__body,
.log-entry__body,
.log-entry__title,
.event-row,
.celebration p,
.celebration h3,
.brunch__menu li,
.cross-card__body p,
.celebrate__benefit p {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  min-width: 0;
}

/* ----- Tablets & Mobile (< 720px) ----- */
@media (max-width: 720px) {

  /* Section-Padding mobile-freundlich */
  .wrap, .wrap-wide {
    padding-inline: 1rem;
  }
  .subpage-section {
    padding-block: 2.5rem;
  }
  .subpage-hero__content {
    padding: 2rem 1rem;
  }

  /* === VOUCHERS / GUTSCHEINE === */
  .vouchers__grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    padding-inline: 0;
  }
  .voucher {
    padding: 1.6rem 1.4rem;
  }
  .voucher__value {
    font-size: 3.4rem;
  }
  .voucher__body {
    font-size: 0.92rem;
    line-height: 1.55;
  }
  .voucher__meta {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
  }

  /* === EVENT-TICKETS === */
  .tickets {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  .ticket {
    grid-template-columns: 1fr !important;
  }
  .ticket__photo {
    aspect-ratio: 16/10;
    min-height: 0;
  }
  .ticket__body {
    padding: 1.4rem 1.2rem;
  }
  .ticket__route {
    grid-template-columns: 1fr auto 1fr;
    gap: 0.5rem;
  }
  .ticket__iata {
    font-size: 1.5rem;
  }
  .ticket__city {
    font-size: 0.55rem;
    letter-spacing: 0.16em;
  }
  .ticket__arc {
    width: 50px;
    height: 18px;
  }
  .ticket__meta {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
  }
  .ticket__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  .ticket__share {
    flex-wrap: wrap;
  }

  /* === FLIGHT SEARCH (Event-Filter) === */
  .flight-search {
    grid-template-columns: 1fr !important;
    gap: 0.7rem;
  }
  .flight-search__arrow { display: none; }
  .flight-search__submit { width: 100%; }

  /* === TESTIMONIALS === */
  .testimonials__grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  .photo-quad {
    grid-template-columns: 1fr 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
  .testimonials__quote {
    font-size: 1.05rem;
    padding-left: 1.2rem;
    line-height: 1.55;
  }
  .testimonials__author {
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.65rem;
  }
  .testimonials__btn {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  /* === BRUNCH SECTION === */
  .brunch__grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  .brunch__days {
    grid-template-columns: 1fr !important;
  }
  .brunch__menu li {
    font-size: 0.9rem;
    padding-left: 2.6rem;
  }

  /* === CELEBRATE / FEIERN === */
  .celebrate__grid {
    grid-template-columns: 1fr !important;
    gap: 1.6rem;
  }
  .celebrate__content {
    padding: 1.4rem;
  }
  .celebrate__benefit {
    padding: 1.3rem 1.1rem 1.1rem 3.5rem;
  }
  .celebrate__benefit h3 {
    font-size: 1.05rem;
  }
  .celebrate__benefit p {
    font-size: 0.85rem;
  }

  /* === HERO === */
  .hero__content { padding: 0 1rem; }
  .hero__title { font-size: clamp(2rem, 9vw, 3rem); }
  .hero__sub { font-size: 0.95rem; padding: 0 0.5rem; }
  .hero__bar { padding: 0.7rem 1rem; flex-wrap: wrap; gap: 0.5rem; }
  .hero__coords, .hero__scroll { font-size: 0.55rem; }

  /* === SUBPAGE-HERO === */
  .subpage-hero { min-height: 60vh; }
  .subpage-hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .subpage-hero__sub { font-size: 0.95rem; }
  .subpage-hero__bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    padding: 0.8rem 1rem;
    font-size: 0.55rem;
  }
  .subpage-hero__bar-flight { font-size: 0.55rem; }

  /* === KACHELN / TILES === */
  .tile { aspect-ratio: 4/3; }
  .tile__title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .tile__desc { font-size: 0.85rem; }

  /* === KÜCHE: TAGESGERICHTE & SPEISEKARTE === */
  .celebrations__grid {
    grid-template-columns: 1fr !important;
    gap: 1.4rem;
  }
  .menu-card {
    padding: 1.5rem 1.2rem;
  }
  .menu-card__head {
    grid-template-columns: 1fr;
  }
  .menu-card__title {
    font-size: 1.4rem;
  }
  .menu-card__row {
    grid-template-columns: 1fr auto;
    gap: 0.4rem 0.8rem;
  }
  .menu-card__leader { display: none; }
  .menu-card__name { font-size: 0.92rem; }
  .menu-card__desc { font-size: 0.82rem; }

  /* === CAPTAIN'S LOG / NEWS === */
  .captains-log__grid {
    grid-template-columns: 1fr !important;
    gap: 1.2rem;
  }
  .log-entry {
    padding: 1.4rem 1.2rem;
  }
  .log-entry__title {
    font-size: 1.15rem;
    line-height: 1.25;
  }
  .log-entry__body {
    font-size: 0.9rem;
  }

  /* === KONTAKT POSTKARTE === */
  .postcard {
    grid-template-columns: 1fr !important;
    padding: 1.2rem;
  }
  .postcard__left, .postcard__right {
    padding: 0.8rem;
  }

  /* === CONTACT-INFO === */
  .contact__grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  .contact__info {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }

  /* === PARALLAX-CONTENT === */
  .parallax__content {
    padding: 2.5rem 1.2rem;
  }
  .parallax__content h2 {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }
  .parallax__content p {
    font-size: 0.95rem;
  }

  /* === DEPARTURE BOARD === */
  .departure-board {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    font-size: 0.55rem;
  }

  /* === NEWSLETTER PASS === */
  .newsletter-pass {
    grid-template-columns: 1fr !important;
  }
  .newsletter-pass__photo {
    aspect-ratio: 16/9;
  }
  .newsletter-pass__route {
    grid-template-columns: 1fr auto 1fr;
  }
  .newsletter-pass__boarding {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  .newsletter-pass__row {
    grid-template-columns: 1fr !important;
  }
  .newsletter-pass__footer {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  .newsletter-pass__submit { width: 100%; }

  /* === EVENT-ROW (Eventliste) === */
  .event-row {
    grid-template-columns: 60px 1fr;
    gap: 0.8rem 1rem;
    padding: 1rem 0;
  }
  .event-row__type {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 0.3rem;
  }

  /* === ANNOUNCEMENT POPUP === */
  .anc-popup__dialog {
    max-height: 92vh;
    max-width: 95vw;
    padding: 1.2rem;
  }
  .anc-popup__items {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* === FOOTER === */
  .footer__grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  /* === BUTTONS === */
  .btn { font-size: 0.7rem; padding: 0.85rem 1.4rem; }
  .btn--lg { padding: 1rem 1.8rem; font-size: 0.75rem; }
}

/* ----- Sehr kleine Geräte (< 380px) ----- */
@media (max-width: 380px) {
  .voucher__meta { grid-template-columns: 1fr; }
  .ticket__meta { grid-template-columns: 1fr; }
  .photo-quad { grid-template-columns: 1fr; }
  .photo-quad__item:nth-child(n+3) { display: none; }
  .contact__info { grid-template-columns: 1fr; }
  .menu-card__row { grid-template-columns: 1fr; }
  .menu-card__price { grid-column: 1; justify-self: flex-end; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .hero__slide img { animation: none; }
}
