/* ============================================================
   OBERES WIRTSHAUS – Hauptstylesheet v1.0
   Gasthaus Hirschen, Langenordnach | Familie Schwab
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --forest:        #1A3528;
  --forest-mid:    #2C5040;
  --forest-light:  #4A7A63;
  --forest-mist:   #E8F0EB;
  --gold:          #B8882A;
  --gold-light:    #D4A84B;
  --gold-pale:     #F5E8C8;
  --cream:         #F6F0E4;
  --cream-dark:    #EAE0CA;
  --brown:         #5C3D20;
  --text:          #1E1A14;
  --text-mid:      #4A4238;
  --text-muted:    #7A6E60;
  --white:         #FEFDF8;
  --border:        rgba(26,53,40,.12);

  --font-serif:    'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:     'Inter', system-ui, -apple-system, sans-serif;

  --shadow-xs:     0 1px 4px rgba(26,53,40,.08);
  --shadow-sm:     0 2px 12px rgba(26,53,40,.10);
  --shadow-md:     0 8px 28px rgba(26,53,40,.14);
  --shadow-lg:     0 20px 60px rgba(26,53,40,.18);

  --radius:        6px;
  --radius-lg:     14px;
  --radius-xl:     24px;
  --transition:    .3s cubic-bezier(.25,.46,.45,.94);
  --container:     1200px;
  --gutter:        clamp(1.25rem, 4vw, 2.5rem);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--forest);
  font-weight: 500;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.15rem; font-weight: 600; font-family: var(--font-sans); }
p { margin-bottom: 1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }
.eyebrow {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .6rem;
}
.lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-mid);
  line-height: 1.8;
}

/* ── LAYOUT UTILITIES ───────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section--alt { background: var(--cream); }
.section--dark { background: var(--forest); color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark .eyebrow { color: var(--white); }
.section--dark p { color: rgba(255,255,255,.78); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(184,136,42,.3);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,136,42,.4);
}
.btn--outline {
  border: 2px solid currentColor;
  color: var(--forest);
}
.btn--outline:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.btn--outline-white {
  border: 2px solid rgba(255,255,255,.7);
  color: var(--white);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--forest);
}
.btn--lg { padding: 1rem 2.4rem; font-size: 1rem; }

/* ── NAVIGATION ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(254,253,248,.97);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.nav-logo img {
  height: 42px;
  width: auto;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo-text strong {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--forest);
}
.nav-logo-text span {
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.site-header.hero-mode .nav-logo-text strong,
.site-header.hero-mode .nav-logo-text span { color: rgba(255,255,255,.9); }
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-links a {
  padding: .5rem .85rem;
  font-size: .88rem;
  font-weight: 500;
  border-radius: var(--radius);
  color: var(--text);
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--forest); background: var(--forest-mist); }
.site-header.hero-mode .nav-links a { color: rgba(255,255,255,.88); }
.site-header.hero-mode .nav-links a:hover { background: rgba(255,255,255,.15); color: var(--white); }
.nav-cta { margin-left: .5rem; }
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all var(--transition);
}
.site-header.hero-mode .nav-burger { color: var(--white); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 72px 0 0;
  background: var(--white);
  padding: 2rem var(--gutter);
  flex-direction: column;
  gap: .5rem;
  overflow-y: auto;
  z-index: 99;
  box-shadow: var(--shadow-lg);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.15rem;
  font-weight: 500;
  padding: .85rem 1rem;
  border-radius: var(--radius);
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:hover { background: var(--cream); color: var(--forest); }
.nav-mobile .btn { margin-top: 1rem; width: 100%; justify-content: center; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,26,18,.85) 0%,
    rgba(10,26,18,.4) 55%,
    rgba(10,26,18,.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) var(--gutter) clamp(4rem, 9vw, 7rem);
}
.hero-content .eyebrow { color: var(--gold-light); }
.hero h1 {
  color: var(--white);
  font-style: italic;
  max-width: 14ch;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  max-width: 50ch;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero small – for inner pages */
.hero--sm {
  height: clamp(320px, 45vw, 500px);
  min-height: 280px;
  align-items: center;
}
.hero--sm .hero-content {
  padding-block: 0;
  padding-top: 72px;
}

/* ── EMOTION BLOCK ───────────────────────────────────────── */
.emotion-block {
  padding: clamp(3.5rem, 7vw, 6rem) var(--gutter);
  text-align: center;
  background: var(--white);
}
.emotion-block p {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: italic;
  color: var(--forest);
  line-height: 1.6;
  max-width: 36ch;
  margin-inline: auto;
}
.emotion-block p strong { font-style: normal; font-weight: 500; }

