/* ============================================================
   KALUNA FEE — Anke Schaubrenner
   Stylesheet
   ============================================================ */

/* --- Variablen --- */
:root {
  --cream:      #FAF7F2;
  --brown:      #4A3B28;
  --gold:       #D4AF37;
  --beige:      #E8D5C4;
  --sand:       #EED7B8;  /* Stammfarbe — Footer, Akzente */
  --warm:       #EDE7DC;  /* Karten, Kontaktformular */
  --black:      #1A1A1A;
  --pure-black: #000000;
  --dark:       #16142D;
  --white:      #FFFFFF;
  --font-heading: 'Playfair Display', serif;
  --font-body:    'Montserrat', sans-serif;
}

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

html, body { scroll-behavior: smooth; }
html { scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--black);
  font-size: 16px;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typografie --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.3;
  color: var(--black);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-body); letter-spacing: 0.05em; }

blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 2rem);
  line-height: 1.5;
  color: var(--black);
}

p {
  font-size: 0.95rem;
  color: var(--black);
}

em { font-style: italic; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  border-radius: 6px;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--brown);
  color: var(--brown);
}
.btn-outline:hover { background: var(--brown); color: var(--cream); }

.btn-dark {
  background: var(--brown);
  color: var(--cream);
}
.btn-dark:hover { background: var(--black); }

.btn-gold {
  background: var(--gold);
  color: var(--brown);
}
.btn-gold:hover { background: var(--brown); color: var(--gold); }

/* --- Navigation --- */
nav {
  position: fixed;
  top: 1.5rem;
  left: 12%;
  right: 12%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.85rem 2.5rem;
  background: var(--cream);
  border-radius: 6px;
  box-shadow: 0 2px 16px rgba(74, 59, 40, 0.08);
}

.nav-logo {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--brown);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 1rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--brown);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-social a {
  font-size: 1.2rem;
  color: var(--brown);
  transition: color 0.2s;
}
.nav-social a:hover { color: var(--gold); }

/* --- Coming Soon Toast --- */
.coming-soon-toast {
  position: fixed;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: var(--brown);
  color: var(--cream);
  padding: 0.65rem 1.8rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
  z-index: 9999;
  white-space: nowrap;
}
.coming-soon-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* --- SECTION 1: Hero --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% top;
  filter: contrast(1.08) brightness(1.04) saturate(1.05);
  transform: scale(1.32) translateY(-85px) translateX(-15px);
  transform-origin: 40% top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}

.hero-content {
  position: absolute;
  top: calc(62% + 2cm - 10px);
  transform: translateY(-50%);
  left: 10%;
  max-width: 42%;
  text-align: center;
}

.hero-content blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 40px;
  color: var(--white);
  margin-bottom: 1.8rem;
  line-height: 1.35;
  letter-spacing: 0.03em;
  display: block;
  background: linear-gradient(to right, rgba(74,59,40,0.85) 0%, rgba(74,59,40,0.4) 60%, transparent 100%);
  padding: 0.6rem 1.5rem 0.6rem 0;
}

.hero-content .btn {
  margin-top: 0.5cm;
}

.hero-content .btn-outline {
  background: rgba(250, 247, 242, 0.88);
  color: var(--brown);
  border-color: var(--brown);
}
.hero-content .btn-outline:hover {
  background: var(--brown);
  color: var(--cream);
}

.hero-partners {
  overflow: hidden;
  width: 100%;
  height: 70px;
  margin-top: calc(2rem - 20px + 20px);
  background: transparent;
}

.hero-partners-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: scroll-logos 60s linear infinite;
}

@keyframes scroll-logos {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hero-partners img {
  height: 48px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
}

.partner-text {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--brown);
  font-weight: 600;
}

/* --- SECTION 2: Großes Zitat --- */
.section-quote {
  padding: 8rem 4rem;
  text-align: center;
  background: var(--cream);
}

.section-quote blockquote {
  font-size: 44px;
  font-style: normal;
  color: var(--brown);
  margin-bottom: 2.5rem;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.section-quote blockquote span {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.section-quote p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 0;
  color: var(--black);
}

.signature-img {
  height: 290px;
  width: auto;
  margin-top: -60px;
}

.quote-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.signature {
  font-family: 'Dancing Script', cursive;
  font-size: 3.2rem;
  color: var(--brown);
  margin-bottom: 2.5rem;
  opacity: 0.9;
  transform: rotate(-2deg);
  display: inline-block;
}

/* --- Chevron-Trenner zwischen Sektionen --- */
.section-chevron {
  text-align: center;
  padding: 1.5rem 0;
  background: inherit;
}
.section-chevron svg {
  opacity: 1;
  color: var(--black);
}

/* --- SECTION 3: Naturgewalt --- */
.section-naturgewalt {
  display: flex;
  flex-direction: column;
  background: var(--white);
  padding: 120px 4% 80px;
}

.section-naturgewalt > h2 {
  font-size: 48px;
  font-family: var(--font-heading);
  color: var(--black);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 120px;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.section-naturgewalt > h2 em {
  font-style: italic;
}

.naturgewalt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.naturgewalt-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%);
  display: block;
  border-radius: 6px;
}

