/* ============================================================
   SAALEBLICK – FERIENWOHNUNG CAMBURG
   style.css
   ============================================================ */


/* ── Design Tokens ────────────────────────────────────────── */
:root {
  /* Brand colours */
  --color-terracotta:       #b8522e;
  --color-terracotta-dark:  #8f3d20;
  --color-terracotta-light: #d4714d;
  --color-olive:            #5c7a3e;
  --color-olive-light:      #7fa358;
  --color-gold:             #d4a82a;
  --color-gold-light:       #f0c84a;

  /* Neutrals */
  --color-cream:  #faf5ee;
  --color-sand:   #f0e4d0;
  --color-dark:   #1e1609;
  --color-dark-2: #2e2010;
  --color-text:   #2e2416;
  --color-text-2: #5a4a38;
  --color-white:  #ffffff;

  /* Typography */
  --font-serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --font-sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Layout */
  --nav-height:   72px;
  --wrap-width:   1200px;
  --wrap-padding: 3rem;
}


/* ── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

section,
#impressum,
[id] {
  scroll-margin-top: var(--nav-height);
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}


/* ── Scroll Progress Bar ──────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--color-terracotta);
  z-index: 200;
  transition: width 0.1s linear;
}


/* ── Navigation ───────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--wrap-padding);
  height: var(--nav-height);
  background: rgba(250, 245, 238, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(184, 82, 46, 0.18);
  transition: box-shadow 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-svg {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-terracotta);
  line-height: 1;
  letter-spacing: -0.01em;
}

.nav-logo-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-olive);
  margin-top: 0.15rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--color-text-2);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.25s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-terracotta);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--color-terracotta);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--color-terracotta) !important;
  color: var(--color-white) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 3px;
  font-weight: 700 !important;
  box-shadow: 0 2px 10px rgba(184, 82, 46, 0.4);
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--color-terracotta-dark) !important;
  box-shadow: 0 4px 18px rgba(184, 82, 46, 0.5) !important;
  transform: translateY(-1px) !important;
}

.nav-cta::after {
  display: none !important;
}


/* ── Hamburger ────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  border: none;
  background: none;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--color-terracotta);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }


/* ── Mobile Menu ──────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  z-index: 99;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.2rem 2rem 1.6rem;
  background: var(--color-cream);
  border-bottom: 3px solid var(--color-terracotta);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--color-terracotta);
}

.mobile-menu .mob-cta {
  background: var(--color-terracotta);
  color: var(--color-white) !important;
  text-align: center;
  border-radius: 3px;
  border-bottom: none;
  margin-top: 0.8rem;
  padding: 0.9rem 1rem;
  font-size: 0.92rem;
  letter-spacing: 0.07em;
  box-shadow: 0 3px 12px rgba(184, 82, 46, 0.35);
}


/* ── Buttons ──────────────────────────────────────────────── */
.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--color-terracotta);
  color: var(--color-white);
  padding: 1.1rem 2.8rem;
  border: none;
  border-radius: 3px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(184, 82, 46, 0.42);
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
}

.btn-p:hover  { background: var(--color-terracotta-dark); box-shadow: 0 7px 26px rgba(184, 82, 46, 0.52); transform: translateY(-3px); }
.btn-p:active { transform: translateY(0); }

.btn-o {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--color-terracotta);
  padding: 1.1rem 2.8rem;
  border: 2px solid var(--color-terracotta);
  border-radius: 3px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-o:hover { background: var(--color-terracotta); color: var(--color-white); box-shadow: 0 4px 18px rgba(184, 82, 46, 0.38); transform: translateY(-3px); }


/* ── Layout Utilities ─────────────────────────────────────── */
.wrap {
  max-width: var(--wrap-width);
  margin: 0 auto;
  padding: 0 var(--wrap-padding);
}

section {
  padding: 6rem 0;
}

/* Section labels, headings, descriptions */
.stag {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-olive);
  margin-bottom: 0.75rem;
}

