:root {
  --cream: #f6f0e6;
  --cream-deep: #ede4d3;
  --cream-warm: #e8ddc6;
  --ink: #1f1a16;
  --ink-soft: #4a423b;
  --ink-muted: #7a6e63;
  --burgundy: #5a1e2a;
  --burgundy-light: #843544;
  --gold: #b88a4a;
  --gold-deep: #8a6638;
  --line: rgba(31, 26, 22, 0.12);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
.serif { font-family: 'Spectral', Georgia, serif; }

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 8px 16px;
  z-index: 1000;
}
.skip-link:focus { top: 0; }

/* ===== Header ===== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 240, 230, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.logo {
  font-family: 'Spectral', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-mark {
  height: 56px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo small {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}
.logo-footer .logo-mark {
  height: 48px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}
nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
nav a:hover { color: var(--burgundy); }
nav a[aria-current="page"] { color: var(--burgundy); border-bottom: 1px solid var(--burgundy); padding-bottom: 2px; }

.nav-cta {
  background: var(--burgundy);
  color: var(--cream) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.9rem !important;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--ink);
  transform: translateY(-1px);
}

/* Hamburger Mobile-Nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Buttons ===== */
.btn {
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover {
  background: var(--burgundy);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(90, 30, 42, 0.2);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--cream); }

/* ===== Sections ===== */
section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 32px;
}
.section-label {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 600;
  margin-bottom: 16px;
}
h1, h2, h3, h4, h5 { font-family: 'Spectral', Georgia, serif; font-weight: 400; letter-spacing: -0.015em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.05; margin-bottom: 28px; }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); line-height: 1.1; margin-bottom: 24px; }
h3 { font-size: 1.8rem; line-height: 1.15; margin-bottom: 16px; font-weight: 500; }
h4 { font-size: 1.3rem; font-weight: 500; }
em { font-style: italic; color: var(--burgundy); font-weight: 400; }
p { color: var(--ink-soft); margin-bottom: 16px; line-height: 1.7; }
p.lead { font-size: 1.15rem; max-width: 640px; }
a { color: var(--burgundy); }

/* ===== Hero (Startseite) ===== */
.hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 32px 100px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-lead { font-size: 1.15rem; color: var(--ink-soft); margin-bottom: 36px; max-width: 520px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image { position: relative; }
.hero-image img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  filter: saturate(0.95);
}
.hero-image::after {
  content: '';
  position: absolute;
  top: 24px;
  right: -24px;
  width: 100%;
  height: 100%;
  border: 1.5px solid var(--burgundy);
  border-radius: 4px;
  z-index: -1;
}
.hero-quote {
  position: absolute;
  bottom: -40px;
  left: -40px;
  background: var(--cream);
  padding: 24px 28px;
  border-left: 3px solid var(--burgundy);
  max-width: 320px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.hero-quote p {
  font-family: 'Spectral', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
}
.hero-quote cite {
  display: block;
  margin-top: 8px;
  font-family: 'Inter', -apple-system, sans-serif;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ===== Page Hero (für Unterseiten) ===== */
.page-hero {
  background: var(--cream-deep);
  padding: 80px 32px 60px;
}
.page-hero-inner { max-width: 1240px; margin: 0 auto; }

/* ===== Image Hero (landscape Bild-Hero für Unterseiten) ===== */
.image-hero {
  position: relative;
  width: 100%;
  height: clamp(360px, 55vh, 560px);
  overflow: hidden;
  background: var(--ink);
}
.image-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.78) saturate(0.95);
}
.image-hero-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(31,26,22,0.15) 0%, rgba(31,26,22,0.55) 70%, rgba(31,26,22,0.78) 100%);
  padding: 0 32px 56px;
}
.image-hero-inner {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}
.image-hero-inner h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 16px 0 0;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.image-hero-inner .section-label { margin-bottom: 0; }
.image-hero-inner .lead {
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}

/* ===== Path Cards ===== */
.paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}
.path-card {
  background: var(--cream-deep);
  border-radius: 4px;
  padding: 44px 40px;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}
.path-card:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-4px);
}
.path-card:hover h3,
.path-card:hover li,
.path-card:hover .path-arrow,
.path-card:hover p { color: var(--cream); }
.path-card:hover p { color: rgba(246, 240, 230, 0.75); }
.path-card:hover .path-eyebrow { color: var(--gold); }
.path-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 600;
  margin-bottom: 16px;
  transition: color 0.3s;
}
.path-card h3 { font-size: 1.8rem; margin-bottom: 20px; }
.path-card p { margin-bottom: 28px; }
.path-card ul { list-style: none; margin-bottom: 32px; flex: 1; }
.path-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.path-card li:last-child { border-bottom: none; }
.path-card:hover li { border-color: rgba(246, 240, 230, 0.15); }
.path-arrow {
  font-family: 'Spectral', Georgia, serif;
  font-size: 1rem;
  color: var(--burgundy);
  font-weight: 500;
}

