/* INTER */

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}


/* CORMORANT */

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f6f1ea;
  --bg-soft: #fbf8f4;
  --surface: rgba(255,255,255,.72);
  --surface-strong: rgba(255,255,255,.88);
  --text: #22333a;
  --muted: #64767a;
  --line: rgba(34,51,58,.11);
  --primary: #294049;
  --accent: #7f9d89;
  --accent-soft: #dce7dd;
  --warm: #c7ad8a;
  --shadow: 0 24px 70px rgba(26, 41, 47, .10);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --container: min(1240px, calc(100% - 40px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(220,231,221,.9), transparent 24%),
    radial-gradient(circle at 85% 8%, rgba(199,173,138,.16), transparent 18%),
    linear-gradient(180deg, #faf6f0 0%, #f6f1ea 100%);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.container { width: var(--container); margin: 0 auto; }
.site-bg {
  position: fixed; inset: 0; pointer-events: none; opacity: .22; z-index: 0;
  background-image: radial-gradient(rgba(34,51,58,.06) .7px, transparent .7px);
  background-size: 20px 20px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.1));
}

.site-header {
  position: sticky; top: 0; z-index: 20; padding: 18px 0 0; transition: .25s ease;
}
.site-header.is-scrolled { padding-top: 10px; }
.nav-shell {
  position: relative;
}
.nav-shell {
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
  padding: 14px 18px; border-radius: 999px; background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.72); box-shadow: var(--shadow); backdrop-filter: blur(16px);
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand img {
  width: 72px; height: 48px; object-fit: contain; mix-blend-mode: multiply;
}
.brand strong { display: block; font-size: 1rem; }
.brand span { display: block; color: var(--muted); font-size: .9rem; }
.site-nav { display: flex; align-items: center; gap: 18px; }
.site-nav a { color: var(--muted); font-weight: 600; }
.site-nav a:hover { color: var(--primary); }
.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(41,64,73,.18);
}
.cta-box-large {
  display: block;
  padding: 40px;
}

.cta-copy {
  max-width: none;
  width: 100%;
}

.cta-copy > p {
  max-width: 78ch;
  margin-top: 18px;
}

.cta-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.cta-info-card {
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.62));
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.cta-info-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
}

.cta-info-card p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.cta-info-card .btn {
  width: 100%;
}

@media (max-width: 1120px) {
  .cta-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .cta-box-large {
    padding: 20px;
  }
}
/* HAMBURGER BUTTON */

.nav-toggle {
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.88);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(34,51,58,.08);
  transition: transform .25s ease, background .25s ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
}

/* Hamburger Linien */

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
  transition: transform .3s ease, opacity .3s ease;
}

/* Animation → X */

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative; z-index: 1; min-height: 96vh; margin-top: -94px; padding: 148px 0 90px;
}
.hero-media, .hero-overlay {
  position: absolute; inset: 0;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18,27,32,.62) 0%, rgba(18,27,32,.24) 46%, rgba(18,27,32,.08) 100%),
    linear-gradient(180deg, rgba(18,27,32,.16) 0%, rgba(18,27,32,.35) 100%);
}
.hero-grid {
  position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .62fr; gap: 28px; align-items: end;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: .18em;
  font-size: .76rem; font-weight: 600; color: rgba(155,155,155,.82);
}
.eyebrow.small { color: var(--accent); }
.hero-copy h1, .section-head h2, .intro-grid h2, .cta-box h2, .contact-copy h2, .legal-box h1 {
  font-family: 'Cormorant Garamond', Georgia, serif; line-height: .98; letter-spacing: -.02em;
}
.hero-copy h1 {
  margin: 18px 0 18px; max-width: 10ch; font-size: clamp(2.5rem, 6vw, 5.5rem); color: #fff;
}
.hero-copy p {
  max-width: 58ch; color: rgba(255,255,255,.88); line-height: 1.9; font-size: 1.06rem;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; padding: 15px 24px;
  border-radius: 999px; border: 1px solid transparent; font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 16px 34px rgba(34,51,58,.22); }
