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

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/cormorant-garamond-italic-latin.woff2") format("woff2");
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Great Vibes";
  src: url("/assets/fonts/great-vibes-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #f7f1e8;
  --linen: #fffaf3;
  --cacao: #4a3830;
  --terra: #a8795c;
  --rose: #d8a4a0;
  --brass: #c7a46a;
  /* Akzentfamilie: --header-accent trägt Text und Flächen, --accent-mid
     dekorative Punkte und Linien, --accent-mist sehr helle Hintergründe. */
  --header-accent: #7a4356;
  --accent-mid: #a5687f;
  --accent-mist: #f4eaef;
  --hero-accent: #f6d89a;
  --ink: #302a25;
  --muted: #6f665d;
  --soft-line: rgba(74, 56, 48, 0.16);
  --white-line: rgba(255, 250, 243, 0.36);
  --shadow: 0 18px 44px rgba(74, 56, 48, 0.12);
  --font-serif: Georgia, "Times New Roman", serif;
  --font-sans: Inter, "Segoe UI", Arial, sans-serif;
  --font-brand: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-script: "Great Vibes", "Snell Roundhand", cursive;
}

* {
  box-sizing: border-box;
}

/* Muss stärker sein als die display-Regeln weiter unten, sonst bleiben mit
   [hidden] versteckte Elemente (Wizard-Schritte, Buttons, Detailfelder) sichtbar. */
[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 104px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

h1,
h2,
h3,
p {
  margin: 0;
}

ul,
ol,
dl {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 250, 243, 0.42);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.58);
  box-shadow: 0 14px 34px rgba(64, 48, 39, 0.1);
  backdrop-filter: blur(22px) saturate(1.08);
  transform: translateX(-50%);
}

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

.brand__mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 4px;
  border-radius: 50%;
  background: rgba(255, 250, 243, 0.78);
  box-shadow:
    inset 0 0 0 1px rgba(199, 164, 106, 0.28),
    0 8px 18px rgba(74, 56, 48, 0.08);
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--cacao);
  font-family: var(--font-brand);
  font-size: 1rem;
  line-height: 1.1;
}

.brand-script {
  font-family: var(--font-script);
  font-size: 1.32em;
  font-weight: 400;
  line-height: 1;
  color: var(--header-accent);
}

.hero h1 .brand-script {
  font-size: 1.06em;
  color: var(--hero-accent);
  text-shadow: 0 2px 18px rgba(48, 42, 37, 0.34);
}

.site-footer .brand-script {
  color: var(--brass);
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.2;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--cacao);
  font-size: 0.9rem;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--header-accent);
  color: var(--header-accent);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.button--primary {
  color: var(--linen);
  background: var(--terra);
  box-shadow: 0 12px 28px rgba(168, 121, 92, 0.26);
}

.button--secondary {
  color: var(--linen);
  background: var(--header-accent);
  box-shadow: 0 12px 28px rgba(122, 67, 86, 0.2);
}

.button--light {
  color: var(--cacao);
  background: rgba(255, 250, 243, 0.88);
  box-shadow: inset 0 0 0 1px rgba(74, 56, 48, 0.18);
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-mist);
  cursor: pointer;
}

.menu-toggle__line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--cacao);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--cacao);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center center;
  transform: translate(2%, 7%) scale(1.12);
  transform-origin: center center;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(48, 42, 37, 0.86), rgba(48, 42, 37, 0.58) 39%, rgba(48, 42, 37, 0.14) 76%),
    linear-gradient(0deg, rgba(48, 42, 37, 0.68), rgba(48, 42, 37, 0.18) 46%, rgba(48, 42, 37, 0.08));
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 178px 0 92px;
  color: var(--linen);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--hero-accent);
  text-shadow: 0 1px 12px rgba(48, 42, 37, 0.32);
}

.eyebrow--dark {
  color: var(--header-accent);
}

.hero h1,
.section-heading h2,
.welcome h2,
.course-copy h2,
.detail-copy h2,
.klang-hero__copy h1,
.klang-hero__copy h2,
.klang-process h2,
.about-copy h2,
.quote-inner h2,
.signup-grid h2,
.contact-grid h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 760px;
  font-size: 5.8rem;
}

.hero__claim {
  max-width: 760px;
  margin-top: 18px;
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1.2;
}

.hero__intro {
  max-width: 650px;
  margin-top: 18px;
  color: rgba(255, 250, 243, 0.88);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.section-band,
.course-band,
.quote-band,
.contact-band {
  padding: 92px 0;
}

.section-band {
  background: var(--linen);
}

.section-band--soft {
  background: var(--cream);
}

.section-band--sound {
  background:
    radial-gradient(circle at 18% 18%, rgba(215, 174, 91, 0.24), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(168, 121, 92, 0.12), transparent 30%),
    linear-gradient(180deg, #fbf2e4 0%, #f1dfc2 100%);
}

.section-band--sound .eyebrow--dark {
  color: #8f6b2d;
}

.section-band--sound .detail-copy h2 {
  color: #4d382b;
}

.section-band--sound .detail-copy p {
  color: #766654;
}

.section-band--sound .button--secondary {
  background: #9f7341;
  box-shadow: 0 14px 30px rgba(159, 115, 65, 0.22);
}

.section-band--sound .button--secondary:hover,
.section-band--sound .button--secondary:focus-visible {
  background: #8f6233;
}

.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.welcome__grid,
.section-heading--split,
.course-grid,
.detail-grid,
.about-grid,
.signup-grid,
.contact-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: start;
}

.welcome h2,
.section-heading h2,
.course-copy h2,
.detail-copy h2,
.about-copy h2,
.signup-grid h2,
.contact-grid h2 {
  color: var(--cacao);
  font-size: 3.2rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading--split {
  max-width: none;
  align-items: end;
}

.section-heading--split > p,
.welcome__copy p,
.detail-copy p,
.about-copy p,
.quote-inner p,
.signup-note,
.contact-grid p,
.site-footer p,
.faq-list p {
  color: var(--muted);
}

.welcome__copy {
  display: grid;
  gap: 18px;
}

.fit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.58fr);
  gap: 34px;
  align-items: start;
}

.fit-copy {
  display: grid;
  gap: 24px;
}

