:root {
  --bg: #e8e3da;
  --page-bg: #fff9f1;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-soft: rgba(250, 247, 241, 0.88);
  --footer-bg: #eee1c8;
  --text: #3f4737;
  --muted: #6d695f;
  --green: #758c54;
  --green-dark: #556b3d;
  --green-soft: #dce7ca;
  --accent-soft: #f2ddb4;
  --line: rgba(97, 86, 66, 0.12);
  --shadow: 0 18px 46px rgba(62, 54, 41, 0.12);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --container: 1320px;
  --content: 1120px;
  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  line-height: 1.55;
  background:
    radial-gradient(circle at 10% 4%, rgba(117, 140, 84, 0.08), transparent 260px),
    radial-gradient(circle at 90% 5%, rgba(242, 221, 180, 0.14), transparent 280px),
    linear-gradient(180deg, #ece7df 0%, #e4ded2 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.narrow {
  width: min(var(--content), calc(100% - 40px));
  margin-inline: auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  padding: 16px 0 10px;
  background: linear-gradient(180deg, rgba(232, 227, 218, 0.96) 0%, rgba(232, 227, 218, 0.82) 100%);
  backdrop-filter: blur(12px);
}

.header-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px 22px;
  border-radius: 24px;
  background: rgba(255, 252, 246, 0.92);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(62, 54, 41, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  line-height: 1.02;
}

.brand-title {
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-subtitle {
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.brand-claim {
  margin-top: 5px;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.03em;
  color: var(--green);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  padding: 10px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--text);
}

.main-nav {
  justify-self: end;
  min-width: 0;
}

.main-nav > ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.main-nav li {
  position: relative;
}

.main-nav a,
.nav-parent-link {
  display: block;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 780;
  color: #4d5340;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 140ms ease, color 140ms ease;
}

.main-nav li.is-active > a,
.main-nav li.is-active > .nav-parent-link,
.main-nav a:hover,
.nav-parent-link:hover,
.has-children.is-open > .nav-parent-link {
  background: var(--green-soft);
  color: var(--green-dark);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  list-style: none;
  margin: 0;
  padding: 18px 10px 10px;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: 160ms ease;
  z-index: 100;
}

.submenu::before {
  content: "";
  position: absolute;
  inset: 8px 0 0;
  z-index: -1;
  background: rgba(255, 252, 246, 0.98);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.has-children:hover > .submenu,
.has-children:focus-within > .submenu,
.has-children.is-open > .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.submenu a {
  border-radius: 12px;
  white-space: normal;
}

/* Page layout */

.site-main {
  min-height: 60vh;
  padding: 6px 0 28px;
}

.page-shell {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto 34px;
}

.page-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #fffdf9 0%, #fff9f1 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.page-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    url('/assets/img/decor/floral-corner-left.png') top left / 300px auto no-repeat,
    url('/assets/img/decor/floral-corner-right.png') top right / 300px auto no-repeat;
}

.page-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  z-index: 1;
  pointer-events: none;
  background: url('/assets/img/decor/floral-bottom.png') bottom center / 100% auto no-repeat;
}

.hero-block,
.content-block,
.block-heading {
  position: relative;
  z-index: 2;
}

.block-heading {
  padding-top: 54px;
  padding-bottom: 42px;
}

.block-heading .narrow {
  max-width: 100%;
  padding-left: 75px;
  padding-right: 24px;
  position: relative;
  z-index: 2;
}

.block-heading h1,
.hero-content h1 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.block-heading p,
.section-intro,
.prose {
  color: var(--muted);
  font-size: 1.04rem;
}

.content-block {
  padding: 0 0 60px;
}

.content-block .container {
  width: min(var(--content), calc(100% - 56px));
}

.content-block + .content-block::before {
  content: "";
  display: block;
  width: min(420px, 76vw);
  height: 64px;
  margin: 0 auto 56px;
  background: url('/assets/img/decor/floral-divider.png') center center / contain no-repeat;
}

.block-heading + .content-block::before {
  display: none;
}

.section-title {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 2.3vw, 2.4rem);
  letter-spacing: -0.04em;
}

.eyebrow,
.leader-kicker,
.contact-info-label {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.84rem;
  font-weight: 850;
}

/* Hero */

