/* =========================================================
   ECKLBACH HOLIDAY — Stylesheet
   Mobile-First · Optimiert für alle Geräte
   Breakpoints: 480px | 640px | 768px | 1024px | 1200px
   ========================================================= */

/* ── Tokens ── */
:root {
  --forest:     #2d4a3e;
  --forest-l:   #3d6356;
  --stone:      #6b6860;
  --cream:      #f5f0e8;
  --warm:       #ede6d6;
  --earth:      #8b6f4e;
  --gold:       #c9a86c;
  --text:       #2a2520;
  --text-muted: #6b6860;
  --white:      #ffffff;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', system-ui, sans-serif;

  --radius:   4px;
  --shadow:   0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:0 12px 48px rgba(0,0,0,0.15);
  --trans:    0.3s ease;

  --max-w:  1200px;
  --nav-h:  64px;
  --sp-xs:  16px;
  --sp-sm:  24px;
  --sp-md:  40px;
  --sp-lg:  64px;
  --sp-xl:  80px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* ── Container ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-sm);
}
@media (min-width: 1024px) {
  .container { padding: 0 var(--sp-lg); }
}

/* ── Section ── */
.section { padding: var(--sp-md) 0; }
@media (min-width: 768px) { .section { padding: var(--sp-lg) 0; } }
@media (min-width: 1024px) { .section { padding: var(--sp-xl) 0; } }

.section.bg-light  { background: var(--cream); }
.section.bg-forest { background: var(--forest); color: var(--white); }

/* ── Section Header ── */
.section-head {
  text-align: center;
  margin-bottom: var(--sp-md);
}
@media (min-width: 768px) { .section-head { margin-bottom: var(--sp-lg); } }
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  margin-top: 8px;
}

/* ── Eyebrow ── */
.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

/* ── Headings ── */
h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);        /* Standard: fast-schwarz, immer lesbar */
}
h2 { font-size: clamp(1.5rem, 2.8vw, 2.4rem); }
h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }

/* Auf dunklen Sections: Überschriften weiß */
.bg-forest h1, .bg-forest h2, .bg-forest h3,
.section.bg-forest h1, .section.bg-forest h2, .section.bg-forest h3 {
  color: var(--white);
}
/* Page-Hero Überschriften: immer weiß */
.page-hero-content h1 { color: var(--white); }
/* Hero: immer weiß */
.hero-title { color: var(--white); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--trans), color var(--trans), border-color var(--trans), transform var(--trans);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
@media (min-width: 640px) { .btn { padding: 14px 32px; font-size: 0.9rem; } }
.btn:hover { transform: translateY(-2px); }

.btn-light { background: var(--white); color: var(--forest); }
.btn-light:hover { background: var(--cream); }

.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline-light:hover { background: rgba(255,255,255,0.15); }

.btn-dark { background: var(--forest); color: var(--white); }
.btn-dark:hover { background: var(--forest-l); }

.btn-primary-lg {
  background: var(--forest);
  color: var(--white);
  padding: 16px 36px;
  font-size: 0.95rem;
}
@media (min-width: 640px) { .btn-primary-lg { padding: 18px 48px; font-size: 1rem; } }
.btn-primary-lg:hover { background: var(--forest-l); }