.naturgewalt-text {
  padding: 0 2rem 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.naturgewalt-text blockquote {
  font-size: 36px;
  font-style: normal;
  margin-bottom: 2rem;
  color: var(--black);
}

.naturgewalt-text p {
  font-size: 18px;
  line-height: 1.8;
}

/* --- SECTION 4: Methode --- */
.methode-particles {
  position: absolute;
  inset: 0;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}
.methode-particle {
  position: absolute;
  border-radius: 50%;
}
@keyframes flash {
  0%    { opacity: 0;   transform: scale(0.2); }
  5%    { opacity: 1;   transform: scale(1.4); }
  14%   { opacity: 0.8; transform: scale(1); }
  28%   { opacity: 0;   transform: scale(0.9); }
  100%  { opacity: 0;   transform: scale(0.9); }
}

.section-methode {
  position: relative;
  padding: 4rem 4% 7rem calc(4% + max(0px, (100% - 8% - 1200px) / 2));
  max-width: calc(100% - 720px);
  background: var(--cream);
}

.section-methode h2,
.section-methode p,
.section-methode h3 {
  position: relative;
  z-index: 1;
}

.section-methode h2 {
  font-size: 38px;
  margin-bottom: 2rem;
}

.section-methode h2 .highlight {
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

@keyframes materialise {
  0%, 100% {
    opacity: 0.6;
    filter: blur(1px);
    transform: translateY(2px);
  }
  50% {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(-2px);
  }
}

.augenblick-anim {
  display: inline;
}

.augenblick-anim span {
  display: inline-block;
  animation: materialise 4s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.1s);
}

.section-methode p {
  font-size: 18px;
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.section-methode h3 {
  font-size: 1.1rem;
  margin: 2.5rem 0 1rem;
  font-family: var(--font-body);
  font-weight: 600;
}

/* --- SECTION 5: Drei Wege --- */
.section-dreiwege {
  padding: calc(5rem + 20px) 2rem 7rem;
  text-align: center;
  background: var(--white);
}

.section-dreiwege h2 {
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  font-size: 48px;
}

.dreiwege-chevron {
  margin-top: 60px;
  margin-bottom: calc(3rem + 40px);
}

.dreiwege-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1254px;
  margin: 0 auto;
}

.dreiwege-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--black);
  border-radius: 14px;
  padding: 0 1.5rem calc(2rem + 20px);
  background: transparent;
}

.dreiwege-card-img-wrap {
  position: relative;
  width: calc(100% + 3rem);
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  aspect-ratio: 5/6;
  overflow: hidden;
  margin-bottom: 1.8rem;
  border-radius: 14px 14px 0 0;
  border-bottom: 1px solid var(--black);
}

.dreiwege-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dreiwege-card-img-wrap h3 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--black);
  text-shadow: none;
  margin: 0;
}

.amp {
  font-family: var(--font-body);
  font-style: normal;
}

.dreiwege-card h4 {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: calc(1.8rem + 10px);
  color: var(--brown);
  text-align: center;
}

.dreiwege-card p {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: calc(1.4rem + 20px);
  max-width: 100%;
  opacity: 0.7;
  line-height: 1.7;
  text-align: center;
  flex-grow: 1;
}

.dreiwege-card .btn {
  margin-top: auto;
  background: rgba(74, 59, 40, 0.72);
  border-color: rgba(74, 59, 40, 0.72);
}

/* --- SECTION 6: Erfahrung --- */
.section-erfahrung {
  padding: 7rem 4%;
  background: var(--cream);
  color: var(--black);
}

.section-erfahrung-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-erfahrung blockquote {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 48px;
  font-style: normal;
}

.section-erfahrung .subtitle {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 18px;
  color: var(--black);
  opacity: 0.7;
}

.erfahrung-liste {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.erfahrung-item {
  display: grid;
  grid-template-columns: 1fr 60px 2fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(26,26,26,0.15);
}

.erfahrung-item:first-child {
  border-top: 1px solid rgba(26,26,26,0.15);
}

.erfahrung-item h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 500;
  color: var(--black);
  text-align: left;
  margin: 0;
  align-self: center;
}

