/* ============================================================
   Ahnentempel Salzburg — Zeit, die bleibt
   Warm, ruhig, vertrauenswürdig
   ============================================================ */

:root {
  /* Farben */
  --cream:        #FAF6EF;
  --cream-soft:   #F5EEDF;
  --beige:        #EFE5D4;
  --beige-deep:   #E4D6BD;
  --gold:         #C9A66B;
  --gold-deep:    #B08A4F;
  --gold-soft:    #E8D6B0;
  --brown:        #5C4A3A;
  --brown-soft:   #8A7560;
  --brown-deep:   #3D332A;
  --sage:         #A8B89A;
  --sage-soft:    #D4DBC9;
  --line:         rgba(92, 74, 58, 0.15);
  --shadow-soft:  0 10px 40px -20px rgba(92, 74, 58, 0.25);
  --shadow-card:  0 20px 50px -28px rgba(92, 74, 58, 0.35);
  --shadow-image: 0 24px 60px -28px rgba(61, 51, 42, 0.45);

  /* Typografie */
  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Maße */
  --radius-sm: 10px;
  --radius:    18px;
  --radius-lg: 28px;
  --container: 1180px;

  /* Easing */
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset & Basis ---------- */

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--brown-deep);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a {
  color: var(--brown-deep);
  text-decoration: none;
  transition: color .25s var(--ease);
}
a:hover { color: var(--gold-deep); }

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -1000px;
  top: 8px;
  background: var(--brown-deep);
  color: var(--cream);
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 1000;
}
.skip-link:focus { left: 8px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------- Header / Navigation ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(250, 246, 239, 0.94);
  border-bottom-color: var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--brown-deep);
}
.brand-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  /* Hellgelber Hauch hinter dem Logo, damit es auch auf dem Hero-Bild gut lesbar bleibt */
  filter: drop-shadow(0 1px 2px rgba(250, 246, 239, 0.6));
  transition: filter .3s var(--ease);
}
/* Vor dem Scrollen (Hero): zusätzlicher dezenter Halo, damit das Gold vor dem Bergbild sicher liest */
.site-header:not(.scrolled) .brand-logo {
  filter:
    drop-shadow(0 0 8px rgba(250, 246, 239, 0.55))
    drop-shadow(0 2px 6px rgba(0, 0, 0, 0.18));
}
.brand-text { display: inline-flex; flex-direction: column; line-height: 1.05; color: var(--brown-deep); }
.brand-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-soft);
  margin-top: 2px;
}

/* Auf Hero (oben, vor Scroll): Schrift hell */
.site-header:not(.scrolled) .brand-text,
.site-header:not(.scrolled) .brand-name {
  color: var(--cream);
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
}
.site-header:not(.scrolled) .brand-sub {
  color: var(--gold-soft);
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.site-header:not(.scrolled) .nav-list a {
  color: var(--cream);
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.site-header:not(.scrolled) .nav-toggle span {
  background: var(--cream);
}

.primary-nav { display: flex; align-items: center; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--brown);
  padding: 6px 0;
  position: relative;
  transition: color .25s var(--ease);
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right .3s var(--ease);
}
.nav-list a:hover::after { right: 0; }

.nav-cta {
  background: var(--gold-deep);
  color: var(--cream) !important;
  padding: 10px 22px !important;
  border-radius: 999px;
  text-shadow: none !important;
  transition: background .25s var(--ease);
}
.nav-cta:hover { background: var(--brown-deep); }
.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 42px; height: 42px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--brown-deep);
  margin: 5px auto;
  width: 22px;
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease), background .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Typografie ---------- */

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 18px;
  font-weight: 500;
}
.eyebrow--light { color: var(--gold-soft); }

.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 26px;
  color: var(--brown-deep);
}
.display em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}
.display--light { color: var(--cream); text-shadow: 0 4px 30px rgba(0,0,0,0.35); }
.display--light em { color: var(--gold-soft); }

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin: 0 0 18px;
  color: var(--brown-deep);
}
.section-title em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}

.lead {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.9vw, 1.55rem);
  line-height: 1.5;
  color: var(--brown);
  margin: 0 0 30px;
  font-weight: 400;
  font-style: italic;
}
.lead--light { color: var(--cream-soft); text-shadow: 0 2px 16px rgba(0,0,0,0.3); }