.hero-block {
  padding: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.hero-visual {
  order: -1;
  margin: 18px 18px 0;
  height: 470px;
  overflow: hidden;
  border-radius: 30px;
  background: #f1ebdf;
  position: relative;
  z-index: 2;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 30px;
}

.hero-content {
  position: relative;
  padding: 46px 54px 84px;
  text-align: center;
  background: transparent;
}

.hero-content::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: min(980px, calc(100% - 40px));
  height: 96px;
  background: url('/assets/img/decor/floral-divider.png') center center / contain no-repeat;
  pointer-events: none;
}

.hero-text {
  margin: 16px auto 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  font-size: 1rem;
  transition: 140ms ease;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 18px rgba(85, 105, 61, 0.16);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-secondary {
  background: var(--accent-soft);
  color: #6d522d;
  border: 1px solid rgba(109, 82, 45, 0.10);
}

.btn-secondary:hover {
  background: #edd09a;
}

/* Cards and content components */

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

.quicklink-card,
.notice,
.table-card,
.text-image-card,
.download-card,
.step-card,
.contact-card,
.contact-main-card,
.contact-side-card,
.leader-card {
  background: var(--surface);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(97, 86, 66, 0.10);
  border-radius: 24px;
  box-shadow: 0 10px 24px rgba(62, 54, 41, 0.05);
}

.quicklink-card {
  padding: 24px;
  min-height: 150px;
  text-decoration: none;
}

.quicklink-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 1.18rem;
  font-weight: 900;
  color: var(--green-dark);
}

.quicklink-card p,
.text-image-card p,
.notice p,
.step-card p,
.contact-card p,
.contact-main-card p,
.contact-side-card p,
.leader-content p,
.gallery-overview-description {
/*.beautiful-gallery-item figcaption {*/
  color: var(--muted);
}

/* Startseite: Text/Bild-Karte stabiler machen */

.text-image-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 32px;
  padding: 34px;
  align-items: center;
}

.text-image-card h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 2.8vw, 2.45rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--text);
}

.text-image-card p {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.text-image-card img {
  width: 100%;
  height: 300px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
  border-radius: 22px;
  border: 1px solid rgba(97, 86, 66, 0.12);
  background: #f3eee4;
  box-shadow: 0 12px 28px rgba(62, 54, 41, 0.08);
}

/* Die alte 1180px-Regel darf diese Karte nicht zu früh einspaltig machen */
@media (max-width: 1180px) {
  .text-image-card {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  }
}

@media (max-width: 820px) {
  .text-image-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .text-image-card img {
    height: 260px;
  }
}

@media (max-width: 640px) {
  .text-image-card {
    padding: 20px;
  }

  .text-image-card img {
    height: 230px;
  }
}

.notice {
  position: relative;
  margin-top: 10px;
  padding: 30px 28px 44px;
  overflow: visible;
  isolation: isolate;
  background: rgba(220, 233, 204, 0.82);
}

.notice > * {
  position: relative;
  z-index: 2;
}

.notice::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 8px;
  border-radius: 8px;
  background: var(--green);
  z-index: 2;
}

.notice h2 {
  margin: 0 0 8px;
  font-size: 1.28rem;
}

.notice p {
  margin: 0;
  font-size: 1rem;
}

.notice-green {
  background: rgba(221, 232, 204, 0.82);
}

.notice-cream {
  background: rgba(250, 244, 230, 0.86);
}

.table-card {
  overflow: hidden;
}

.table-card table {
  width: 100%;
  border-collapse: collapse;
}

.table-card thead th {
  background: rgba(239, 227, 203, 0.8);
  color: #6a624f;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.table-card th,
.table-card td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.table-card tbody tr:nth-child(even) td {
  background: rgba(249, 245, 237, 0.6);
}

.table-card tbody tr:last-child td {
  border-bottom: 0;
}

.download-card {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  text-decoration: none;
}

.download-card span,
.quicklink-card span {
  font-weight: 900;
  color: var(--green-dark);
}

.download-card small {
  color: var(--muted);
}

.steps-list {
  display: grid;
  gap: 14px;
}

.step-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 18px;
  align-items: start;
}

.step-number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(180deg, var(--green-soft) 0%, #cad9b7 100%);
  color: var(--green-dark);
  font-size: 1.1rem;
  font-weight: 950;
}

.step-card h3 {
  margin: 0 0 5px;
  font-size: 1.12rem;
}

