*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:   #1a1a17;
  --bone:  #f4ecdb;
  --cream: #ece4d2;
  --gold:  #b89758;
  --terra: #c46b48;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bone);
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 64px;
  border-bottom: 1px solid rgba(26,26,23,.1);
  background: var(--bone);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 6px;
  color: var(--ink);
  text-decoration: none;
}
.nav-logo strong { font-weight: 700; }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--ink);
  text-decoration: none;
  opacity: .85;
  transition: opacity .15s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 500;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--bone);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .15s;
}
.nav-cta:hover { opacity: .85; }

/* ── BURGER (mobile only) ─────────────────────────── */
.nav-burger {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.nav-burger span {
  display: block;
  height: 1.5px;
  width: 22px;
  background: var(--ink);
  transition: transform .3s ease, opacity .3s ease;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── MOBILE MENU OVERLAY ──────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--bone);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--bone);
  font-size: 36px;
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
  padding: 8px 12px;
}
.mobile-menu nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.mobile-menu nav li { margin: 18px 0; }
.mobile-menu nav a {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 32px;
  color: var(--bone);
  text-decoration: none;
  letter-spacing: -.3px;
  transition: color .2s;
}
.mobile-menu nav a:hover { color: var(--gold); }
.mobile-menu-contact {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(244,236,219,.15);
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  opacity: .7;
  text-align: center;
  line-height: 2;
}
.mobile-menu-contact a {
  color: var(--bone);
  text-decoration: none;
}
body.menu-open { overflow: hidden; }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--bone);
  padding: 120px 64px 140px;
  text-align: center;
}
.hero-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 12px;
  font-weight: 500;
  opacity: .6;
  margin-bottom: 56px;
}
.hero-wordmark {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 36px;
  margin-bottom: 30px;
}
.hero-tisch {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: clamp(60px, 9vw, 130px);
  letter-spacing: 14px;
  text-indent: 14px;
  line-height: 1;
  color: var(--ink);
}
.hero-seven {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: clamp(100px, 14vw, 200px);
  line-height: .8;
  color: var(--ink);
}
.hero-rule {
  width: 380px;
  max-width: 80%;
  height: 1px;
  background: var(--ink);
  opacity: .35;
  margin: 36px auto 28px;
}
.hero-tag {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 14px;
  opacity: .7;
}
.hero-intro {
  max-width: 620px;
  margin: 64px auto 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.4;
  color: var(--ink);
  opacity: .85;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 56px;
  flex-wrap: wrap;
}
.btn-primary {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 500;
  padding: 16px 28px;
  background: var(--ink);
  color: var(--bone);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .15s;
}
.btn-primary:hover { opacity: .85; }
.btn-outline {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 500;
  padding: 16px 28px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.btn-outline:hover { background: var(--ink); color: var(--bone); }
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  letter-spacing: 6px;
  opacity: .4;
}

/* ── MOOD STRIP ───────────────────────────────────── */
.mood-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.88fr 1fr;
  height: 52vh;
  gap: 3px;
  overflow: hidden;
}
.mood-img {
  overflow: hidden;
  position: relative;
}
.mood-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: sepia(0.14) brightness(0.88) saturate(1.08);
  transform: scale(1.04);
  transition: transform 6s ease, filter 0.4s ease;
}
.mood-img:hover img {
  transform: scale(1.0);
  filter: sepia(0.06) brightness(0.94) saturate(1.1);
}

/* ── SECTION SHARED ───────────────────────────────── */
.section-label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 8px;
  font-weight: 500;
  opacity: .55;
}
.section-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -.5px;
  margin: 0;
}
.section-headline em { font-style: italic; }
.gold-rule {
  width: 80px;
  height: 1px;
  background: var(--gold);
  opacity: .8;
  margin: 36px 0;
}

/* ── KONZEPT ──────────────────────────────────────── */
.konzept {
  background: var(--ink);
  color: var(--bone);
  padding: 120px 64px;
}
.konzept-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.konzept-body p {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
  opacity: .85;
  max-width: 620px;
}
.konzept-body p + p { margin-top: 18px; }
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(244,236,219,.13);
}
.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 14px;
}
.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 14px;
  letter-spacing: -.2px;
}
.pillar-desc {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.65;
  opacity: .75;
}