.fit-copy .section-heading {
  margin-bottom: 0;
}

.fit-copy .section-heading h2 {
  max-width: 10ch;
}

.fit-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(74, 56, 48, 0.14);
  border-radius: 8px;
  background: var(--linen);
  box-shadow: 0 18px 42px rgba(74, 56, 48, 0.12);
  align-self: stretch;
}

.fit-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0) 58%, rgba(48, 42, 37, 0.16)),
    linear-gradient(90deg, rgba(255, 250, 243, 0.12), rgba(255, 250, 243, 0));
}

.fit-photo img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 38%;
}

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

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

.fit-item,
.offer-card,
.list-panel,
.signup-form,
.faq-list details {
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.78);
}

.fit-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  min-height: 86px;
  padding: 18px 22px;
}

.fit-item span {
  position: relative;
  width: 34px;
  height: 34px;
  margin-top: 1px;
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 250, 243, 0.82), rgba(216, 164, 160, 0.2)),
    rgba(216, 164, 160, 0.16);
  box-shadow:
    inset 0 0 0 1px rgba(216, 164, 160, 0.28),
    0 7px 18px rgba(168, 121, 92, 0.12);
}

.fit-item span::before {
  content: "";
  position: absolute;
  inset: 7px;
  background: var(--rose);
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3.2c2.25 2.28 3.42 4.42 3.42 6.45 0 1.02-.31 1.94-.93 2.76 1.83-1.15 3.78-1.77 5.84-1.87-.09 3.08-1.02 5.46-2.78 7.13-1.47 1.4-3.36 2.05-5.65 1.96-2.29.09-4.18-.56-5.65-1.96-1.76-1.67-2.69-4.05-2.78-7.13 2.06.1 4.01.72 5.84 1.87-.62-.82-.93-1.74-.93-2.76 0-2.03 1.17-4.17 3.42-6.45Zm0 4.04c-.92 1.2-1.38 2.24-1.38 3.13 0 1.25.62 2.18 1.38 3.02.76-.84 1.38-1.77 1.38-3.02 0-.89-.46-1.93-1.38-3.13Zm-6.18 6.07c.35 1.55.98 2.78 1.89 3.68.96.94 2.15 1.43 3.57 1.48-.75-1.34-1.78-2.46-3.09-3.36-.86-.59-1.92-.96-3.17-1.12Zm12.36 0-1 .18c-1.25.25-2.31.62-3.17 1.21-1.31.9-2.34 2.02-3.09 3.36 1.42-.05 2.61-.54 3.57-1.48.91-.9 1.54-2.13 1.89-3.68Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.fit-item span::after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: rgba(255, 250, 243, 0.72);
  transform: translateY(5px) scaleX(1.35);
  opacity: 0.35;
}

.fit-item p {
  color: var(--cacao);
  font-weight: 700;
  line-height: 1.45;
}

.offer-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 330px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.offer-card h3,
.list-panel h3 {
  color: var(--cacao);
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.12;
}

.offer-card__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 250, 243, 0.88), rgba(216, 164, 160, 0.16)),
    rgba(122, 67, 86, 0.1);
  box-shadow:
    inset 0 0 0 1px rgba(74, 56, 48, 0.12),
    0 12px 26px rgba(74, 56, 48, 0.1);
}

.offer-card__icon::before {
  content: "";
  width: 25px;
  height: 25px;
  background: var(--header-accent);
}

.offer-card__icon--yoga::before {
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3.2c2.25 2.28 3.42 4.42 3.42 6.45 0 1.02-.31 1.94-.93 2.76 1.83-1.15 3.78-1.77 5.84-1.87-.09 3.08-1.02 5.46-2.78 7.13-1.47 1.4-3.36 2.05-5.65 1.96-2.29.09-4.18-.56-5.65-1.96-1.76-1.67-2.69-4.05-2.78-7.13 2.06.1 4.01.72 5.84 1.87-.62-.82-.93-1.74-.93-2.76 0-2.03 1.17-4.17 3.42-6.45Zm0 4.04c-.92 1.2-1.38 2.24-1.38 3.13 0 1.25.62 2.18 1.38 3.02.76-.84 1.38-1.77 1.38-3.02 0-.89-.46-1.93-1.38-3.13Zm-6.18 6.07c.35 1.55.98 2.78 1.89 3.68.96.94 2.15 1.43 3.57 1.48-.75-1.34-1.78-2.46-3.09-3.36-.86-.59-1.92-.96-3.17-1.12Zm12.36 0-1 .18c-1.25.25-2.31.62-3.17 1.21-1.31.9-2.34 2.02-3.09 3.36 1.42-.05 2.61-.54 3.57-1.48.91-.9 1.54-2.13 1.89-3.68Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.offer-card__icon--sound::before {
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3.8c.85 1.02 1.28 2.05 1.28 3.08S12.85 8.94 12 9.98c-.85-1.04-1.28-2.07-1.28-3.1S11.15 4.82 12 3.8Zm-4.95 5.28c1.48.2 2.63.74 3.45 1.62.67.72 1.04 1.62 1.11 2.7-1.32-.14-2.38-.64-3.18-1.5-.75-.8-1.21-1.73-1.38-2.8Zm9.9 0c-.17 1.07-.63 2-1.38 2.8-.8.86-1.86 1.36-3.18 1.5.07-1.08.44-1.98 1.11-2.7.82-.88 1.97-1.42 3.45-1.62ZM4.18 14.1c2.02.12 3.73.68 5.14 1.68.84.59 1.53 1.31 2.08 2.16-1.95.08-3.58-.42-4.89-1.48-1.1-.9-1.88-1.68-2.33-2.36Zm15.64 0c-.45.68-1.23 1.46-2.33 2.36-1.31 1.06-2.94 1.56-4.89 1.48.55-.85 1.24-1.57 2.08-2.16 1.41-1 3.12-1.56 5.14-1.68ZM6 19.4h12v1.4H6v-1.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.offer-card__icon--specials::before {
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2.8 14.1 8l5.3 2.1-5.3 2.1L12 17.4l-2.1-5.2-5.3-2.1L9.9 8 12 2.8Zm0 4.2-.86 2.12L9 10l2.14.88L12 13l.86-2.12L15 10l-2.14-.88L12 7Zm6.2 8.3.9 2.2 2.2.9-2.2.9-.9 2.2-.9-2.2-2.2-.9 2.2-.9.9-2.2ZM5.5 14l.75 1.85L8.1 16.6l-1.85.75L5.5 19.2l-.75-1.85-1.85-.75 1.85-.75L5.5 14Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.offer-card p:not(.offer-card__kicker),
.list-panel li {
  color: var(--muted);
}

.offer-card a {
  align-self: end;
  color: var(--header-accent);
  font-weight: 800;
}

.offer-grid--courses {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.course-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.78);
  box-shadow: var(--shadow);
  transition:
    transform 340ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 340ms ease,
    border-color 340ms ease;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .course-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 121, 92, 0.32);
    box-shadow: 0 26px 54px rgba(74, 56, 48, 0.17);
  }

  .course-card:hover .course-card__icon {
    transform: rotate(-5deg) scale(1.05);
  }
}

