/* ============================================================
   Deine Mongolei — Direction C: "Bold & Adventurous"
   Cinematic, full-bleed expedition brand
   ============================================================ */

/* ------------------------------------------------------------
   Self-hosted fonts (GDPR — no Google Fonts CDN at runtime).
   Latin subset (covers German äöüß). woff2 only.
   Archivo + Archivo Narrow are variable fonts: one file each
   serves the full weight range below.
   ------------------------------------------------------------ */
@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/anton-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/archivo-variable.woff2") format("woff2");
}
@font-face {
  font-family: "Archivo Narrow";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("../fonts/archivo-narrow-variable.woff2") format("woff2");
}

:root {
  --blue: #2b5a9e;
  --blue-bright: #3d77c9;
  --blue-deep: #1c3c6b;
  --ink: #0e1116;          /* near-black */
  --ink-2: #161b22;
  --ink-3: #1f2630;
  --paper: #f4f1ea;        /* warm off-white */
  --paper-2: #e8e3d8;
  --sand: #c9bfa9;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.14);

  --font-display: "Anton", "Archivo Narrow", Impact, sans-serif;
  --font-cond: "Archivo Narrow", "Archivo", sans-serif;
  --font-body: "Archivo", system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --maxw: 1320px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.95rem;
  padding: 1.05em 2em;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.3s, color 0.3s, box-shadow 0.3s;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(61, 119, 201, 0.6);
}
.btn-primary:hover {
  background: var(--blue-bright);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -12px rgba(43, 90, 158, 0.9);
}
.btn-lg { font-size: 1.05rem; padding: 1.2em 2.6em; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.45s var(--ease), backdrop-filter 0.45s, box-shadow 0.45s, padding 0.45s;
  padding: 0.6rem 0;
}
.site-header::after {
  /* top gradient so logo/nav stay legible over photo */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 10, 14, 0.78), rgba(8, 10, 14, 0));
  z-index: -1;
  transition: opacity 0.4s;
}
.site-header.is-solid {
  background: rgba(12, 15, 20, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -18px rgba(0, 0, 0, 0.9);
  padding: 0.2rem 0;
}
.site-header.is-solid::after { opacity: 0; }

.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.7rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand { display: flex; align-items: center; }
.brand-logo {
  height: 58px;
  width: auto;
  /* invert blue logo to white for the dark hero */
  filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
  transition: height 0.45s var(--ease), filter 0.45s;
}
.is-solid .brand-logo { height: 46px; }

.nav { margin-left: auto; position: relative; }
.nav-list {
  display: flex;
  gap: 0.3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ---------- Reisen mega-menu dropdown (desktop hover) ---------- */
.has-dropdown { position: static; }
.nav-caret {
  display: inline-block;
  margin-left: 0.3rem;
  font-size: 0.6em;
  vertical-align: middle;
  opacity: 0.75;
  transition: transform 0.3s var(--ease);
}
.has-dropdown:hover .nav-caret, .has-dropdown:focus-within .nav-caret { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  width: min(700px, 78vw);
  background: rgba(13, 16, 21, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue-bright);
  border-radius: 6px;
  box-shadow: 0 44px 90px -32px rgba(0, 0, 0, 0.92);
  padding: 1.6rem 1.6rem 1.3rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.32s var(--ease), transform 0.32s var(--ease), visibility 0.32s;
  z-index: 120;
}
.nav-dropdown::before { content: ""; position: absolute; top: -0.9rem; left: 0; right: 0; height: 0.9rem; }
.has-dropdown:hover .nav-dropdown, .has-dropdown:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dd-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem 2rem; }
.nav-dd-head {
  font-family: var(--font-cond); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; font-size: 0.72rem; color: var(--blue-bright);
  margin: 0 0 0.55rem; padding-bottom: 0.45rem; border-bottom: 1px solid var(--line);
}
.nav-dd-col ul { list-style: none; margin: 0; padding: 0; }
.nav-dd-col li a {
  display: block; font-family: var(--font-body); text-transform: none; letter-spacing: 0;
  font-weight: 400; font-size: 0.9rem; line-height: 1.3; color: rgba(244, 241, 234, 0.82);
  padding: 0.4rem 0.55rem; border-radius: 3px; opacity: 1;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}
.nav-dd-col li a::after { display: none; }
.nav-dd-col li a:hover { background: rgba(61, 119, 201, 0.16); color: #fff; padding-left: 0.85rem; }
.nav-dd-cta {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.2rem;
  font-family: var(--font-cond); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 0.82rem; color: var(--blue-bright);
  transition: gap 0.2s, color 0.2s;
}
.nav-dd-cta::after { display: none; }
.nav-dd-cta:hover { color: #fff; gap: 0.85rem; }
.nav-list a {
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  color: #fff;
  padding: 0.55rem 0.85rem;
  position: relative;
  opacity: 0.92;
  transition: opacity 0.25s;
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0.85rem; right: 0.85rem; bottom: 0.35rem;
  height: 2px;
  background: var(--blue-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-list a:hover { opacity: 1; }
.nav-list a:hover::after { transform: scaleX(1); }

.header-phone {
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.header-phone .phone-icon { color: var(--blue-bright); font-weight: 900; }
.header-phone:hover { background: var(--blue); border-color: var(--blue); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px; height: 46px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  cursor: pointer;
  margin-left: auto;
  position: relative;   /* lift above the fixed nav overlay (z-index 90) */
  z-index: 110;
}
.hamburger span {
  display: block;
  height: 2px; width: 22px;
  margin: 0 auto;
  background: #fff;
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.nav-open .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .hamburger span:nth-child(2) { opacity: 0; }
.nav-open .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
/* single-image heroes (inner pages) keep the original zoom */
.hero-media > img:only-child {
  transform: scale(1.08);
  animation: heroZoom 14s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
/* homepage carousel: stacked crossfading slides */
.hero-media[data-hero-carousel] .hero-slide {
  opacity: 0;
  transition: opacity 1.6s ease;
  will-change: opacity;
}
.hero-media[data-hero-carousel] .hero-slide.is-active {
  opacity: 1;
  animation: heroKen 7s ease forwards;
}
@keyframes heroKen { from { transform: scale(1); } to { transform: scale(1.09); } }
@media (prefers-reduced-motion: reduce) {
  .hero-media[data-hero-carousel] .hero-slide.is-active { animation: none; }
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(8, 10, 14, 0.95) 0%, rgba(8, 10, 14, 0.45) 38%, rgba(8, 10, 14, 0.15) 65%, rgba(8, 10, 14, 0.55) 100%),
    linear-gradient(105deg, rgba(28, 60, 107, 0.45), rgba(8, 10, 14, 0) 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 0 1.6rem 7vh;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 1.1rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.2s forwards;
}
.hero-eyebrow span {
  width: 48px; height: 2px;
  background: var(--blue-bright);
  display: inline-block;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
  line-height: 0.9;
  letter-spacing: 0.005em;
  font-size: clamp(2.9rem, 11vw, 9rem);
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}
.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: rise 1s var(--ease) forwards;
}
.hero-title .line:nth-child(1) { animation-delay: 0.35s; }
.hero-title .line:nth-child(2) { animation-delay: 0.5s; }
.hero-title .line:nth-child(3) { animation-delay: 0.65s; }
.hero-title .accent { color: var(--blue-bright); }

.hero-sub {
  max-width: 46ch;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  color: rgba(244, 241, 234, 0.9);
  margin: 1.6rem 0 2.3rem;
  opacity: 0;
  animation: rise 1s var(--ease) 0.85s forwards;
}
.hero-actions { opacity: 0; animation: rise 1s var(--ease) 1s forwards; }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.scroll-cue {
  position: absolute;
  right: 2rem; bottom: 2.5rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  writing-mode: vertical-rl;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  animation: rise 1s var(--ease) 1.3s forwards;
}
.scroll-cue-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--blue-bright), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-cue-line::after {
  content: "";
  position: absolute;
  top: -50%; left: 0;
  width: 1px; height: 50%;
  background: #fff;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { top: -50%; } 100% { top: 110%; }
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section-head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 8rem) 1.6rem clamp(2rem, 4vw, 3.5rem);
}
.section-kicker {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-bright);
  margin: 0 0 0.8rem;
}
.section-kicker.light { color: #fff; opacity: 0.85; }
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.92;
  margin: 0;
  letter-spacing: 0.01em;
}

/* ============================================================
   OFFERS / CATEGORIES
   ============================================================ */
.offers { background: var(--ink); }

.cat {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6.5rem) 0;
  border-top: 1px solid var(--line);
}
.cat-bg { position: absolute; inset: 0; z-index: 0; }
.cat-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.16;
  transform: scale(1.05);
  filter: grayscale(0.3);
}
.cat::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(14, 17, 22, 0.86), rgba(14, 17, 22, 0.95));
}
.cat--alt::before {
  background: linear-gradient(180deg, rgba(20, 32, 52, 0.88), rgba(14, 17, 22, 0.96));
}
.cat-inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.6rem;
}