.section-lead {
  font-size: 1.05rem;
  color: var(--brown-soft);
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--gold-deep);
  color: var(--cream);
  box-shadow: 0 12px 28px -12px rgba(176, 138, 79, 0.6);
}
.btn-primary:hover {
  background: var(--brown-deep);
  color: var(--cream);
}

.btn-ghost {
  background: transparent;
  color: var(--brown-deep);
  border-color: var(--brown-deep);
}
.btn-ghost:hover {
  background: var(--brown-deep);
  color: var(--cream);
}
.btn-ghost--light {
  color: var(--cream);
  border-color: var(--cream);
}
.btn-ghost--light:hover {
  background: var(--cream);
  color: var(--brown-deep);
}

.btn-block { width: 100%; margin-top: 4px; }

/* ---------- Sections ---------- */

.section { padding-block: clamp(80px, 11vw, 140px); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

/* ---------- Hero: großes Stimmungsbild ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(61, 51, 42, 0.50) 0%, rgba(61, 51, 42, 0.65) 80%),
    linear-gradient(180deg, rgba(61, 51, 42, 0.45) 0%, rgba(61, 51, 42, 0.25) 40%, rgba(61, 51, 42, 0.65) 100%);
}

.hero-content {
  padding-block: 140px 100px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.hero-inner {
  max-width: 760px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-inner .eyebrow { margin-bottom: 22px; }
.hero-inner .display { margin-bottom: 28px; }
.hero-inner .lead { margin-bottom: 32px; }
.hero-inner .claim-line { margin-bottom: 44px; }
.hero-inner .hero-actions { justify-content: center; }

.claim-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--brown-soft);
  margin: 0 0 40px;
}
.claim-line .line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.claim-line--light { color: var(--gold-soft); }
.claim-line--light .line { background: var(--gold-soft); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 46px;
  border: 1.5px solid rgba(245, 238, 223, 0.6);
  border-radius: 999px;
  z-index: 2;
}
.hero-scroll span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 8px;
  background: var(--cream-soft);
  border-radius: 4px;
  transform: translateX(-50%);
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  50%      { transform: translate(-50%, 18px); opacity: 0.3; }
}

/* ---------- Warum ---------- */

.warum { background: var(--cream-soft); }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pillar {
  background: var(--cream);
  padding: 40px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-align: left;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.pillar-icon {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--beige);
  color: var(--gold-deep);
  margin-bottom: 22px;
}
.pillar h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.45rem;
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--brown-deep);
}
.pillar p {
  margin: 0;
  color: var(--brown);
  font-size: 1rem;
}

/* ---------- Format / Bildwand ---------- */

.format {
  background:
    radial-gradient(ellipse at 15% 0%, rgba(232, 214, 176, 0.55), transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(168, 184, 154, 0.22), transparent 60%),
    linear-gradient(180deg, #EFE2C6 0%, #ECE0C8 100%);
  position: relative;
  isolation: isolate;
}
.format > .container { position: relative; z-index: 1; }
.format::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(92, 74, 58, 0.06) 1px, transparent 0);
  background-size: 18px 18px;
  opacity: 0.5;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 80%, transparent 100%);
}
.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  position: relative;
  margin-bottom: clamp(60px, 8vw, 100px);
}
.format-text p { margin: 0 0 18px; color: var(--brown); }
.format-lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 1.7vw, 1.4rem);
  color: var(--brown-deep) !important;
  margin: 22px 0 28px !important;
}
.format-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  gap: 14px;
}
.format-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--brown-deep);
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(92, 74, 58, 0.12);
}
.format-list li:last-child { border-bottom: 0; }
.format-list li span {
  color: var(--gold-deep);
  font-weight: 600;
}

.format-quote {
  background: var(--cream-soft);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 32px 0 0;
}
.format-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.45;
  margin: 0 0 14px !important;
  color: var(--brown-deep);
}
.format-quote strong {
  font-style: normal;
  font-weight: 500;
  color: var(--gold-deep);
}
.format-quote footer {
  font-size: 0.92rem;
  color: var(--brown-soft);
  font-style: italic;
  line-height: 1.5;
}

/* CSS-Collage / Bildwand */
.format-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0;
}
.tile {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease);
}
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-image); }
.tile:hover img { transform: scale(1.03); }

/* Layout: 2 Portraits oben, 2 Landscapes mitte, 1 großes Showcase unten quer */
.tile--portrait  { aspect-ratio: 4 / 5; }
.tile--landscape { aspect-ratio: 4 / 3; }
.tile--banner {
  grid-column: 1 / -1;
  aspect-ratio: 4 / 3;        /* 1:1 mit dem Originalbild — keine Beschneidung */
}