/* Bildhintergrund der Kurskarten. Der Schleier darüber ist links dicht, wo der
   Text steht, und wird nach rechts durchlässiger – dort sitzt die Figur. */
.course-card--flow,
.course-card--calm {
  overflow: hidden;
  background-image:
    linear-gradient(
      100deg,
      rgba(255, 250, 243, 0.97) 0%,
      rgba(255, 250, 243, 0.95) 55%,
      rgba(255, 250, 243, 0.9) 84%,
      rgba(255, 250, 243, 0.5) 100%
    ),
    var(--kurs-bild);
  background-position: center, right center;
  background-size: auto, cover;
  background-repeat: no-repeat;
}

.course-card--flow {
  --kurs-bild: url("/assets/kurs-montag.jpg");
}

.course-card--calm {
  --kurs-bild: url("/assets/kurs-dienstag.jpg");
}

.course-card--flow > *,
.course-card--calm > * {
  position: relative;
}

.course-card__slot {
  color: var(--terra);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.course-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.course-card__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border: 1px solid rgba(74, 56, 48, 0.1);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(74, 56, 48, 0.09);
  transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

.course-card__icon::before {
  content: "";
  width: 27px;
  height: 27px;
  background: currentColor;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.course-card__icon--flow {
  color: var(--header-accent);
  background: rgba(216, 164, 160, 0.16);
}

.course-card__icon--flow::before {
  -webkit-mask-image: url("/assets/icons/lucide-sun.svg");
  mask-image: url("/assets/icons/lucide-sun.svg");
}

.course-card__icon--calm {
  color: #956a36;
  background: rgba(199, 164, 106, 0.16);
}

.course-card__icon--calm::before {
  -webkit-mask-image: url("/assets/icons/lucide-moon-star.svg");
  mask-image: url("/assets/icons/lucide-moon-star.svg");
}

.course-card__format {
  padding: 7px 11px;
  border: 1px solid rgba(168, 121, 92, 0.22);
  border-radius: 999px;
  background: rgba(168, 121, 92, 0.08);
  color: var(--cacao);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.course-card h3 {
  color: var(--cacao);
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.12;
}

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

.course-card__focus {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 18px 0 4px;
  border-top: 1px solid var(--soft-line);
  list-style: none;
}

.course-card__focus li {
  position: relative;
  padding-left: 22px;
  color: var(--cacao);
  line-height: 1.4;
}

.course-card__focus li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-mid);
}

.course-card .button {
  align-self: flex-start;
  margin-top: 0;
}

.offer-card__icon--calm::before {
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.8 2.6c-.5 0-1 .04-1.5.11a7.6 7.6 0 0 1 0 14.98c.5.07 1 .11 1.5.11a9.4 9.4 0 0 0 8.6-5.6 8.1 8.1 0 0 1-8.6-9.6Zm-2.9.62A9.4 9.4 0 0 0 12 21.4c1.9 0 3.65-.56 5.12-1.53a9.6 9.6 0 0 1-7.22-16.65Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.course-card__booking {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--soft-line);
}

.course-card__price {
  display: grid;
  gap: 3px;
  color: var(--cacao);
  line-height: 1.2;
}

.course-card__price strong {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 600;
}

.course-card__price span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.course-card__booking .button {
  flex: 0 0 auto;
}

/* Zwei gleich breite Hälften, damit die Trennlinie auf der Fuge zwischen den
   beiden Kurskarten darüber liegt. */
.course-safety {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  margin-top: 24px;
  padding: 26px 28px;
  border: 1px solid rgba(168, 121, 92, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 94% 8%, rgba(216, 164, 160, 0.18), transparent 34%),
    linear-gradient(rgba(248, 238, 229, 0.82), rgba(248, 238, 229, 0.82)),
    url("/assets/koffi-anmeldung-art.jpg") center / cover no-repeat #f8eee5;
}

.course-safety__intro {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-self: stretch;
  padding-right: 28px;
}

.course-safety__copy {
  display: flex;
  flex-direction: column;
}

.course-safety__marker {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(122, 67, 86, 0.1);
  color: var(--header-accent);
}

.course-safety__marker::before {
  content: "";
  width: 22px;
  height: 22px;
  background: currentColor;
  -webkit-mask: url("/assets/icons/lucide-info.svg") center / contain no-repeat;
  mask: url("/assets/icons/lucide-info.svg") center / contain no-repeat;
}

.course-safety__eyebrow {
  margin-bottom: 5px;
  color: var(--header-accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.course-safety h3 {
  margin-bottom: 9px;
  color: var(--cacao);
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.15;
}

.course-safety p:not(.course-safety__eyebrow) {
  max-width: 88ch;
  color: var(--muted);
}

.course-safety__form {
  display: grid;
  gap: 12px;
  align-content: start;
  padding-left: 28px;
  border-left: 1px solid rgba(168, 121, 92, 0.22);
}

.course-safety__form-title {
  color: var(--cacao) !important;
  font-weight: 800;
}

.course-safety__form .button {
  justify-self: start;
}

.course-safety__form .form-feedback {
  min-height: 0;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .course-safety {
    grid-template-columns: 1fr;
    row-gap: 22px;
  }

  .course-safety__intro {
    padding-right: 0;
  }

  .course-safety__form {
    padding-left: 0;
    padding-top: 22px;
    border-left: 0;
    border-top: 1px solid rgba(168, 121, 92, 0.22);
  }
}

.offer-note {
  max-width: 62ch;
  margin: 26px 0 0;
  color: var(--muted);
}

.offer-note a {
  color: var(--header-accent);
  font-weight: 700;
}

.course-band {
  color: var(--linen);
  background: var(--cacao);
}

.course-copy {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.course-copy h2,
.course-copy p {
  color: var(--linen);
}

.course-copy h2 {
  font-size: 4rem;
}

.course-copy > p:last-of-type {
  color: rgba(255, 250, 243, 0.72);
  font-family: var(--font-serif);
  font-size: 1.6rem;
}

.course-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--white-line);
  border-radius: 8px;
}

.course-details div {
  min-height: 122px;
  padding: 22px;
  background: rgba(255, 250, 243, 0.08);
}

.course-details dt {
  color: var(--brass);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.course-details dd {
  margin: 10px 0 0;
  color: var(--linen);
  line-height: 1.45;
}

.detail-grid {
  align-items: center;
}

.yoga-grid {
  align-items: start;
}

.yoga-aside {
  display: grid;
  gap: 18px;
}

.yoga-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.yoga-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 58%;
}

.detail-grid--reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.detail-copy {
  display: grid;
  gap: 18px;
}

.detail-copy .button {
  justify-self: start;
  margin-top: 8px;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.detail-actions .button {
  margin-top: 0;
}

.list-panel {
  padding: 30px;
  background: var(--cream);
}

.list-panel h3 + ul {
  margin-top: 14px;
}

.list-panel ul + h3 {
  margin-top: 28px;
}

.list-panel li {
  position: relative;
  padding: 8px 0 8px 22px;
}

.list-panel li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-mid);
}

.suit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
  align-items: start;
}