.cat-head {
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.cat-index {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--blue-bright);
  line-height: 1;
  -webkit-text-stroke: 1px var(--blue-bright);
  color: transparent;
}
.cat-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 8vw, 6.5rem);
  line-height: 0.84;
  margin: 0;
  letter-spacing: 0.01em;
  color: #fff;
}

/* cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.card {
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.5s;
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(61, 119, 201, 0.6);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.9);
}
.card-photo { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.card:hover .card-photo img { transform: scale(1.08); }
.card-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14, 17, 22, 0.6), transparent 55%);
}
.card-body {
  padding: 1.4rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.badge {
  align-self: flex-start;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  background: var(--blue);
  padding: 0.35em 0.8em;
  border-radius: 2px;
  margin-bottom: 0.9rem;
}
.card-body h4 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  margin: 0 0 1.2rem;
  color: var(--paper);
}
.card-foot {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.price {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}
.more {
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  color: var(--blue-bright);
  transition: gap 0.3s, color 0.3s, transform 0.3s;
}
.more:hover { color: #fff; transform: translateX(3px); }

/* ============================================================
   GRUSSWORT
   ============================================================ */
.grusswort {
  position: relative;
  overflow: hidden;
  min-height: 78vh;
  display: flex;
  align-items: center;
}
.grusswort-media { position: absolute; inset: 0; z-index: 0; }
.grusswort-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 45%;
}
.grusswort-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(8, 10, 14, 0.94) 0%, rgba(8, 10, 14, 0.75) 42%, rgba(8, 10, 14, 0.2) 100%),
    linear-gradient(0deg, rgba(28, 60, 107, 0.25), rgba(28, 60, 107, 0.25));
}
.grusswort-inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 1.6rem;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.grusswort-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: 0.9;
  margin: 0.6rem 0 1.6rem;
  color: #fff;
}
.grusswort-text {
  max-width: 52ch;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.7;
  color: rgba(244, 241, 234, 0.92);
  border-left: 3px solid var(--blue-bright);
  padding-left: 1.6rem;
}
.grusswort-portrait {
  margin: 0;
  position: relative;
  justify-self: end;
  max-width: 420px;
  width: 100%;
}
.grusswort-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 25%;
  border: 1px solid rgba(244, 241, 234, 0.18);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.grusswort-portrait::before {
  content: "";
  position: absolute;
  left: -14px;
  bottom: 38px;
  width: 58%;
  height: 42%;
  border-left: 4px solid var(--blue-bright);
  border-bottom: 4px solid var(--blue-bright);
  z-index: -1;
}
.grusswort-portrait figcaption {
  display: flex;
  flex-direction: column;
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--paper);
  font-size: 1rem;
  margin-top: 1rem;
}
.grusswort-portrait figcaption span {
  margin-top: 0.25rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: rgba(244, 241, 234, 0.6);
}
.grusswort-sign {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 1.1rem;
  margin-top: 1.6rem;
  color: var(--blue-bright);
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
}
.cta-media { position: absolute; inset: 0; z-index: 0; }
.cta-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 50%;
}
.cta-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(8, 10, 14, 0.55) 0%, rgba(8, 10, 14, 0.85) 100%),
    linear-gradient(to bottom, rgba(28, 60, 107, 0.35), rgba(8, 10, 14, 0.6));
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 1.6rem;
}
.cta-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: 0.95;
  margin: 0 0 2rem;
  color: #fff;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
}
.cta-inner-split {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  text-align: left;
  max-width: 1040px;
}
.cta-photo {
  flex: 0 0 auto;
  width: clamp(220px, 34%, 340px);
  margin: 0;
}
.cta-photo img {
  width: 100%;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.8);
}
.cta-inner-split .cta-title { margin-bottom: 1.6rem; }

