/* ============================================================
   Forsthaus Mähring — „nature distilled"
   Design system: cream / forest / brass · Cormorant + Inter
   ============================================================ */

:root {
  /* palette */
  --cream:        #F5F1E8;
  --cream-2:      #EFE9DC;   /* alternating section */
  --paper:        #FBF8F1;   /* cards */
  --forest:       #2E3B2C;
  --forest-soft:  #46543F;
  --ink:          #1C1C1A;
  --brass:        #B08D57;
  --brass-deep:   #97743D;
  --line:         rgba(46, 59, 44, 0.16);
  --line-soft:    rgba(46, 59, 44, 0.09);

  /* type */
  --serif: "Cormorant Garamond", Georgia, serif;
  --serif-tracking: 0.005em;
  --sans:  "Inter", system-ui, -apple-system, sans-serif;

  /* shape */
  --r-img: 6px;
  --r-card: 8px;
  --shadow-soft: 0 24px 60px -28px rgba(28,28,26,0.40);
  --shadow-card: 0 18px 44px -26px rgba(28,28,26,0.34);

  /* rhythm */
  --pad-x: clamp(22px, 6vw, 96px);
  --section-y: clamp(76px, 11vw, 168px);
  --maxw: 1280px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

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

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

::selection { background: var(--brass); color: var(--cream); }

/* ---------- type primitives ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--brass);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--brass);
  display: inline-block;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: var(--serif-tracking);
  margin: 0;
}
h2.section-title {
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  line-height: 1.08;
  font-weight: 500;
}
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); line-height: 1.15; }

p { margin: 0 0 1.1em; text-wrap: pretty; }
.lead {
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  line-height: 1.8;
  color: var(--forest-soft);
}

.center { text-align: center; }
.measure { max-width: 60ch; }
.measure.center { margin-left: auto; margin-right: auto; }

/* ---------- layout ---------- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
section { position: relative; }
.section-pad { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.bg-cream2 { background: var(--cream-2); }

/* ---------- buttons ---------- */
.btn {
  --bh: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 17px 30px;
  border-radius: 4px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), background .3s ease, color .3s ease, box-shadow .35s ease, border-color .3s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  background: var(--brass);
  color: #FCF8EF;
  box-shadow: 0 14px 30px -14px rgba(151,116,61,0.85);
}
.btn-primary:hover {
  background: var(--brass-deep);
  transform: translateY(-2px);
  box-shadow: 0 20px 38px -16px rgba(151,116,61,0.9);
}
.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: rgba(46,59,44,0.4);
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
  transform: translateY(-2px);
}
/* on dark imagery */
.btn-outline.on-dark {
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-outline.on-dark:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }

.textlink {
  font-size: 14px; font-weight: 600; letter-spacing: .04em;
  color: var(--brass-deep); text-decoration: none;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 2px; transition: color .25s, border-color .25s;
}
.textlink:hover { color: var(--ink); border-color: var(--ink); }