/* ===== Termine List ===== */
.termine-section { background: var(--ink); color: var(--cream); margin: 0; max-width: 100%; padding: 100px 32px; }
.termine-inner { max-width: 1240px; margin: 0 auto; }
.termine-section .section-label { color: var(--gold); }
.termine-section h2, .termine-section h3 { color: var(--cream); }
.termine-section h2 em { color: var(--gold); }
.termine-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 24px; }
.termine-header p { color: rgba(246, 240, 230, 0.7); max-width: 420px; }
.termine-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.termin {
  background: rgba(246, 240, 230, 0.04);
  border: 1px solid rgba(246, 240, 230, 0.12);
  border-radius: 4px;
  padding: 32px 28px;
  transition: all 0.3s;
  display: block;
  text-decoration: none;
  color: var(--cream);
}
.termin:hover { background: rgba(246, 240, 230, 0.08); transform: translateY(-3px); }
.termin-date {
  font-family: 'Spectral', Georgia, serif;
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 16px;
  font-weight: 500;
}
.termin h4 { font-size: 1.4rem; color: var(--cream); margin-bottom: 12px; line-height: 1.2; }
.termin-meta { font-size: 0.9rem; color: rgba(246, 240, 230, 0.65); margin-bottom: 20px; }
.termin-meta span { display: block; margin-bottom: 4px; }
.termin-cta { color: var(--gold); font-size: 0.9rem; font-weight: 600; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

/* ===== About / Article Content ===== */
.content-section { max-width: 880px; margin: 0 auto; padding: 80px 32px; }
.content-section p { font-size: 1.05rem; line-height: 1.75; }
.content-section p.lead { font-family: 'Spectral', Georgia, serif; font-size: 1.4rem; line-height: 1.45; color: var(--ink); margin-bottom: 32px; }
.content-section h2 { margin-top: 48px; }
.content-section h3 { margin-top: 32px; }
.content-section ul, .content-section ol { margin-left: 24px; margin-bottom: 16px; color: var(--ink-soft); }
.content-section li { margin-bottom: 8px; line-height: 1.7; }

/* ===== Two-column About ===== */
.about-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 32px;
}
.about-image img { width: 100%; height: auto; border-radius: 4px; display: block; }
.credentials {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.credentials div { font-size: 0.85rem; color: var(--ink-soft); }
.credentials strong {
  display: block;
  color: var(--ink);
  font-family: 'Spectral', Georgia, serif;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 2px;
}

/* ===== Testimonials ===== */
.testimonials-section { background: var(--cream-deep); padding: 100px 32px; }
.testimonials-inner { max-width: 1240px; margin: 0 auto; }
.testimonial-featured {
  background: var(--cream);
  padding: 56px 64px;
  border-radius: 4px;
  margin-top: 48px;
  position: relative;
  border-left: 4px solid var(--burgundy);
}
.testimonial-featured.has-photo {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
}
.testimonial-featured-photo {
  width: 220px;
  aspect-ratio: 155 / 86;
  border-radius: 8px;
  overflow: hidden;
}
.testimonial-featured-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonial-featured blockquote {
  font-family: 'Spectral', Georgia, serif;
  font-size: 1.4rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 24px;
}
.testimonial-featured cite {
  font-style: normal;
  font-weight: 600;
  color: var(--burgundy);
  font-size: 0.95rem;
}
.testimonial-featured cite span {
  display: block;
  color: var(--ink-soft);
  font-weight: 400;
  font-size: 0.85rem;
  margin-top: 2px;
  font-family: 'Spectral', Georgia, serif;
  font-style: italic;
}
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
.testimonial-small {
  background: var(--cream);
  padding: 32px;
  border-radius: 4px;
}
.testimonial-small p {
  font-family: 'Spectral', Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-small cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--burgundy);
  font-weight: 600;
}

/* Stimmen-Stack für die langen Zitate */
.testimonials-stack { display: flex; flex-direction: column; gap: 28px; margin-top: 16px; }
.testimonial-card {
  background: var(--cream);
  padding: 36px 40px;
  border-radius: 4px;
  border-left: 3px solid var(--gold);
}
.testimonial-card.has-photo {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 28px;
  align-items: start;
}
.testimonial-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonial-card blockquote {
  font-family: 'Spectral', Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 20px;
  font-style: italic;
}
.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  color: var(--burgundy);
  font-size: 0.95rem;
  display: block;
}
.testimonial-card cite span {
  display: block;
  color: var(--ink-soft);
  font-weight: 400;
  font-size: 0.85rem;
  margin-top: 4px;
}

/* Kurz-Stimmen: 3-Spalten-Grid */
.testimonials-kurz-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 16px; }
.testimonial-kurz {
  background: var(--cream);
  padding: 28px 24px;
  border-radius: 4px;
}
.testimonial-kurz blockquote {
  font-family: 'Spectral', Georgia, serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 14px;
  font-style: italic;
}
.testimonial-kurz cite {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--burgundy);
  font-weight: 600;
}