.btn-secondary { background: rgba(127,157,137,.76); color: #fff;; border-color: rgba(255,255,255,.05); }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; margin-top: 34px;
}
.hero-stats article,
.hero-panel,
.intro-card,
.offer-card,
.pedagogy-card,
.animal-item,
.team-card,
.quote-box,
.cta-box,
.contact-form,
.legal-box {
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.62));
  border: 1px solid rgba(255,255,255,.78); box-shadow: var(--shadow); backdrop-filter: blur(16px);
}
.hero-stats article { padding: 18px; border-radius: 22px; }
.hero-stats strong { display: block; color: rgba(55,55,55,.75); font-size: 1.18rem; }
.hero-stats span { display: block; margin-top: 6px; color: rgba(5,5,5,.82); font-size: .92rem; }
.hero-panel {
  padding: 24px; border-radius: 30px; background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.76));
}
.hero-panel img { width: 100%; max-width: 360px; margin: 0 auto 14px; }
.hero-panel h2 { font-size: 2rem; margin: 10px 0; font-family: 'Cormorant Garamond', Georgia, serif; }
.hero-panel p { color: var(--muted); line-height: 1.85; }

.section { position: relative; z-index: 2; padding: 60px 0; }
.section-soft { background: linear-gradient(180deg, rgba(220,231,221,.26), rgba(255,255,255,0)); }
.intro-card {
  width: var(--container); margin: -70px auto 0; padding: 32px; border-radius: var(--radius-xl); position: relative; z-index: 3;
}
.intro-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 28px; align-items: end; }
.intro-grid h2, .section-head h2, .legal-box h1, .cta-box h2, .contact-copy h2 {
  margin: 14px 0 0; font-size: clamp(2.0rem, 5vw, 3.2rem);
}
.section-head { max-width: 860px; }
.section-head p, .intro-grid p, .offer-card p, .pedagogy-card p, .animal-item p, .team-card p, .contact-copy p, .legal-box p, .cta-box p {
  color: var(--muted); line-height: 1.88;
}
.offer-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; margin-top: 34px;
}
.offer-card, .pedagogy-card { padding: 30px; border-radius: var(--radius-lg); }
.offer-card h3, .pedagogy-card h3, .animal-item h3 { margin: 0 0 10px; font-size: 1.42rem; }
.pedagogy-grid { display: grid; gap: 28px; }
.pedagogy-cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.kicker, .team-role {
  display: inline-flex; align-items: center; justify-content: center; padding: 8px 12px; border-radius: 999px;
  background: rgba(127,157,137,.16); color: var(--primary); font-size: .76rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
}
.split-layout {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 34px; align-items: start;
}
.image-stack { position: sticky; top: 110px; min-height: 750px; }
.stack-main, .stack-card {
  margin: 0; border-radius: 34px; overflow: hidden; box-shadow: var(--shadow); background: #fff;
}
.stack-main { width: 70%; min-height: 460px; }
.stack-main img { width: 100%; height: 100%; object-fit: cover; }
.stack-card {
  position: absolute;
  right: 0;
  bottom: -100px; /* vorher 0 */
  width: 56%;
  min-height: 360px;
  border: 12px solid rgba(255,255,255,.88);
}
.stack-card img { width: 100%; height: 100%; object-fit: cover; }
.animal-list { display: grid; gap: 18px; margin-top: 26px; }
.animal-item { padding: 24px; border-radius: 24px; }
.animal-sections {
  display: grid;
  gap: 90px;
}

.animal-block {
  align-items: start;
}

.animal-block .animal-content {
  min-width: 0;
}
.hero-notice {
  margin: 18px 0 22px;
  font-size: 1.25rem;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 244, 204, 0.96) 0%, rgba(255, 224, 138, 0.96) 100%);
  border: 1px solid rgba(120, 90, 0, 0.16);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.10);
  color: #5f4600;

  gap: 6px;
  min-width: 100%;
}