.youtube-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
  box-shadow: 0 12px 28px rgba(62, 54, 41, 0.10);
}

.youtube-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Gallery */

.gallery-page-card {
  min-height: 520px;
}

.gallery-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.gallery-overview-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 180px;
  overflow: hidden;
  border-radius: 26px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(97, 86, 66, 0.12);
  box-shadow: 0 14px 34px rgba(62, 54, 41, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.gallery-overview-card:hover {
  transform: translateY(-2px);
  border-color: rgba(117, 140, 84, 0.28);
  box-shadow: 0 18px 40px rgba(62, 54, 41, 0.11);
}

.gallery-overview-image {
  display: block;
  overflow: hidden;
  min-height: 180px;
  background:
    radial-gradient(circle at 30% 20%, rgba(117, 140, 84, 0.13), transparent 150px),
    linear-gradient(180deg, #f4ead8 0%, #fffaf2 100%);
}

.gallery-overview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overview-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.gallery-overview-placeholder span,
.gallery-overview-meta {
  display: inline-flex;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 900;
}

.gallery-overview-placeholder span {
  padding: 8px 16px;
}

.gallery-overview-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 24px;
}

.gallery-overview-title {
  color: var(--green-dark);
  font-size: 1.38rem;
  font-weight: 950;
  line-height: 1.15;
}

.gallery-overview-meta {
  width: fit-content;
  margin-top: 8px;
  padding: 6px 11px;
  font-size: 0.86rem;
  font-weight: 850;
}

/*.beautiful-gallery {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));*/
/*  gap: 18px;*/
/*}*/

/*.beautiful-gallery-item {*/
/*  margin: 0;*/
/*}*/

/*.beautiful-gallery-button {*/
/*  width: 100%;*/
/*  display: block;*/
/*  padding: 0;*/
/*  overflow: hidden;*/
/*  border: 1px solid rgba(97, 86, 66, 0.12);*/
/*  border-radius: 24px;*/
/*  background: rgba(255, 255, 255, 0.82);*/
/*  box-shadow: 0 12px 30px rgba(62, 54, 41, 0.08);*/
/*  cursor: pointer;*/
/*}*/

/*.beautiful-gallery-button img {*/
/*  width: 100%;*/
/*  aspect-ratio: 4 / 3;*/
/*  object-fit: cover;*/
/*  transition: filter 180ms ease;*/
/*}*/

/*.beautiful-gallery-button:hover img {*/
/*  filter: brightness(1.04);*/
/*}*/

/*.beautiful-gallery-item figcaption {*/
/*  margin-top: 8px;*/
/*  padding: 0 8px;*/
/*  font-size: 0.94rem;*/
/*}*/

/* Lightbox */

body.has-lightbox {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  align-items: center;
  gap: 18px;
  padding: 34px;
  background: rgba(30, 28, 23, 0.86);
  backdrop-filter: blur(10px);
}

.gallery-lightbox-stage {
  position: relative;
  margin: 0;
  justify-self: center;
  max-width: min(1180px, 100%);
  max-height: calc(100vh - 80px);
  display: grid;
  gap: 10px;
}

.gallery-lightbox-stage img {
  max-width: 100%;
  max-height: calc(100vh - 150px);
  object-fit: contain;
  border: 8px solid rgba(255, 253, 248, 0.92);
  border-radius: 24px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.45);
  background: #fff;
}

.gallery-lightbox-stage figcaption {
  justify-self: center;
  max-width: min(780px, 100%);
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.94);
  color: var(--text);
  font-weight: 700;
  text-align: center;
}

.gallery-lightbox-counter {
  justify-self: center;
  padding: 8px 16px;
  border: 3px solid rgba(255, 253, 248, 0.88);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(117, 140, 84, 0.95), rgba(83, 104, 60, 0.95));
  color: #fffdf8;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  font-weight: 900;
}

.gallery-lightbox-close,
.gallery-lightbox-arrow {
  border: 4px solid rgba(255, 253, 248, 0.9);
  border-radius: 999px;
  cursor: pointer;
  color: #53683c;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24), inset 0 -4px 0 rgba(111, 83, 39, 0.12);
  display: grid;
  place-items: center;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.gallery-lightbox-arrow {
  width: 76px;
  height: 76px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.95), transparent 32px),
    linear-gradient(180deg, #f6dfaa 0%, #e8bd69 100%);
  font-size: 0;
  position: relative;
}