/* ── UNSERE REISEN ────────────────────────────────── */
.reisen {
  background: var(--bone);
  padding: 120px 64px;
}
.reisen-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.reisen-header {
  margin-bottom: 52px;
}
.reisen-subline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  opacity: .7;
  margin-top: 18px;
}
.reisen-note {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  opacity: .55;
  margin-top: 14px;
  max-width: 540px;
}
.reisen-tabs {
  display: flex;
  border-bottom: 1px solid rgba(26,26,23,.15);
  overflow-x: auto;
  scrollbar-width: none;
}
.reisen-tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 4px;
  padding: 18px 32px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  color: var(--ink);
  opacity: .45;
  transition: opacity .18s, border-color .18s;
  white-space: nowrap;
}
.tab-btn:hover { opacity: .8; }
.tab-btn.active {
  opacity: 1;
  font-weight: 700;
  border-bottom-color: var(--gold);
}
.tab-panel {
  display: none;
  padding: 56px 0 0;
}
.tab-panel.active { display: block; }
.panel-meta {
  margin-bottom: 44px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(26,26,23,.1);
}
.panel-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  letter-spacing: 6px;
  font-weight: 500;
  opacity: .45;
  margin-bottom: 10px;
}
.panel-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1;
  letter-spacing: -.5px;
}
.panel-subtitle {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 2px;
  opacity: .6;
  margin-top: 10px;
}
.panel-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.panel-col-label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 8px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 24px;
}
.panel-drink-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 26px;
  margin-bottom: 6px;
}
.panel-drink-desc {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  opacity: .7;
  margin-bottom: 8px;
}
.panel-bissen-label {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  letter-spacing: 6px;
  font-weight: 500;
  color: var(--gold);
  opacity: .75;
  margin: 36px 0 20px;
}
.panel-bissen-item {
  margin-bottom: 20px;
}
.panel-bissen-item:last-child {
  margin-bottom: 0;
}
.panel-bissen-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 4px;
  line-height: 1.25;
}
.panel-bissen-note {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 13px;
  opacity: .6;
  letter-spacing: .5px;
  line-height: 1.55;
}
.panel-tafel-item {
  padding: 12px 0;
}
.panel-tafel-item + .panel-tafel-item {
  border-top: 1px solid rgba(26,26,23,.07);
}
.panel-dish {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 3px;
}
.panel-dish-note {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 13px;
  opacity: .6;
  letter-spacing: .5px;
}
.panel-menue-footer {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  opacity: .65;
  margin-top: 44px;
  border-top: 1px solid rgba(26,26,23,.1);
  padding-top: 26px;
}
.panel-cta {
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(26,26,23,.1);
}

/* ── DER UNTERSCHIED ──────────────────────────────── */
.unterschied {
  background: var(--ink);
  color: var(--bone);
  padding: 120px 64px;
  border-top: 1px solid rgba(244,236,219,.06);
  border-bottom: 1px solid rgba(244,236,219,.06);
}
.unterschied-inner {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}
.unterschied-label {
  color: var(--gold);
  opacity: .75;
  margin-bottom: 40px;
}
.unterschied-quote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.4;
  letter-spacing: -.3px;
  margin: 0 auto 64px;
  max-width: 840px;
}
.unterschied-quote em {
  font-style: italic;
  color: var(--gold);
}
.contrasts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  text-align: left;
  border-top: 1px solid rgba(244,236,219,.12);
  padding-top: 52px;
}
.contrast-other {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 1px;
  opacity: .42;
  margin-bottom: 18px;
  line-height: 1.55;
}
.contrast-us {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.45;
  letter-spacing: -.2px;
}
.contrast-us em {
  font-style: italic;
}

/* ── PANEL EXTRA — DAS 1% ─────────────────────────── */
.panel-extra {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(184,151,88,.5);
}
.panel-extra-label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 7px;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}
.panel-extra-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(19px, 1.6vw, 23px);
  line-height: 1.55;
  opacity: .88;
  max-width: 680px;
}

/* ── FORM OPTIONAL ────────────────────────────────── */
.form-optional-label {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  letter-spacing: 6px;
  font-weight: 500;
  color: var(--gold);
  opacity: .7;
  margin: 32px 0 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(244,236,219,.18);
}

/* ── PANEL PHOTO ──────────────────────────────────── */
.panel-photo {
  width: 100%;
  height: 42vh;
  overflow: hidden;
  margin: 0 0 44px;
}
.panel-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: sepia(0.12) brightness(0.88) saturate(1.06);
}
.tab-panel.active .panel-photo img {
  animation: kenburns 20s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1.07); }
  to   { transform: scale(1.0);  }
}

/* ── ANLÄSSE ──────────────────────────────────────── */
.anlaesse {
  background: var(--bone);
  padding: 120px 64px;
  border-top: 1px solid rgba(26,26,23,.08);
}
.anlaesse-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.anlaesse-header {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 80px;
  margin-bottom: 70px;
}
.anlaesse-subtitle {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  opacity: .75;
  max-width: 620px;
  margin-top: 28px;
}
.occ-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid rgba(26,26,23,.13);
  border-left: 1px solid rgba(26,26,23,.13);
}
.occ-card {
  padding: 40px;
  border-right: 1px solid rgba(26,26,23,.13);
  border-bottom: 1px solid rgba(26,26,23,.13);
  background: var(--bone);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.occ-num {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  letter-spacing: 6px;
  font-weight: 500;
  opacity: .45;
}
.occ-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 34px;
  line-height: 1;
  margin: 0 0 6px;
}
.occ-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  opacity: .55;
  margin-bottom: 16px;
}
.occ-desc {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.65;
  opacity: .75;
}