.erfahrung-item p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--black);
  opacity: 0.75;
}

.erfahrung-icon {
  width: 58px;
  height: 58px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto;
}

.erfahrung-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--black);
  fill: none;
}

/* --- SECTION 7: Zahlen --- */
@keyframes laola {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-14px); }
  60%  { transform: translateY(4px); }
  100% { transform: translateY(0); }
}
.laola-letter {
  display: inline-block;
}
.laola-letter.animate {
  animation: laola 0.55s ease-in-out both;
}
.section-zahlen {
  padding: 7rem 4%;
  background: var(--white);
  position: relative;
  overflow-x: hidden;
}

.section-zahlen-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}



.section-zahlen-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-zahlen h2 {
  margin-bottom: 1.5rem;
}

.section-zahlen .intro-text {
  margin-bottom: 2.5rem;
  font-size: 18px;
  line-height: 1.85;
  opacity: 0.75;
}

.zahlen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.zahlen-card {
  background: var(--warm);
  border: 1px solid var(--black);
  position: relative;
  z-index: 2;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: left;
}

.zahlen-card .number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--brown);
  display: block;
  margin-bottom: 0.4rem;
}

.zahlen-card .label {
  font-size: 0.9rem;
  color: var(--brown);
  opacity: 0.7;
  line-height: 1.4;
  display: block;
}

/* --- SECTION 8: Partner --- */
.section-partner {
  padding: 8rem 2rem 6rem;
  background: var(--cream);
  text-align: center;
}

.section-partner h2 {
  font-size: 48px;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.section-partner p {
  max-width: 640px;
  margin: 0 auto 4rem;
  font-size: 18px;
  line-height: 1.85;
  opacity: 0.7;
  color: var(--black);
}

.partner-track-wrap {
  overflow: hidden;
  position: relative;
  width: 80%;
  height: 60px;
  margin: 0 auto;
  /* weiche Blenden links und rechts */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.partner-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: partner-scroll 28s linear infinite;
}

.partner-track img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  flex-shrink: 0;
  transition: opacity 0.3s;
}

.partner-track img:hover {
  opacity: 1;
}

@keyframes partner-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-logo-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--brown);
  text-transform: uppercase;
}

/* --- SECTION 9: Kontakt --- */
.section-contact {
  padding: 8rem 2rem;
  background: var(--white);
  text-align: center;
}

.section-contact-inner {
  max-width: 560px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 16px;
  padding: 4rem 3.5rem;
}

.section-contact blockquote {
  font-size: 38px;
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--black);
}

.section-contact .subtitle {
  margin-bottom: 2.5rem;
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
}

/* --- Kontaktformular (custom, DSGVO) --- */
#contact-form {
  text-align: left;
}

.cf-field {
  margin-bottom: 1.2rem;
}

.cf-field label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.45rem;
}

.cf-field input,
.cf-field textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--white);
  border: 1.5px solid rgba(74,59,40,0.18);
  border-radius: 6px;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: rgba(74,59,40,0.35);
}

.cf-field input:focus,
.cf-field textarea:focus {
  border-color: var(--brown);
  box-shadow: 0 0 0 3px rgba(74,59,40,0.07);
}

.cf-field input.cf-invalid,
.cf-field textarea.cf-invalid {
  border-color: #c0392b;
}

.cf-field textarea {
  resize: vertical;
  min-height: 130px;
}

/* DSGVO Consent Block */
.cf-consent {
  background: rgba(74,59,40,0.04);
  border: 1px solid rgba(74,59,40,0.12);
  border-radius: 8px;
  padding: 1.4rem 1.5rem;
  margin-bottom: 1.4rem;
}

.cf-consent-intro,
.cf-consent-process {
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--black);
  margin-bottom: 1rem;
}

.cf-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  margin-bottom: 1rem;
}

.cf-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cf-checkmark {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 2px solid var(--brown);
  border-radius: 3px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.cf-checkmark::after {
  content: '';
  display: none;
  width: 5px;
  height: 9px;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

.cf-checkbox-label input:checked ~ .cf-checkmark {
  background: var(--brown);
  border-color: var(--brown);
}

.cf-checkbox-label input:checked ~ .cf-checkmark::after {
  display: block;
}

.cf-checkbox-label.cf-invalid .cf-checkmark {
  border-color: #c0392b;
}

.cf-checkbox-text {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--black);
  font-weight: 500;
}

.cf-consent-note {
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--black);
}

.cf-consent-note a {
  color: var(--brown);
  text-decoration: underline;
}

/* Consent Toggle */
.cf-consent-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--brown);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0.3rem 0;
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s;
}
.cf-consent-toggle:hover { color: var(--black); }