.gallery-lightbox-arrow::before {
  content: "";
  width: 22px;
  height: 22px;
  border-top: 6px solid currentColor;
  border-right: 6px solid currentColor;
  border-radius: 4px;
}

.gallery-lightbox-prev {
  justify-self: end;
}

.gallery-lightbox-next {
  justify-self: start;
}

.gallery-lightbox-prev::before {
  transform: rotate(-135deg);
  margin-left: 8px;
}

.gallery-lightbox-next::before {
  transform: rotate(45deg);
  margin-right: 8px;
}

.gallery-lightbox-arrow::after {
  content: "";
  position: absolute;
  right: -7px;
  top: -8px;
  width: 26px;
  height: 26px;
  background:
    radial-gradient(circle at 50% 50%, #fff7cc 0 5px, transparent 6px),
    radial-gradient(circle at 50% 0%, #f5d86e 0 7px, transparent 8px),
    radial-gradient(circle at 100% 50%, #f5d86e 0 7px, transparent 8px),
    radial-gradient(circle at 50% 100%, #f5d86e 0 7px, transparent 8px),
    radial-gradient(circle at 0% 50%, #f5d86e 0 7px, transparent 8px);
  opacity: 0.95;
  filter: drop-shadow(0 3px 4px rgba(0, 0, 0, 0.14));
  pointer-events: none;
}

.gallery-lightbox-arrow:hover,
.gallery-lightbox-close:hover {
  transform: scale(1.08);
}

.gallery-lightbox-arrow:active {
  transform: scale(0.98);
}

.gallery-lightbox-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

.gallery-lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 2;
  width: 58px;
  height: 58px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.95), transparent 26px),
    linear-gradient(180deg, #dce7ca 0%, #9fb879 100%);
  color: #3f4737;
  font-size: 0;
}

.gallery-lightbox-close::before,
.gallery-lightbox-close::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
}

.gallery-lightbox-close::before {
  transform: rotate(45deg);
}

.gallery-lightbox-close::after {
  transform: rotate(-45deg);
}

/* Contact / leadership */

.contact-top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 34px;
}

.contact-main-card,
.contact-side-card {
  padding: 28px;
}

.contact-main-card h2,
.contact-side-card h2,
.leadership-section h2 {
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--green-dark);
  letter-spacing: -0.04em;
}

.contact-info-list,
.leadership-section,
.leader-list,
.contact-side-list {
  display: grid;
}

.contact-info-list {
  gap: 20px;
}

.contact-info-item p {
  margin: 6px 0 0;
  line-height: 1.65;
}

.contact-main-card a,
.contact-side-card a,
.leader-list a {
  color: var(--green-dark);
  font-weight: 800;
}

.contact-side-list {
  margin: 18px 0 0;
  padding-left: 18px;
  gap: 8px;
  color: var(--muted);
}

.leadership-section {
  gap: 22px;
}

.section-intro {
  max-width: 760px;
}