/* ===== Team ===== */
.team-list { max-width: 920px; }
.team-member {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}
.team-member:first-child { padding-top: 16px; }
.team-member:last-child { border-bottom: none; }
.team-photo img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}
.team-photo-empty {
  width: 200px;
  aspect-ratio: 3/4;
  background: var(--cream);
  border: 1px dashed var(--line);
  border-radius: 4px;
  position: relative;
}
.team-photo-empty::after {
  content: 'Foto folgt';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
}
.team-text h2 {
  margin-top: 0;
  margin-bottom: 8px;
}
.team-titel {
  color: var(--burgundy);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

/* ===== Buch + Podcast ===== */
.buch-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  align-items: start;
  margin-top: 24px;
  margin-bottom: 32px;
}
.buch-cover img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  display: block;
}
.podcast-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0 32px;
}
.podcast-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: center;
  padding: 16px;
  background: var(--cream);
  border-radius: 4px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.2s;
}
.podcast-card:hover { background: var(--cream-deep); }
.podcast-card img {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  object-fit: cover;
  display: block;
}
.podcast-card strong { display: block; font-family: 'Spectral', Georgia, serif; font-size: 1.05rem; }
.podcast-card span { color: var(--ink-muted); font-size: 0.85rem; margin-top: 4px; display: block; }

/* ===== Form ===== */
.form-section { max-width: 720px; margin: 0 auto; padding: 80px 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-size: 0.9rem; font-weight: 500; color: var(--ink); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--cream);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--burgundy); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-consent { font-size: 0.85rem; color: var(--ink-muted); display: flex; gap: 10px; align-items: flex-start; margin-bottom: 24px; }
.form-consent input { width: auto; margin-top: 4px; }

/* ===== CTA Section ===== */
.cta-section {
  background: var(--burgundy);
  color: var(--cream);
  margin: 0;
  max-width: 100%;
  padding: 120px 32px;
  text-align: center;
}
.cta-section h2 { color: var(--cream); max-width: 800px; margin: 0 auto 32px; }
.cta-section h2 em { color: var(--gold); }
.cta-section p { font-size: 1.15rem; color: rgba(246, 240, 230, 0.85); max-width: 600px; margin: 0 auto 40px; }
.cta-section .btn-primary { background: var(--cream); color: var(--burgundy); }
.cta-section .btn-primary:hover { background: var(--gold); color: var(--ink); }

/* ===== Footer ===== */
footer {
  background: var(--ink);
  color: rgba(246, 240, 230, 0.65);
  padding: 80px 32px 32px;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .logo { color: var(--cream); margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; max-width: 320px; margin-bottom: 16px; }
.footer-brand address { font-style: normal; font-size: 0.9rem; line-height: 1.7; }
.footer-brand a { color: rgba(246,240,230,0.85); }
footer h5 { color: var(--cream); font-size: 1.05rem; font-weight: 500; margin-bottom: 20px; }
footer ul { list-style: none; }
footer li { margin-bottom: 10px; }
footer a { color: rgba(246, 240, 230, 0.65); text-decoration: none; font-size: 0.9rem; }
footer a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(246, 240, 230, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  nav { position: fixed; top: 64px; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--line); transform: translateY(-150%); transition: transform 0.3s; }
  nav.open { transform: translateY(0); box-shadow: 0 12px 24px rgba(0,0,0,0.08); }
  nav ul { flex-direction: column; gap: 0; padding: 16px 32px 24px; align-items: stretch; }
  nav li { border-bottom: 1px solid var(--line); }
  nav li:last-child { border-bottom: none; padding-top: 12px; }
  nav a { display: block; padding: 14px 0; font-size: 1rem; }
  .nav-cta { display: inline-block; text-align: center; }
  .hero { grid-template-columns: 1fr; padding: 48px 24px 64px; gap: 48px; }
  .hero-image img { aspect-ratio: 4/3; max-height: 480px; }
  .hero-quote { left: 0; bottom: -32px; max-width: 280px; }
  .paths, .termine-grid, .testimonials-grid, .testimonials-kurz-grid { grid-template-columns: 1fr; }
  .team-member { grid-template-columns: 1fr; gap: 20px; }
  .team-photo, .team-photo-empty { max-width: 200px; }
  .testimonial-card.has-photo { grid-template-columns: 80px 1fr; gap: 20px; padding: 28px; }
  .testimonial-photo { width: 80px; height: 80px; }
  .testimonial-featured.has-photo { grid-template-columns: 1fr; gap: 20px; }
  .testimonial-featured-photo { width: 100%; max-width: 280px; }
  .buch-layout { grid-template-columns: 1fr; gap: 24px; }
  .buch-cover { max-width: 200px; }
  .about-layout { grid-template-columns: 1fr; gap: 40px; padding: 56px 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  section, .termine-section, .testimonials-section, .cta-section { padding: 64px 24px; }
  .testimonial-featured { padding: 40px 28px; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .credentials { grid-template-columns: 1fr; }
}