/* ── Link arrow ── */
.link-arrow {
  display: inline-block;
  color: var(--forest);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  margin-top: 12px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color var(--trans), border-color var(--trans);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.link-arrow:hover { color: var(--gold); border-color: var(--forest); }

/* ── Fade-in animation ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: none; }


/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--sp-sm);
  transition: background var(--trans), box-shadow var(--trans);
}
@media (min-width: 640px) { .navbar { padding: 0 var(--sp-md); } }

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.navbar.scrolled .nav-logo      { color: var(--forest); text-shadow: none; }
.navbar.scrolled .nav-links a   { color: var(--text); text-shadow: none; }
.navbar.scrolled .nav-links a:hover { color: var(--forest); }
.navbar.scrolled .nav-links a.nav-cta { background: var(--forest); color: var(--white); border-color: transparent; }
.navbar.scrolled .nav-toggle    { color: var(--text); }

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  transition: color var(--trans);
  flex-shrink: 0;
  white-space: nowrap;
}
@media (min-width: 640px) { .nav-logo { font-size: 1.4rem; } }

.nav-links {
  display: none;
}
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
  }
}
@media (min-width: 1200px) {
  .nav-links { gap: 32px; }
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  transition: color var(--trans);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.nav-cta {
  background: rgba(255,255,255,0.2);
  padding: 8px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.nav-links a.nav-cta:hover { background: rgba(255,255,255,0.35); }

/* Hamburger */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  flex-shrink: 0;
}
/* Auf Unterseiten (scrolled): Hamburger immer dunkel sichtbar */
.navbar.scrolled .nav-toggle { color: var(--forest); }
/* Auf Hero-Seiten: weißes Icon mit Schatten damit es auf hellem Bild lesbar ist */
.navbar:not(.scrolled) .nav-toggle {
  color: var(--white);
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5));
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* Mobile Drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--forest);
  flex-direction: column;
  padding: 8px 0 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  z-index: 99;
  max-height: calc(100svh - var(--nav-h));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 16px var(--sp-sm);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  min-height: 52px;
  display: flex;
  align-items: center;
  transition: background var(--trans), color var(--trans);
}
.nav-drawer a:hover,
.nav-drawer a.active {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-left: 3px solid var(--gold);
  padding-left: calc(var(--sp-sm) - 3px);
}
.nav-drawer a.nav-cta {
  background: var(--gold);
  color: var(--forest);
  margin: 16px var(--sp-sm) 0;
  border-radius: var(--radius);
  border: none;
  justify-content: center;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.nav-drawer a.nav-cta:hover {
  background: #d4b47a;
  border-left: none;
  padding-left: var(--sp-sm);
}


/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  height: 100svh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media { position: absolute; inset: 0; }
.hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Fallback poster wenn Video nicht lädt (mobile) */
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.18) 40%,
    rgba(0,0,0,0.18) 60%,
    rgba(0,0,0,0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 var(--sp-sm);
  max-width: 800px;
  width: 100%;
}
.hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 9vw, 6rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 20px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.7);
}
@media (min-width: 640px) { .hero-title { font-size: clamp(3rem, 8vw, 6rem); margin-bottom: 24px; } }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
  padding: 0 8px;
}
@media (min-width: 640px) { .hero-sub { margin-bottom: 40px; } }

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 8px;
}
@media (min-width: 480px) { .hero-actions { gap: 16px; } }

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  animation: bounce 2s ease-in-out infinite;
  display: none;
}
@media (min-width: 640px) { .hero-scroll { display: block; bottom: 32px; } }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}


/* =========================================================
   INTRO
   ========================================================= */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
}
@media (min-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xl);
    align-items: center;
  }
  .intro-img { order: 1; }
  .intro-text { order: 0; }
}
.intro-text h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); margin: 10px 0 16px; }
.intro-text p  { color: var(--text-muted); margin-bottom: 14px; font-size: 1rem; }
@media (min-width: 640px) { .intro-text p { font-size: 1.05rem; } }
.intro-img img {
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}


/* =========================================================
   HIGHLIGHTS
   ========================================================= */
.highlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 480px) { .highlight-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .highlight-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }

.highlight-card {
  background: var(--white);
  border-radius: 4px;
  padding: 28px 22px;
  box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans);
}
@media (min-width: 640px) { .highlight-card { padding: 36px 28px; } }
.highlight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hcard-icon { font-size: 1.6rem; margin-bottom: 12px; }
.highlight-card p { color: var(--text-muted); font-size: 0.9rem; }


