/* ============================================
   TOKENS
============================================ */
:root {
  --mauve:        #91849a;
  --mauve-light:  #F2EFF5;
  --sage:         #aab4a3;
  --sage-light:   #EEF2EC;
  --sage-dark:    #8fa389;
  --orange:       #f87222;
  --orange-dark:  #e0621a;
  --dark:         #1C1A1F;
  --dark2:        #252229;
  --off-white:    #FAFAF8;
  --warm-white:   #F7F4F0;
  --light-sage:   #F0F4EF;
  --light-mauve:  #F5F2F8;
  --border:       rgba(28,26,31,.09);
  --border-light: rgba(255,255,255,.12);
  --text:         #1C1A1F;
  --text-muted:   #6B6570;
  --white:        #FFFFFF;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { font-family: var(--font-sans); color: var(--text); background: var(--off-white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================
   LAYOUT
============================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ============================================
   TYPOGRAPHY
============================================ */
/* Offset anchor links for fixed nav */
section[id], div[id] { scroll-margin-top: 70px; }

h1, h2, h3 { font-family: var(--font-serif); line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 500; }
h1 em { font-style: italic; color: #6b5e75; }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 500; color: var(--text); }
h3 { font-size: 1.15rem; font-weight: 600; color: var(--text); }
p { color: var(--text-muted); line-height: 1.8; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 20px;
}

/* ============================================
   BUTTONS
============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: #8fa389;
  color: var(--white);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.2s var(--ease), box-shadow 0.25s var(--ease);
}
.btn-primary:hover {
  background: #8fa389;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(170,180,163,.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--text);
  border-radius: 999px;
  border: 1.5px solid rgba(28,26,31,.2);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--sage); color: var(--sage-dark); }

.btn-full { width: 100%; }

/* ============================================
   NAV
============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #aab4a3;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: box-shadow 0.3s var(--ease);
}

.nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  padding: 20px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: #1C1A1F;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-left: auto;
  margin-right: 20px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(28,26,31,.75);
  transition: color 0.2s;
  letter-spacing: 0.1px;
}
.nav-links a:hover { color: #1C1A1F; }

.nav-cta {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  background: #91849a;
  padding: 12px 24px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: #7a6f82; transform: translateY(-1px); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #1C1A1F;
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 32px 28px;
  background: var(--light-mauve);
  border-top: 1px solid var(--border);
  gap: 4px;
}
.nav-mobile a {
  padding: 13px 0;
  font-size: 1rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--text); }
.nav-mobile-cta {
  margin-top: 12px;
  color: var(--sage-dark) !important;
  border: none !important;
  font-weight: 600;
}
.nav-mobile.open { display: flex; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { padding: 12px 20px; justify-content: space-between; }
}

/* ============================================
   HERO
============================================ */
.hero {
  min-height: 100vh;
  background: var(--light-mauve);
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
  align-items: center;
  gap: 48px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 100px;
}

.hero-content .eyebrow {
  margin-bottom: 24px;
}

.hero-content h1 {
  color: var(--text);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 400px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.trust-dot { color: var(--border); opacity: 0.6; }

.hero-visual {
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.hero-img-frame {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  background: var(--mauve-light);
}

.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-img-frame.img-placeholder {
  background: var(--mauve-light);
  min-height: 400px;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 0 20px; gap: 0; }
  .hero-content { padding: 110px 0 40px; }
  .hero-sub { max-width: 100%; }
  .hero-visual { padding: 0 0 60px; }
  .hero-img-frame { aspect-ratio: 4/3; }
}

/* ============================================
   PROBLEMS
============================================ */
.problems {
  padding: 100px 0;
  background: var(--white);
}

.problems-header {
  text-align: center;
  margin-bottom: 56px;
}
.problems-header .eyebrow { display: block; text-align: center; }
.problems-header h2 { text-align: center; }

.problem-card-img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  margin-bottom: 8px;
}

.problems-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}

.problem-card {
  background: var(--off-white);
  border-radius: 14px;
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-icon {
  display: flex;
  width: 40px;
  height: 40px;
  color: var(--mauve);
  flex-shrink: 0;
}
.problem-icon svg {
  width: 100%;
  height: 100%;
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.65;
}

.problems-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.problems-cta-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .problems-cards { grid-template-columns: repeat(2, 1fr); }
  .problems-cards .problem-card:last-child { grid-column: span 2; max-width: 280px; margin: 0 auto; }
}
@media (max-width: 500px) {
  .problems-cards { grid-template-columns: 1fr; }
  .problems-cards .problem-card:last-child { grid-column: span 1; max-width: 100%; }
}

/* ============================================
   APPROACH
============================================ */
.approach {
  background: var(--white);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.approach-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.approach-img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--mauve-light);
}

