/* ============================================
   STILRICHTUNG A – „Fliessend & Erdig"
   Shared Styles for Multi-Page Version
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #F5F0E8;
  --bg-subtle: #EDE6D8;
  --text:      #2C3E2D;
  --text-light:#5A6B5C;
  --accent1:   #C8956C;
  --accent2:   #8FA98C;
  --highlight: #D4A843;
  --white:     #FFFDF9;
  --font-head: 'DM Serif Display', Georgia, serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
  --font-hand: 'Caveat', cursive;
  --max-w:     1140px;
  --section-py: clamp(3rem, 8vw, 6rem);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent1); text-decoration: none; transition: color .3s; }
a:hover { color: var(--highlight); }

.container { width: 90%; max-width: var(--max-w); margin: 0 auto; }

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  min-height: 50px;
  padding: 1rem 0;
  background: rgba(245,240,232,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow .3s, padding .3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(44,62,45,0.08); padding: .6rem 0; }
.nav .container { display: flex; align-items: center; justify-content: center; position: relative; }
.nav-logo { position: absolute; left: 0; }
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--accent1); }
.nav-links { display: flex; gap: 1.8rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--accent1);
  transition: width .3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--accent1); }
.nav-links a.active { color: var(--accent1); }
.nav-links a.active::after { width: 100%; }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px; position: absolute; right: 0; }
.burger span { display: block; width: 26px; height: 2px; background: var(--text);
  border-radius: 2px; transition: transform .3s, opacity .3s; }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-logo-img { height: 60px; width: auto; transition: height .3s; }
.nav.scrolled .nav-logo-img { height: 46px; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1766860161994-d3d23ee8ce53?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(170deg, rgba(245,240,232,0.92) 0%, rgba(237,230,216,0.88) 50%, rgba(221,213,196,0.85) 100%);
}
.hero-phoenix {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}
.hero-phoenix img {
  width: clamp(320px, 50vw, 600px);
  height: auto;
  opacity: 0.92;
  transition: transform .6s ease, opacity .6s ease;
}
.hero-bottom {
  position: relative;
  z-index: 2;
  padding: 0 2rem 5rem;
  margin-top: 3rem;
  text-align: center;
}
.hero-quote {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto .6rem;
  letter-spacing: 0.01em;
}
.hero-attribution {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

/* ---- IMAGE BAND ---- */
.img-band {
  width: 100%; overflow: hidden; line-height: 0;
}
.img-band img {
  width: 100%; height: 45vh; max-height: 400px;
  object-fit: cover; object-position: center 40%;
}

/* ---- CARD IMAGE ---- */
.card-img {
  width: 100%; height: 180px; object-fit: cover;
  border-radius: 12px; margin-bottom: 1.2rem;
}

/* ---- PORTRAIT IMG ---- */
.portrait-img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 24px;
}
.portrait-wrap {
  aspect-ratio: 3/4;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(44,62,45,0.12);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: all .4s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent1), var(--highlight));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(200,149,108,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(200,149,108,0.45);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--accent1);
  border: 2px solid var(--accent1);
}
.btn-outline:hover {
  background: var(--accent1);
  color: var(--white);
}

/* ---- WAVE DIVIDER ---- */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: -1px 0;
}
.wave-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}
.wave-divider.flip { transform: scaleY(-1); }

/* ---- SECTIONS ---- */
section { padding: var(--section-py) 0; }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  text-align: center;
  margin-bottom: .5rem;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.section-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  border-radius: 3px;
  margin: .8rem auto 1.5rem;
}

/* ---- PAGE HEADER (for inner pages) ---- */
.page-header {
  padding-top: calc(80px + 3rem);
  padding-bottom: 2rem;
  background: var(--bg-subtle);
  text-align: center;
}
.page-header h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: .5rem;
}
.page-header .section-line { margin-bottom: 0; }