.section-intro h2 {
  margin: 6px 0 10px;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.leader-card {
  display: grid;
  overflow: hidden;
  border-radius: 28px;
}

.leader-image {
  position: relative;
  overflow: hidden;
  background: #f4ead8;
}

.leader-image.leader-image-portrait {
  aspect-ratio: 4 / 3;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}

.leader-content {
  padding: 24px;
}

.leader-content h3,
.leader-content h2 {
  margin: 0 0 10px;
  color: var(--green-dark);
  letter-spacing: -0.04em;
}

.leader-content h3 {
  font-size: 1.8rem;
}

.leader-content h2 {
  font-size: 1.55rem;
}

.leader-list {
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

/* Footer */

.site-footer {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto 44px;
  overflow: hidden;
  background: rgba(239, 227, 203, 0.94);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 12px 28px rgba(62, 54, 41, 0.09);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  gap: 32px;
  padding: 34px 32px;
}

.site-footer h2 {
  margin: 0 0 10px;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.site-footer p,
.footer-links {
  font-size: 0.94rem;
  color: var(--muted);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li + li {
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 14px 32px;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Responsive */

@media (max-width: 1180px) {
  .header-card {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

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

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    order: 4;
    justify-self: stretch;
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav > ul {
    display: grid;
    justify-content: stretch;
    gap: 4px;
  }

  .nav-parent-link {
    width: 100%;
    text-align: left;
    padding: 10px 12px;
  }

  .submenu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
    min-width: 0;
    margin-top: 6px;
    padding: 10px;
    background: rgba(250, 245, 236, 0.95);
  }

  .submenu::before {
    display: none;
  }

  .has-children.is-open > .submenu {
    display: block;
  }

  .content-block .container,
  .block-heading .narrow {
    width: min(var(--content), calc(100% - 36px));
  }

  .text-image-card,
  .footer-grid,
  .contact-top-grid,
  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .quicklink-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    height: 360px;
  }

  .hero-content {
    padding: 38px 28px 70px;
  }

  .hero-content::before,
  .content-block + .content-block::before {
    width: min(820px, calc(100% - 32px));
    height: 78px;
  }

  .page-card::before {
    background:
      url('/assets/img/decor/floral-corner-left.png') top left / 200px auto no-repeat,
      url('/assets/img/decor/floral-corner-right.png') top right / 200px auto no-repeat;
  }

  .page-card::after {
    height: 120px;
    background-size: cover;
  }
}

@media (max-width: 900px) {
  .block-heading .narrow {
    padding-left: 75px;
    padding-right: 18px;
  }

  .gallery-lightbox {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .gallery-lightbox-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 62px;
    height: 62px;
    z-index: 2;
  }

  .gallery-lightbox-arrow::before {
    width: 18px;
    height: 18px;
    border-width: 5px;
  }

  .gallery-lightbox-arrow::after {
    width: 22px;
    height: 22px;
    right: -6px;
    top: -7px;
  }

  .gallery-lightbox-prev {
    left: 14px;
  }

  .gallery-lightbox-next {
    right: 14px;
  }
}

@media (max-width: 700px) {
  .gallery-overview-card {
    grid-template-columns: 1fr;
  }

  .gallery-overview-image {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .contact-main-card,
  .contact-side-card,
  .leader-content {
    padding: 20px;
  }

  .leader-content h3 {
    font-size: 1.55rem;
  }
}

@media (max-width: 640px) {
  .container,
  .page-shell,
  .site-footer {
    width: min(100% - 20px, var(--container));
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-title {
    font-size: 0.98rem;
  }

  .brand-subtitle {
    font-size: 0.88rem;
  }

  .brand-claim {
    font-size: 0.66rem;
    letter-spacing: 0.02em;
  }

  .page-card {
    border-radius: 24px;
  }

  .page-card::before {
    background:
      url('/assets/img/decor/floral-corner-left.png') top left / 140px auto no-repeat,
      url('/assets/img/decor/floral-corner-right.png') top right / 140px auto no-repeat;
  }

  .page-card::after {
    height: 90px;
    background-size: cover;
  }

  .block-heading .narrow {
    padding-left: 45px;
    padding-right: 14px;
  }

  .hero-visual {
    margin: 14px 14px 0;
    height: 240px;
    border-radius: 22px;
  }

  .hero-visual img {
    border-radius: 22px;
  }

  .hero-content {
    padding: 34px 22px 58px;
  }

  .hero-content h1,
  .block-heading h1 {
    font-size: 2.2rem;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .quicklink-grid {
    grid-template-columns: 1fr;
  }

  .content-block .container,
  .block-heading .narrow {
    width: calc(100% - 24px);
  }

  .hero-content::before,
  .content-block + .content-block::before {
    width: min(520px, calc(100% - 24px));
    height: 48px;
  }

  .notice {
    padding: 24px 20px 34px;
  }

  .table-card {
    overflow-x: auto;
  }

  .step-card {
    grid-template-columns: 1fr;
  }

  .step-number {
    width: 42px;
    height: 42px;
  }

  .gallery-overview-grid {
  /*.beautiful-gallery {*/
    grid-template-columns: 1fr;
  }

  .gallery-lightbox-stage img {
    max-height: calc(100vh - 180px);
    border-radius: 18px;
  }

  .gallery-lightbox-close {
    width: 46px;
    height: 46px;
  }

  .footer-grid {
    padding: 24px 20px;
  }

  .footer-bottom {
    padding: 14px 20px;
  }
}

/* Kindergarten-Seite */

.kindergarten-page .block-heading {
  padding-bottom: 28px;
}

.kindergarten-hero-image {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(97, 86, 66, 0.12);
  box-shadow: 0 16px 38px rgba(62, 54, 41, 0.10);
  background: #f4ead8;
}

.kindergarten-hero-image img {
  width: 100%;
  height: min(520px, 48vw);
  min-height: 320px;
  object-fit: cover;
  object-position: center center;
}

.kindergarten-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.kindergarten-feature-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(97, 86, 66, 0.12);
  box-shadow: 0 14px 34px rgba(62, 54, 41, 0.08);
}

.kindergarten-feature-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f4ead8;
}

.kindergarten-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kindergarten-feature-content {
  padding: 26px;
}

.kindergarten-feature-content h2 {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  letter-spacing: -0.04em;
}

.kindergarten-feature-content p {
  color: var(--muted);
}

.kindergarten-feature-content p:last-child {
  margin-bottom: 0;
}

.kindergarten-rooms-section {
  display: grid;
  gap: 24px;
}

.kindergarten-room-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 18px;
}

.kindergarten-room-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 260px;
  border-radius: 26px;
  border: 1px solid rgba(97, 86, 66, 0.12);
  background: #f4ead8;
  box-shadow: 0 12px 30px rgba(62, 54, 41, 0.08);
}

.kindergarten-room-card-large {
  grid-row: span 2;
  min-height: 540px;
}

.kindergarten-room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kindergarten-room-card figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.92);
  color: var(--green-dark);
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(62, 54, 41, 0.12);
}

.kindergarten-gallery-notice {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.kindergarten-gallery-notice .btn {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .kindergarten-feature-grid,
  .kindergarten-room-grid,
  .kindergarten-gallery-notice {
    grid-template-columns: 1fr;
  }

  .kindergarten-room-card,
  .kindergarten-room-card-large {
    min-height: 280px;
    grid-row: auto;
  }

  .kindergarten-gallery-notice .btn {
    width: fit-content;
  }
}

@media (max-width: 640px) {
  .kindergarten-hero-image img {
    height: 260px;
    min-height: 0;
  }

  .kindergarten-feature-content {
    padding: 22px;
  }

  .kindergarten-room-card,
  .kindergarten-room-card-large {
    min-height: 230px;
  }

  .kindergarten-gallery-notice .btn {
    width: 100%;
  }
}

/* Responsive picture output */

picture {
  display: contents;
}

.hero-visual picture,
.kindergarten-hero-image picture,
.kindergarten-feature-image picture,
.kindergarten-room-card picture,
.gallery-overview-image picture,
/*.beautiful-gallery-button picture,*/
.leader-image picture,
.text-image-card picture {
  display: contents;
}

/* Startseite: Naturkarte */

.home-nature-card {
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(97, 86, 66, 0.12);
  box-shadow: 0 14px 34px rgba(62, 54, 41, 0.08);
}

.home-nature-content {
  padding: 34px 38px 26px;
}

.home-nature-content h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
  color: var(--text);
}

.home-nature-content p {
  max-width: 68ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.home-nature-image {
  padding: 0 38px 38px;
}

.home-nature-image img {
  width: 100%;
  height: min(430px, 42vw);
  min-height: 280px;
  object-fit: cover;
  object-position: center center;
  border-radius: 24px;
  border: 1px solid rgba(97, 86, 66, 0.12);
  box-shadow: 0 12px 28px rgba(62, 54, 41, 0.08);
  background: #f3eee4;
}

@media (max-width: 700px) {
  .home-nature-content {
    padding: 24px 22px 18px;
  }

  .home-nature-image {
    padding: 0 22px 24px;
  }

  .home-nature-image img {
    height: 240px;
    min-height: 0;
    border-radius: 20px;
  }
}
/* Wissenswertes */

.info-entry-grid {
  display: grid;
  gap: 22px;
}

.info-entry-card {
  scroll-margin-top: 130px;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(97, 86, 66, 0.12);
  box-shadow: 0 14px 34px rgba(62, 54, 41, 0.08);
}

.info-entry-header {
  padding: 26px 28px 18px;
  border-bottom: 1px solid rgba(97, 86, 66, 0.10);
}

.info-entry-header h2 {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  letter-spacing: -0.04em;
}

.info-entry-header p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.info-entry-content {
  padding: 24px 28px 28px;
}

.info-entry-content > *:first-child {
  margin-top: 0;
}

.info-entry-content > *:last-child {
  margin-bottom: 0;
}

.info-entry-content ul,
.info-entry-content ol {
  padding-left: 1.35rem;
}

.info-entry-content li + li {
  margin-top: 0.35rem;
}

.info-entry-content table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
}

.info-entry-content th,
.info-entry-content td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(97, 86, 66, 0.12);
  text-align: left;
}