/* ============================================================
   HEADER (appears on scroll)
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  background: rgba(245,241,232,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transform: translateY(-105%);
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.site-header.show { transform: translateY(0); }
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding-top: 14px; padding-bottom: 14px;
}
.brand {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: .01em;
  line-height: 1.05;
  white-space: nowrap;
}
.brand small {
  display: block;
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 600;
}
.header-cta { display: flex; gap: 12px; align-items: center; }
.header-cta .btn { padding: 12px 22px; }
.header-cta .btn-outline { border-color: var(--line); }

@media (max-width: 640px) {
  .header-cta .btn span.long { display: none; }
  .header-cta .btn-outline { display: none; }
  .brand small { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-media img {
  width: 100%; height: 116%;
  object-fit: cover;
  object-position: center 42%;
  will-change: transform;
}
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(20,24,18,0.74) 0%, rgba(20,24,18,0.30) 34%, rgba(20,24,18,0.12) 60%, rgba(20,24,18,0.42) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  padding-bottom: clamp(54px, 9vh, 110px);
  padding-top: 120px;
}
.hero .eyebrow { color: #E9D8B6; }
.hero .eyebrow::before, .hero .eyebrow::after { background: #D9BE8A; }
.hero h1 {
  color: #FCF9F1;
  font-size: clamp(2.9rem, 8vw, 6.6rem);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: 0.004em;
  max-width: 16ch;
  text-shadow: 0 2px 30px rgba(0,0,0,0.28);
}
.hero h1 em { font-style: italic; color: #EAD7B4; }
.hero-sub {
  color: rgba(252,249,241,0.92);
  font-size: clamp(1.05rem, 1.9vw, 1.4rem);
  line-height: 1.65;
  max-width: 46ch;
  margin: 26px 0 34px;
  font-weight: 400;
}
.hero .btn-row { margin-bottom: 30px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 14px;
  color: #FCF9F1;
  font-size: 13.5px; letter-spacing: .03em;
}
.hero-badge .stars { color: #E9C988; letter-spacing: 2px; }
.hero-badge .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.5); }
.hero-badge b { font-weight: 600; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  z-index: 3; color: rgba(252,249,241,0.8);
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 9px;
}
.scroll-cue .line { width: 1px; height: 42px; background: linear-gradient(rgba(255,255,255,.7), rgba(255,255,255,0)); animation: cue 2.4s ease-in-out infinite; transform-origin: top; }
@keyframes cue { 0%,100%{ transform: scaleY(.4); opacity:.4 } 50%{ transform: scaleY(1); opacity:1 } }

/* ============================================================
   GESCHICHTE / INTRO
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}
.story-copy p:last-child { margin-bottom: 0; }
.story-figure { position: relative; }
.story-figure .main {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--r-img); box-shadow: var(--shadow-soft);
}
.story-figure .inset {
  position: absolute; right: -28px; bottom: -38px;
  width: 46%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: var(--r-img);
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-card);
}
.signature {
  margin-top: 30px;
  display: flex; align-items: center; gap: 16px;
  border-top: 1px solid var(--line); padding-top: 26px;
}
.signature .est {
  font-family: var(--serif); font-size: 2.6rem; line-height: 1; color: var(--brass-deep);
  font-weight: 500;
}
.signature .est-label { font-size: 13px; color: var(--forest-soft); line-height: 1.5; }

@media (max-width: 860px) {
  .story-grid { grid-template-columns: 1fr; gap: 56px; }
  .story-figure { max-width: 460px; margin: 0 auto; }
  .story-figure .inset { right: -14px; bottom: -24px; width: 44%; }
}

/* ============================================================
   HIGHLIGHTS
   ============================================================ */
.sec-head { max-width: 720px; }
.sec-head.center { margin: 0 auto; }
.sec-head .lead { margin-top: 18px; margin-bottom: 0; }

.highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 28px);
  margin-top: clamp(44px, 6vw, 72px);
}
.hl-card {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  min-height: 460px;
  display: flex; align-items: flex-end;
  box-shadow: var(--shadow-card);
  isolation: isolate;
}
.hl-card img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s cubic-bezier(.2,.7,.3,1);
}
.hl-card::after {
  content:""; position:absolute; inset:0; z-index:-1;
  background: linear-gradient(to top, rgba(20,24,18,0.86) 4%, rgba(20,24,18,0.30) 46%, rgba(20,24,18,0.05) 78%);
}
.hl-card:hover img { transform: scale(1.06); }
.hl-body { padding: 26px 24px 28px; color: #fff; }
.hl-body .num {
  font-family: var(--serif); font-size: 14px; color: #E9C988;
  letter-spacing: .12em; display:block; margin-bottom: 10px;
}
.hl-body h3 { color: #fff; font-size: 1.5rem; margin-bottom: 9px; }
.hl-body p { color: rgba(255,255,255,0.82); font-size: 14.5px; line-height: 1.6; margin: 0; }

@media (max-width: 980px) { .highlights { grid-template-columns: repeat(2, 1fr); } .hl-card{ min-height: 380px; } }
@media (max-width: 520px) { .highlights { grid-template-columns: 1fr; } .hl-card{ min-height: 340px; } }

/* ============================================================
   AUSSTATTUNG
   ============================================================ */
.amen-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: clamp(40px, 5vw, 64px);
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  overflow: hidden;
}
.amen {
  background: var(--cream);
  padding: 30px 22px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background .3s ease;
}
.bg-cream2 .amen { background: var(--cream-2); }
.amen:hover { background: var(--paper); }
.amen svg { width: 26px; height: 26px; stroke: var(--brass-deep); fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.amen span { font-size: 14.5px; font-weight: 500; color: var(--forest); letter-spacing: .01em; }
.amen-note {
  margin-top: 28px; display: flex; flex-wrap: wrap; gap: 8px 18px;
  align-items: center; justify-content: space-between;
  font-size: 14px; color: var(--forest-soft);
}
@media (max-width: 900px) { .amen-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 540px) { .amen-grid { grid-template-columns: repeat(2,1fr); } .amen{ padding: 22px 16px; } }

/* ============================================================
   GALERIE
   ============================================================ */
.gallery {
  margin-top: clamp(40px, 5vw, 64px);
  columns: 3;
  column-gap: 16px;
}
@media (max-width: 860px) { .gallery { columns: 2; } }
@media (max-width: 520px) { .gallery { columns: 1; } }
.gal-item {
  display: block; width: 100%; margin: 0 0 16px;
  border: none; padding: 0; background: none; cursor: zoom-in;
  border-radius: var(--r-img); overflow: hidden;
  break-inside: avoid;
  box-shadow: var(--shadow-card);
}
.gal-item img {
  width: 100%; height: auto;
  transition: transform .9s cubic-bezier(.2,.7,.3,1), filter .5s ease;
}
.gal-item:hover img { transform: scale(1.05); filter: brightness(1.04); }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(18,20,15,0.94);
  display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .35s ease;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 4px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lb-btn {
  position: absolute; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  transition: background .25s; backdrop-filter: blur(4px);
}
.lb-btn:hover { background: rgba(255,255,255,0.22); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
.lb-count { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.75); font-size: 13px; letter-spacing: .15em; }
@media (max-width: 600px) { .lb-prev{ left:10px } .lb-next{ right:10px } .lb-btn{ width:44px;height:44px } }

/* ============================================================
   LAGE & AUSFLÜGE
   ============================================================ */
.lage-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px); align-items: center;
  margin-top: clamp(40px,5vw,64px);
}
.lage-figure img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r-img); box-shadow: var(--shadow-soft); }
.trips { list-style: none; margin: 0; padding: 0; }
.trip {
  display: flex; align-items: baseline; gap: 18px;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.trip:first-child { padding-top: 0; }
.trip .name { font-family: var(--serif); font-size: 1.32rem; color: var(--ink); line-height: 1.2; flex: 1; }
.trip .name small { display:block; font-family: var(--sans); font-size: 12.5px; color: var(--forest-soft); letter-spacing: .02em; margin-top: 3px; font-weight: 400; }
.trip .time {
  font-size: 13px; font-weight: 600; letter-spacing: .03em;
  color: var(--brass-deep); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 7px;
}
.trip .time svg { width: 14px; height: 14px; stroke: var(--brass); fill:none; stroke-width:1.6; }
.map-embed {
  margin-top: 26px; border-radius: var(--r-img); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-card);
  aspect-ratio: 16/8; background: var(--cream-2);
}
.map-embed { position: relative; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display:block; }
.map-open {
  position: absolute; right: 14px; bottom: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sans); font-size: 12.5px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--ink); text-decoration: none;
  padding: 9px 15px; border-radius: 999px;
  background: rgba(255,255,255,0.78);
  -webkit-backdrop-filter: blur(14px) saturate(160%); backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 6px 20px rgba(28,28,26,0.18);
  transition: background .25s ease, transform .25s cubic-bezier(.16,1,.3,1);
}
.map-open:hover { background: #fff; transform: translateY(-1px); }

/* ---------- Luftlinie schematic map (offline, no external deps) ---------- */
.airline-map {
  position: relative; margin-top: 16px;
  border-radius: var(--r-img); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-card);
  aspect-ratio: 16 / 8;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-2) 100%);
}
.airline-map svg { display: block; width: 100%; height: 100%; }
.am-title {
  position: absolute; top: 14px; left: 16px; z-index: 2;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass-deep);
}
.am-water { fill: rgba(46, 59, 44, 0.10); }
.am-wave { fill: none; stroke: rgba(46, 59, 44, 0.28); stroke-width: 1.3; stroke-linecap: round; }
.am-contour { fill: none; stroke: var(--line-soft); stroke-width: 1.2; }
.am-line { stroke: var(--brass); stroke-width: 2.6; stroke-linecap: round; stroke-dasharray: 2 11; }
.am-ring { fill: none; stroke: var(--brass); stroke-width: 1.4; opacity: 0.45; }
.am-dotF { fill: var(--brass-deep); }
.am-dotB { fill: var(--forest); }
.am-label { fill: var(--forest); font-family: var(--sans); font-size: 15px; font-weight: 600; letter-spacing: 0.01em; }
.am-pill { fill: var(--paper); stroke: var(--hair); stroke-width: 1; }
.am-pilltext { fill: var(--forest-soft); font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.02em; }