.boundary-panel {
  display: grid;
  gap: 14px;
  padding: 30px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: rgba(244, 234, 239, 0.78);
}

.boundary-panel h3 {
  color: var(--cacao);
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.14;
}

.boundary-panel p {
  color: var(--muted);
}

.boundary-panel__invite {
  padding: 14px 16px;
  border-left: 3px solid var(--accent-mid);
  border-radius: 0 8px 8px 0;
  background: rgba(122, 67, 86, 0.12);
  color: var(--cacao) !important;
  font-weight: 700;
}

.bring-grid h2,
#mitbringen h2 {
  color: var(--cacao);
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.02;
}

.bring-intro,
.section-heading__note {
  margin-top: 18px;
  color: var(--muted);
  font-weight: 700;
}

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

.bring-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  min-height: 116px;
  padding: 22px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.78);
  color: var(--cacao);
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(74, 56, 48, 0.07);
}

.bring-list li::before {
  content: none;
}

.bring-list__icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: rgba(216, 164, 160, 0.16);
  color: var(--header-accent);
}

.bring-list__icon::before {
  content: "";
  width: 24px;
  height: 24px;
  background: currentColor;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.bring-list__icon--water::before {
  -webkit-mask-image: url("/assets/icons/lucide-glass-water.svg");
  mask-image: url("/assets/icons/lucide-glass-water.svg");
}

.bring-list__icon--shirt::before {
  -webkit-mask-image: url("/assets/icons/lucide-shirt.svg");
  mask-image: url("/assets/icons/lucide-shirt.svg");
}

.bring-list__icon--blanket::before {
  -webkit-mask-image: url("/assets/icons/lucide-layers-2.svg");
  mask-image: url("/assets/icons/lucide-layers-2.svg");
}

.bring-list__icon--socks::before {
  -webkit-mask-image: url("/assets/icons/lucide-footprints.svg");
  mask-image: url("/assets/icons/lucide-footprints.svg");
}

.bring-list__icon--mat::before {
  -webkit-mask-image: url("/assets/icons/lucide-scroll.svg");
  mask-image: url("/assets/icons/lucide-scroll.svg");
}

.bring-list li:nth-child(3n + 2) .bring-list__icon {
  background: rgba(199, 164, 106, 0.16);
  color: #956a36;
}

.bring-list li:nth-child(3n) .bring-list__icon {
  background: rgba(168, 121, 92, 0.12);
  color: var(--terra);
}

.sound-visual {
  position: relative;
  margin: 0;
  border: 1px solid rgba(122, 67, 86, 0.18);
  border-radius: 8px;
  background: var(--linen);
  box-shadow: 0 18px 42px rgba(74, 56, 48, 0.14);
  overflow: hidden;
}

.section-band--sound .sound-visual {
  border-color: rgba(159, 115, 65, 0.26);
  box-shadow: 0 20px 48px rgba(124, 80, 40, 0.18);
}

.sound-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0) 58%, rgba(48, 42, 37, 0.18)),
    linear-gradient(90deg, rgba(255, 250, 243, 0.08), rgba(255, 250, 243, 0));
}

.sound-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
}

.klang-page {
  padding: 100px 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(199, 164, 106, 0.18), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(216, 164, 160, 0.16), transparent 30%),
    linear-gradient(180deg, #fffaf3 0%, #f4eadc 48%, #fbf2e4 100%);
}

.klang-page--subpage {
  padding-top: 134px;
}

.klang-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 48px;
  align-items: center;
}

.klang-hero__copy {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.klang-hero__copy h1,
.klang-hero__copy h2,
.klang-process h2 {
  color: var(--cacao);
  font-size: 4rem;
  line-height: 1.02;
}

.klang-hero__copy p:not(.eyebrow),
.klang-card p,
.klang-feature p,
.klang-steps p,
.klang-panel li,
.klang-note p {
  color: var(--muted);
}

.klang-hero__image,
.klang-card,
.klang-steps article,
.klang-panel,
.klang-note {
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.78);
  box-shadow: var(--shadow);
}

.klang-hero__image {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.klang-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0) 58%, rgba(48, 42, 37, 0.16)),
    linear-gradient(90deg, rgba(255, 250, 243, 0.12), rgba(255, 250, 243, 0));
}

.klang-hero__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
}

.klang-intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.klang-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
}

.klang-card--wide {
  grid-row: span 2;
  align-content: center;
  background: rgba(247, 241, 232, 0.88);
}