/* ---------- Homepage blog teaser (Nomadenland) ---------- */
.home-blog { background: var(--ink); }
.home-blog-grid {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1.6rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.4rem, 3vw, 2.2rem);
}
.home-blog-cta {
  text-align: center;
  padding: clamp(2.2rem, 5vw, 3.5rem) 1.6rem clamp(3.5rem, 8vw, 6rem);
}

/* ============================================================
   GUESTBOOK
   ============================================================ */
.guestbook { background: var(--paper); color: var(--ink); }
.guestbook .section-kicker { color: var(--blue); }
.guestbook .section-title { color: var(--ink); }

.quotes {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.6rem clamp(4rem, 9vw, 8rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.quote {
  position: relative;
  margin: 0;
  background: #fff;
  border: 1px solid var(--paper-2);
  border-top: 3px solid var(--blue);
  border-radius: 3px;
  padding: 2.4rem 2rem 2rem;
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}
.quote:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 50px -28px rgba(28, 60, 107, 0.5);
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 0.5;
  color: var(--blue);
  opacity: 0.22;
  position: absolute;
  top: 1.4rem; left: 1.4rem;
}
.quote blockquote {
  margin: 1.4rem 0 1.6rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #2a2f37;
  position: relative;
}
.quote figcaption {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--blue);
  padding-top: 1rem;
  border-top: 1px solid var(--paper-2);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding: clamp(3.5rem, 7vw, 6rem) 0 0;
}
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.6rem clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-logo {
  height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}
