:root {
  --bg: #f2eee8;
  --surface: #f9f5f0;
  --surface-2: #efe8de;
  --ink: #2b2623;
  --muted: #5d5751;
  --accent: #705f74;
  --accent-2: #3a2d28;
  --accent-action: #aa547f;
  --accent-action-strong: #8f4168;
  --accent-action-soft: #f4e3ec;
  --signal: #0f8a7a;
  --signal-strong: #0a6c60;
  --signal-soft: #def4ef;
  --warm: #c87a33;
  --line: #d8cec3;
  --success: #2f7a5b;
  --warning: #9a6b2b;
  --hero-overlay: rgba(20, 15, 20, 0.38);
  --focus-ring: #1d6ef2;
  --radius: 16px;
  --shadow: 0 12px 36px rgba(26, 18, 26, 0.12);
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", "Avenir Next", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", "Avenir Next", sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  top: 0.3rem;
  left: 0.5rem;
  transform: translateY(-160%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 700;
  padding: 0.55rem 0.8rem;
  text-decoration: none;
  z-index: 200;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--max), calc(100% - 3rem));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(70, 56, 68, 0.35);
  backdrop-filter: none;
  background: #bda7ba;
}

.site-header--light {
  background: #bda7ba;
  border-bottom: 1px solid rgba(70, 56, 68, 0.35);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header--slim .nav-wrap {
  min-height: 62px;
}

.site-header--slim .brand {
  font-size: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Poppins", "Avenir Next", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  font-size: 0.95rem;
}

.brand-logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid rgba(58, 45, 40, 0.22);
  background: rgba(255, 255, 255, 0.45);
  padding: 2px;
}

.brand-text {
  color: inherit;
}

.site-header:not(.site-header--light) .brand,
.site-header:not(.site-header--light) .nav-list > li > a,
.site-header:not(.site-header--light) .nav-list > li > button,
.site-header:not(.site-header--light) .menu-toggle {
  color: #2f2730;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
  font-size: 0.92rem;
}

.nav-list .nav-cta {
  margin-left: auto;
}

.nav-list a,
.nav-list button {
  border: 0;
  background: transparent;
  font: inherit;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  padding: 0.2rem 0;
}

.nav-list .nav-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-action);
  border: 1px solid rgba(125, 52, 90, 0.5);
  color: #fff;
  font-weight: 700;
}

.nav-list .nav-cta-link:hover,
.nav-list .nav-cta-link:focus-visible {
  color: #fff;
  background: var(--accent-action-strong);
}

.site-header:not(.site-header--light) .nav-list .nav-cta-link {
  color: #fff;
}

.nav-list > li > a[aria-current="page"],
.nav-list > li > a:hover,
.nav-list > li > button:hover {
  color: var(--accent-action);
}

.site-header:not(.site-header--light) .nav-list > li > a[aria-current="page"],
.site-header:not(.site-header--light) .nav-list > li > a:hover,
.site-header:not(.site-header--light) .nav-list > li > button:hover {
  color: #4a3650;
}

.has-dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: "▾";
  margin-left: 0.4rem;
  font-size: 0.7rem;
  transition: transform 180ms ease;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
}

