:root {
  --cream: #F5EFE4;
  --cream-light: #FBF7EF;
  --cream-warm: #EFE6D4;
  --forest: #2F4445;
  --forest-dark: #1F2F30;
  --olive: #6B6E3F;
  --olive-light: #8A8D5C;
  --wood: #A8784B;
  --wood-dark: #7A5537;
  --ink: #2A2A28;
  --ink-soft: #4A4A46;
  --muted: #8B8577;
  --line: #D8CFBE;
  --gold: #B0894B;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.serif { font-family: 'Cormorant Garamond', Georgia, serif; }
.italic { font-style: italic; font-weight: 500; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--forest);
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.05; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); line-height: 1.1; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); line-height: 1.2; }
h4 { font-size: 1.25rem; line-height: 1.3; }

p { margin: 0 0 1.2em; }

.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--olive);
}

a { color: var(--forest); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--olive); }

.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 980px; margin: 0 auto; padding: 0 2rem; }
section { padding: clamp(4rem, 10vw, 8rem) 0; }

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 2rem;
  background: rgba(245, 239, 228, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
header.scrolled { border-bottom-color: var(--line); }

.nav-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.logo-mark { height: 42px; display: block; }

nav ul { display: flex; gap: 2.2rem; list-style: none; padding: 0; margin: 0; }
nav a {
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--ink-soft); position: relative; padding: 0.25rem 0;
}
nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--olive);
  transition: width .3s ease;
}
nav a:hover::after { width: 100%; }

.nav-cta {
  background: var(--forest); color: var(--cream);
  padding: 0.7rem 1.4rem; border-radius: 2px;
  font-size: 0.82rem; letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 500;
  transition: all .3s ease;
}
.nav-cta:hover { background: var(--olive); color: var(--cream); }

.mobile-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 0.5rem;
}
.mobile-toggle span {
  display: block; width: 26px; height: 1.5px;
  background: var(--forest); margin: 5px 0;
  transition: all .3s ease;
}

@media (max-width: 900px) {
  nav ul { display: none; }
  .nav-cta { display: none; }
  .mobile-toggle { display: block; }
  nav.open ul {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--cream);
    padding: 2rem; gap: 1.5rem; border-bottom: 1px solid var(--line);
  }
}