/* ── ABLAUF ───────────────────────────────────────── */
.ablauf {
  background: var(--bone);
  padding: 120px 64px;
  border-top: 1px solid rgba(26,26,23,.08);
}
.ablauf-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.ablauf-header {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 80px;
  margin-bottom: 70px;
}
.ablauf-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.step {
  padding: 40px 24px 40px 0;
  border-top: 2px solid var(--ink);
}
.step + .step {
  padding-left: 24px;
  border-left: 1px solid rgba(26,26,23,.13);
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 24px;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 12px;
}
.step-desc {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.65;
  opacity: .75;
}

/* ── STIMMEN ──────────────────────────────────────── */
.stimmen {
  background: var(--cream);
  padding: 120px 64px;
}
.stimmen-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.stimmen-header {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 80px;
  margin-bottom: 70px;
}
.stimmen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.quote-card {
  border-top: 1px solid rgba(26,26,23,.2);
  padding-top: 30px;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 28px;
}
.quote-author {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
}
.quote-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  opacity: .55;
  margin-top: 4px;
}

/* ── HINTER TISCH 7 ───────────────────────────────── */
.hinter {
  background: var(--bone);
  padding: 120px 64px;
  border-top: 1px solid rgba(26,26,23,.08);
}
.hinter-header {
  max-width: 1200px;
  margin: 0 auto 70px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 80px;
}
.hinter-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.hinter-photo {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.hinter-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  filter: grayscale(100%) contrast(1.06) brightness(0.96);
  transform: scale(1.02);
  transition: transform 8s ease, filter .6s ease;
}
.hinter-photo:hover img {
  transform: scale(1.04);
  filter: grayscale(100%) contrast(1.1) brightness(1);
}
.hinter-body p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(19px, 1.45vw, 23px);
  line-height: 1.62;
  margin-bottom: 22px;
  opacity: .85;
  max-width: 580px;
}
.hinter-body p em {
  font-style: italic;
}
.hinter-sign {
  font-family: 'Manrope', sans-serif !important;
  font-size: 11px !important;
  letter-spacing: 6px;
  font-weight: 500;
  opacity: .55 !important;
  margin-top: 32px !important;
  font-style: normal !important;
}

/* ── ANFRAGE ──────────────────────────────────────── */
.anfrage {
  background: var(--ink);
  color: var(--bone);
  padding: 140px 64px;
  position: relative;
  overflow: hidden;
}
.anfrage-bg7 {
  position: absolute;
  right: -120px;
  top: -80px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 540px;
  color: var(--bone);
  opacity: .05;
  line-height: .8;
  user-select: none;
  pointer-events: none;
}
.anfrage-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.anfrage-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 0 0 28px;
}
.anfrage-intro {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
  opacity: .8;
  max-width: 540px;
  margin: 0 auto 56px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 640px;
  margin: 0 auto 16px;
}
.form-full {
  max-width: 640px;
  margin: 0 auto 28px;
}
.form-story {
  max-width: 640px;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  text-align: left;
}
.story-help {
  padding: 28px 0 0;
}
.story-help-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--bone);
  opacity: .55;
  margin: 0;
}
.form-story .field textarea {
  height: 160px;
}
.field {
  border-bottom: 1px solid rgba(244,236,219,.27);
  padding: 20px 4px;
  text-align: left;
}
.field label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  letter-spacing: 6px;
  font-weight: 500;
  opacity: .55;
  margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%;
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 18px;
  background: transparent;
  border: none;
  color: var(--bone);
  outline: none;
  opacity: .85;
}
.field input::placeholder,
.field textarea::placeholder { opacity: .4; color: var(--bone); }
.field textarea { resize: none; height: 60px; }
.field input.is-invalid,
.field textarea.is-invalid { border-bottom-color: var(--terra); }
.field input.is-invalid + label,
.field input.is-invalid::placeholder,
.field textarea.is-invalid::placeholder { color: var(--terra); opacity: .8; }

.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.h-captcha {
  display: flex;
  justify-content: center;
  margin: 36px auto 20px;
  min-height: 78px;
}

.form-error {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--terra);
  min-height: 1.2em;
  margin: 8px 0 12px;
}
.form-error:empty { margin: 0; }
.btn-gold {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  letter-spacing: 5px;
  font-weight: 500;
  padding: 18px 36px;
  background: var(--gold);
  color: var(--ink);
  border: none;
  cursor: pointer;
  transition: opacity .15s;
}
.btn-gold:hover { opacity: .9; }