.has-dropdown.open > .dropdown-toggle::after {
  transform: rotate(180deg);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  padding: 0.45rem;
  margin: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow);
  z-index: 90;
  opacity: 0;
  transform: translateY(6px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.submenu li a {
  display: block;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  color: #3a303b;
}

.site-header:not(.site-header--light) .submenu li a {
  color: #3a303b;
}

.submenu li a:hover {
  background: var(--surface);
  color: var(--signal-strong);
}

.submenu li a:focus-visible {
  color: var(--signal-strong);
}

.has-dropdown:hover .submenu,
.has-dropdown.open .submenu,
.has-dropdown:focus-within .submenu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.menu-toggle {
  display: none;
  border: 1px solid currentColor;
  background: transparent;
  border-radius: 8px;
  padding: 0.3rem 0.55rem;
  font-size: 0.85rem;
}

main {
  min-height: 70vh;
}

.hero {
  position: relative;
  min-height: 95vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background-image: url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=980&q=68");
  background-image: image-set(
    url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=980&q=68") 1x,
    url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1560&q=72") 2x
  );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #6d5648;
}

@media (min-width: 920px) {
  .hero {
    background-image: url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1600&q=72");
    background-image: image-set(
      url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1600&q=72") 1x,
      url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=2200&q=76") 2x
    );
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  width: min(840px, calc(100% - 2rem));
  padding-top: 2.6rem;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  margin-bottom: 1.1rem;
  opacity: 1;
  background: rgba(15, 138, 122, 0.2);
  border: 1px solid rgba(154, 241, 228, 0.35);
  color: #dffdf7;
  padding: 0.36rem 0.62rem;
  border-radius: 999px;
}

.hero h1,
.page-title {
  font-family: "Poppins", "Avenir Next", sans-serif;
  margin: 0;
  font-size: clamp(2.05rem, 3.8vw, 4.25rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero h1 {
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.hero .subline {
  margin: 1.1rem auto 1.25rem;
  font-size: clamp(1.05rem, 2.2vw, 1.8rem);
  max-width: 800px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.3;
}

.hero p {
  margin: 0 auto;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-guide {
  margin-top: 1.05rem;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent-action);
  color: #ffffff;
  border-color: rgba(125, 52, 90, 0.55);
  box-shadow: 0 10px 20px rgba(125, 52, 90, 0.28);
}

.btn-primary:hover {
  background: var(--accent-action-strong);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-ghost {
  background: #ffffff;
  color: var(--accent-action-strong);
  border-color: rgba(170, 84, 127, 0.46);
}

.btn-ghost:hover {
  background: var(--accent-action-soft);
}

.sticky-note {
  position: absolute;
  z-index: 1;
  min-width: clamp(132px, 13vw, 190px);
  min-height: clamp(94px, 10vw, 136px);
  padding: clamp(0.68rem, 0.8vw, 1rem);
  border-radius: 8px;
  box-shadow: 0 14px 24px rgba(18, 12, 18, 0.18);
  transform: rotate(var(--r));
  color: #2d2b2d;
  font-family: "Poppins", "Avenir Next", sans-serif;
  font-size: clamp(0.78rem, 0.95vw, 1rem);
  pointer-events: none;
}

.note-green {
  background: #bbd88e;
}

.note-blue {
  background: #86bed8;
}

.note-pink {
  background: #e1b5c7;
}

.note-1 { top: clamp(84px, 16vh, 158px); left: clamp(12px, 5vw, 82px); --r: -8deg; }
.note-2 { top: clamp(102px, 19vh, 194px); right: clamp(10px, 8vw, 156px); --r: 6deg; }
.note-3 { top: clamp(56%, 60%, 66%); left: clamp(18px, 9vw, 150px); --r: -7deg; }
.note-4 { bottom: clamp(20px, 8vh, 84px); right: clamp(14px, 8vw, 138px); --r: 9deg; }

.section {
  padding: 4.6rem 0;
}

.section-tight {
  padding-top: 3.2rem;
}

.section-soft-tight {
  padding-top: 2.5rem;
}

.section-soft {
  background: var(--surface-2);
}

.section-title {
  margin: 0 0 1rem;
  font-family: "Poppins", "Avenir Next", sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--accent);
}

.section-lead {
  margin: 0 0 2rem;
  color: var(--muted);
  max-width: 720px;
}

.section-links {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-links a {
  color: var(--accent);
}

.section-links--meta {
  margin-top: 1.1rem;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.68rem 0.75rem;
  background: linear-gradient(180deg, #fff 0%, var(--surface) 100%);
}

.section-links--meta-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 700;
  margin-right: 0.2rem;
}

.section-links--meta a {
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.24rem 0.56rem;
}

.section-links--meta a:hover,
.section-links--meta a:focus-visible {
  border-color: rgba(170, 84, 127, 0.48);
  background: var(--accent-action-soft);
  color: var(--accent-action-strong);
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #f8f6f2;
}

.offer-col-title {
  border-right: 1px solid var(--line);
  padding: 2rem;
  font-size: 1.6rem;
  font-family: "Poppins", "Avenir Next", sans-serif;
}

.offer-list {
  margin: 0;
  padding: 1rem 1.6rem;
  list-style: none;
}

.offer-list li {
  border-bottom: 1px solid var(--line);
}

.offer-list li:last-child {
  border-bottom: 0;
}

.offer-list button {
  width: 100%;
  text-align: left;
  border: 0;
  font: inherit;
  background: transparent;
  padding: 1rem 0;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
}

.offer-inline-link {
  display: inline-flex;
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: underline;
}

.offer-list button::after {
  content: "+";
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
}

.offer-list button[aria-expanded="true"]::after {
  content: "−";
}

.offer-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
  color: var(--muted);
  padding-right: 2.5rem;
}

.offer-detail p {
  margin: 0 0 0.42rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-grid .card--quote {
  background: linear-gradient(180deg, #fff 0%, #f6edf2 100%);
  border-left: 4px solid var(--accent-action);
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: linear-gradient(180deg, #ffffff 0%, var(--surface) 100%);
  box-shadow: 0 8px 22px rgba(38, 24, 15, 0.06);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-family: "Poppins", "Avenir Next", sans-serif;
  font-size: 1.1rem;
  color: var(--accent);
}

.card a:not(.btn) {
  color: var(--accent);
  font-weight: 700;
}

.context-grid .card {
  border-left: 4px solid var(--signal);
}

.card-grid-programs .card {
  border-top: 4px solid var(--signal);
}

.card-grid-programs .card:nth-child(2) {
  border-top-color: var(--warm);
}

.card-grid-programs .card:nth-child(3) {
  border-top-color: #486f9e;
}

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

.team-card {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #f4f0ea;
}

body[data-page="stimmen"] .card {
  position: relative;
  padding-top: 1.7rem;
}

body[data-page="stimmen"] .card::before {
  content: "“";
  position: absolute;
  top: 0.3rem;
  left: 1rem;
  color: var(--signal);
  font-size: 2.25rem;
  line-height: 1;
  opacity: 0.7;
}

.program-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.program-actions .btn {
  min-width: 138px;
}

.offer-page-layout {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.9fr);
  align-items: start;
}

.container-narrow-lg.offer-page-layout {
  max-width: 1120px;
}

.offer-page-layout > .offer-page-main {
  margin: 0;
}

.offer-page-side {
  position: sticky;
  top: 92px;
}

.offer-page-side h3 {
  margin-top: 0;
}

.offer-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.offer-facts li {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  background: #fff;
  color: var(--muted);
}

.offer-facts strong {
  color: var(--accent);
}

.offer-side-actions {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.55rem;
}

.page-hero {
  padding: 7.6rem 0 2.6rem;
}

.page-hero p {
  margin: 0.8rem 0 0;
  max-width: 760px;
  color: var(--muted);
}

.page-hero .page-title {
  color: var(--accent);
}

.column-layout {
  width: min(640px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.2rem 0 4rem;
}

.column-layout h2 {
  margin: 0 0 1.6rem;
  font-family: "Poppins", "Avenir Next", sans-serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
  color: var(--accent-2);
}

.column-layout h3 {
  margin: 1.6rem 0 0.25rem;
  font-size: 1.05rem;
}

.column-layout p {
  margin: 0;
  color: #4f4650;
}

.container-narrow-lg {
  max-width: 850px;
}

.container-narrow-md {
  max-width: 760px;
}

.container-narrow-sm {
  max-width: 600px;
}

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

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  font: inherit;
  text-align: left;
  padding: 1.05rem 0;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-q::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
}

.faq-q[aria-expanded="true"]::after {
  content: "−";
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
  color: var(--muted);
}

.faq-a p {
  margin: 0 0 1rem;
}

.form {
  display: grid;
  gap: 0.95rem;
}

label {
  font-weight: 700;
  font-size: 0.93rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.72rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea {
  resize: vertical;
}

.grid-2 {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.status-pill.success {
  background: #e7f5ef;
  color: #216047;
}

.status-pill.pending {
  background: #fdf4e8;
  color: #8a5d23;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #e9e3db;
  padding: 3rem 0 2.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
  align-items: start;
  gap: 1.2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
}

.footer-title {
  margin: 0;
  font-family: "Poppins", "Avenir Next", sans-serif;
  font-weight: 800;
  color: var(--accent-2);
}

.footer-text {
  margin: 0;
  color: #4a433f;
  line-height: 1.45;
}

.footer-col.center {
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Poppins", "Avenir Next", sans-serif;
  font-weight: 700;
}

.footer-brand {
  display: inline-block;
  line-height: 0;
}

.footer-brand img {
  width: min(190px, 78vw);
  height: auto;
}

.footer-col.right {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

.footer-col a {
  color: #3f3734;
  text-decoration: underline;
}

.badge-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.badge {
  font-size: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  background: #fff;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.1rem;
}

.price-note {
  margin: 0.5rem 0 0.2rem;
  color: var(--accent-action-strong);
  font-weight: 700;
  font-size: 0.92rem;
}

.audience-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border: 1px solid transparent;
}

.audience-tag--private {
  background: #edf4ff;
  border-color: #c6daf9;
  color: #244063;
}

.audience-tag--company {
  background: #ebf8f4;
  border-color: #bfe8da;
  color: #175042;
}

.audience-tag--both {
  background: #f8f0f8;
  border-color: #e8d5e8;
  color: #5f3a5f;
}

.map-frame {
  height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.calendar-cta {
  margin-top: 1rem;
}

.muted {
  color: var(--muted);
}

.context-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.context-note {
  margin: 1rem 0 0;
  border-left: 4px solid var(--signal);
  border-radius: 10px;
  background: #f7f4ef;
  padding: 0.9rem 1rem;
  color: var(--muted);
}

.price-value,
[data-total-price] {
  color: var(--accent-action);
  font-weight: 800;
}

.section-divider-top {
  position: relative;
}

.section-divider-top::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 138, 122, 0.45), transparent);
}

.booking-shell {
  display: grid;
  gap: 1rem;
}

.booking-actions {
  display: grid;
  gap: 0.7rem;
}

.booking-secondary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.company-fields {
  margin-top: 0.8rem;
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 1rem;
  background: #fbfafb;
}

.info-list {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.info-list li {
  margin-bottom: 0.35rem;
}

.booking-confirmation {
  margin-top: 0.8rem;
  border: 1px solid #bfe8da;
  border-left: 4px solid var(--signal);
  border-radius: 12px;
  background: #eefaf6;
  padding: 0.9rem 1rem;
}

.booking-confirmation h4 {
  margin: 0 0 0.35rem;
  color: #1d5f51;
}

.booking-confirmation p {
  margin: 0;
  color: #285e52;
}

.legal-stack {
  display: grid;
  gap: 1rem;
}

.legal-copy h1,
.legal-copy h2,
.legal-copy h3 {
  margin: 0 0 0.65rem;
}

.legal-copy p {
  margin: 0 0 0.8rem;
  color: var(--muted);
}

.legal-copy ol,
.legal-copy ul {
  margin: 0 0 0.9rem 1.15rem;
  color: var(--muted);
}

.dynamic-faq-card details {
  border-top: 1px solid var(--line);
  padding-top: 0.55rem;
  margin-top: 0.55rem;
}

.dynamic-faq-card summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
}

.dynamic-faq-card details p {
  margin: 0.55rem 0 0;
}

.legal-frame {
  width: 100%;
  min-height: 900px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.booking-flow-head {
  margin-bottom: 1.1rem;
}

.booking-steps {
  list-style: none;
  margin: 0.8rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.booking-step {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0.55rem 0.6rem;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.booking-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.76rem;
  background: #fff;
  color: var(--muted);
}

.booking-step.is-active {
  border-color: rgba(170, 84, 127, 0.55);
  background: var(--accent-action-soft);
  color: var(--accent-action-strong);
}

.booking-step.is-active span {
  border-color: var(--accent-action);
  color: #fff;
  background: var(--accent-action);
}

.booking-step.is-done {
  border-color: #9bcfbe;
  color: #1e6153;
  background: #edf9f5;
}

.booking-step.is-done span {
  border-color: #4f9f86;
  background: #4f9f86;
  color: #fff;
}

.fullcalendar-shell {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 0.65rem;
}

.calendar-legend {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.calendar-legend .badge {
  font-size: 0.78rem;
}

.badge-presence {
  background: #e6f5f1;
  border-color: #9fdccf;
  color: #1b5f53;
}

.badge-online {
  background: #f6e8ef;
  border-color: #dbb2c8;
  color: #7b3659;
}

.badge-team {
  background: #f9eee2;
  border-color: #e8c29b;
  color: #8f531c;
}

.badge-waitlist {
  background: #f3f0ec;
  border-color: #d1c8bf;
  color: #635a53;
}

.fc .fc-event {
  border-width: 1px;
  border-radius: 8px;
  padding: 0.1rem 0.2rem;
}

.fc-event-inner {
  display: grid;
  gap: 0.14rem;
}

.fc-event-title-custom {
  font-weight: 700;
  line-height: 1.2;
}

.fc-event-status-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 0.08rem 0.42rem;
  font-size: 0.64rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
}

.fc-event-status-badge.event-status-open {
  background: rgba(236, 250, 244, 0.28);
}

.fc-event-status-badge.event-status-limited {
  background: rgba(255, 244, 227, 0.28);
}

.fc-event-status-badge.event-status-waitlist {
  background: rgba(243, 240, 236, 0.46);
}

.fc-event-status-badge.event-status-soldout {
  background: rgba(224, 220, 216, 0.58);
}

.fc .fc-event.event-cat-praesenz {
  background: #0f8a7a;
  border-color: #0a6c60;
}

.fc .fc-event.event-cat-online {
  background: #aa547f;
  border-color: #8f4168;
}

.fc .fc-event.event-cat-team {
  background: #c87a33;
  border-color: #9a5f28;
}

.fc .fc-event.event-status-limited {
  box-shadow: inset 0 0 0 1px rgba(255, 213, 130, 0.5);
}

.fc .fc-event.event-status-waitlist {
  opacity: 0.88;
  filter: saturate(0.75);
}

.fc .fc-event.event-status-soldout {
  background: #8c867f;
  border-color: #77726c;
  opacity: 0.7;
}

.upcoming-list {
  display: grid;
  gap: 0.8rem;
}

.upcoming-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  background: #fff;
}

.upcoming-item h4 {
  margin: 0 0 0.25rem;
  color: var(--accent);
}

.upcoming-item p {
  margin: 0 0 0.25rem;
  color: var(--muted);
}

.upcoming-item a {
  font-weight: 700;
  color: var(--accent-action-strong);
}

.upcoming-item.event-cat-praesenz {
  border-left: 4px solid var(--signal);
}

.upcoming-item.event-cat-online {
  border-left: 4px solid var(--accent-action);
}

.upcoming-item.event-cat-team {
  border-left: 4px solid var(--warm);
}

.calendar-event-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
}

.calendar-event-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 16, 22, 0.58);
}

.calendar-event-modal__card {
  position: relative;
  z-index: 2;
  width: min(560px, calc(100% - 1.4rem));
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.calendar-event-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  width: 2rem;
  height: 2rem;
  font-size: 1.1rem;
  cursor: pointer;
}

.calendar-event-modal__meta {
  margin: 0 0 0.35rem;
  color: var(--muted);
}

.calendar-event-modal__text {
  margin: 0.4rem 0 0.6rem;
}

.calendar-event-modal__actions {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

body.modal-open {
  overflow: hidden;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 140;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 0.9rem;
  display: grid;
  gap: 0.65rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 14, 18, 0.6);
}

.cookie-modal__card {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 1.4rem));
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 1rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.7rem;
}

.cookie-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 2rem;
  height: 2rem;
  background: #fff;
  cursor: pointer;
}

.cookie-row {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #faf8fb;
  padding: 0.65rem 0.75rem;
}

.cookie-row label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.2rem;
}

.cookie-row p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-row input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
}