/* Bildausschnitte */
.tile--portrait:nth-of-type(1) img { object-position: center 42%; }  /* Nina – Köpfe & Album sichtbar */
.tile--portrait:nth-of-type(2) img { object-position: 55% 35%; }      /* together-glasses */
.tile--landscape:nth-of-type(3) img { object-position: center 35%; } /* telephone */
.tile--landscape:nth-of-type(4) img { object-position: center 32%; } /* Lukas – Salzburger Festung im Hintergrund halten */
.tile--banner img { object-fit: cover; object-position: center; }    /* auto-on-tour, voll sichtbar */

.tile-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 24px 18px;
  background: linear-gradient(to top, rgba(61, 51, 42, 0.75) 0%, rgba(61, 51, 42, 0.35) 60%, transparent 100%);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.tile-caption em {
  font-style: italic;
  color: var(--gold-soft);
  margin-right: 4px;
}

/* Ziele */
.ziele {
  text-align: center;
  padding: 48px 32px;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-top: 0;
}
.ziele-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0 0 24px;
  color: var(--brown-deep);
}
.ziele-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ziele-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--brown-deep);
}
.ziele-icon {
  color: var(--gold-deep);
  font-size: 1.1rem;
  font-style: normal;
}

/* ---------- Angebot ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px 36px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--gold-soft);
}
.card--featured {
  background: linear-gradient(165deg, #FBF4E2 0%, var(--cream-soft) 100%);
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-card);
}
.card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-deep);
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.card-tag {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.55rem;
  color: var(--brown-deep);
  margin: 0;
  line-height: 1.1;
}
.card-price {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold-deep);
  margin: 0;
  white-space: nowrap;
}
.card-price span {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown-soft);
  margin-right: 4px;
  font-family: var(--sans);
}
.card-intro {
  margin: 18px 0 18px;
  color: var(--brown);
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.1rem;
}
.card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex-grow: 1;
}
.card-list li {
  position: relative;
  padding-left: 22px;
  padding-block: 8px;
  color: var(--brown);
  font-size: 0.97rem;
  border-bottom: 1px dashed rgba(92, 74, 58, 0.10);
}
.card-list li:last-child { border-bottom: 0; }
.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid var(--gold);
}
.card-link {
  display: inline-block;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--brown-deep);
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.card-link:hover { color: var(--gold-deep); border-color: var(--gold-deep); }

.angebot-note {
  max-width: 620px;
  margin: 56px auto 0;
  text-align: center;
  color: var(--brown-soft);
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ---------- Reisekosten-Block ---------- */

.travel {
  margin-top: clamp(60px, 8vw, 96px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  gap: 0;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.travel-image {
  margin: 0;
  position: relative;
  min-height: 320px;
  background: var(--beige);
}
.travel-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 50%;
  transition: transform .8s var(--ease);
}
.travel:hover .travel-image img { transform: scale(1.03); }

.travel-text {
  padding: clamp(32px, 4vw, 56px) clamp(28px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.travel-text .eyebrow { margin-bottom: 14px; }

.travel-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.2;
  color: var(--brown-deep);
  margin: 0 0 16px;
}

.travel-lead {
  color: var(--brown);
  margin: 0 0 28px;
  font-size: 1.02rem;
  line-height: 1.6;
}

.travel-costs {
  display: grid;
  gap: 0;
  margin: 0 0 24px;
  padding: 0;
  border-top: 1px solid var(--line);
}
.travel-cost-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.travel-cost-item dt {
  font-size: 0.95rem;
  color: var(--brown);
  margin: 0;
}
.travel-cost-item dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--brown-deep);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.travel-cost-item--accent dd {
  color: var(--gold-deep);
  font-style: italic;
}

.travel-note {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--brown-soft);
  padding-left: 18px;
  border-left: 2px solid var(--gold-soft);
}

/* ---------- Ablauf ---------- */

.ablauf { background: var(--cream-soft); }

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-soft), transparent);
}
.step {
  position: relative;
  text-align: center;
  padding: 20px 12px 0;
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold-deep);
  border: 1px solid var(--gold-soft);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.25;
  margin: 0 0 10px;
  color: var(--brown-deep);
}
.step p {
  margin: 0;
  color: var(--brown);
  font-size: 0.97rem;
}

/* ---------- Über mich ---------- */

.ueber-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.ueber-visual { position: relative; }