.approach-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approach-img.img-placeholder {
  background: var(--mauve-light);
}

.approach-content .eyebrow { margin-bottom: 16px; }

.approach-content h2 {
  margin-bottom: 20px;
}

.approach-desc {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 36px;
}

.approach-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.approach-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.approach-icon {
  display: none;
}

.approach-list li div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.approach-list li strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.approach-list li span {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .approach-inner { grid-template-columns: 1fr; gap: 40px; }
  .approach-img { aspect-ratio: 4/3; }
}

/* ============================================
   ANGEBOTE
============================================ */
.angebote {
  padding: 100px 0;
  background: var(--light-mauve);
}

.angebote-header {
  text-align: center;
  margin-bottom: 56px;
}
.angebote-header .eyebrow { display: block; text-align: center; }
.angebote-header h2 { margin-bottom: 12px; }
.angebote-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.offer-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.offer-featured {
  background: var(--mauve);
}

.offer-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.offer-emoji {
  font-size: 2rem;
  line-height: 1;
}

.offer-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}
.offer-featured h3 { color: var(--white); font-style: italic; }

.offer-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}
.offer-featured p { color: rgba(255,255,255,.75); }

.offer-btn {
  margin-top: 8px;
  align-self: stretch;
}

.offer-featured .btn-primary {
  background: #8fa389;
  color: var(--white);
}
.offer-featured .btn-primary:hover { background: #8fa389; }

.offer-card .btn-outline {
  border-color: rgba(28,26,31,.18);
}

@media (max-width: 900px) {
  .offers-grid { grid-template-columns: 1fr; }
  .offer-card { padding: 36px 28px 32px; }
}

/* ============================================
   ABOUT
============================================ */
.about {
  background: var(--off-white);
  padding: 100px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content .eyebrow { margin-bottom: 16px; }
.about-content h2 { margin-bottom: 24px; }
.about-content p { margin-bottom: 16px; font-size: 1rem; line-height: 1.85; }

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: var(--mauve-light);
  color: var(--mauve);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1px;
}
.tag-link {
  transition: background 0.2s, color 0.2s;
}
.tag-link:hover {
  background: #91849a;
  color: #fff;
}

.about-visual {
  display: flex;
  align-items: center;
}

.about-img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  background: var(--mauve-light);
}

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

.about-img-wrap.img-placeholder {
  background: var(--mauve-light);
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; }
  .about-img-wrap { aspect-ratio: 4/3; }
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials {
  background: var(--light-mauve);
  padding: 100px 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}
.testimonials-header .eyebrow { display: block; text-align: center; }
.testimonials-header h2 { text-align: center; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 24px rgba(28,26,31,.05);
}

.tc-stars {
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.65;
  flex: 1;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.tc-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--off-white);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.tc-author strong { display: block; font-size: 0.9rem; color: var(--text); }
.tc-author span { font-size: 0.78rem; color: var(--text-muted); }

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ============================================
   EVENTS