.cookie-status {
  margin-top: 0.6rem;
  color: var(--muted);
}

.admin-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.7rem;
}

.admin-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  background: #fff;
}

.admin-item h4 {
  margin: 0 0 0.2rem;
  font-size: 0.96rem;
  color: var(--accent);
}

.admin-item p {
  margin: 0 0 0.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.45rem;
}

.admin-actions-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.7rem;
}

.admin-note {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.fc .fc-toolbar-title {
  font-family: "Poppins", "Avenir Next", sans-serif;
  font-size: 1.1rem;
  color: var(--accent);
}

.fc .fc-button-primary {
  background: var(--accent-action);
  border-color: var(--accent-action);
}

.fc .fc-button-primary:hover,
.fc .fc-button-primary:focus {
  background: var(--accent-action-strong);
  border-color: var(--accent-action-strong);
}

.fc .fc-daygrid-day.fc-day-today {
  background: rgba(170, 84, 127, 0.08);
}

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

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

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

  .offer-col-title {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .offer-page-layout {
    grid-template-columns: 1fr;
  }

  .offer-page-side {
    position: static;
    top: auto;
  }

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

@media (max-width: 840px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 74px;
    right: 1rem;
    width: min(340px, calc(100% - 2rem));
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 140ms ease, transform 140ms ease;
    padding: 0.6rem;
  }

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

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-list .nav-cta {
    margin-left: 0;
    margin-top: 0.35rem;
  }

  .nav-list a,
  .nav-list button {
    display: block;
    width: 100%;
    padding: 0.6rem 0.5rem;
    border-radius: 8px;
    color: #3a303b;
  }

  .nav-list .nav-cta-link {
    width: 100%;
    min-height: 40px;
    color: #fff;
    background: var(--accent-action);
    border-color: rgba(125, 52, 90, 0.5);
  }

  .has-dropdown > .dropdown-toggle {
    border: 1px solid var(--line);
    background: var(--surface);
    margin: 0.18rem 0;
  }

  .submenu {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 0.5rem;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 160ms ease, opacity 120ms ease;
  }

  .submenu li a {
    margin: 0.2rem 0 0.2rem 0.35rem;
    padding-left: 0.75rem;
    border-left: 2px solid rgba(170, 84, 127, 0.36);
    background: #faf7fb;
  }

  .has-dropdown.open .submenu,
  .has-dropdown:focus-within .submenu {
    opacity: 1;
    transform: none;
    visibility: visible;
    max-height: 420px;
    pointer-events: auto;
  }

  .hero {
    min-height: 88vh;
  }

  .note-1,
  .note-2,
  .note-3,
  .note-4 {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col,
  .footer-col.right {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .grid-2,
  .card-grid,
  .booking-steps {
    grid-template-columns: 1fr;
  }

  .section-links--meta-label {
    width: 100%;
    margin-bottom: 0.1rem;
  }

  .container {
    width: min(var(--max), calc(100% - 1.5rem));
  }
}

@media (max-width: 1100px) {
  .sticky-note {
    opacity: 0.88;
  }

  .note-3 {
    display: none;
  }
}