.klang-card__kicker {
  color: var(--header-accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.klang-card h2,
.klang-card h3,
.klang-feature h2,
.klang-feature h3,
.klang-steps h3,
.klang-panel h2,
.klang-panel h3,
.klang-note h2,
.klang-note h3 {
  color: var(--cacao);
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.14;
}

.klang-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  margin-top: 28px;
  padding: 34px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 0%, rgba(199, 164, 106, 0.18), transparent 28%),
    linear-gradient(135deg, #5c2f3f 0%, #4a3830 100%);
  box-shadow: 0 22px 48px rgba(74, 56, 48, 0.16);
}

.klang-feature .eyebrow {
  color: #f4d699;
}

.klang-feature h2,
.klang-feature h3 {
  color: var(--linen);
  font-size: 2.4rem;
}

.klang-feature p {
  margin-top: 14px;
  color: rgba(255, 250, 243, 0.8);
}

.klang-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: center;
}

.klang-benefits li {
  position: relative;
  padding: 13px 14px 13px 36px;
  border: 1px solid rgba(255, 250, 243, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.08);
  color: rgba(255, 250, 243, 0.88);
  font-weight: 700;
  line-height: 1.35;
}

.klang-benefits li::before,
.klang-panel li::before {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.klang-benefits li::before {
  top: 22px;
  left: 16px;
  width: 8px;
  height: 8px;
  background: var(--brass);
}

.klang-process {
  margin-top: 64px;
}

.klang-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.klang-steps article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 246px;
  padding: 22px;
}

.klang-steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-mist);
  color: var(--header-accent);
  font-weight: 800;
}

.klang-fit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.klang-panel {
  padding: 28px;
}

.klang-panel--soft {
  background: rgba(244, 234, 220, 0.82);
}

.klang-panel ul {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.klang-panel li {
  position: relative;
  padding-left: 24px;
  line-height: 1.45;
}

.klang-panel li::before {
  top: 12px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--rose);
}

.klang-note {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 28px;
  margin-top: 28px;
  padding: 34px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.86), rgba(247, 241, 232, 0.92));
}

.klang-disclaimer {
  grid-column: 1 / -1;
  padding: 16px 18px;
  border-left: 3px solid var(--terra);
  background: rgba(168, 121, 92, 0.1);
  color: var(--cacao);
  font-weight: 700;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0 10px;
}

.tag-list span {
  padding: 9px 13px;
  border: 1px solid rgba(122, 67, 86, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.68);
  color: var(--header-accent);
  font-size: 0.88rem;
  font-weight: 700;
}

.about-grid {
  align-items: start;
}

.about-aside {
  display: grid;
  gap: 18px;
}

.about-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.about-copy {
  display: grid;
  gap: 18px;
}

.story {
  margin-top: 6px;
  padding: 0 22px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: var(--cream);
}

.story summary {
  position: relative;
  padding: 18px 36px 18px 0;
  color: var(--cacao);
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.3;
  list-style: none;
}

.story summary::-webkit-details-marker {
  display: none;
}

.story summary::after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: 4px;
  width: 9px;
  height: 9px;
  border-right: 1.8px solid var(--terra);
  border-bottom: 1.8px solid var(--terra);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.story[open] summary::after {
  transform: translateY(4px) rotate(225deg);
}

.story__content {
  display: grid;
  gap: 16px;
  padding: 0 0 20px;
}

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

.credential-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.credential-badges li {
  padding: 6px 12px;
  border: 1px solid rgba(122, 67, 86, 0.22);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.68);
  color: var(--header-accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.quote-band,
.contact-band {
  color: var(--linen);
  background: var(--cacao);
}

.quote-band .eyebrow {
  width: fit-content;
  padding: 7px 12px;
  border: 1px solid rgba(255, 250, 243, 0.22);
  border-radius: 999px;
  background: rgba(48, 42, 37, 0.28);
  color: #ffe0a0;
  box-shadow: 0 10px 24px rgba(48, 42, 37, 0.12);
}

.quote-inner {
  display: grid;
  gap: 22px;
  max-width: 980px;
}

.quote-inner h2,
.contact-grid h2 {
  color: var(--linen);
  font-size: 4rem;
}

.quote-inner > p:not(.eyebrow),
.contact-grid p {
  max-width: 760px;
  color: rgba(255, 250, 243, 0.82);
  font-size: 1.18rem;
}

.quote-image {
  margin: 14px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 243, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.08);
  box-shadow: 0 24px 54px rgba(48, 42, 37, 0.22);
}

.quote-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
}

.signup-grid {
  align-items: start;
}

.step-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.step-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  color: var(--cacao);
  font-weight: 800;
}

.step-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(122, 67, 86, 0.1);
  color: var(--header-accent);
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  color: var(--cacao);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(74, 56, 48, 0.2);
  border-radius: 8px;
  background: var(--linen);
  color: var(--ink);
}

.form-row input,
.form-row select {
  min-height: 50px;
  padding: 0 14px;
}

.form-row textarea {
  resize: vertical;
  padding: 12px 14px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 3px solid rgba(122, 67, 86, 0.22);
  border-color: var(--header-accent);
}

.form-feedback {
  min-height: 28px;
  color: var(--header-accent);
  font-weight: 700;
}

/* ---------- Instagram ---------- */

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

.instagram-region {
  min-height: 160px;
}

.instagram-fallback {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 620px;
  margin-top: 34px;
  padding: 24px 26px;
  border: 1px solid var(--soft-line);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(244, 235, 243, 0.72)),
    var(--cream);
  box-shadow: var(--shadow);
}

.instagram-fallback[hidden] {
  display: none;
}

.instagram-fallback__icon {
  display: grid;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  color: var(--header-accent);
  background: rgba(122, 67, 86, 0.1);
}

.instagram-fallback__icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.instagram-fallback strong {
  color: var(--cacao);
  font-family: var(--font-serif);
  font-size: 1.35rem;
}

.instagram-fallback p {
  margin-top: 3px;
  color: var(--muted);
}

.instagram-tile {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(122, 67, 86, 0.14);
  border-radius: 18px;
  background: var(--accent-mist);
  box-shadow: var(--shadow);
}