.photo-frame {
  position: relative;
  margin: 0;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-image);
}
.photo-frame--portrait { aspect-ratio: 4 / 5; }
.photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center 30%;
  transition: transform .8s var(--ease);
}
.photo-frame:hover .photo-img { transform: scale(1.02); }

.photo-decor {
  position: absolute;
  width: 60%;
  height: 60%;
  bottom: -22px;
  right: -22px;
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-lg);
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(201,166,107,0.08), transparent 70%);
}

.ueber-text p { color: var(--brown); margin: 0 0 18px; }
.ueber-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: var(--brown-deep);
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin: 24px 0 28px !important;
  line-height: 1.45;
}
.ueber-sign {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-soft);
  margin-top: 28px !important;
}

/* ---------- Kontakt ---------- */

.kontakt {
  background:
    radial-gradient(ellipse at 0% 100%, rgba(168, 184, 154, 0.10), transparent 50%),
    radial-gradient(ellipse at 100% 0%, rgba(201, 166, 107, 0.08), transparent 50%),
    var(--cream);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}

.kontakt-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}
.kontakt-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--brown);
  line-height: 1.55;
}
.kontakt-list li:last-child { border-bottom: 0; }
.ki-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--beige);
  color: var(--gold-deep);
}
.kontakt-list strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--brown-deep);
}
.kontakt-list em {
  font-style: italic;
  color: var(--brown-soft);
  font-size: 0.93rem;
}
.kontakt-list a { color: var(--brown); }
.kontakt-list a:hover { color: var(--gold-deep); }

/* Formular */
.kontakt-form {
  background: var(--cream-soft);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown-soft);
  margin-bottom: 10px;
  font-weight: 500;
}
.field input,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--brown-deep);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  resize: vertical;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-deep);
  background: #FFF;
}
.form-note {
  margin: 16px 0 0;
  font-size: 0.92rem;
  color: var(--sage);
  min-height: 1.2em;
  text-align: center;
}
.form-note.error   { color: #B5544B; }
.form-note.success { color: var(--gold-deep); }
.form-note.info    { color: var(--brown-soft); font-style: italic; }

/* Honeypot: für Menschen unsichtbar, für Screenreader weg, für Bots aber im DOM sichtbar */
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

/* DSGVO-Zustimmung */
.field-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 4px 0 20px;
  font-size: 0.88rem;
  color: var(--brown);
  line-height: 1.5;
  cursor: pointer;
}
.field-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  border: 1px solid var(--gold-soft);
  border-radius: 4px;
  background: var(--cream);
  cursor: pointer;
  flex-shrink: 0;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.field-check input[type="checkbox"]:checked {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23FAF6EF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3 8 6.5 11.5 13 5'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}
.field-check input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 2px;
}