/* ── VALUE PILLARS ───────────────────────────────────────── */
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; }
.pillar {
  padding: clamp(2.5rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid var(--border);
  text-align: center;
  transition: background var(--transition);
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--forest-mist); }
.pillar-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}
.pillar h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.pillar p { font-size: .92rem; color: var(--text-muted); margin: 0; }

/* ── UNIT CARDS (Ferienwohnungen/Zimmer preview) ─────────── */
.unit-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.unit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.unit-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.unit-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.unit-card:hover .unit-card-img img { transform: scale(1.04); }
.unit-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.unit-card-body h3 { margin-bottom: .5rem; }
.unit-card-body p { font-size: .92rem; flex: 1; }
.unit-card-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}
.unit-meta-item {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  color: var(--text-muted);
}
.unit-meta-item svg { width: 14px; height: 14px; color: var(--gold); }

/* ── UNIT DETAIL (full page) ─────────────────────────────── */
.unit-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding-block: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--border);
}
.unit-detail:last-of-type { border-bottom: none; }
.unit-detail.reverse { direction: rtl; }
.unit-detail.reverse > * { direction: ltr; }
.unit-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.unit-gallery .main-img {
  grid-column: 1 / -1;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
}
.unit-gallery .main-img img { width: 100%; height: 100%; object-fit: cover; }
.unit-gallery .thumb {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.unit-gallery .thumb img { width: 100%; height: 100%; object-fit: cover; }
.unit-info { display: flex; flex-direction: column; gap: 1.25rem; }
.unit-info h2 { margin-bottom: .25rem; }
.unit-emotion {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--forest-light);
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}
.features-list { display: flex; flex-direction: column; gap: .6rem; }
.features-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--text-mid);
}
.features-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--forest);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5 6.5-7' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  background: var(--forest);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='28'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: .75rem; }
.cta-band p { color: rgba(255,255,255,.75); margin-bottom: 2rem; max-width: 48ch; margin-inline: auto; }
.cta-band .actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── SEASONAL SPLIT ──────────────────────────────────────── */
.season-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.season-panel {
  position: relative;
  min-height: clamp(320px, 40vw, 500px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.season-panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s ease;
}
.season-panel:hover .season-panel-bg { transform: scale(1.04); }
.season-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,26,18,.8) 0%, transparent 60%);
}
.season-panel-content {
  position: relative;
  z-index: 1;
  padding: 2.5rem;
  color: var(--white);
}
.season-panel-content h3 { color: var(--white); margin-bottom: .5rem; }
.season-panel-content p { color: rgba(255,255,255,.8); font-size: .95rem; margin-bottom: 1rem; }

/* ── TESTIMONIAL ─────────────────────────────────────────── */
.testimonial-block {
  background: var(--gold-pale);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.testimonial-stars { color: var(--gold); font-size: 1.3rem; margin-bottom: 1rem; }
.testimonial-block blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-style: italic;
  color: var(--forest);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.testimonial-source { font-size: .8rem; color: var(--text-muted); }
.testimonial-source strong { color: var(--text-mid); }

/* ── TRUST BADGES ────────────────────────────────────────── */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
  padding: 2.5rem var(--gutter);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  color: var(--text-muted);
}
.trust-icon {
  width: 36px;
  height: 36px;
  background: var(--forest-mist);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  flex-shrink: 0;
}

/* ── PHOTO GALLERY ───────────────────────────────────────── */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
.photo-gallery img {
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  cursor: zoom-in;
  transition: opacity var(--transition);
}
.photo-gallery img:hover { opacity: .9; }

/* ── AKTUELLES (News) ────────────────────────────────────── */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition), transform var(--transition);
}
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.news-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; }
.news-card-body { padding: 1.5rem; }
.news-date { font-size: .78rem; color: var(--gold); font-weight: 600; margin-bottom: .5rem; display: block; }
.news-card-body h4 { margin-bottom: .5rem; color: var(--forest); }
.news-card-body p { font-size: .88rem; color: var(--text-muted); }