.instagram-tile a {
  display: block;
}

.instagram-tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 320ms ease;
}

.instagram-tile a:hover img,
.instagram-tile a:focus-visible img {
  transform: scale(1.04);
}

.instagram-tile a:focus-visible {
  outline: 3px solid rgba(122, 67, 86, 0.4);
  outline-offset: -3px;
}

.instagram-tile__meta {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  width: fit-content;
  max-width: calc(100% - 24px);
  padding: 7px 11px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: var(--linen);
  background: rgba(48, 42, 37, 0.66);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

/* Kleines Wiedergabe-Dreieck für Reels und Videos */
.instagram-tile__video {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(48, 42, 37, 0.55);
}

.instagram-tile__video::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 10px;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent var(--linen);
}

.instagram-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  margin-top: 30px;
}

.instagram-cta svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.instagram-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.signup-start {
  align-self: start;
  padding: 32px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.signup-start h3 {
  margin-top: 4px;
  color: var(--cacao);
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.12;
}

.signup-start__actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.signup-start__note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.signup-start__note a {
  color: var(--header-accent);
  font-weight: 700;
}

/* ---------- Anmeldeformular (mehrstufig) ---------- */

.signup-page__intro {
  padding-top: 168px;
}

.signup-page__intro h1 {
  max-width: 18ch;
  color: var(--cacao);
  font-family: var(--font-serif);
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1.04;
}

.signup-page__lead {
  max-width: 62ch;
  margin-top: 20px;
  color: var(--muted);
}

.wizard-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-bottom: 30px;
}

.wizard-steps li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.wizard-steps span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(122, 67, 86, 0.1);
  color: var(--header-accent);
  font-size: 0.85rem;
}

.wizard-steps .is-current {
  color: var(--cacao);
}

.wizard-steps .is-current span {
  background: var(--terra);
  color: var(--linen);
}

.wizard-steps .is-done span {
  background: var(--header-accent);
  color: var(--linen);
}

.wizard {
  max-width: 760px;
  padding: 32px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.86);
  box-shadow: var(--shadow);
}

.wizard__step {
  padding: 0;
  border: 0;
  margin: 0;
}

.wizard__legend {
  padding: 0;
  color: var(--cacao);
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.14;
}

.wizard__hint {
  max-width: 58ch;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.wizard__hint--tight {
  margin-top: 20px;
  font-size: 0.88rem;
}

.wizard__fields {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.form-hint {
  color: var(--muted);
  font-size: 0.85rem;
}

.course-choice {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.course-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: var(--linen);
  cursor: pointer;
}

.course-option:has(input:checked) {
  border-color: var(--header-accent);
  box-shadow: 0 0 0 3px rgba(122, 67, 86, 0.18);
}

.course-option:has(input:focus-visible) {
  outline: 3px solid rgba(122, 67, 86, 0.3);
}

.course-option input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--header-accent);
}

.course-option__body {
  display: grid;
  gap: 4px;
}

.course-option__slot {
  color: var(--terra);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.course-option__title {
  color: var(--cacao);
  font-weight: 700;
}

.course-option__summary {
  color: var(--muted);
  font-size: 0.92rem;
}

.health-questions {
  display: grid;
  gap: 22px;
  margin-top: 24px;
}

.health-question {
  padding: 18px 20px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  margin: 0;
  background: var(--linen);
}

.health-question__label {
  padding: 0;
  color: var(--cacao);
  font-weight: 700;
  line-height: 1.35;
}

.health-question__hint {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.85rem;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.choice {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--soft-line);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.9);
  color: var(--cacao);
  font-size: 0.92rem;
  cursor: pointer;
}

.choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice:has(input:checked) {
  border-color: var(--header-accent);
  background: var(--header-accent);
  color: var(--linen);
}

.choice:has(input:focus-visible) {
  outline: 3px solid rgba(122, 67, 86, 0.32);
  outline-offset: 1px;
}

.health-question__detail {
  display: grid;
  gap: 7px;
  margin-top: 16px;
}

.health-question__detail label {
  color: var(--cacao);
  font-size: 0.88rem;
  font-weight: 700;
}

.health-question textarea,
.health-question__detail textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(74, 56, 48, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.9);
  color: var(--ink);
  resize: vertical;
}

.health-question textarea {
  margin-top: 14px;
}

.health-question textarea:focus,
.health-question__detail textarea:focus {
  outline: 3px solid rgba(122, 67, 86, 0.22);
  border-color: var(--header-accent);
}

.consent-list {
  display: grid;
  gap: 4px;
  margin-top: 24px;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--cacao);
  font-size: 0.95rem;
  line-height: 1.45;
  cursor: pointer;
}

.consent:hover {
  background: rgba(122, 67, 86, 0.07);
}

.consent input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--header-accent);
}

.consent a {
  color: var(--header-accent);
  font-weight: 700;
  text-decoration: underline;
}

.field-error:empty {
  display: none;
}

.field-error {
  color: #a2412c;
  font-size: 0.85rem;
  font-weight: 700;
}

.has-error > .health-question__label,
.has-error > label {
  color: #a2412c;
}

.has-error input:not([type="radio"]):not([type="checkbox"]),
.has-error textarea {
  border-color: #c78e80;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.form-feedback--error {
  color: #a2412c;
}

.wizard__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.signup-done {
  max-width: 680px;
  padding: 36px 32px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.9);
  box-shadow: var(--shadow);
}

.signup-done h2 {
  color: var(--cacao);
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.1;
}

.signup-done p {
  margin-top: 16px;
  color: var(--muted);
}

.signup-done__code strong {
  color: var(--cacao);
  font-family: var(--font-brand);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.signup-done .button {
  margin-top: 26px;
}

.signup-note--warn {
  padding: 16px 18px;
  border: 1px solid rgba(168, 121, 92, 0.4);
  border-radius: 8px;
  margin-top: 24px;
  background: rgba(216, 164, 160, 0.14);
  color: var(--cacao);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.faq-art {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(168, 121, 92, 0.25);
}

.faq-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 880px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-art img {
    height: auto;
    aspect-ratio: 16 / 10;
  }
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0 22px;
  background: var(--linen);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 0;
  color: var(--cacao);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.3;
}

.faq-list p {
  padding: 0 0 22px;
}

.contact-grid {
  align-items: center;
}

.contact-grid--single {
  display: block;
  max-width: 920px;
  text-align: center;
}

.contact-grid--single h2 {
  margin: 0 auto;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  padding: 58px 0 24px;
  background: var(--cacao);
  color: rgba(255, 250, 243, 0.74);
  font-size: 0.95rem;
}

.footer-grid {
  grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(150px, 1fr));
  gap: 42px;
  align-items: start;
}