/* ---- INTRO ---- */
.intro { background: var(--white); }
.intro-text {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.9;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  background: var(--bg-subtle);
  padding: 3rem 0;
}
.testimonial-slider {
  max-width: 740px;
  margin: 0 auto;
  position: relative;
  min-height: 160px;
}
.testimonial-item {
  display: none;
  text-align: center;
  padding: 0 3rem;
  animation: fadeTestimonial .5s ease;
}
.testimonial-item.active { display: block; }
@keyframes fadeTestimonial {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: .8rem;
}
.testimonial-quote::before { content: '«\00a0'; color: var(--accent2); font-size: 1.3rem; }
.testimonial-quote::after { content: '\00a0»'; color: var(--accent2); font-size: 1.3rem; }
.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent1);
  letter-spacing: 0.05em;
}
.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0;
}
.testimonial-btn {
  pointer-events: auto;
  background: none;
  border: 1px solid var(--accent2);
  color: var(--accent2);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  opacity: 0.6;
}
.testimonial-btn:hover {
  opacity: 1;
  background: var(--accent2);
  color: var(--white);
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.2rem;
}
.testimonial-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent2);
  opacity: 0.3;
  border: none;
  cursor: pointer;
  transition: opacity .3s;
}
.testimonial-dot.active { opacity: 1; }

/* ---- ANGEBOTE ---- */
.angebote { background: var(--bg); }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(44,62,45,0.06);
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 35px rgba(44,62,45,0.1);
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent1);
}
.card-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
}
.card-icon.einzel { background: rgba(200,149,108,0.12); color: var(--accent1); }
.card-icon.gruppe { background: rgba(143,169,140,0.15); color: var(--accent2); }
.card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  margin-bottom: .8rem;
}
.card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }
.card ul {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}
.card ul li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: .4rem;
  font-size: 0.93rem;
  color: var(--text-light);
}
.card ul li::before {
  content: '';
  position: absolute; left: 0; top: 10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent2);
}
.insurance-note {
  max-width: 720px;
  margin: 3rem auto 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  padding: 1.5rem 2rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(44,62,45,0.04);
}

/* ---- KURS HIGHLIGHT ---- */
.kurs {
  background: var(--bg-subtle);
  position: relative;
  overflow: hidden;
}
.kurs::after {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,149,108,0.08) 0%, transparent 70%);
}
.kurs-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.kurs-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 400;
  margin-bottom: 1rem;
}
.kurs-badge {
  display: inline-block;
  background: var(--accent1);
  color: var(--white);
  padding: .3rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.kurs-text p { color: var(--text-light); margin-bottom: 1rem; }
.kurs-info {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(44,62,45,0.06);
}
.kurs-info-item {
  display: flex;
  align-items: baseline;
  gap: .8rem;
  padding: .8rem 0;
  border-bottom: 1px solid rgba(44,62,45,0.08);
}
.kurs-info-item:last-child { border-bottom: none; }
.kurs-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent1);
  min-width: 80px;
}
.kurs-info-value { font-size: 0.93rem; color: var(--text); }

/* ---- METHODE ---- */
.methode { background: var(--white); }
.methode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.methode-text p { margin-bottom: 1rem; color: var(--text-light); }
.methode-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}
.methode-gallery img {
  width: 100%; height: 200px; object-fit: cover;
  border-radius: 12px;
  transition: transform .4s;
}
.methode-gallery img:hover { transform: scale(1.03); }
.methode-gallery img:first-child {
  grid-column: 1 / 3;
  height: 260px;
}
.methode-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.methode-feature {
  background: var(--bg);
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
  transition: transform .3s;
}
.methode-feature:hover { transform: translateY(-3px); }
.methode-feature .icon {
  font-size: 1.8rem;
  margin-bottom: .5rem;
  display: block;
}
.methode-feature span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

/* ---- ÜBER MICH ---- */
.ueber { background: var(--bg); }
.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
}
.portrait-placeholder { display: none; }
.ueber-text h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  margin-bottom: .3rem;
}
.ueber-text .title {
  color: var(--accent1);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}
.ueber-text p { color: var(--text-light); margin-bottom: 1rem; }
.qualifications {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}
.qual-tag {
  background: rgba(200,149,108,0.12);
  color: var(--accent1);
  font-size: 0.8rem;
  font-weight: 600;
  padding: .35rem .85rem;
  border-radius: 50px;
}

/* ---- KONDITIONEN ---- */
.konditionen { background: var(--bg); }
.konditionen-content {
  max-width: 780px;
  margin: 0 auto;
}
.konditionen-content p {
  color: var(--text-light);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}
.konditionen-content p:last-child { margin-bottom: 0; }
.konditionen-img {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: 0 8px 30px rgba(44,62,45,0.08);
}
.konditionen-img img {
  width: 100%; height: 300px; object-fit: cover;
}