/* ── FORM SUCCESS OVERLAY ─────────────────────────── */
.form-success {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--bone);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
}
.form-success.is-open {
  opacity: 1;
  pointer-events: auto;
}
.form-success-inner {
  max-width: 540px;
  text-align: center;
  transform: translateY(12px);
  transition: transform .6s ease .08s;
}
.form-success.is-open .form-success-inner { transform: translateY(0); }
.form-success-rule {
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 36px;
}
.form-success-label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 8px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: .9;
}
.form-success-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(48px, 6vw, 72px);
  letter-spacing: -.8px;
  line-height: 1;
  margin: 0 0 36px;
}
.form-success-headline em { font-style: italic; color: var(--gold); }
.form-success-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(19px, 1.8vw, 23px);
  line-height: 1.55;
  opacity: .85;
  margin-bottom: 44px;
}
.form-success-close {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 5px;
  font-weight: 500;
  padding: 16px 28px;
  background: transparent;
  color: var(--bone);
  border: 1px solid rgba(244,236,219,.3);
  cursor: pointer;
  text-transform: uppercase;
  transition: background .2s, color .2s;
}
.form-success-close:hover { background: var(--bone); color: var(--ink); }

/* ── FOOTER ───────────────────────────────────────── */
.footer {
  background: var(--bone);
  color: var(--ink);
  padding: 60px 64px 40px;
  border-top: 1px solid rgba(26,26,23,.13);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
}
.footer-logo {
  font-weight: 300;
  letter-spacing: 6px;
  font-size: 14px;
  margin-bottom: 18px;
}
.footer-logo strong { font-weight: 700; }
.footer-col-label {
  font-size: 10px;
  letter-spacing: 6px;
  opacity: .55;
  margin-bottom: 18px;
}
.footer-addr { opacity: .65; line-height: 1.7; }
.footer-since {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  letter-spacing: 6px;
  font-weight: 500;
  opacity: .4;
  margin-top: 18px;
}
.footer-contact { opacity: .8; line-height: 1.7; }
.footer-contact a { color: inherit; text-decoration: none; }
.footer-social { opacity: .8; line-height: 1.7; }
.footer-legal { opacity: .8; line-height: 1.7; }
.footer-legal a { color: inherit; text-decoration: none; display: block; }
.footer-legal a:hover { opacity: .7; }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .hero { padding: 80px 24px 100px; }
  .hero-wordmark { gap: 16px; }

  .konzept-grid,
  .anlaesse-header,
  .ablauf-header,
  .stimmen-header,
  .hinter-header { grid-template-columns: 1fr; gap: 24px; }

  .konzept { padding: 80px 24px; }
  .pillars { grid-template-columns: 1fr; gap: 32px; }

  .reisen { padding: 80px 24px; }
  .panel-cols { grid-template-columns: 1fr; gap: 40px; }
  .tab-btn { padding: 14px 20px; font-size: 11px; letter-spacing: 3px; }

  .anlaesse, .ablauf { padding: 80px 24px; }
  .occ-grid { grid-template-columns: 1fr 1fr; }

  .ablauf-steps { grid-template-columns: 1fr 1fr; }

  .stimmen { padding: 80px 24px; }
  .stimmen-grid { grid-template-columns: 1fr; gap: 32px; }

  .hinter { padding: 80px 24px; }
  .hinter-inner { grid-template-columns: 1fr; }

  .anfrage { padding: 80px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .form-story { grid-template-columns: 1fr; gap: 8px; }
  .story-help { padding: 0 4px 8px; }

  .footer { grid-template-columns: 1fr 1fr; padding: 40px 24px; gap: 32px; }

  .mood-strip { grid-template-columns: 1fr 1fr; height: 38vh; }
  .mood-img:last-child { display: none; }
  .panel-photo { height: 30vh; }

  .unterschied { padding: 80px 24px; }
  .contrasts { grid-template-columns: 1fr; gap: 36px; padding-top: 36px; }
  .unterschied-quote { margin-bottom: 56px; }
}

@media (max-width: 600px) {
  .hero { padding: 64px 22px 80px; }
  .hero-eyebrow { letter-spacing: 7px; margin-bottom: 40px; }
  .hero-wordmark { gap: 12px; }
  .hero-tag { letter-spacing: 6px; font-size: 12px; }
  .hero-intro { font-size: 22px; margin-top: 44px; }
  .hero-ctas { margin-top: 40px; }

  .occ-grid { grid-template-columns: 1fr; }
  .ablauf-steps { grid-template-columns: 1fr; }
}