/* map label tag (top-left) */
.map-tag {
  position: absolute; top: 14px; left: 16px; z-index: 2;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink);
  padding: 7px 13px; border-radius: 999px;
  background: rgba(255,255,255,0.82);
  -webkit-backdrop-filter: blur(14px) saturate(160%); backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 6px 18px rgba(28,28,26,0.14);
}
.lage-figure .map-embed + .map-embed { margin-top: 16px; }

/* map provider link buttons */
.map-links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.map-linkbtn {
  display: flex; flex-direction: column; gap: 2px;
  padding: 14px 18px; border-radius: var(--r-img);
  border: 1px solid var(--line); background: var(--paper);
  text-decoration: none; transition: border-color .25s ease, transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease;
}
.map-linkbtn:hover { border-color: var(--brass); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.map-linkbtn b { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; color: var(--ink); }
.map-linkbtn span { font-size: 12.5px; color: var(--forest-soft); letter-spacing: 0.01em; }
.map-linkbtn.alt { background: transparent; }
@media (max-width: 520px) { .map-links { grid-template-columns: 1fr; } }
@media (max-width: 860px) { .lage-grid { grid-template-columns: 1fr; } .lage-figure{ order:-1; max-width:520px; } }

/* ============================================================
   BEWERTUNGEN
   ============================================================ */
.rating-hero { text-align: center; margin-bottom: clamp(40px,5vw,60px); }
.rating-hero .big {
  font-family: var(--serif); font-size: clamp(3.6rem, 9vw, 6rem);
  line-height: 1; color: var(--ink); font-weight: 500;
}
.rating-hero .stars { color: var(--brass); font-size: 1.4rem; letter-spacing: 5px; margin: 10px 0 8px; }
.rating-hero .sub { font-size: 14px; letter-spacing: .04em; color: var(--forest-soft); }
.reviews {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: clamp(18px,2vw,26px);
}
.review {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  padding: 36px 32px 30px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
}
.review .mark { font-family: var(--serif); font-size: 3.4rem; line-height: .6; color: var(--brass); height: 30px; }
.review .stars { color: var(--brass); letter-spacing: 2px; font-size: 13px; margin: 6px 0 14px; }
.review p { font-family: var(--serif); font-size: 1.28rem; line-height: 1.5; color: var(--forest); font-weight: 500; flex: 1; }
.review .who { margin-top: 20px; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--brass-deep); font-weight: 600; }
@media (max-width: 880px) { .reviews { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

/* ============================================================
   CLOSING CTA
   ============================================================ */
.closing {
  position: relative; overflow: hidden;
  min-height: 78vh; display: flex; align-items: center;
}
.closing-media { position:absolute; inset:0; z-index:0; overflow:hidden; }
.closing-media img { width: 100%; height: 120%; object-fit: cover; object-position: center 55%; will-change: transform; }
.closing::after { content:""; position:absolute; inset:0; z-index:1; background: linear-gradient(to right, rgba(18,22,16,0.78), rgba(18,22,16,0.42) 60%, rgba(18,22,16,0.30)); }
.closing-inner { position: relative; z-index: 2; width: 100%; }
.closing .eyebrow { color:#E9D8B6; }
.closing .eyebrow::before { background:#D9BE8A; }
.closing h2 { color:#FCF9F1; font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1.02; max-width: 16ch; font-weight: 500; }
.closing p { color: rgba(252,249,241,0.9); max-width: 44ch; font-size: 1.1rem; margin: 22px 0 32px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--forest); color: rgba(245,241,232,0.82); }
.site-footer .wrap { padding-top: 72px; padding-bottom: 40px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.footer-brand { font-family: var(--serif); font-size: 2rem; color: var(--cream); font-weight: 500; line-height: 1.1; }
.footer-brand small { display:block; font-family: var(--sans); font-size: 10px; letter-spacing:.3em; text-transform:uppercase; color:#D9BE8A; font-weight:600; margin-bottom: 8px; }
.footer-note { font-size: 14px; line-height: 1.7; max-width: 46ch; margin-top: 18px; color: rgba(245,241,232,0.62); }
.footer-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer-actions .btn { width: 100%; max-width: 280px; }
.footer-actions .btn-outline { color: var(--cream); border-color: rgba(245,241,232,0.3); }
.footer-actions .btn-outline:hover { background: var(--cream); color: var(--forest); border-color: var(--cream); }
.footer-bottom {
  margin-top: 52px; padding-top: 26px; border-top: 1px solid rgba(245,241,232,0.16);
  display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center; justify-content: space-between;
  font-size: 13px; color: rgba(245,241,232,0.6);
}
.footer-bottom nav { display: flex; gap: 26px; }
.footer-bottom a { color: rgba(245,241,232,0.78); text-decoration: none; transition: color .25s; }
.footer-bottom a:hover { color: var(--cream); }
@media (max-width: 720px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } .footer-actions .btn { max-width: none; } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2,.7,.3,1), transform .9s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .scroll-cue .line { animation: none; }
  .hero-media img, .closing-media img { height: 100% !important; }
}

/* ============================================================
   TWEAKS · STIMMUNG (mood)  —  repaints ground, ink & accent
   ============================================================ */
:root[data-mood] { transition: --x 0s; } /* anchor */

:root[data-mood="goldene"] {
  --cream:      #F3E7D2;
  --cream-2:    #EAD8BB;
  --paper:      #FBF1DD;
  --forest:     #3B3120;
  --forest-soft:#5C4D33;
  --ink:        #241B0E;
  --brass:      #C0863F;
  --brass-deep: #9A6324;
  --line:       rgba(90,76,52,0.20);
  --line-soft:  rgba(90,76,52,0.11);
}
:root[data-mood="wald"] {
  --cream:      #E7ECE0;
  --cream-2:    #D9E1CD;
  --paper:      #EFF3E8;
  --forest:     #222E1C;
  --forest-soft:#3D4C35;
  --ink:        #161E11;
  --brass:      #A6864A;
  --brass-deep: #7B6029;
  --line:       rgba(34,46,28,0.17);
  --line-soft:  rgba(34,46,28,0.09);
}
/* smooth the repaint */
body, .amen, .review, .site-footer, .btn, .trip, .hl-body { transition: background-color .6s ease, color .5s ease, border-color .5s ease; }

/* ============================================================
   TWEAKS · BILDSPRACHE (imagery)
   ============================================================ */
:root[data-imagery="editorial"] { --r-img: 0px; --r-card: 0px; }
:root[data-imagery="editorial"] .hero-media img,
:root[data-imagery="editorial"] .closing-media img,
:root[data-imagery="editorial"] .hl-card img,
:root[data-imagery="editorial"] .gal-item img,
:root[data-imagery="editorial"] .story-figure img,
:root[data-imagery="editorial"] .lage-figure img { filter: contrast(1.07) saturate(0.9) brightness(0.97); }
:root[data-imagery="editorial"] .story-figure .inset { border-width: 0; }
:root[data-imagery="editorial"] .hero::after {
  background: linear-gradient(to top, rgba(12,14,9,0.88) 0%, rgba(12,14,9,0.42) 42%, rgba(12,14,9,0.22) 68%, rgba(12,14,9,0.55) 100%);
}
:root[data-imagery="editorial"] .closing::after {
  background: linear-gradient(to right, rgba(10,12,8,0.9), rgba(10,12,8,0.55) 58%, rgba(10,12,8,0.42));
}
:root[data-imagery="editorial"] .hl-card::after {
  background: linear-gradient(to top, rgba(12,14,9,0.92) 2%, rgba(12,14,9,0.4) 44%, rgba(12,14,9,0.1) 78%);
}

:root[data-imagery="luftig"] { --r-img: 20px; --r-card: 22px; }
:root[data-imagery="luftig"] .hero::after {
  background: linear-gradient(to top, rgba(20,24,18,0.62) 0%, rgba(20,24,18,0.16) 40%, rgba(20,24,18,0.02) 64%, rgba(20,24,18,0.30) 100%);
}
:root[data-imagery="luftig"] .closing::after {
  background: linear-gradient(to right, rgba(18,22,16,0.6), rgba(18,22,16,0.28) 58%, rgba(18,22,16,0.16));
}
:root[data-imagery="luftig"] .hl-card::after {
  background: linear-gradient(to top, rgba(20,24,18,0.78) 4%, rgba(20,24,18,0.2) 52%, transparent 82%);
}
:root[data-imagery="luftig"] .story-figure .inset { border-width: 8px; }

/* radius + filter eased so switching feels intentional, not jumpy */
.hero-media img, .closing-media img, .hl-card img, .gal-item img,
.story-figure img, .lage-figure img { transition: filter .6s ease, transform 1.1s cubic-bezier(.2,.7,.3,1); }
.story-figure .main, .story-figure .inset, .lage-figure img, .gal-item, .hl-card, .review, .amen-grid, .map-embed { transition: border-radius .5s ease, border-width .5s ease; }