.sh {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.sd {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.85;
  color: var(--color-text-2);
  max-width: 540px;
}

/* Strong highlights inside descriptions */
.sd strong,
.feat-card p strong,
.hero-sub strong,
.lage-txt .sd strong,
.dist-km strong {
  font-weight: 700;
}

/* ── Reveal Animation ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ── Hero ─────────────────────────────────────────────────── */
#hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: var(--nav-height);
}

.hero-l {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 6rem;
}

.hero-tag {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-olive);
  margin-bottom: 1.5rem;
}

.hero-h {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}

.hero-h em {
  color: var(--color-terracotta);
  font-style: italic;
}

.hero-sub {
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.82;
  color: var(--color-text-2);
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-r {
  position: relative;
  overflow: hidden;
}

.hero-r-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #c8a882 0%, #a07850 40%, #7a5c38 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-r-bg::before {
  content: "🏡";
  font-size: 6rem;
  opacity: 0.4;
}

.hero-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1;
}

.hero-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-dark);
  opacity: 0.8;
}


/* ── Stats Bar ────────────────────────────────────────────── */
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--color-dark-2);
  border-bottom: 3px solid var(--color-terracotta);
}

.stat {
  flex: 1 1 120px;
  max-width: 220px;
  text-align: center;
  padding: 2.2rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat:last-child {
  border-right: none;
}

.stat-n {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-l {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}


/* ── Galerie ──────────────────────────────────────────────── */
#galerie {
  background: var(--color-sand);
  overflow: hidden;
}

.gal-in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

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

.gal-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 3px;
  display: block;
  transition: transform 0.4s;
}

.gal-img:hover {
  transform: scale(1.03);
}

.gal-img--wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 7;
}

.img-placeholder {
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  opacity: 0.7;
}


/* ── Ausstattung ──────────────────────────────────────────── */
#ausstattung {
  background: var(--color-cream);
}

.feat-hd {
  text-align: center;
  margin-bottom: 4rem;
}

.feat-hd .sd {
  margin: 0 auto;
  text-align: center;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feat-card {
  background: var(--color-white);
  border-radius: 4px;
  padding: 2rem;
  border-top: 4px solid transparent;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.feat-card:hover {
  border-color: var(--color-terracotta);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feat-card--full {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.feat-card--full .feat-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.feat-icon {
  display: block;
  font-size: 2.2rem;
  margin-bottom: 0.9rem;
}

.feat-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.feat-card p {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--color-text-2);
}


/* ── Lage ─────────────────────────────────────────────────── */
#lage {
  background: var(--color-olive);
  color: var(--color-white);
  overflow: hidden;
}

.lage-in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.lage-txt .stag { color: var(--color-gold-light); }
.lage-txt .sh   { color: var(--color-white); }
.lage-txt .sd   { color: rgba(255, 255, 255, 0.88); max-width: 100%; }

.lage-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dist-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dist-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0.8rem;
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.2s;
}

.dist-row:hover {
  background: rgba(255, 255, 255, 0.12);
}

.dist-km {
  margin-left: auto;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-gold-light);
}

.map-ph {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}


/* ── Buchung ──────────────────────────────────────────────── */
#buchung {
  background: var(--color-sand);
}

.buch-hd {
  text-align: center;
  margin-bottom: 3rem;
}

.buch-hd .sd {
  margin: 0 auto;
}

.buch-grid {
  max-width: 760px;
  margin: 0 auto;
}

.price-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 1.4rem;
  padding: 1.25rem 1.4rem;
  background: linear-gradient(135deg, rgba(184, 82, 46, 0.12), rgba(212, 168, 42, 0.14));
  border: 2px solid rgba(184, 82, 46, 0.18);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(46, 32, 16, 0.08);
}

.price-banner-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.6rem 0.9rem;
  background: var(--color-white);
  color: var(--color-terracotta-dark);
  border: 1px solid rgba(184, 82, 46, 0.22);
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-banner-main {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.price-banner-main strong {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--color-dark);
}