/* ── INSTAGRAM FEED ──────────────────────────────────────── */
.instagram-section { background: var(--cream); }
.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--forest);
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.instagram-handle:hover { color: var(--gold); }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: .5rem;
}
.instagram-placeholder {
  aspect-ratio: 1;
  background: var(--cream-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: .8rem;
  text-align: center;
  padding: .5rem;
}

/* ── FAQ / INFO SECTION ──────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.5rem;
  font-weight: 500;
  color: var(--forest);
  cursor: pointer;
  gap: 1rem;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--forest-mist); }
.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .75rem;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: .92rem;
  color: var(--text-mid);
}
.faq-item.open .faq-answer { display: block; }

/* ── CONTACT FORM ────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: .02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: .8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-size: .95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(26,53,40,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .85rem;
  color: var(--text-muted);
}
.form-check input[type="checkbox"] { margin-top: 3px; accent-color: var(--forest); flex-shrink: 0; }
.form-notice {
  background: var(--forest-mist);
  border-left: 3px solid var(--forest);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  font-size: .88rem;
  color: var(--forest);
  margin-bottom: 1.5rem;
}
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-info h4 { color: var(--forest); font-size: .85rem; margin-bottom: .2rem; }
.contact-info a, .contact-info p { font-size: .92rem; color: var(--text-mid); margin: 0; }
.contact-info a:hover { color: var(--forest); }
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: .92rem;
  margin-bottom: 1.5rem;
}
.alert--success { background: #edf7f1; border: 1px solid #6dbf8d; color: #1a5c35; }
.alert--error { background: #fdf0f0; border: 1px solid #e89090; color: #7a2020; }

/* ── HIGHLIGHT STRIP ─────────────────────────────────────── */
.highlight-strip {
  background: var(--gold-pale);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.highlight-strip-icon { font-size: 2rem; flex-shrink: 0; }
.highlight-strip h4 { color: var(--brown); margin-bottom: .2rem; }
.highlight-strip p { color: var(--text-mid); font-size: .9rem; margin: 0; }

/* ── MAP EMBED ───────────────────────────────────────────── */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-wrapper iframe { display: block; width: 100%; height: 360px; border: none; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--forest);
  color: rgba(255,255,255,.75);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p { font-size: .9rem; margin-top: .75rem; max-width: 36ch; }
.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.footer-nav h4, .footer-contact h4 {
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-nav a, .footer-contact a {
  display: block;
  font-size: .88rem;
  padding: .3rem 0;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--gold-light); }
.footer-contact p { font-size: .88rem; margin: 0; line-height: 1.9; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.45); margin: 0; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .8rem; color: rgba(255,255,255,.45); }
.footer-legal a:hover { color: rgba(255,255,255,.8); }
.social-links { display: flex; gap: .75rem; margin-top: 1rem; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  transition: all var(--transition);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { opacity: .4; }

/* ── IMAGE + TEXT SECTIONS ───────────────────────────────── */
.img-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.img-text.reverse { direction: rtl; }
.img-text.reverse > * { direction: ltr; }
.img-text-visual { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); }
.img-text-visual img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.img-text-body h2 { margin-bottom: 1rem; }
.img-text-body p { margin-bottom: 1rem; }

/* ── ANIMAL GRID ─────────────────────────────────────────── */
.animal-item { display: flex; align-items: center; gap: .75rem; }
.animal-emoji { font-size: 1.8rem; width: 50px; text-align: center; }
.animal-text h4 { font-size: .95rem; color: var(--forest); margin-bottom: .1rem; }
.animal-text p { font-size: .85rem; color: var(--text-muted); margin: 0; }

/* ── HOCHSCHWARZWALD CARD ────────────────────────────────── */
.card-highlight {
  background: linear-gradient(135deg, var(--forest), var(--forest-mid));
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
.card-highlight-icon { font-size: 3.5rem; flex-shrink: 0; }
.card-highlight h3 { color: var(--white); margin-bottom: .5rem; }
.card-highlight p { color: rgba(255,255,255,.8); margin: 0; font-size: .95rem; }

/* ── ANREISE ─────────────────────────────────────────────── */
.anreise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}
.anreise-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}
.anreise-icon { font-size: 2rem; margin-bottom: .75rem; }
.anreise-item h4 { font-size: .9rem; color: var(--forest); margin-bottom: .4rem; }
.anreise-item p { font-size: .82rem; color: var(--text-muted); margin: 0; }

/* ── SCROLL TO TOP ───────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 50;
  font-size: 1rem;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--gold); transform: translateY(-2px); }

/* ── UTILITY CLASSES ─────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-forest { color: var(--forest); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.gap-1 { gap: .5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .unit-detail { grid-template-columns: 1fr; }
  .unit-detail.reverse { direction: ltr; }
  .img-text { grid-template-columns: 1fr; }
  .img-text.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .season-split { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .photo-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--border); }
  .pillar:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .photo-gallery { grid-template-columns: 1fr; }
  .cta-band .actions { flex-direction: column; }
  .card-highlight { flex-direction: column; text-align: center; }
  .unit-gallery { grid-template-columns: 1fr; }
  .unit-gallery .main-img { grid-column: 1; }
}


/* ── SCREEN READER ONLY ──────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
/* ── PRINT ───────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .nav-mobile, .scroll-top, .cta-band { display: none; }
  body { font-size: 12pt; }
}