.footer-tag {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  color: var(--sand);
  margin: 0;
}
.footer-col h5 {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--blue-bright);
  margin: 0 0 0.9rem;
}
.footer-col p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(244, 241, 234, 0.78);
}
.footer-col a { transition: color 0.25s; }
.footer-col a:hover { color: #fff; }

.footer-bar {
  border-top: 1px solid var(--line);
  padding: 1.4rem 1.6rem;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(244, 241, 234, 0.6);
}
.footer-bar-name {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.12);
  font-size: 1.4rem;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.cards .card:nth-child(2).reveal { transition-delay: 0.1s; }
.cards .card:nth-child(3).reveal { transition-delay: 0.2s; }
.quotes .quote:nth-child(2).reveal { transition-delay: 0.1s; }
.quotes .quote:nth-child(3).reveal { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-media img { transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav, .header-phone { display: none; }
  .hamburger { display: flex; }

  /* mobile nav overlay */
  .nav {
    position: fixed;
    inset: 0;
    display: block;
    background: rgba(10, 13, 18, 0.98);
    backdrop-filter: blur(8px);
    z-index: 90;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
  }
  .nav-open .nav { opacity: 1; pointer-events: auto; }
  /* backdrop-filter on the solid header makes it a containing block for the
     fixed nav overlay, trapping it in the header bar when scrolled. Drop it
     INSTANTLY (transition:none) while the menu is open — otherwise the filter
     animates blur->none over 0.45s and the overlay flashes broken until it
     finishes, then snaps to fullscreen. */
  .nav-open .site-header { backdrop-filter: none !important; transition: none !important; }
  .nav-list {
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
  .nav-open .header-phone {
    display: inline-flex;
    position: fixed;
    bottom: 8vh; left: 50%;
    transform: translateX(-50%);
    z-index: 91;
  }
  .nav-list a {
    font-size: 1.5rem;
    padding: 0.6rem 1rem;
  }
  .nav-list a::after { bottom: 0.5rem; left: 1rem; right: 1rem; }
  .nav-dropdown { display: none; }
  .nav-caret { display: none; }
}

@media (max-width: 720px) {
  .cards { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .quotes { grid-template-columns: 1fr; max-width: 480px; }
  .cat-head { flex-direction: column; gap: 0.4rem; align-items: flex-start; }
  .scroll-cue { right: 1rem; bottom: 1.5rem; }
  .cta-inner-split { flex-direction: column; text-align: center; }
  .cta-photo { width: clamp(220px, 70%, 320px); }
  .home-blog-grid { grid-template-columns: 1fr; max-width: 460px; }
}

@media (max-width: 480px) {
  .header-inner { padding: 0.6rem 1.1rem; }
  .brand-logo { height: 46px; }
  .hero { min-height: 560px; }
  .hero-content { padding-bottom: 9vh; }
  .hero-eyebrow { letter-spacing: 0.2em; font-size: 0.72rem; }
  .hero-eyebrow span { width: 28px; }
  .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bar { flex-direction: column; gap: 0.6rem; }
  .grusswort-text { padding-left: 1.1rem; }
}

@media (max-width: 860px) {
  .grusswort-inner { grid-template-columns: 1fr; }
  .grusswort-portrait { justify-self: start; max-width: 340px; margin-top: 2.5rem; }
  .grusswort-portrait::before { bottom: 34px; }
}

/* ============================================================
   INNER PAGES (Direction C — extended for the DB-driven build)
   ============================================================ */

/* Secondary buttons + ghost variant */
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: #fff; transform: translateY(-3px); }

/* Page hero (compact cinematic banner for inner pages) */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink-2);
}
.page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(8,10,14,0.96) 0%, rgba(8,10,14,0.5) 45%, rgba(8,10,14,0.35) 100%),
    linear-gradient(105deg, rgba(28,60,107,0.5), rgba(8,10,14,0) 60%);
}
.page-hero-inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); width: 100%; margin: 0 auto;
  padding: 0 1.6rem clamp(2.5rem, 6vw, 5rem);
}
.page-hero .hero-eyebrow { animation: none; opacity: 1; }
.page-hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 7vw, 6rem);
  line-height: 0.9;
  margin: 0.4rem 0 0;
  color: #fff;
  text-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.page-hero-sub { max-width: 56ch; margin: 1.2rem 0 0; color: rgba(244,241,234,0.9); font-size: 1.1rem; }