.price-banner-main span {
  font-size: 0.95rem;
  color: var(--color-text-2);
}


/* ── Kontaktformular ──────────────────────────────────────── */

.form-box {
  background: var(--color-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.form-hd {
  padding: 1.6rem 1.8rem;
  background: var(--color-terracotta);
  color: var(--color-white);
}

.form-hd h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.form-hd p {
  font-size: 0.88rem;
  opacity: 0.9;
}

.form-body {
  padding: 1.6rem 1.8rem;
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

.fg label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-text-2);
}

.fg input,
.fg select,
.fg textarea {
  padding: 0.75rem 1rem;
  border: 2px solid rgba(0, 0, 0, 0.12);
  border-radius: 3px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-dark);
  background: var(--color-cream);
  outline: none;
  resize: vertical;
  transition: border-color 0.2s, background 0.2s;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--color-terracotta);
  background: var(--color-white);
}

.fcheck {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.fcheck input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--color-terracotta);
}

.fcheck label {
  font-size: 0.82rem !important;
  font-weight: 400;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--color-text-2);
  line-height: 1.55;
}

.fcheck label a {
  color: var(--color-terracotta);
  font-weight: 700;
}

.fsub {
  width: 100%;
  padding: 1.1rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(184, 82, 46, 0.35);
}

.fsub:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-error {
  margin-bottom: 0.9rem;
  padding: 0.8rem 1rem;
  background: rgba(184, 82, 46, 0.08);
  border: 2px solid var(--color-terracotta);
  border-radius: 3px;
  font-size: 0.87rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-terracotta-dark);
}

.f-success {
  padding: 3rem 2rem;
  text-align: center;
  color: var(--color-dark);
}

.f-success h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-olive);
  margin: 0.8rem 0 0.5rem;
}

.f-success p {
  font-size: 0.95rem;
  color: var(--color-text-2);
}

.f-direct {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.8rem 1.4rem;
  border-top: 2px solid var(--color-sand);
  font-size: 0.87rem;
  color: var(--color-text-2);
}

.f-direct a {
  color: var(--color-terracotta);
  font-weight: 700;
  text-decoration: none;
}

.f-direct a:hover {
  text-decoration: underline;
}


/* ── FAQ ──────────────────────────────────────────────────── */
#faq {
  background: var(--color-sand);
}

.faq-hd {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-hd .sd {
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.15rem 1.4rem;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--color-dark);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-q:hover {
  background: var(--color-sand);
}

.faq-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  color: var(--color-terracotta);
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-a {
  max-height: 400px;
}

.faq-a p {
  padding: 0.2rem 1.4rem 1.2rem;
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--color-text-2);
}

.faq-a a {
  color: var(--color-terracotta);
  font-weight: 600;
}


/* ── CTA Strip ────────────────────────────────────────────── */
.cta-strip {
  background: var(--color-terracotta);
  color: var(--color-white);
  padding: 5rem 0;
  text-align: center;
}

.cta-strip h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-strip p {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.cta-strip-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-strip .btn-p {
  background: var(--color-white);
  color: var(--color-terracotta);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

.cta-strip .btn-p:hover {
  background: var(--color-sand);
}

.cta-strip .btn-o {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--color-white);
}

.cta-strip .btn-o:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}


/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: #100c05;
  color: rgba(255, 255, 255, 0.55);
  padding: 3.5rem 0 2rem;
  font-size: 0.87rem;
  border-top: 3px solid var(--color-terracotta);
}

.ft-in {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.ft-brand p {
  font-size: 0.87rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  max-width: 260px;
}

.ft-logo-sub {
  color: rgba(255, 255, 255, 0.4) !important;
}

.ft-col h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.ft-col ul {
  list-style: none;
}

.ft-col ul li {
  margin-bottom: 0.6rem;
}

.ft-col ul li a,
.ft-col p a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.25s;
}

.ft-col ul li a:hover,
.ft-col p a:hover {
  color: var(--color-gold-light);
}