.hero-notice strong {
  font-size: 1.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-notice span {
  line-height: 2.55;
}


/* Desktop: zweiter Block gespiegelt */
@media (min-width: 1121px) {
  .animal-block-reverse .image-stack {
    order: 2;
  }

  .animal-block-reverse .animal-content {
    order: 1;
  }
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; margin-top: 30px;
}
.gallery-card {
  position: relative; border: 0; padding: 0; min-height: 360px; border-radius: 28px; overflow: hidden; cursor: pointer; box-shadow: var(--shadow);
}
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-card:hover img { transform: scale(1.04); }
.gallery-card span {
  position: absolute; left: 16px; right: 16px; bottom: 16px; padding: 12px 14px; border-radius: 16px;
  background: rgba(255,255,255,.88); color: var(--primary); font-weight: 600;
}
.team-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; margin-top: 34px; }
.team-card { overflow: hidden; border-radius: 28px; }
.team-image { aspect-ratio: 2 / 2.6; overflow: hidden; }
.team-image img { width: 100%; height: 100%; object-fit: cover; }
.team-copy { padding: 22px; }
.quote-band { padding-top: 70px; }
.quote-box { padding: 38px; border-radius: 32px; }
.quote-box p {
  margin: 0; font-size: clamp(2rem, 4vw, 3.5rem); font-family: 'Cormorant Garamond', Georgia, serif; line-height: 1.05;
}
.cta-box {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 34px; border-radius: 32px;
}
.contact-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 24px; align-items: start; }
.contact-list { display: grid; gap: 14px; margin-top: 28px; }
.contact-list a, .contact-list span {
  display: inline-flex; padding: 16px 18px; border-radius: 18px; background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.82); box-shadow: var(--shadow); color: var(--primary); font-weight: 700;
}
.contact-form { padding: 28px; border-radius: 30px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 14px; }
.contact-form span { font-weight: 700; }
input, textarea {
  width: 100%; outline: none; border: 1px solid var(--line); background: rgba(255,255,255,.95); color: var(--text);
  border-radius: 18px; padding: 15px 16px;
}
input:focus, textarea:focus { border-color: rgba(127,157,137,.55); box-shadow: 0 0 0 4px rgba(127,157,137,.12); }
.site-footer { position: relative; z-index: 2; padding: 20px 0 46px; }
.footer-grid {
  display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 24px; padding-top: 24px; border-top: 1px solid var(--line);
}
.footer-brand { display: flex; align-items: start; gap: 14px; }
.footer-brand img { width: 200px; height: auto; object-fit: contain; mix-blend-mode: multiply; }
.footer-grid h3 { margin: 0 0 12px; }
.footer-grid p, .footer-grid li { color: var(--muted); line-height: 1.8; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.legal-page { min-height: 70vh; display: grid; align-items: center; }
.legal-box { padding: 36px; border-radius: 34px; max-width: 920px; }
.legal-box h2 { margin-top: 28px; font-size: 1.15rem; }
.lightbox {
  position: fixed; inset: 0; z-index: 60; display: grid; place-items: center; opacity: 0; visibility: hidden;
  background: rgba(11,18,22,.82); transition: .25s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; border-radius: 20px; box-shadow: var(--shadow); background: #fff; }
.lightbox-close {
  position: absolute; top: 24px; right: 24px; width: 48px; height: 48px; border-radius: 999px; border: 0; cursor: pointer;
  background: rgba(255,255,255,.96); font-size: 2rem; line-height: 1;
}
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .12s; }
.reveal.delay-2 { transition-delay: .22s; }
.reveal.delay-3 { transition-delay: .32s; }
.article-page {
  padding-top: 140px;
}

.article-layout {
  display: grid;
  gap: 28px;
}

.article-hero-image {
  margin: 0;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.article-hero-image img {
  width: 100%;
  height: min(520px, 58vw);
  object-fit: cover;
}

.article-box {
  padding: 36px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.62));
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.article-box h1 {
  margin: 14px 0 20px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: .98;
  letter-spacing: -.02em;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.article-box p {
  color: var(--muted);
  line-height: 1.9;
  margin: 0 0 18px;
}

.article-box .btn {
  margin-top: 14px;
}

@media (max-width: 560px) {
  .article-box {
    padding: 22px;
    border-radius: 24px;
  }

  .article-page {
    padding-top: 120px;
  }
}
.image-column {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 20px;
  align-self: start;
}

.image-card {
  margin: 0;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.image-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
	
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
	 border: 1px solid #b9dec4;
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.22);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-links a {
  color: #22333a;
 border: 1px solid #b9dec4;
}
.form-notice {
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 18px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-notice.success {
  background: #eaf7ee;
  border: 1px solid #b9dec4;
  color: #1f5c34;
}

.form-notice.error {
  background: #fff1f1;
  border: 1px solid #efc2c2;
  color: #8a1f1f;
}

.form-notice ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.turnstile-wrap {
  margin: 18px 0 20px;
}

.turnstile-wrap iframe {
  max-width: 100%;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.news-card {
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.62));
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.news-date {
  display: inline-block;
  margin-bottom: 14px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
}

.news-card h3 {
  margin: 0 0 12px;
  font-size: 1.38rem;
}

.news-card p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--primary);
}

.news-link:hover {
  text-decoration: underline;
}

@media (max-width: 1120px) {
  .hero-grid, .intro-grid, .split-layout, .contact-grid, .footer-grid, .cta-box { grid-template-columns: 1fr; display: grid; }
  .hero { margin-top: -90px; min-height: auto; }
  .hero-panel { max-width: 560px; }
  .offer-grid, .pedagogy-cards, .team-grid, .gallery-grid, .hero-stats { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .image-stack { position: static; min-height: 560px; }
  .stack-main { width: 86%; min-height: 420px; }
  .stack-card { width: 52%; min-height: 280px; }
	  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}



@media (max-width: 860px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
  }

  .social-links {
    margin-left: 0;
  }

  .nav-toggle {
    display: flex;
    order: 2;
  }

	 .site-header {
    padding: 4px 0 0;
  }

  .nav-shell {
    padding: 8px 12px;
    border-radius: 18px;
  }

  .brand img {
    width: 36px;
    height: 36px;
	  	 display: none;
  }

  .brand strong {
    font-size: 1rem;

  }

  .brand span {
    font-size: .2rem;

  }
	
  .nav-toggle {
    width: 40px;
    height: 40px;
  }


  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;

    display: grid;
    gap: 14px;
    padding: 18px;

    border-radius: 24px;
    background: rgba(255,255,255,.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all .25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .hero-copy h1 { max-width: 11ch; }
  .offer-grid, .pedagogy-cards, .team-grid, .gallery-grid, .hero-stats, .field-row { grid-template-columns: 1fr; }

  .intro-card {
    width: min(100% - 24px, 1240px);
    margin: -36px auto 24px;
    padding: 24px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
@media (max-width: 560px) {
  .container { width: min(100% - 24px, 1240px); }
  .nav-shell { border-radius: 22px; padding: 12px 14px; }
  .brand img { width: 64px; height: 42px; }
  .brand strong { font-size: .95rem; }
  .brand span { font-size: .82rem; }
  .hero { padding: 132px 0 70px; }
  .hero-copy h1 { font-size: 3.2rem; }
  .section { padding: 8px 0; }
  .intro-card, .offer-card, .pedagogy-card, .animal-item, .team-copy, .quote-box, .cta-box, .contact-form, .legal-box, .hero-panel { padding: 20px; border-radius: 24px; }
  .image-stack { min-height: 420px; }
  .stack-main { width: 100%; min-height: 280px; }
  .stack-card { position: relative; width: 74%; min-height: 220px; margin: -60px 0 0 auto; }
  .gallery-card { min-height: 260px; }
  .quote-box p { font-size: 2rem; }
}