/* Solid spacing for pages where the fixed header overlays a non-hero top */
.page-pad { padding-top: 90px; }

/* Generic content wrapper on dark */
.wrap {
  max-width: var(--maxw); margin: 0 auto; padding: 0 1.6rem;
}
.section-pad { padding: clamp(3rem, 7vw, 6rem) 0; }

/* ---------- REISEN / category listing reuse .cat blocks ---------- */
.reisen-intro { padding-bottom: clamp(1rem, 3vw, 2rem); }

/* ---------- TOUR DETAIL ---------- */
.tour-main { background: var(--ink); }
.tour-layout {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 1.6rem;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.tour-section { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.tour-section h2 {
  font-family: var(--font-display);
  font-weight: 400; text-transform: uppercase;
  font-size: clamp(1.8rem, 3.5vw, 3rem); line-height: 0.95;
  margin: 0 0 1.4rem; color: #fff;
}
.tour-section h2 .kicker-num {
  color: transparent; -webkit-text-stroke: 1px var(--blue-bright);
  margin-right: 0.6rem;
}
.tour-intro-text { font-size: 1.1rem; line-height: 1.75; color: rgba(244,241,234,0.9); }
.tour-intro-text p { margin: 0 0 1rem; }

/* gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.gallery-grid a {
  display: block; aspect-ratio: 4/3; overflow: hidden;
  border: 1px solid var(--line); border-radius: 3px; position: relative;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-grid a:hover img { transform: scale(1.07); }

/* Tour route map — full display, click to zoom in lightbox */
.tour-map { margin: 0; }
.tour-map a {
  display: block;
  position: relative;
  cursor: zoom-in;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}
.tour-map img { width: 100%; height: auto; display: block; }
.tour-map-zoom {
  position: absolute;
  bottom: 0.8rem; right: 0.8rem;
  font-family: var(--font-cond); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 0.72rem; color: #fff;
  background: rgba(18, 22, 28, 0.78); border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.45rem 0.8rem; border-radius: 2px;
  opacity: 0; transform: translateY(6px); transition: opacity 0.25s, transform 0.25s;
}
.tour-map a:hover .tour-map-zoom { opacity: 1; transform: translateY(0); }

/* itinerary table */
.itinerary { border-top: 1px solid var(--line); }
.tour-day {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1.4rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.tour-day-day {
  font-family: var(--font-cond); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--blue-bright); font-size: 0.95rem;
}
.tour-day-loc {
  font-family: var(--font-cond); font-weight: 700;
  font-size: 1.15rem; color: #fff; margin: 0 0 0.5rem;
}
.tour-day-desc { color: rgba(244,241,234,0.82); margin: 0; line-height: 1.65; }

/* included / not-included */
.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.incl-box {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: 3px; padding: 1.6rem 1.6rem 1.4rem;
}
.incl-box h3 {
  font-family: var(--font-cond); text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 0.95rem; margin: 0 0 1rem;
}
.incl-box.yes h3 { color: var(--blue-bright); }
.incl-box.no h3 { color: var(--sand); }
.incl-box ul, .incl-box .raw { margin: 0; padding-left: 1.1rem; color: rgba(244,241,234,0.85); line-height: 1.7; font-size: 0.97rem; }
.incl-box .raw { padding-left: 0; white-space: pre-line; }

/* price box / sidebar */
.tour-aside { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 1.4rem; }
.price-box {
  background: linear-gradient(160deg, var(--blue-deep), var(--ink-2));
  border: 1px solid rgba(61,119,201,0.4);
  border-radius: 4px; padding: 1.8rem;
}
.price-box .pb-kicker {
  font-family: var(--font-cond); text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 0.75rem; color: var(--blue-bright); margin: 0 0 0.6rem;
}
.price-box .pb-price {
  font-family: var(--font-cond); font-weight: 700; font-size: 1.5rem;
  color: #fff; margin: 0 0 0.4rem; white-space: pre-line; line-height: 1.3;
}
.price-meta { list-style: none; margin: 1.2rem 0 0; padding: 1.2rem 0 0; border-top: 1px solid var(--line); }
.price-meta li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.35rem 0; font-size: 0.95rem; color: rgba(244,241,234,0.85); }
.price-meta li span:first-child { color: var(--sand); font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.8rem; }
.pdf-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-cond); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: 0.85rem; color: var(--blue-bright); margin-top: 1.2rem;
}
.pdf-link:hover { color: #fff; }

/* youtube */
.tour-video { position: relative; aspect-ratio: 16/9; border: 1px solid var(--line); border-radius: 3px; overflow: hidden; }
.tour-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- FORMS (kontakt + inquiry) ---------- */
.form-card {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: 4px; padding: clamp(1.6rem, 3vw, 2.4rem);
}
.form-card.inquiry { border-color: rgba(61,119,201,0.35); }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block; font-family: var(--font-cond); text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 0.78rem; color: var(--sand); margin-bottom: 0.45rem;
}
.field input, .field textarea {
  width: 100%; background: var(--ink); color: var(--paper);
  border: 1px solid var(--line); border-radius: 2px;
  padding: 0.85rem 0.95rem; font-family: var(--font-body); font-size: 1rem;
  transition: border-color 0.25s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue-bright); }