/* HERO */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  overflow: hidden; display: flex; align-items: flex-end;
  padding: 0 0 8vh !important;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero-startseite.jpg') center/cover no-repeat;
  z-index: 1;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,47,48,.15) 0%, rgba(31,47,48,.25) 45%, rgba(31,47,48,.7) 100%);
}
.hero-content {
  position: relative; z-index: 2; width: 100%;
  max-width: 1400px; margin: 0 auto; padding: 0 2rem;
  color: var(--cream);
}
.hero h1 {
  color: var(--cream); font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400; line-height: 0.95;
  margin-bottom: 1.5rem; max-width: 16ch;
}
.hero h1 em { font-style: italic; font-weight: 500; opacity: 0.95; }
.hero-sub {
  font-size: 1.1rem; max-width: 48ch; opacity: 0.92;
  margin-bottom: 2.5rem; font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 2rem; font-size: 0.85rem;
  font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 2px; border: 1px solid transparent;
  cursor: pointer; transition: all .3s ease;
}
.btn-primary { background: var(--cream); color: var(--forest); }
.btn-primary:hover { background: var(--olive); color: var(--cream); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(245,239,228,.5); }
.btn-ghost:hover { background: var(--cream); color: var(--forest); }
.btn-dark { background: var(--forest); color: var(--cream); }
.btn-dark:hover { background: var(--olive); }
.btn .arrow { transition: transform .3s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.hero-badge {
  position: absolute; top: 50%; right: 5vw; transform: translateY(-50%);
  z-index: 3; width: clamp(140px, 16vw, 220px); aspect-ratio: 1;
  border-radius: 50%; background: rgba(107, 110, 63, 0.92);
  color: var(--cream); display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  line-height: 1.3; font-weight: 500;
}
.hero-badge em { font-style: italic; display: block; font-size: 1.15em; margin: 0.1em 0; }

@media (max-width: 700px) {
  .hero-badge { top: auto; bottom: 30vh; right: 1.5rem; transform: none; width: 120px; padding: 1rem; font-size: 0.85rem; }
}

.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--cream); font-size: 0.7rem;
  letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.7;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.scroll-hint::after {
  content: ''; width: 1px; height: 40px; background: currentColor;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* INTRO / PHILOSOPHIE */
.intro { background: var(--cream); }
.intro-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
@media (max-width: 900px) { .intro-grid { grid-template-columns: 1fr; gap: 3rem; } }
.intro-left { position: sticky; top: 120px; }
.intro h2 { font-size: clamp(2.2rem, 4.5vw, 4rem); font-weight: 400; margin-bottom: 1.5rem; line-height: 1.05; }
.intro h2 em { font-style: italic; color: var(--olive); }
.intro-text { font-size: 1.05rem; line-height: 1.75; color: var(--ink-soft); }
.intro-text p:first-child { font-size: 1.25rem; color: var(--forest); line-height: 1.6; font-weight: 400; }

.signature { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.signature-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-style: italic; color: var(--forest); margin-bottom: 0.2rem; }
.signature-role { font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }

/* QUOTE BAND */
.quote-band {
  position: relative; padding: clamp(6rem, 12vw, 10rem) 0 !important;
  color: var(--cream); text-align: center; overflow: hidden;
  background: url('../images/zitat-bg.jpg') center/cover fixed no-repeat;
}
.quote-band::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(47,68,69,.55), rgba(47,68,69,.75));
}
.quote-band .container-narrow { position: relative; z-index: 1; }
.quote-band blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400; line-height: 1.3; margin: 0; color: var(--cream);
}
.quote-band blockquote em { font-style: italic; }

/* SPECIALTIES */
.specialties { background: var(--cream-light); }
.specialties-header { text-align: center; margin-bottom: 4rem; }
.specialties-header .eyebrow { justify-content: center; }
.specialties-header .eyebrow::before { display: none; }
.specialties-header h2 { margin: 1rem auto 1.5rem; max-width: 22ch; }
.specialties-header p { max-width: 54ch; margin: 0 auto; color: var(--ink-soft); }

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.specialty-card {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  background: var(--forest); display: block;
  color: var(--cream); transition: transform .4s ease;
}
.specialty-card:hover { color: var(--cream); transform: translateY(-4px); }
.specialty-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.specialty-card:hover img { transform: scale(1.08); }
.specialty-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,47,48,.1) 40%, rgba(31,47,48,.85));
}
.specialty-body { position: absolute; bottom: 2rem; left: 2rem; right: 2rem; z-index: 1; }
.specialty-body .label {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; opacity: 0.8; margin-bottom: 0.5rem;
}
.specialty-body .title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; line-height: 1.2; font-weight: 500; margin-bottom: 0.6rem;
}
.specialty-body .sub { font-size: 0.9rem; opacity: 0.85; line-height: 1.5; margin-bottom: 1rem; }
.specialty-body .more {
  font-size: 0.78rem; letter-spacing: 0.12em;
  text-transform: uppercase; display: inline-flex; align-items: center; gap: 0.4rem;
  padding-bottom: 2px; border-bottom: 1px solid var(--cream);
}
.specialty-body .more::after { content: '→'; transition: transform .3s ease; }
.specialty-card:hover .more::after { transform: translateX(4px); }