/* ---- KONTAKT ---- */
.kontakt { background: var(--white); }
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.kontakt-info h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.kontakt-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.kontakt-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.kontakt-item-text strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: .2rem;
}
.kontakt-item-text span, .kontakt-item-text a {
  font-size: 0.95rem;
  color: var(--text-light);
}
.kontakt-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(44,62,45,0.08);
}
.kontakt-map iframe {
  width: 100%; height: 100%; min-height: 320px; border: none;
}
.kontakt-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--bg);
  border-radius: 20px;
}
.kontakt-cta p {
  font-family: var(--font-hand);
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 1rem;
}
.kontakt-cta .hero-quote {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 300;
}
.kontakt-cta .hero-attribution {
  font-family: var(--font-body);
  font-size: 0.85rem;
}
.kontakt-hero {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: 80px;
}
.kontakt-hero img {
  width: 100%;
  height: 40vh;
  max-height: 360px;
  object-fit: cover;
  object-position: center 40%;
}

/* ---- REGISTRATION FORM ---- */
.registration-form {
  max-width: 600px;
  margin: 2rem auto 0;
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(44,62,45,0.06);
}
.registration-form h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1px solid rgba(44,62,45,0.15);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color .3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent1);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.form-submit {
  text-align: center;
  margin-top: 1.5rem;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 2.5rem 0;
  text-align: center;
  font-size: 0.85rem;
}
.footer a { color: rgba(255,255,255,0.85); }
.footer a:hover { color: var(--highlight); }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  list-style: none;
}
.footer-bottom { opacity: 0.6; }

/* ---- PHOENIX FLY-IN ---- */
@keyframes phoenixFlyIn {
  0%   { transform: translateY(80vh) scale(0.4); opacity: 0; }
  70%  { transform: translateY(0) scale(1.02); opacity: 0.9; }
  100% { transform: translateY(0) scale(1); opacity: 0.92; }
}
.hero-phoenix img.fly-in {
  animation: phoenixFlyIn 3.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-brand {
  font-family: var(--font-hand);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--text);
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
  opacity: 0.9;
  transition: opacity .3s;
}

/* ---- SPARKLE PARTICLES ---- */
.sparkle-container {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}
.sparkle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,248,220,0.95);
  opacity: 0;
  box-shadow: 0 0 4px 1px rgba(255,235,180,0.8), 0 0 10px 3px rgba(212,168,67,0.4);
  animation: sparkleFloat 2s ease-out forwards;
}
@keyframes sparkleFloat {
  0%   { opacity: 0; transform: translate(0, 0) scale(0); }
  10%  { opacity: 1; transform: scale(1); }
  30%  { opacity: 0.6; transform: translate(calc(var(--sx) * 0.2), calc(var(--sy) * 0.2)) scale(1.3); }
  50%  { opacity: 0.9; transform: translate(calc(var(--sx) * 0.4), calc(var(--sy) * 0.4)) scale(0.8); }
  70%  { opacity: 0.4; transform: translate(calc(var(--sx) * 0.7), calc(var(--sy) * 0.7)) scale(1.1); }
  100% { opacity: 0; transform: translate(var(--sx), var(--sy)) scale(0); }
}

/* ---- ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #f5f0e8 !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 80px;
    gap: 0;
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform .4s ease, visibility 0s .4s;
    z-index: 99;
  }
  .nav-links.open {
    transform: translateY(0);
    visibility: visible;
    background-color: #f5f0e8 !important;
    transition: transform .4s ease, visibility 0s 0s;
  }
  .nav-links li {
    background-color: #f5f0e8;
    width: 100%;
    text-align: center;
  }
  .nav-links a {
    font-size: 1.2rem;
    display: block;
    padding: 0.5rem 1.5rem;
    background-color: #f5f0e8;
  }
  .burger { display: flex; z-index: 101; margin-top: 10px; }

  .kurs-layout,
  .methode-grid,
  .methode-block,
  .ueber-grid,
  .kontakt-grid { grid-template-columns: 1fr !important; }

  .ueber-grid { direction: ltr; }
  .portrait-wrap { max-width: 300px; margin: 0 auto; }

  .methode-features { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .testimonial-item { padding: 0 2.5rem; }
}

@media (max-width: 480px) {
  .methode-features { grid-template-columns: 1fr; }
  .methode-gallery { grid-template-columns: 1fr; }
  .methode-gallery img:first-child { grid-column: auto; height: 200px; }
}