.field textarea { min-height: 150px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field-row .field { margin-bottom: 1.1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; gap: 0; } }
.ueber-form { margin-top: clamp(3rem, 6vw, 5rem); padding-top: clamp(2rem, 4vw, 3rem); border-top: 1px solid var(--line); }
.ueber-form .form-card { margin-top: 1.8rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: 0.85rem; color: rgba(244,241,234,0.6); margin-top: 0.8rem; }
.alert {
  border-radius: 3px; padding: 1rem 1.2rem; margin-bottom: 1.4rem;
  font-size: 0.97rem; border: 1px solid;
}
.alert.ok { background: rgba(43,90,158,0.18); border-color: var(--blue-bright); color: #dbe8fb; }
.alert.err { background: rgba(158,43,43,0.16); border-color: #c46a6a; color: #f3d2d2; }
.alert ul { margin: 0.4rem 0 0; padding-left: 1.2rem; }

/* Accessible visually-hidden helper (keeps content for screen readers). */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* --- Public guestbook submission form --- */
.gb-form-section { border-top: 1px solid var(--line); }
.gb-form-wrap { max-width: 720px; margin: 0 auto; }

/* Gästebuch hero with a CTA button beside the heading */
.gb-hero .page-hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.gb-hero-cta { flex: 0 0 auto; margin-bottom: 0.5rem; }

/* ---------- Modal (review form) ---------- */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1rem, 6vh, 4rem) 1rem;
  overflow-y: auto;
}
.modal.is-open { display: flex; }
.modal[hidden] { display: none; }
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 8, 12, 0.8);
  backdrop-filter: blur(4px);
}
.modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  margin: auto 0;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue-bright);
  border-radius: 4px;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.85);
  animation: modalIn 0.35s var(--ease);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
.modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.85rem;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  color: var(--paper);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: color 0.2s, opacity 0.2s;
}
.modal-close:hover { opacity: 1; color: var(--blue-bright); }
/* inside the modal the form is not its own box */
.modal .form-card { background: transparent; border: 0; border-radius: 0; padding: 0; }
body.modal-open { overflow: hidden; }
.gb-form-title {
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.04em;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: var(--paper); margin: 0 0 0.6rem;
}
.gb-form-intro { color: rgba(244,241,234,0.7); margin: 0 0 1.6rem; }
.gb-form-wrap .field-label {
  display: block; font-family: var(--font-cond); text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 0.78rem; color: var(--sand); margin-bottom: 0.45rem;
}

/* Star rating: 5 radio inputs styled as stars. Reversed flex so :checked +
   sibling labels (the lower stars) can be highlighted via the general sibling
   combinator. */