/* GALLERY */
.gallery { background: var(--cream); }
.gallery-header { display: flex; justify-content: space-between; align-items: end; margin-bottom: 4rem; gap: 2rem; flex-wrap: wrap; }
.gallery-header h2 { max-width: 18ch; }
.gallery-header p { max-width: 40ch; color: var(--ink-soft); margin: 0; }
.gallery-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 420px 420px; gap: 1.5rem;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 360px); } }
.gallery-item {
  position: relative; overflow: hidden;
  background: var(--forest); cursor: pointer; margin: 0;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(31,47,48,.75));
  pointer-events: none;
}
.gallery-caption {
  position: absolute; bottom: 1.5rem; left: 1.75rem; right: 1.75rem;
  color: var(--cream); z-index: 1;
}
.gallery-caption .label {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; opacity: 0.75; margin-bottom: 0.35rem;
}
.gallery-caption .title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; line-height: 1.2; font-weight: 500;
}
.gi-1 { grid-row: 1/3; }
@media (max-width: 900px) { .gi-1 { grid-row: auto; } }

/* SERVICES */
.services { background: var(--forest); color: var(--cream); }
.services h2 { color: var(--cream); }
.services .eyebrow { color: var(--olive-light); }
.services .eyebrow::before { background: var(--olive-light); }
.services-header { max-width: 720px; margin-bottom: 5rem; }
.services-header p { color: rgba(245,239,228,.75); font-size: 1.05rem; margin-top: 1.5rem; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0; border-top: 1px solid rgba(245,239,228,.15);
}
.service {
  padding: 2.5rem 2rem;
  border-bottom: 1px solid rgba(245,239,228,.15);
  border-right: 1px solid rgba(245,239,228,.15);
  position: relative; transition: background .4s ease;
}
.service:hover { background: rgba(245,239,228,.03); }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.3rem;
  color: var(--olive-light); margin-bottom: 1.5rem;
}
.service h3 { color: var(--cream); font-size: 1.5rem; margin-bottom: 1rem; line-height: 1.25; }
.service h3 em { font-style: italic; color: var(--olive-light); }
.service p { color: rgba(245,239,228,.72); font-size: 0.95rem; line-height: 1.65; margin: 0; }

/* VALUES */
.values { background: var(--cream); }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr; gap: 3rem; } }
.values-image { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.values-image img { width: 100%; height: 100%; object-fit: cover; }
.values-image::after { content: ''; position: absolute; inset: 1rem; border: 1px solid rgba(245,239,228,.3); pointer-events: none; }
.values-content h2 { margin-bottom: 1.5rem; }
.values-content h2 em { font-style: italic; color: var(--olive); }
.values-list { list-style: none; padding: 0; margin: 2rem 0 0; }
.values-list li {
  padding: 1.2rem 0; border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: baseline;
}
.values-list li:last-child { border-bottom: none; }
.values-list .v-num { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; color: var(--olive); }
.values-list .v-text { color: var(--ink-soft); }
.values-list .v-text strong {
  display: block; color: var(--forest); font-weight: 500;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; margin-bottom: 0.25rem;
}

/* STATS */
.stats {
  background: var(--cream-warm);
  padding: 4rem 0 !important;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: 1fr; gap: 3rem; } }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5rem); font-weight: 400;
  color: var(--forest); line-height: 1; margin-bottom: 0.5rem;
}
.stat-num em { font-style: italic; color: var(--olive); }
.stat-label { font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

/* PARTNERS */
.partners { background: var(--cream-light); }
.partners-header { text-align: center; margin-bottom: 4rem; }
.partners-header .eyebrow { justify-content: center; }
.partners-header .eyebrow::before { display: none; }
.partners-header h2 { margin: 1rem auto 1.5rem; max-width: 22ch; }
.partners-header p { max-width: 54ch; margin: 0 auto; color: var(--ink-soft); }
.partners-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem; margin-top: 3rem;
}
.partner-card {
  background: var(--cream); padding: 2.5rem 2rem;
  border: 1px solid var(--line); text-align: center;
  transition: all .3s ease;
  display: block;
  color: var(--forest);
  text-decoration: none;
}
.partner-card:hover {
  border-color: var(--olive); transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(47,68,69,.2);
  color: var(--forest);
}
.partner-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--forest); margin-bottom: 0.3rem; }
.partner-origin { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.partner-link {
  display: inline-block;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  width: 100%;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 500;
  transition: color .3s ease;
}
.partner-card:hover .partner-link,
.wood-item:hover .partner-link { color: var(--forest); }

/* CTA BAND */
.cta-band {
  position: relative; padding: clamp(5rem, 10vw, 8rem) 0 !important;
  color: var(--cream); overflow: hidden;
  background: url('../images/cta-fischgrat.jpg') center/cover no-repeat;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(31,47,48,.85) 0%, rgba(31,47,48,.55) 70%, rgba(31,47,48,.3) 100%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--cream); max-width: 18ch; margin-bottom: 1.5rem; }