/* =========================================================
   GALLERY STRIP
   ========================================================= */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 200px;
  overflow: hidden;
}
@media (min-width: 480px) {
  .gallery-strip { grid-template-columns: repeat(3, 1fr); height: 240px; }
}
@media (min-width: 768px) {
  .gallery-strip { grid-template-columns: repeat(4, 1fr); height: 280px; }
  .gs-item:nth-child(4) { display: block; }
}
@media (min-width: 1024px) {
  .gallery-strip { grid-template-columns: repeat(5, 1fr); height: 320px; }
  .gs-item:nth-child(5) { display: block; }
}
.gs-item { overflow: hidden; }
.gs-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gs-item:hover img { transform: scale(1.07); }
.gallery-cta { text-align: center; margin-top: var(--sp-md); }


/* =========================================================
   QUOTE
   ========================================================= */
.main-quote { max-width: 700px; margin: 0 auto; text-align: center; padding: 0 8px; }
.main-quote p {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2.5vw, 1.9rem);
  font-style: italic;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
}


/* =========================================================
   TEASER CARDS
   ========================================================= */
.teaser-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .teaser-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .teaser-grid { grid-template-columns: repeat(3, 1fr); } }

.teaser-card {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans);
  background: var(--white);
}
.teaser-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.teaser-img { height: 200px; overflow: hidden; }
@media (min-width: 640px) { .teaser-img { height: 220px; } }
.teaser-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.teaser-card:hover .teaser-img img { transform: scale(1.05); }
.teaser-body { padding: 20px; }
@media (min-width: 640px) { .teaser-body { padding: 24px; } }
.teaser-body p { color: var(--text-muted); font-size: 0.92rem; }


/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section { background: var(--warm); }
.cta-inner { text-align: center; max-width: 600px; padding: 0 8px; }
.cta-inner h2 { margin-bottom: 14px; }
.cta-inner p  { color: var(--text-muted); margin-bottom: 28px; font-size: 1rem; }
@media (min-width: 640px) { .cta-inner p { font-size: 1.05rem; margin-bottom: 32px; } }


/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-logo { font-family: var(--font-head); font-size: 1.4rem; color: var(--white); font-weight: 600; }
.footer-nav  { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
@media (min-width: 640px) { .footer-nav { gap: 24px; } }
.footer-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--trans);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer-nav a:hover { color: var(--gold); }
.footer-copy { font-size: 0.75rem; }


/* =========================================================
   PAGE HERO (Unterseiten)
   ========================================================= */
.page-hero {
  height: 45vh;
  min-height: 280px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--sp-md);
  padding-top: var(--nav-h);
  overflow: hidden;
}
@media (min-width: 640px) {
  .page-hero { height: 50vh; min-height: 340px; padding-bottom: var(--sp-lg); }
}
@media (min-width: 1024px) {
  .page-hero { height: 55vh; min-height: 400px; }
}
.page-hero-img { position: absolute; inset: 0; }
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.65) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  width: 100%;
  padding: 0 var(--sp-sm);
}
@media (min-width: 640px) { .page-hero-content { padding: 0 var(--sp-md); } }
.page-hero-content .eyebrow { color: var(--gold); }
.page-hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 5vw, 4rem);
  margin-top: 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}


/* =========================================================
   UNTERKUNFT PAGE
   ========================================================= */
.room-section { padding: var(--sp-md) 0; }
@media (min-width: 640px) { .room-section { padding: var(--sp-lg) 0; } }
@media (min-width: 1024px) { .room-section { padding: var(--sp-xl) 0; } }

.room-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
}
@media (min-width: 768px) {
  .room-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-lg);
    align-items: center;
  }
  .room-grid.reverse .room-text { order: 1; }
  .room-grid.reverse .room-img  { order: 0; }
}

.room-text h2 { margin: 8px 0 16px; }
.room-text p  { color: var(--text-muted); margin-bottom: 12px; font-size: 0.97rem; }
@media (min-width: 640px) { .room-text p { font-size: 1rem; } }
.room-img img {
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.feature-list { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--warm);
  border-radius: 24px;
  padding: 5px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--forest);
  white-space: nowrap;
}