.cf-toggle-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.cf-consent-toggle[aria-expanded="true"] .cf-toggle-arrow {
  transform: rotate(180deg);
}

.cf-consent-details {
  display: none;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(74,59,40,0.1);
}
.cf-consent-details.open { display: block; }

/* Error message */
.cf-error {
  display: none;
  background: #fdf2f2;
  border: 1px solid #e8c4c4;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: #c0392b;
  margin-bottom: 1rem;
}

.cf-error.visible {
  display: block;
}

/* Submit Button */
.cf-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  position: relative;
}

.cf-submit-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: cf-spin 0.7s linear infinite;
}

.cf-submit.loading .cf-submit-spinner { display: inline-block; }
.cf-submit.loading .cf-submit-text { opacity: 0.7; }
.cf-submit:disabled { opacity: 0.7; cursor: not-allowed; }

@keyframes cf-spin {
  to { transform: rotate(360deg); }
}

/* --- altes contact-form (veraltet, bleibt für Kompatibilität) --- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--white);
  border: 1px solid rgba(74, 59, 40, 0.2);
  border-radius: 6px;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(74, 59, 40, 0.45);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brown);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  padding: 1rem;
  background: var(--brown);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  transition: background 0.3s;
  margin-top: 0.5rem;
}

.contact-form button:hover { background: var(--black); }

/* --- FOOTER --- */
footer {
  background: var(--sand);
  color: var(--brown);
  padding: 5rem 4% 2.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250, 247, 242, 0.15);
}

.footer-brand h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  color: var(--brown);
}

.footer-brand p {
  font-size: 0.8rem;
  color: var(--brown);
  opacity: 0.75;
  max-width: 280px;
  line-height: 1.7;
}

footer h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--brown);
  text-transform: uppercase;
}

footer ul li {
  margin-bottom: 0.6rem;
}

footer ul li a {
  font-size: 0.82rem;
  color: var(--brown);
  opacity: 0.8;
  transition: opacity 0.2s;
}

footer ul li a:hover { opacity: 1; }

.footer-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(74,59,40,0.25);
  overflow: hidden;
  margin-bottom: 0.6rem;
}

.footer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.footer-contact-name {
  font-size: 0.88rem;
  color: var(--brown);
  font-weight: 500;
  margin-bottom: 0.2rem;
  margin: 0;
  opacity: 1;
}

.footer-contact-role {
  font-size: 0.75rem;
  color: var(--brown);
  opacity: 0.65;
  margin: 0;
}

.footer-contact a.email-btn {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(74, 59, 40, 0.4);
  font-size: 0.78rem;
  color: var(--brown);
  letter-spacing: 0.08em;
  transition: all 0.2s;
}

.footer-contact a.email-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--brown);
}

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(74,59,40,0.2);
  text-align: center;
  font-size: 0.75rem;
  color: var(--brown);
  opacity: 0.6;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .dreiwege-grid { grid-template-columns: 1fr; max-width: 400px; }
  .section-naturgewalt { grid-template-columns: 1fr; }
  .naturgewalt-left h2 { padding: 2.5rem 2rem 1.5rem; font-size: 36px; }
  .naturgewalt-text { padding: 3rem 2rem; }
  .erfahrung-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   MOBILE NAVIGATION — Hamburger
   ============================================================ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10001;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE — max-width: 768px
   ============================================================ */
@media (max-width: 768px) {

  /* Nav */
  nav {
    top: 0.6rem;
    left: 2%;
    right: 2%;
    padding: 0.75rem 1.2rem;
    border-radius: 6px;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0;
    gap: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(74,59,40,0.12);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.3rem;
  }

  .nav-social {
    gap: 0.8rem;
  }

  .nav-logo {
    font-size: 1.1rem;
  }

  /* Hero (index.html) */
  .hero-content {
    top: auto;
    bottom: 8%;
    left: 5%;
    right: 5%;
    max-width: 100%;
    transform: none;
    text-align: center;
  }

  .hero-content blockquote {
    font-size: 22px;
  }

  /* Sections allgemein */
  section {
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
  }

  /* Zahlen-Karten (index.html) */
  .stats-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
  }

  /* Dreiwege-Cards (index.html) */
  .ways-grid {
    grid-template-columns: 1fr !important;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Workshop-Cards (soul.html) */
  .workshop-grid {
    grid-template-columns: 1fr !important;
    max-width: 420px;
    margin: 0 auto;
  }

  /* Zahlen-Grid (index.html) */
  .zahlen-grid { grid-template-columns: 1fr 1fr; }

  /* Quote & Footer */
  .section-quote { padding: 5rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