.info-entry-content th {
  background: rgba(220, 231, 202, 0.75);
  color: var(--green-dark);
}

.info-entry-content tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 640px) {
  .info-entry-header,
  .info-entry-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Termine: mehrere Text- und Tabellenabschnitte */

.termine-illustration {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 42px;
}

.termine-illustration img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.termine-sections {
  display: grid;
  gap: 30px;
}

.termine-section {
  padding: 30px 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(97, 86, 66, 0.12);
  box-shadow: 0 14px 34px rgba(62, 54, 41, 0.08);
}

.termine-section h2 {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  letter-spacing: -0.04em;
}

.termine-section-text {
  max-width: 76ch;
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.75;
  white-space: normal;
}

.termine-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(97, 86, 66, 0.12);
  border-radius: 18px;
}

.termine-table {
  width: 100%;
  border-collapse: collapse;
}

.termine-table th,
.termine-table td {
  padding: 14px 16px;
  border-right: 1px solid rgba(97, 86, 66, 0.11);
  border-bottom: 1px solid rgba(97, 86, 66, 0.11);
  text-align: left;
  vertical-align: top;
}

.termine-table th {
  background: rgba(220, 231, 202, 0.76);
  color: var(--green-dark);
  font-weight: 900;
}

.termine-table td {
  background: rgba(255, 255, 255, 0.64);
}