/* Photo Wall */
.photo-wall {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
@media (min-width: 640px) {
  .photo-wall {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .photo-wall .pw-large { grid-column: span 2; }
}
.photo-wall img {
  width: 100%; height: 160px;
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.4s ease;
}
@media (min-width: 640px) { .photo-wall img { height: 220px; } }
@media (min-width: 1024px) { .photo-wall img { height: 280px; } }
.photo-wall img:hover { transform: scale(1.02); }


/* =========================================================
   AUSFLUGSZIELE PAGE
   ========================================================= */
.trips-section { padding: var(--sp-md) 0; }
@media (min-width: 768px) { .trips-section { padding: var(--sp-xl) 0; } }
.trips-section.bg-light { background: var(--cream); }

.trip-category { margin-bottom: var(--sp-lg); }
.trip-category h2 {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  margin: 8px 0 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.trip-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 480px) { .trip-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) {
  .trip-cards { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

.trip-card {
  background: var(--white);
  border-radius: 4px;
  padding: 22px 18px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--forest);
  transition: transform var(--trans);
}
@media (min-width: 640px) { .trip-card { padding: 28px 24px; } }
.trip-card:hover { transform: translateY(-3px); }
.trip-card h3 { margin-bottom: 6px; font-size: 1rem; }
.trip-card .distance {
  display: inline-block;
  font-size: 0.72rem;
  background: var(--warm);
  color: var(--stone);
  border-radius: 12px;
  padding: 2px 10px;
  margin-bottom: 8px;
  font-weight: 700;
}
.trip-card p { color: var(--text-muted); font-size: 0.88rem; }


/* =========================================================
   BUCHUNG / KONTAKT PAGE
   ========================================================= */
.contact-section { padding: var(--sp-md) 0; }
@media (min-width: 768px) { .contact-section { padding: var(--sp-xl) 0; } }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
}
@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xl);
    align-items: start;
  }
}

.contact-info h2 { margin: 8px 0 16px; }
.contact-info p  { color: var(--text-muted); margin-bottom: 14px; }
.contact-detail  { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; font-weight: 600; }

.contact-form { background: var(--cream); border-radius: 4px; padding: 24px; box-shadow: var(--shadow); }
@media (min-width: 640px) { .contact-form { padding: 36px; } }
@media (min-width: 1024px) { .contact-form { padding: 40px; } }
.contact-form h3 { font-size: 1.3rem; margin-bottom: 24px; }

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--stone);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
  color: var(--text);
  transition: border-color var(--trans);
  -webkit-appearance: none;
  appearance: none;
  min-height: 48px;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--forest); }
.form-group textarea { resize: vertical; min-height: 110px; }

.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--forest);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans);
  min-height: 52px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.form-submit:hover { background: var(--forest-l); transform: translateY(-2px); }

.info-box { background: var(--warm); border-radius: 4px; padding: 20px; margin-top: 24px; }
@media (min-width: 640px) { .info-box { padding: 24px; margin-top: 32px; } }
.info-box h4 { margin-bottom: 10px; font-size: 0.95rem; }
.info-box ul { padding-left: 0; }
.info-box li {
  padding: 5px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  font-size: 0.9rem;
  color: var(--text-muted);
}
.info-box li:last-child { border-bottom: none; }
.info-box li strong { color: var(--text); }


/* =========================================================
   FILM SECTION (prominente Vollbreite)
   ========================================================= */
.film-section-full {
  background: var(--forest) !important;
  padding: var(--sp-lg) 0;
  overflow: hidden;
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .film-section-full { padding: var(--sp-xl) 0; }
}
.film-section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-sm);
  display: grid !important;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
  align-items: center;
}
@media (min-width: 768px) {
  .film-section-inner {
    grid-template-columns: 1fr 2fr;
    gap: var(--sp-lg);
    padding: 0 var(--sp-lg);
  }
}
.film-section-text .eyebrow { color: var(--gold) !important; }
.film-section-text h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white) !important;
  margin: 12px 0 16px;
  line-height: 1.15;
}
.film-section-text p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  font-style: italic;
}
.film-section-video {
  width: 100%;
}
.film-section-video video {
  width: 100% !important;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 16px 56px rgba(0,0,0,0.5);
}