============================================ */
.events {
  background: var(--off-white);
  padding: 100px 0;
}
.events-header {
  text-align: center;
  margin-bottom: 56px;
}
.events-header .eyebrow { display: block; text-align: center; }
.events-header h2 { text-align: center; }
.events-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}
.event-row {
  background: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.event-row:hover {
  box-shadow: 0 4px 20px rgba(28,26,31,.07);
  transform: translateY(-1px);
}
.event-day {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  min-width: 56px;
  text-align: center;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.event-month {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}
.event-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}
.event-info { flex: 1; min-width: 0; }
.event-info h3 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text);
  margin-bottom: 3px;
  font-family: var(--font-sans);
}
.event-time {
  font-size: 0.82rem;
  color: var(--mauve);
  font-weight: 500;
  margin-bottom: 3px;
}
.event-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}
.event-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.event-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 600;
  white-space: nowrap;
}
.event-status::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.event-status.frei { color: #3a8a4d; }
.event-status.frei::before { background: #6abf7b; }
.event-status.wenig { color: #b0620a; }
.event-status.wenig::before { background: #f0a04b; }
.event-status.ausgebucht { color: #b03030; }
.event-status.ausgebucht::before { background: #e05a5a; }
.event-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mauve);
  text-decoration: none;
  white-space: nowrap;
}
.event-link:hover { text-decoration: underline; }

.events-legend {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.legend-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   CONTACT
============================================ */
.contact {
  background: var(--white);
  padding: 100px 0;
  scroll-margin-top: 70px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-left .eyebrow { margin-bottom: 16px; }
.contact-left h2 { margin-bottom: 20px; }
.contact-left > p { font-size: 1rem; line-height: 1.85; margin-bottom: 36px; }

.contact-guarantees {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.guarantee {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.g-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--sage);
  color: var(--sage);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-right {
  background: var(--off-white);
  border-radius: 16px;
  padding: 40px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}

.opt { font-weight: 400; color: var(--text-muted); }

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid transparent;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--sage); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(107,101,112,.4); }

.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.form-success {
  text-align: center;
  padding: 48px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.form-success[hidden] { display: none; }
.success-mark {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 2px solid var(--sage);
  color: var(--sage);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}
.form-success h3 { font-size: 1.5rem; font-family: var(--font-serif); }
.form-success p { font-size: 0.9rem; }

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-right { padding: 28px 24px; }
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--dark);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(255,255,255,.5);
}

.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,.35);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,.25);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 32px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,.35); }

.footer-nav, .footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a, .footer-contact-info a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.5);
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-contact-info a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,.25); }

.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,.3); transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   WHATSAPP
============================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 88px; right: 24px;
  z-index: 90;
  background: #25D366;
  color: var(--white);
  border-radius: 999px;
  padding: 12px 20px 12px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-btn svg { width: 26px; height: 26px; flex-shrink: 0; }
.whatsapp-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,.45); }

@media (min-width: 901px) { .whatsapp-btn { bottom: 32px; } }

/* ============================================
   MOBILE STICKY CTA
============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 80;
  padding: 12px 16px;
  background: var(--dark);
  border-top: 1px solid var(--border-light);
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
}
.sticky-cta.visible { transform: translateY(0); }
@media (min-width: 901px) { .sticky-cta { display: none; } }

/* ============================================
   ANIMATIONS
============================================ */
[data-anim] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--delay, 0s);
}
[data-anim].in-view { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-anim] { opacity: 1; transform: none; }
}

/* ============================================
   MOBILE — 900px
============================================ */
@media (max-width: 900px) {
  .problems, .approach, .angebote, .about,
  .testimonials, .events, .contact { padding: 64px 0; }


  .problems-header,
  .angebote-header,
  .testimonials-header,
  .events-header { margin-bottom: 36px; }

  .hero-content { padding: 90px 0 32px; }
  .hero-visual { padding: 0 0 48px; }
}

/* ============================================
   MOBILE — 600px (phones)
============================================ */
@media (max-width: 600px) {
  /* Typography */
  h1 { font-size: clamp(2.4rem, 11vw, 3.2rem); }
  h2 { font-size: clamp(1.7rem, 7vw, 2.4rem); }

  /* Section padding */
  .problems, .approach, .angebote, .about,
  .testimonials, .events, .contact { padding: 52px 0; }

  /* Hero */
  .hero-content { padding: 68px 0 24px; }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    padding: 17px 24px;
    font-size: 1rem;
  }
  .hero-visual { padding: 0 0 48px; }
  .hero-img-frame { aspect-ratio: 4/3; }

  /* Nav */
  .nav-logo-img { height: 40px; }
  .nav-logo-text { font-size: 0.95rem; }

  /* Problems */
  .problems-footer .btn-primary { width: 100%; }

  /* Offers */
  .offer-card { padding: 28px 22px 24px; }

  /* About tags — wrap nicely */
  .about-tags { gap: 8px; }
  .tag { font-size: 0.78rem; padding: 7px 14px; }

  /* Testimonials */
  .testimonial-card { padding: 28px 24px; }

  /* Contact form */
  .contact-right { padding: 24px 20px; }
  .form-group input,
  .form-group textarea { font-size: 1rem; padding: 15px 14px; } /* prevent iOS zoom */

  /* Footer */
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-links { gap: 16px; }

  /* Sticky CTA button full-width */
  .sticky-cta a { width: 100%; text-align: center; justify-content: center; }

  /* WhatsApp — smaller on mobile */
  .whatsapp-btn span { display: none; }
  .whatsapp-btn { padding: 12px; border-radius: 50%; }
}