.termine-table tbody tr:nth-child(even) td {
  background: rgba(249, 245, 237, 0.62);
}

.termine-table th:last-child,
.termine-table td:last-child {
  border-right: 0;
}

.termine-table tbody tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 640px) {
  .termine-illustration {
    max-width: 320px;
    margin-bottom: 28px;
  }

  .termine-section {
    padding: 24px 20px;
  }

  .termine-table,
  .termine-table tbody,
  .termine-table tr,
  .termine-table td {
    display: block;
    width: 100%;
  }

  .termine-table thead {
    display: none;
  }

  .termine-table tr {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(97, 86, 66, 0.11);
  }

  .termine-table tr:last-child {
    border-bottom: 0;
  }

  .termine-table td {
    padding: 0;
    border: 0;
    background: transparent !important;
  }

  .termine-table td + td {
    margin-top: 6px;
    color: var(--muted);
  }
}

/* Räumlichkeiten */

.rooms-intro-card {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 54px;
  padding: 34px;
  border: 1px solid rgba(97, 86, 66, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(62, 54, 41, 0.08);
}

.rooms-intro-card h2 {
  margin: 0 0 16px;
  color: var(--green-dark);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.rooms-intro-card p {
  color: var(--muted);
}

.rooms-intro-card p:last-child {
  margin-bottom: 0;
}

.rooms-intro-facts {
  display: grid;
  gap: 12px;
}

.rooms-intro-facts > div {
  display: grid;
  gap: 3px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(220, 231, 202, 0.64);
  border: 1px solid rgba(97, 86, 66, 0.1);
}

.rooms-intro-facts strong {
  color: var(--green-dark);
  font-size: 1.4rem;
  font-weight: 950;
}

.rooms-intro-facts span {
  color: var(--muted);
  font-size: 0.92rem;
}

.rooms-gallery {
  display: grid;
  gap: 62px;
}

.rooms-gallery-section {
  display: grid;
  gap: 26px;
}

.room-polaroid-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 24px;
  align-items: start;
}

.room-polaroid {
  margin: 0;
  transition: transform 180ms ease;
}

.room-polaroid:nth-child(4n + 1) {
  transform: rotate(-1deg);
}

.room-polaroid:nth-child(4n + 2) {
  transform: rotate(0.7deg);
}

.room-polaroid:nth-child(4n + 3) {
  transform: rotate(-0.4deg);
}

.room-polaroid:nth-child(4n + 4) {
  transform: rotate(1deg);
}

.room-polaroid:hover {
  position: relative;
  z-index: 2;
  transform: translateY(-6px) rotate(0);
}

.room-polaroid-button {
  width: 100%;
  display: grid;
  padding: 12px 12px 0;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  box-shadow:
          0 16px 34px rgba(62, 54, 41, 0.14),
          0 2px 5px rgba(62, 54, 41, 0.08);
  cursor: pointer;
  text-align: left;
}

.room-polaroid-button:focus-visible {
  outline: 4px solid rgba(114, 137, 83, 0.34);
  outline-offset: 5px;
}

.room-polaroid-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  background: #eee8de;
}