/* =========================================================
   COMING SOON (Geschichte / Familie)
   ========================================================= */
.coming-section {
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + var(--sp-lg)) var(--sp-sm) var(--sp-xl);
}
.coming-inner { text-align: center; max-width: 540px; }
.coming-inner h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 14px 0 20px;
  font-weight: 400;
}
.coming-inner p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; }
@media (min-width: 640px) { .coming-inner p { font-size: 1.05rem; } }
.coming-line { width: 48px; height: 2px; background: var(--gold); margin: 0 auto 22px; }


/* =========================================================
   IMPRESSUM
   ========================================================= */
.impressum-body { padding: calc(var(--nav-h) + var(--sp-lg)) 0 var(--sp-xl); min-height: 70vh; }
.impressum-body h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: var(--sp-md); }
.impressum-body h2 {
  font-size: 0.78rem;
  font-weight: 700;
  margin: 28px 0 8px;
  color: var(--forest);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.impressum-body p  { color: var(--text-muted); margin-bottom: 8px; line-height: 1.7; font-size: 0.97rem; }
.impressum-body a  { color: var(--forest); border-bottom: 1px solid var(--gold); padding-bottom: 1px; }
.impressum-body a:hover { color: var(--gold); }
.impressum-divider { border: none; border-top: 1px solid var(--warm); margin: var(--sp-md) 0; }


/* =========================================================
   MOBILE SPEZIFISCH (max 640px)
   ========================================================= */
@media (max-width: 639px) {
  /* Abstände enger */
  .container { padding: 0 16px; }
  .section { padding: 32px 0; }

  /* Navbar Logo kleiner */
  .nav-logo { font-size: 1.1rem; }

  /* Hero weniger hoch */
  .hero { min-height: 480px; }
  .hero-title { font-size: clamp(2rem, 11vw, 3rem); }

  /* Page-Hero kleiner */
  .page-hero { height: 38vh; min-height: 220px; padding-bottom: 28px; }
  .page-hero-content h1 { font-size: clamp(1.6rem, 7vw, 2.4rem); }

  /* Room-Grid einspaltig mit weniger Gap */
  .room-grid { gap: 24px; }
  .room-img img { aspect-ratio: 16/9; }

  /* Feature Tags kleiner */
  .feature-tag { font-size: 0.78rem; padding: 4px 10px; }

  /* Teaser Cards ohne min-height */
  .teaser-img { height: 180px; }

  /* Highlight Cards kompakter */
  .highlight-card { padding: 20px 16px; }

  /* CTA Section */
  .cta-inner { padding: 0 4px; }

  /* Film inline-Video volle Breite */
  #ecklbach-film,
  #ecklbach-film-uk { border-radius: 0 !important; }

  /* Footer Nav wrappen */
  .footer-nav { gap: 12px; }
  .footer-nav a { font-size: 0.72rem; min-height: 36px; }
}

/* =========================================================
   SAFE AREA (iPhone Notch / Home Indicator)
   ========================================================= */
.navbar {
  padding-left: max(var(--sp-sm), env(safe-area-inset-left));
  padding-right: max(var(--sp-sm), env(safe-area-inset-right));
}
.footer {
  padding-bottom: max(36px, calc(36px + env(safe-area-inset-bottom)));
}


/* =========================================================
   ACCESSIBILITY & UTILITIES
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .fade-in       { opacity: 1; transform: none; transition: none; }
  .hero-scroll   { animation: none; }
  .gs-item img,
  .teaser-img img { transition: none; }
}

/* Focus styles für Tastaturnavigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Touch targets minimum 44px */
.nav-drawer a,
.footer-nav a,
.btn { min-height: 44px; }

/* ── FILM SECTION ────────────────────────────────── */
.film-section { background: var(--cream, #faf8f4); }

.film-wrapper {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}

.film-wrapper video {
  width: 100%;
  display: block;
  background: #000;
}