.gb-stars {
  display: inline-flex; flex-direction: row-reverse; justify-content: flex-end;
  border: 0; padding: 0; margin: 0; gap: 0.15rem;
}
.gb-stars > label {
  cursor: pointer; font-size: 1.9rem; line-height: 1;
  color: rgba(244,241,234,0.28); transition: color 0.12s ease;
}
.gb-stars > input:checked ~ label,
.gb-stars > label:hover,
.gb-stars > label:hover ~ label { color: var(--sand, #d8b074); }
.gb-stars > input:focus-visible + label { outline: 2px solid var(--blue-bright); outline-offset: 2px; }
.gb-form-wrap input[type="file"] {
  width: 100%; color: var(--paper); font-size: 0.95rem;
  background: var(--ink); border: 1px solid var(--line); border-radius: 2px; padding: 0.6rem 0.7rem;
}

.contact-layout {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 1.6rem;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem,4vw,3.5rem); align-items: start;
}
.contact-info h3 {
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.85rem; color: var(--blue-bright); margin: 1.6rem 0 0.5rem;
}
.contact-info p { margin: 0; color: rgba(244,241,234,0.85); line-height: 1.7; }
.contact-info a:hover { color: #fff; }

/* ---------- BLOG ---------- */
.blog-grid {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(2rem,5vw,4rem) 1.6rem clamp(4rem,8vw,7rem);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem;
}
.post-card {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 3px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.5s;
}
.post-card:hover { transform: translateY(-8px); border-color: rgba(61,119,201,0.6); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.9); }
.post-card .card-photo { aspect-ratio: 16/10; }
.post-card .card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.post-card:hover .card-photo img { transform: scale(1.07); }
.post-card-body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.post-card-body h3 { font-family: var(--font-cond); font-weight: 700; font-size: 1.2rem; line-height: 1.25; margin: 0 0 0.7rem; }
.post-card-body p { color: rgba(244,241,234,0.78); font-size: 0.95rem; margin: 0 0 1.1rem; }
.post-date { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.72rem; color: var(--blue-bright); margin-bottom: 0.6rem; }
.post-card .more { margin-top: auto; }

/* ---------- ARTICLE BODY (post + static page) ---------- */
.article {
  max-width: 980px; margin: 0 auto;
  padding: clamp(3rem,6vw,5rem) 1.6rem clamp(4rem,8vw,7rem);
  font-size: 1.08rem; line-height: 1.8; color: rgba(244,241,234,0.9);
}
.article h1, .article h2, .article h3 { font-family: var(--font-cond); color: #fff; line-height: 1.2; margin: 2rem 0 1rem; }
.article h2 { font-size: 1.7rem; }
.article h3 { font-size: 1.3rem; }
.article a { color: var(--blue-bright); text-decoration: underline; }
.article a:hover { color: #fff; }
.article img { border-radius: 3px; margin: 1.5rem 0; max-width: 100%; height: auto; }
.article ul, .article ol { padding-left: 1.4rem; }
.article blockquote {
  border-left: 3px solid var(--blue-bright); margin: 1.5rem 0; padding-left: 1.4rem;
  color: rgba(244,241,234,0.78); font-style: italic;
}
.article figure { margin: 1.5rem 0; }
.article table { width: 100%; border-collapse: collapse; }
.article td, .article th { border: 1px solid var(--line); padding: 0.6rem; }

/* Team grid (Über uns) */
.article .team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin: 1.5rem 0 0;
}
.article .team-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue-bright);
  border-radius: 4px;
  padding: 1.4rem 1.5rem;
}
.article .team-card .team-photo {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 3px;
  margin: 0 0 1.1rem;
  cursor: zoom-in;
  transition: filter 0.25s ease;
}
.article .team-card .team-photo:hover { filter: brightness(1.07); }
.article .team-card .team-name {
  font-family: var(--font-cond);
  color: #fff;
  font-size: 1.3rem;
  margin: 0;
}
.article .team-card .team-role {
  color: var(--blue-bright);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  margin: 0.3rem 0 0.9rem;
}
.article .team-card p:last-child { margin-bottom: 0; }

/* ============================================================
   Über uns — editorial sections (greeting portraits, blocks,
   alternating image/text panels, Leistungen gallery)
   ============================================================ */

/* Owner portraits at the top of the greeting */
.article .grusswort-portraits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  margin: 0 0 2.6rem;
}
.article .gp-frame {
  position: relative;
  margin: 0;
}
.article .gp-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 30%;
  border: 1px solid rgba(244, 241, 234, 0.18);
  box-shadow: 0 26px 54px -22px rgba(0, 0, 0, 0.75);
  border-radius: 3px;
}
.article .gp-frame::before {
  content: "";
  position: absolute;
  left: -12px;
  bottom: 26px;
  width: 52%;
  height: 38%;
  border-left: 4px solid var(--blue-bright);
  border-bottom: 4px solid var(--blue-bright);
  z-index: -1;
}
.article .gp-frame figcaption {
  display: flex;
  flex-direction: column;
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--paper);
  font-size: 0.92rem;
  margin-top: 0.9rem;
}
.article .gp-frame figcaption span {
  margin-top: 0.25rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  color: rgba(244, 241, 234, 0.6);
}