.room-polaroid-image picture {
  display: contents;
}

.room-polaroid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
}

.room-polaroid-button:hover img {
  transform: none;
}

.room-polaroid-caption {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px 18px;
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.3;
  text-align: center;
}

@media (max-width: 980px) {
  .rooms-intro-card {
    grid-template-columns: 1fr;
  }

  .rooms-intro-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .room-polaroid-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .rooms-intro-card {
    padding: 24px 20px;
  }

  .rooms-intro-facts {
    grid-template-columns: 1fr;
  }

  .room-polaroid-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .room-polaroid,
  .room-polaroid:nth-child(n) {
    transform: none;
  }

  .room-polaroid-caption {
    min-height: 60px;
  }
}

/* Dynamische Galerien im Polaroid-Stil */

.beautiful-gallery-polaroids {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 26px;
  align-items: start;
}

.gallery-polaroid {
  margin: 0;
  transform-origin: center;
  transition:
          transform 180ms ease,
          filter 180ms ease;
}

.gallery-polaroid:nth-child(6n + 1) {
  transform: rotate(-1deg);
}

.gallery-polaroid:nth-child(6n + 2) {
  transform: rotate(0.7deg);
}

.gallery-polaroid:nth-child(6n + 3) {
  transform: rotate(-0.4deg);
}

.gallery-polaroid:nth-child(6n + 4) {
  transform: rotate(0.9deg);
}

.gallery-polaroid:nth-child(6n + 5) {
  transform: rotate(-0.7deg);
}

.gallery-polaroid:nth-child(6n + 6) {
  transform: rotate(0.35deg);
}

.gallery-polaroid:hover {
  position: relative;
  z-index: 3;
  transform: translateY(-7px) rotate(0);
  filter: drop-shadow(
          0 18px 24px rgba(62, 54, 41, 0.08)
  );
}

.gallery-polaroid-button {
  width: 100%;
  display: grid;
  padding: 12px 12px 0;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  box-shadow:
          0 16px 34px rgba(62, 54, 41, 0.14),
          0 2px 5px rgba(62, 54, 41, 0.08);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.gallery-polaroid-button:focus-visible {
  outline: 4px solid rgba(114, 137, 83, 0.36);
  outline-offset: 5px;
}

.gallery-polaroid-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  background: #eee8de;
}

.gallery-polaroid-image picture {
  display: contents;
}

.gallery-polaroid-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: none;
}

.gallery-polaroid-button:hover img {
  transform: none;
}

.gallery-polaroid-caption {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 12px 17px;
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.3;
  text-align: center;
}

.gallery-polaroid-caption.is-empty {
  min-height: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Die weiße Fläche bekommt eine sehr leichte Papierkante,
   aber ausdrücklich keinen Papier-Hintergrund oder Flecken. */

.gallery-polaroid-button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(80, 70, 54, 0.045);
  pointer-events: none;
}

.gallery-polaroid-button {
  position: relative;
}

@media (max-width: 980px) {
  .beautiful-gallery-polaroids {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .beautiful-gallery-polaroids {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .gallery-polaroid,
  .gallery-polaroid:nth-child(n) {
    transform: none;
  }

  .gallery-polaroid:hover {
    transform: translateY(-3px);
  }

  .gallery-polaroid-caption {
    min-height: 60px;
  }

  .gallery-polaroid-caption.is-empty {
    min-height: 40px;
  }
}

/* Footer All-In GmbH */

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

.allin-credit {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 160ms ease;
}

.allin-credit:hover {
    opacity: 0.75;
}

.allin-credit-prefix {
    font-size: 0.78rem;
    color: var(--muted);
}

.allin-logo-text {
    font-weight: 900;
    letter-spacing: -0.03em;
}

.allin-at {
    color: #d72828;
    font-size: 1.15em;
    font-weight: 950;
}

@media (max-width: 650px) {
    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}