.cta-band p { max-width: 50ch; opacity: 0.85; margin-bottom: 2rem; font-size: 1.1rem; }

/* CONTACT */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info h2 em { font-style: italic; color: var(--olive); }
.contact-info p { color: var(--ink-soft); max-width: 42ch; margin-bottom: 2.5rem; }
.contact-methods { list-style: none; padding: 0; margin: 0; }
.contact-methods li { padding: 1.5rem 0; border-top: 1px solid var(--line); }
.contact-methods li:last-child { border-bottom: 1px solid var(--line); }
.contact-methods .label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; }
.contact-methods .value { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--forest); font-weight: 500; }
.contact-methods a.value:hover { color: var(--olive); }

.contact-form { background: var(--cream-light); padding: 3rem; border: 1px solid var(--line); }
@media (max-width: 600px) { .contact-form { padding: 2rem; } }
.contact-form h3 { margin-bottom: 0.5rem; font-size: 1.8rem; }
.contact-form .form-sub { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 1rem; }
.form-field label { display: block; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 0.9rem 1rem;
  background: var(--cream); border: 1px solid var(--line);
  font-family: inherit; font-size: 0.95rem; color: var(--ink);
  border-radius: 2px; transition: border-color .2s ease;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--olive); }
.form-consent { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.82rem; color: var(--ink-soft); margin: 1.2rem 0 1.5rem; line-height: 1.5; }
.form-consent input { margin-top: 0.2rem; accent-color: var(--olive); }
.contact-form button {
  width: 100%; background: var(--forest); color: var(--cream);
  border: none; padding: 1.1rem;
  font-family: inherit; font-size: 0.85rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 500; cursor: pointer;
  transition: background .3s ease; border-radius: 2px;
}
.contact-form button:hover { background: var(--olive); }

/* FOOTER */
footer { background: var(--forest-dark); color: rgba(245,239,228,.7); padding: 4rem 0 2rem; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
footer .logo-mark { margin-bottom: 1.5rem; height: 42px; opacity: 0.95; }
.footer-tag { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.25rem; color: var(--cream); margin-bottom: 1.5rem; max-width: 30ch; line-height: 1.4; }
footer h4 { color: var(--cream); font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; font-family: 'Manrope', sans-serif; font-weight: 600; margin-bottom: 1.2rem; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 0.6rem; }
footer a { color: rgba(245,239,228,.7); }
footer a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(245,239,228,.1); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.8rem; color: rgba(245,239,228,.5);
}

/* REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s ease, transform .9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.hero h1, .hero-sub, .hero-actions, .hero-badge {
  animation: fadeUp 1.2s cubic-bezier(.2,.7,.2,1) both;
}
.hero-sub { animation-delay: 0.2s; }
.hero-actions { animation-delay: 0.35s; }
.hero-badge { animation-delay: 0.6s; animation-duration: 1.5s; animation-name: fadeBadge; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeBadge {
  from { opacity: 0; transform: translateY(-50%) scale(0.8); }
  to { opacity: 1; transform: translateY(-50%) scale(1); }
}
@media (max-width: 700px) {
  @keyframes fadeBadge {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: none; }
  }
}
@media (max-width: 900px) { .quote-band { background-attachment: scroll; } }

/* ============================================================ */
/* COMPREHENSIVE MOBILE FIXES — narrow viewports                 */
/* ============================================================ */
@media (max-width: 700px) {
  /* Header & navigation */
  header { padding: 0.9rem 1.25rem; }
  .nav-inner { gap: 1rem; }
  .logo-mark { height: 34px; }
  .mobile-toggle { display: block; padding: 0.6rem; margin-right: -0.6rem; }

  /* Container padding tighter on mobile */
  .container, .container-narrow { padding: 0 1.25rem; }

  /* HERO — fix eyebrow overflow, hide off-canvas badge, stack buttons */
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 7rem 0 3rem !important;
    align-items: flex-end;
  }
  .hero-bg {
    background-position: center center;
  }
  .hero-content {
    padding: 0 1.25rem;
  }
  .hero .eyebrow {
    font-size: 0.62rem !important;
    letter-spacing: 0.16em !important;
    line-height: 1.5;
    flex-wrap: wrap;
    margin-bottom: 1rem !important;
  }
  .hero .eyebrow::before { width: 1.5rem; }
  .hero h1 {
    font-size: clamp(2.4rem, 11vw, 3.5rem) !important;
    line-height: 1.05;
    margin-bottom: 1rem;
    max-width: 100%;
  }
  .hero-sub {
    font-size: 1rem;
    margin-bottom: 1.75rem;
    max-width: 100%;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.95rem 1.5rem;
    font-size: 0.78rem;
  }
  /* Hide round badge on mobile - too cluttered */
  .hero-badge { display: none; }
  /* Hide scroll hint on mobile - takes too much space */
  .scroll-hint { display: none; }

  /* Section padding tighter */
  section { padding: 4rem 0; }

  /* Quote band */
  .quote-band blockquote {
    font-size: 1.4rem;
    line-height: 1.4;
  }

  /* Specialties cards - taller aspect on mobile for readability */
  .specialty-card { aspect-ratio: 5/6; }
  .specialty-body { bottom: 1.5rem; left: 1.5rem; right: 1.5rem; }
  .specialty-body .title { font-size: 1.4rem; }
  .specialty-body .sub { font-size: 0.85rem; }

  /* Gallery */
  .gallery-header { margin-bottom: 2.5rem; }
  .gallery-caption { bottom: 1.25rem; left: 1.25rem; right: 1.25rem; }
  .gallery-caption .title { font-size: 1.25rem; }

  /* Services */
  .services-header { margin-bottom: 3rem; }
  .service { padding: 2rem 1.5rem; border-right: none; }
  .service h3 { font-size: 1.25rem; }

  /* Values */
  .values-image { aspect-ratio: 4/4; }
  .values-list .v-text strong { font-size: 1.15rem; }

  /* Stats */
  .stats { padding: 3rem 0 !important; }
  .stat-num { font-size: 3rem; }

  /* CTA band */
  .cta-band {
    padding: 4rem 0 !important;
  }
  .cta-band::before {
    background: linear-gradient(180deg, rgba(31,47,48,.85) 0%, rgba(31,47,48,.75) 100%);
  }
  .cta-band h2 { max-width: 100%; }
  .cta-band > .container > div:last-child {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-band .btn {
    width: 100%;
    justify-content: center;
  }

  /* Contact */
  .contact-form { padding: 1.75rem 1.5rem; }
  .contact-methods .value { font-size: 1.25rem !important; }
  .contact-methods address.value { font-size: 1rem !important; }

  /* Footer */
  footer { padding: 3rem 0 1.5rem; }
  .footer-grid { gap: 2rem; margin-bottom: 2rem; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  /* Subpage hero */
  .subpage-hero {
    height: auto;
    min-height: 70vh;
    padding: 7rem 0 3rem !important;
  }
  .subpage-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3rem) !important;
  }
  .breadcrumb { font-size: 0.65rem; }

  /* Subpage content */
  .content-grid { gap: 2rem; }
  .content-left { position: static; }
  .content-body p:first-of-type { font-size: 1.1rem; }
  .content-body h3 { font-size: 1.35rem; }

  /* FAQ */
  .faq-item summary { font-size: 1.1rem; }

  /* Wood grid */
  .wood-grid-inner { gap: 1rem; }
  .wood-item { padding: 1.5rem 1.25rem; }
  .wood-item-name { font-size: 1.2rem; }
}