/* Generic block wrapper for the added sections */
.article .ueber-block {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}
.article .ueber-kicker {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--blue-bright);
  margin: 0 0 0.7rem;
}
.article .ueber-kicker span {
  display: inline-block;
  width: 34px;
  height: 2px;
  background: var(--blue-bright);
}
.article .ueber-head {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 0.96;
  margin: 0 0 1.1rem;
  color: #fff;
}
.article .ueber-lead {
  max-width: 60ch;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  color: rgba(244, 241, 234, 0.82);
  margin: 0 0 1.8rem;
}
.article .ueber-text {
  max-width: 62ch;
  font-size: 1.08rem;
  line-height: 1.78;
  color: rgba(244, 241, 234, 0.9);
  margin: 0 0 1.1rem;
}
.article .ueber-text:last-child { margin-bottom: 0; }
.article .ueber-text a { color: var(--blue-bright); text-decoration: underline; text-underline-offset: 3px; }
.article .ueber-text a:hover { color: #fff; }

/* Alternating image / text panels (sections 5–8) */
/* minimal-image sections: text on top, full-width image below (contained) */
.article .ueber-split {
  display: flex;
  flex-direction: column;
  gap: clamp(1.4rem, 3vw, 2.2rem);
}
.article .ueber-split-text { order: 1; }
.article .ueber-figure {
  order: 2;
  position: relative;
  margin: 0;
}
.article .ueber-figure img {
  display: block;
  width: 100%;
  height: auto;            /* full image, 100% of wrapper — no crop */
  cursor: zoom-in;
  border: 1px solid rgba(244, 241, 234, 0.18);
  border-radius: 3px;
  box-shadow: 0 30px 60px -28px rgba(0, 0, 0, 0.8);
}

/* Leistungen gallery — tighter 4-up grid, reuses .gallery-grid base */
.article .ueber-gallery {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
  .article .ueber-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .article .team-grid { grid-template-columns: 1fr; }
  .article .ueber-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* full-width guestbook page reuses .quotes but on dark */
.guestbook-page { background: var(--ink); color: var(--paper); }
.guestbook-page .section-title { color: #fff; }
.guestbook-page .quote { background: var(--ink-2); border-color: var(--line); border-top: 3px solid var(--blue); }
.guestbook-page .quote blockquote { color: rgba(244,241,234,0.88); }
.guestbook-page .quote figcaption { color: var(--blue-bright); border-top-color: var(--line); }
.guestbook-page .quote-mark { color: var(--blue-bright); }

/* Gästebuch page — one testimonial per row + load-more */
.guestbook-list {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.gb-item {
  position: relative;
  margin: 0;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue-bright);
  padding: 1.8rem 2.2rem;
}
.gb-mark {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 0.4;
  color: var(--blue-bright);
  opacity: 0.3;
  display: inline-block;
}
.gb-item blockquote {
  margin: 0.9rem 0 1.1rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(244, 241, 234, 0.9);
}
.gb-item figcaption {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  color: var(--blue-bright);
}
.gb-more-wrap {
  text-align: center;
  padding: 2.6rem 1.6rem 0;
}
.gb-more[hidden] { display: none; }

/* ---------- 404 ---------- */
.notfound {
  min-height: 80vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 8rem 1.6rem 4rem;
}
.notfound .code {
  font-family: var(--font-display); font-size: clamp(5rem, 18vw, 12rem);
  line-height: 0.9; color: transparent; -webkit-text-stroke: 2px var(--blue-bright); margin: 0;
}
.notfound h1 { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.05em; margin: 1rem 0 1.5rem; }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8,10,14,0.94); display: none;
  align-items: center; justify-content: center; padding: 4vh 4vw; cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lb-stage { display: flex; align-items: center; justify-content: center; max-width: 100%; max-height: 92vh; cursor: zoom-out; }
.lightbox img { max-width: 100%; max-height: 92vh; object-fit: contain; border-radius: 3px; cursor: default; }
.lb-close, .lb-prev, .lb-next {
  position: fixed; z-index: 2;
  background: rgba(18, 22, 28, 0.62); color: #fff; border: 1px solid var(--line);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  line-height: 1; transition: background 0.2s, transform 0.2s;
}
.lb-close { top: 1.2rem; right: 1.4rem; width: 48px; height: 48px; font-size: 1.9rem; border-radius: 2px; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 2.2rem; border-radius: 50%; padding-bottom: 4px; }
.lb-prev { left: 1.6rem; }
.lb-next { right: 1.6rem; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--blue); border-color: var(--blue); }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.07); }
.lb-meta {
  position: fixed; bottom: 1.3rem; left: 0; right: 0; text-align: center; pointer-events: none;
  font-family: var(--font-cond); color: rgba(244, 241, 234, 0.85); font-size: 0.92rem; letter-spacing: 0.04em;
}
.lb-count { color: var(--blue-bright); font-weight: 700; margin-right: 0.6rem; }
@media (max-width: 640px) {
  .lb-prev, .lb-next { width: 44px; height: 44px; font-size: 1.8rem; }
  .lb-prev { left: 0.6rem; } .lb-next { right: 0.6rem; }
}

@media (max-width: 1024px) {
  .tour-layout { grid-template-columns: 1fr; }
  .tour-aside { position: static; flex-direction: row; flex-wrap: wrap; }
  .tour-aside > * { flex: 1 1 280px; }
  .contact-layout { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .incl-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; max-width: 460px; }
  .tour-day { grid-template-columns: 1fr; gap: 0.4rem; }
}