.footer-brand,
.footer-links,
.footer-social {
  display: grid;
  gap: 14px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.footer-logo img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 250, 243, 0.84);
}

.footer-logo strong,
.footer-logo small {
  display: block;
}

.site-footer strong,
.footer-logo,
.footer-links h2,
.footer-social h2,
.site-footer a {
  color: var(--linen);
}

.footer-logo strong {
  font-family: var(--font-brand);
  font-size: 1.1rem;
  line-height: 1.1;
}

.footer-logo small {
  color: rgba(255, 250, 243, 0.68);
  line-height: 1.2;
}

.footer-brand p {
  max-width: 330px;
  color: rgba(255, 250, 243, 0.82);
}

.footer-links h2,
.footer-social h2 {
  font-size: 0.8rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer a {
  font-weight: 800;
}

.footer-links a,
.footer-email,
.footer-bottom a {
  width: fit-content;
  color: rgba(255, 250, 243, 0.84);
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-email:hover,
.footer-email:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--linen);
  transform: translateY(-1px);
}

.footer-social__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 250, 243, 0.18);
  border-radius: 50%;
  background: rgba(255, 250, 243, 0.08);
  color: var(--linen);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: rgba(199, 164, 106, 0.72);
  background: rgba(199, 164, 106, 0.18);
  transform: translateY(-1px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link svg circle:last-child {
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 250, 243, 0.14);
  color: rgba(255, 250, 243, 0.62);
  font-size: 0.88rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .site-nav {
    gap: 14px;
  }

  .hero h1 {
    font-size: 4.7rem;
  }

  .welcome h2,
  .section-heading h2,
  .course-copy h2,
  .detail-copy h2,
  .klang-hero__copy h1,
  .klang-hero__copy h2,
  .klang-process h2,
  .about-copy h2,
  .signup-grid h2,
  .contact-grid h2 {
    font-size: 2.7rem;
  }

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

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

@media (max-width: 880px) {
  body {
    font-size: 17px;
  }

  .site-header {
    width: calc(100% - 20px);
    grid-template-columns: 1fr auto;
    border-radius: 28px;
  }

  .menu-toggle {
    display: inline-block;
    justify-self: end;
  }

  .site-header.is-open .menu-toggle__line:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .site-header.is-open .menu-toggle__line:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .site-nav {
    position: fixed;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(74, 56, 48, 0.14);
    border-radius: 18px;
    background: var(--linen);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav a {
    padding: 15px 12px;
    border-bottom: 1px solid rgba(74, 56, 48, 0.1);
  }

  .site-header.is-open .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 94svh;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(48, 42, 37, 0.84), rgba(48, 42, 37, 0.58)),
      linear-gradient(0deg, rgba(48, 42, 37, 0.6), transparent 44%);
  }

  .hero__content {
    padding: 138px 0 64px;
  }

  .hero h1 {
    font-size: 3.6rem;
  }

  .hero__claim {
    font-size: 1.55rem;
  }

  .welcome__grid,
  .section-heading--split,
  .fit-layout,
  .klang-hero,
  .klang-feature,
  .klang-note,
  .course-grid,
  .detail-grid,
  .detail-grid--reverse,
  .about-grid,
  .suit-grid,
  .bring-grid,
  .signup-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-band,
  .course-band,
  .klang-page,
  .quote-band,
  .contact-band {
    padding: 68px 0;
  }

  .klang-page--subpage {
    padding-top: 118px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .fit-copy .section-heading {
    margin-bottom: 0;
  }

  .fit-copy .section-heading h2 {
    max-width: none;
  }

  .fit-photo {
    order: -1;
  }

  .fit-photo img {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .course-details {
    grid-template-columns: 1fr;
  }

  .klang-intro-grid,
  .klang-fit,
  .klang-benefits {
    grid-template-columns: 1fr;
  }

  .klang-card--wide {
    grid-row: auto;
  }

  .klang-feature {
    padding: 28px;
  }

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

  .klang-steps article {
    min-height: auto;
  }

  .klang-disclaimer {
    grid-column: auto;
  }

  .sound-visual {
    min-height: 360px;
  }

  .contact-actions,
  .site-footer a {
    justify-content: flex-start;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .site-header {
    top: 10px;
    min-height: 64px;
    padding: 8px 9px 8px 12px;
  }

  .site-footer {
    padding: 48px 0 22px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 34px;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
    font-size: 1.25rem;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero__image {
    object-position: center center;
    transform: translate(0, 4%) scale(1.08);
  }

  .hero h1 {
    max-width: 7ch;
    font-size: 3rem;
  }

  .hero__claim {
    font-size: 1.35rem;
  }

  .hero__actions,
  .detail-actions,
  .contact-actions {
    display: grid;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .welcome h2,
  .section-heading h2,
  .course-copy h2,
  .detail-copy h2,
  .klang-hero__copy h1,
  .klang-hero__copy h2,
  .klang-process h2,
  .about-copy h2,
  .signup-grid h2,
  .contact-grid h2,
  .quote-inner h2 {
    font-size: 2.25rem;
  }

  .bring-grid h2 {
    font-size: 2.25rem;
  }

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

  .offer-card {
    min-height: auto;
    padding: 24px;
  }

  .klang-hero__copy,
  .klang-card,
  .klang-panel,
  .klang-note {
    gap: 14px;
  }

  .klang-card,
  .klang-feature,
  .klang-panel,
  .klang-note {
    padding: 22px;
  }

  .klang-feature h2,
  .klang-feature h3 {
    font-size: 1.9rem;
  }

  .klang-steps {
    grid-template-columns: 1fr;
  }

  .fit-item {
    min-height: auto;
  }

  .signup-form {
    padding: 22px;
  }

  .course-details div {
    min-height: auto;
  }

  .about-image img {
    aspect-ratio: 4 / 5;
  }
}

/* Kleine SVG-Akzente aus dem Flyer-Rework, bewusst auf der warmen Version. */
.hero__ornament,
.section-ornament {
  position: absolute;
  z-index: 1;
  display: block;
  width: 110px;
  height: 110px;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  opacity: 0.34;
}

.hero__ornament {
  right: clamp(24px, 6vw, 104px);
  bottom: 42px;
  width: clamp(86px, 9vw, 138px);
  height: auto;
  opacity: 0.66;
}

.section-band,
.course-band,
.quote-band,
.contact-band {
  position: relative;
  overflow: hidden;
}

.section-ornament--welcome {
  left: -18px;
  bottom: 16px;
  width: 132px;
  opacity: 0.22;
  transform: rotate(-8deg);
}

.section-ornament--fit {
  right: 2.5%;
  top: 34px;
  width: 104px;
  opacity: 0.2;
}

.section-ornament--offers {
  left: 2.5%;
  top: 28px;
  width: 118px;
  opacity: 0.22;
}

.section-ornament--course {
  right: 3%;
  bottom: 24px;
  width: 86px;
  opacity: 0.46;
}

.section-ornament--bring {
  right: 3%;
  top: 34px;
  width: 104px;
  opacity: 0.2;
}

.section-ornament--knowledge {
  left: 3%;
  bottom: 28px;
  width: 108px;
  opacity: 0.2;
}

.section-ornament--yoga {
  right: -22px;
  bottom: 6px;
  width: 160px;
  height: 160px;
  opacity: 0.22;
}

.section-ornament--sound {
  left: 3%;
  top: 28px;
  width: 116px;
  opacity: 0.42;
}

.section-ornament--about {
  right: -20px;
  top: 28px;
  width: 150px;
  height: 150px;
  opacity: 0.2;
}

.section-ornament--quote {
  right: 4%;
  top: 34px;
  width: 94px;
  opacity: 0.55;
}

.section-ornament--signup {
  left: -26px;
  bottom: 20px;
  width: 142px;
  height: 142px;
  opacity: 0.18;
}

.section-ornament--faq {
  right: 3%;
  top: 30px;
  width: 112px;
  opacity: 0.2;
}

.section-ornament--contact {
  left: 4%;
  bottom: 16px;
  width: 92px;
  opacity: 0.48;
}

.footer-bottom {
  gap: 18px;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.footer-legal a {
  color: rgba(255, 250, 243, 0.76);
  font-size: 0.82rem;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--brass);
}

@media (max-width: 880px) {
  .hero__ornament {
    right: 18px;
    bottom: 24px;
    width: 82px;
  }

  .section-ornament {
    width: 78px;
    height: 78px;
    opacity: 0.16;
  }

  .section-ornament--quote,
  .section-ornament--sound,
  .section-ornament--contact {
    opacity: 0.32;
  }
}

@media (max-width: 640px) {
  .section-ornament:not(.section-ornament--quote):not(.section-ornament--contact) {
    display: none;
  }

  .hero__ornament {
    width: 66px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}


/* Rechtsseiten (Impressum, Datenschutz, Teilnahmebedingungen) */
.legal-page {
  padding: 152px 0 96px;
  background:
    url("/assets/lavender.svg") no-repeat right 44px top 168px / 118px auto,
    var(--linen);
}

.legal-content {
  max-width: 820px;
}

.legal-content h1 {
  color: var(--cacao);
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 4vw, 3.1rem);
  font-weight: 600;
  line-height: 1.05;
}

.legal-updated {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-content h2 {
  margin-top: 44px;
  color: var(--cacao);
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.15;
}

.legal-content h3 {
  margin-top: 26px;
  color: var(--cacao);
  font-size: 1.02rem;
}

.legal-content p,
.legal-content li,
.legal-content address {
  color: var(--ink);
}

.legal-content p,
.legal-content address {
  margin-top: 14px;
}

.legal-content address {
  font-style: normal;
  line-height: 1.6;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.legal-content li {
  position: relative;
  padding-left: 22px;
}

.legal-content li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-mid);
}

.legal-content a {
  color: var(--header-accent);
  font-weight: 700;
}

.todo-mark {
  padding: 1px 8px;
  border-radius: 8px;
  background: rgba(216, 164, 160, 0.28);
  color: #8d5450;
  font-weight: 700;
}

.page-notice {
  margin-bottom: 30px;
  padding: 16px 20px;
  border: 1px solid rgba(199, 164, 106, 0.42);
  border-radius: 16px;
  background: rgba(199, 164, 106, 0.14);
  color: var(--cacao);
}

@media (max-width: 780px) {
  .signup-page__intro {
    padding-top: 132px;
  }

  .signup-page__intro h1 {
    font-size: 2.4rem;
  }

  .wizard {
    padding: 22px 18px;
  }

  .wizard__legend {
    font-size: 1.45rem;
  }

  .wizard-steps {
    gap: 8px 16px;
  }

  .wizard-steps li {
    font-size: 0.82rem;
  }

  .wizard__actions .button {
    width: 100%;
  }

  .signup-done {
    padding: 26px 20px;
  }

  .signup-start {
    padding: 24px 20px;
  }
}

@media (max-width: 880px) {
  .course-card__booking .button {
    width: auto;
  }

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

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

  .course-card__head {
    align-items: flex-start;
  }

  .course-card__format {
    font-size: 0.7rem;
  }

  .course-card__booking {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    justify-content: stretch;
  }

  .course-card__booking .button {
    width: 100%;
  }

  .course-safety {
    grid-template-columns: 1fr;
    padding: 22px 20px;
  }

  .course-safety h3 {
    font-size: 1.4rem;
  }

  .bring-list {
    grid-template-columns: 1fr;
  }

  .bring-list li {
    min-height: 0;
    padding: 18px;
  }

  .story {
    padding: 0 18px;
  }

  .story summary {
    font-size: 1.15rem;
  }
}

@media (max-width: 780px) {
  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .instagram-cta {
    width: 100%;
  }

  .instagram-fallback {
    align-items: flex-start;
    padding: 20px;
  }
}