.ft-col p {
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.5);
}

.ft-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ft-legal {
  display: flex;
  gap: 1.5rem;
}

.ft-legal a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.25s;
}

.ft-legal a:hover {
  color: var(--color-gold-light);
}


/* ── Impressum ────────────────────────────────────────────── */
#impressum {
  padding: 3rem 0;
  background: #0c0804;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.imp-box {
  padding: 2.5rem 3rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.87rem;
  line-height: 1.95;
}

.imp-box h2 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.2rem;
}

.imp-box h3 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin: 1.5rem 0 0.4rem;
}

.imp-box a {
  color: rgba(255, 255, 255, 0.6);
}

.imp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}


/* ── Rechtliches / Datenschutz ────────────────────────────── */
.legal-page {
  background: var(--color-sand);
}

.nav-back {
  color: var(--color-text-2);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-back:hover {
  color: var(--color-terracotta);
}

.legal-main {
  padding-top: var(--nav-height);
}

.legal-hero {
  padding: 4.5rem 0 2.5rem;
  background: linear-gradient(180deg, rgba(240, 228, 208, 0.6) 0%, var(--color-sand) 100%);
}

.legal-kicker {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--color-olive);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.1;
  color: var(--color-dark);
  margin-bottom: 0.8rem;
}

.legal-hero p {
  color: var(--color-text-2);
  font-size: 1rem;
}

.legal-section {
  padding-top: 0;
}

.legal-stack {
  display: grid;
  gap: 1.25rem;
  padding-bottom: 5rem;
}

.legal-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 1.8rem 2rem;
  box-shadow: 0 8px 28px rgba(46, 32, 16, 0.06);
}

.legal-card h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--color-dark);
  margin-bottom: 0.8rem;
}

.legal-card p,
.legal-card li {
  color: var(--color-text-2);
  font-size: 0.96rem;
  line-height: 1.8;
}

.legal-card a {
  color: var(--color-terracotta);
}

.legal-list {
  padding-left: 1.2rem;
  margin: 0.6rem 0 0.9rem;
}


/* ── Back to Top ──────────────────────────────────────────── */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-terracotta);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(184, 82, 46, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
}

.back-top.vis {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--color-terracotta-dark);
  transform: translateY(-3px) !important;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet (≤ 900px) */
@media (max-width: 900px) {
  :root {
    --wrap-padding: 1.5rem;
  }

  nav {
    padding: 0 1.5rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  /* Hero: stack vertically */
  #hero {
    grid-template-columns: 1fr;
  }

  .hero-l {
    padding: 3rem 1.5rem;
  }

  .hero-r,
  .hero-r-bg {
    height: 50vw;
  }

  .hero-badge {
    left: 1rem;
  }

  /* Two-column grids → single column */
  .gal-in,
  .lage-in,
  .buch-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Feature / review grids → 2 columns */
  .feat-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Footer / Impressum → 2 columns */
  .ft-in,
  .imp-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  section {
    padding: 4rem 0;
  }

  .price-banner {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .legal-card {
    padding: 1.5rem;
  }

}

/* Mobile (≤ 580px) */
@media (max-width: 580px) {
  /* Single-column everything */
  .feat-grid,
  .frow,
  .ft-in,
  .imp-grid {
    grid-template-columns: 1fr;
  }

  /* Stats wrap into a 2-column grid */
  .stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .stat {
    max-width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Buttons full-width */
  .btn-p,
  .btn-o {
    width: 100%;
    justify-content: center;
  }

  /* Hero */
  .hero-l {
    padding: 2.5rem 1.5rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  /* Gallery: stack */
  .gal-in {
    gap: 2rem;
  }

  /* Full-width feat card stays row on mobile too */
  .feat-card--full {
    flex-direction: column;
    align-items: flex-start;
  }

  /* CTA strip buttons */
  .cta-strip-btns {
    flex-direction: column;
    align-items: center;
  }

  .nav-back {
    display: none;
  }
}