/* Hinweis über dem Formular */
.kontakt-hint {
  margin: 28px 0 0;
  padding: 16px 18px;
  background: var(--cream-soft);
  border-left: 2px solid var(--gold-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--brown);
  line-height: 1.55;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--brown-deep);
  color: var(--cream-soft);
  padding-block: 64px 44px;
}
.footer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer-logo {
  width: 130px;
  height: 154px;
  object-fit: contain;
  padding: 20px 18px;
  background:
    radial-gradient(ellipse at center, var(--cream) 0%, var(--cream-soft) 100%);
  border-radius: 50%;
  margin-bottom: 8px;
  /* sanfter Schein statt harter Kante – wirkt wie ein warmes Licht hinter dem Logo */
  box-shadow:
    0 0 0 1px rgba(232, 214, 176, 0.18),
    0 0 60px -10px rgba(250, 246, 239, 0.15),
    0 12px 32px -16px rgba(0, 0, 0, 0.45);
}
.footer-claim {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-soft);
  margin: 0;
}
.footer-tagline {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: rgba(245, 238, 223, 0.75);
  margin: 0;
  letter-spacing: 0.02em;
}
.footer-meta {
  font-size: 0.92rem;
  color: rgba(245, 238, 223, 0.7);
  margin: 8px 0 0;
  letter-spacing: 0.02em;
  line-height: 1.7;
}
.footer-meta a {
  color: var(--gold-soft);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.footer-meta a:hover {
  color: var(--cream);
  border-bottom-color: var(--gold-soft);
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(245, 238, 223, 0.4);
  letter-spacing: 0.06em;
  margin: 4px 0 0;
}
.footer-legal {
  margin: 6px 0 0;
  font-size: 0.88rem;
  color: rgba(245, 238, 223, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-legal a {
  color: var(--gold-soft);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.footer-legal a:hover { color: var(--cream); border-bottom-color: var(--gold-soft); }
.footer-legal span { color: rgba(245, 238, 223, 0.35); }

/* ---------- Legal-Seiten (Impressum / Datenschutz) ---------- */

.page-legal { background: var(--cream); }

.legal-main {
  padding-block: clamp(100px, 14vw, 160px) clamp(60px, 8vw, 100px);
}
.legal-content {
  max-width: 760px;
}

.legal-head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(32px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
}
.legal-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--brown-deep);
}
.legal-sub {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--brown-soft);
  font-size: 1.05rem;
}

.legal-content section {
  margin-bottom: clamp(28px, 3.5vw, 44px);
}
.legal-content h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  color: var(--brown-deep);
  margin: 0 0 14px;
  letter-spacing: -0.005em;
}
.legal-content h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--brown-deep);
  margin: 24px 0 10px;
}
.legal-content p {
  color: var(--brown);
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.7;
}
.legal-content ul {
  padding-left: 22px;
  margin: 0 0 14px;
  color: var(--brown);
}
.legal-content li {
  padding-block: 4px;
  line-height: 1.6;
}
.legal-content li::marker {
  color: var(--gold-deep);
}
.legal-content a {
  color: var(--brown-deep);
  border-bottom: 1px solid var(--gold-soft);
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.legal-content a:hover {
  color: var(--gold-deep);
  border-bottom-color: var(--gold-deep);
}
.legal-content strong { color: var(--brown-deep); font-weight: 500; }

.placeholder {
  background: var(--cream-soft);
  border-left: 2px solid var(--gold-soft);
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.placeholder em {
  color: var(--brown-soft);
  font-style: italic;
}

.legal-back {
  margin-top: clamp(40px, 5vw, 60px) !important;
  padding-top: clamp(28px, 3.5vw, 40px);
  border-top: 1px solid var(--line);
  text-align: center;
}
.legal-back a {
  font-family: var(--sans);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--brown-soft) !important;
  border-bottom: none !important;
}
.legal-back a:hover { color: var(--gold-deep) !important; }

/* ---------- Scroll-Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .pillars { grid-template-columns: 1fr; gap: 20px; }
  .cards { grid-template-columns: 1fr; gap: 24px; }
  .card--featured { transform: none; }

  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .steps::before { display: none; }

  .ueber-grid { grid-template-columns: 1fr; }
  .ueber-visual { max-width: 420px; margin-inline: auto; width: 100%; }

  .format-grid { grid-template-columns: 1fr; }
  .format-collage { max-width: 580px; margin-inline: auto; width: 100%; order: -1; }

  .ziele-list { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .travel { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .travel-image { min-height: 280px; aspect-ratio: 16 / 10; }

  .kontakt-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }

  .nav-toggle { display: grid; place-items: center; }
  .nav-list {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-top: 1px solid var(--line);
    padding: 16px 24px 24px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
    box-shadow: var(--shadow-soft);
  }
  .nav-list.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-list li { border-bottom: 1px solid var(--line); }
  .nav-list li:last-child { border-bottom: 0; padding-top: 12px; }
  .nav-list a { display: block; padding: 14px 0; font-size: 1rem; color: var(--brown) !important; text-shadow: none !important; }
  .nav-cta { text-align: center; color: var(--cream) !important; }

  .brand-logo { height: 44px; }
  .brand-name { font-size: 1.15rem; }

  .hero { min-height: 88vh; min-height: 88svh; }
  .hero-content { padding-block: 120px 80px; }
  .hero-actions { gap: 10px; }
  .btn { width: 100%; }
  .claim-line { width: 100%; justify-content: center; }
  .hero-scroll { display: none; }

  .format-collage {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .tile--portrait  { aspect-ratio: 4 / 5; }
  .tile--landscape { aspect-ratio: 4 / 3; }
  .tile--banner    { grid-column: 1 / -1; aspect-ratio: 4 / 3; }
  .tile-caption {
    padding: 14px 18px 12px;
    font-size: 0.92rem;
  }

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

  .kontakt-form { padding: 28px 22px; }

  .section-head { margin-bottom: 44px; }
}

@media (max-width: 480px) {
  .display { font-size: 2.4rem; }
  .section-title { font-size: 1.7rem; }
  .card { padding: 32px 24px 28px; }
  .pillar { padding: 32px 24px; }
}