/* Very small phones (≤ 380px) */
@media (max-width: 380px) {
  .hero h1 { font-size: 2.1rem !important; }
  .hero-sub { font-size: 0.95rem; }
  .specialty-body { left: 1.25rem; right: 1.25rem; bottom: 1.25rem; }
  .specialty-body .title { font-size: 1.25rem; }
}

/* SUBPAGE SPECIFIC */
.subpage-hero {
  position: relative; height: 70vh; min-height: 480px;
  overflow: hidden; display: flex; align-items: flex-end;
  padding: 0 0 6vh !important;
}
.subpage-hero .hero-bg { z-index: 1; }
.subpage-hero .hero-bg::after {
  background: linear-gradient(180deg, rgba(31,47,48,.2) 0%, rgba(31,47,48,.45) 50%, rgba(31,47,48,.8) 100%);
}
.breadcrumb {
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(245,239,228,.7); margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(245,239,228,.9); }
.breadcrumb a:hover { color: var(--cream); }
.breadcrumb span { margin: 0 0.6rem; opacity: 0.5; }

.content-section { background: var(--cream); }
.content-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: start; }
@media (max-width: 900px) { .content-grid { grid-template-columns: 1fr; gap: 3rem; } }
.content-left { position: sticky; top: 120px; }
.content-left h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 1rem; }
.content-left h2 em { font-style: italic; color: var(--olive); }
.content-body { font-size: 1.05rem; line-height: 1.8; color: var(--ink-soft); }
.content-body p:first-of-type { font-size: 1.2rem; color: var(--forest); line-height: 1.6; }
.content-body h3 {
  margin-top: 2.5rem; margin-bottom: 1rem;
  font-size: 1.6rem; color: var(--forest);
}
.content-body h3:first-child { margin-top: 0; }
.content-body ul {
  list-style: none; padding: 0; margin: 1.5rem 0;
}
.content-body ul li {
  padding: 0.5rem 0 0.5rem 2rem; position: relative;
}
.content-body ul li::before {
  content: '→'; position: absolute; left: 0; top: 0.5rem;
  color: var(--olive); font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
}

.wood-grid { background: var(--cream-light); }
.wood-grid-inner {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.wood-item {
  background: var(--cream); padding: 1.8rem;
  border: 1px solid var(--line); transition: all .3s ease;
  display: block;
  color: var(--forest);
  text-decoration: none;
}
a.wood-item:hover { color: var(--forest); }
.wood-item:hover {
  border-color: var(--olive); transform: translateY(-3px);
  box-shadow: 0 15px 30px -15px rgba(47,68,69,.2);
}
.wood-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; color: var(--forest);
  font-weight: 500; margin-bottom: 0.4rem;
}
.wood-item-origin {
  font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--olive); margin-bottom: 0.8rem;
}
.wood-item-desc { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.55; margin: 0; }

.faq-section { background: var(--cream); }
.faq-list { max-width: 900px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--line); padding: 1.8rem 0; }
.faq-item summary {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; color: var(--forest);
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 500;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.8rem; color: var(--olive);
  transition: transform .3s ease; font-weight: 300;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item-body { padding-top: 1rem; color: var(--ink-soft); line-height: 1.7; }

/* LEGAL PAGES (Impressum, Datenschutz) */
.legal-page { padding-top: 10rem !important; background: var(--cream); min-height: 100vh; }
.legal-page h1 { margin-bottom: 3rem; }
.legal-page h2 {
  font-size: 1.8rem; margin-top: 3rem; margin-bottom: 1rem;
  color: var(--forest);
}
.legal-page h3 {
  font-size: 1.3rem; margin-top: 2rem; margin-bottom: 0.8rem;
  color: var(--forest);
}
.legal-page p, .legal-page li { color: var(--ink-soft); line-height: 1.75; }
.legal-page ul { padding-left: 1.5rem; }
.legal-page strong { color: var(--forest); }
.legal-page a { text-decoration: underline; }
