:root {
  --text: #333030;
  --primary: #5f5b5b;
  --course: #7ba5b4;
  --workshop: #ab8b7f;
  --mindfulness: #6c7c98;
  --warm-neutral: #c4bebe;
  --cool-neutral: #9ca8bb;
  --subtle: #e5e9ef;
  --contact-surface: #abd5ed;
  --white: #ffffff;
  --theme-rgb: 171, 213, 237;
  --theme-solid: var(--mindfulness);
  --theme-alpha: 0.12;

  /* Compatibility aliases for the established component stylesheet. */
  --ink: var(--text);
  --forest: var(--primary);
  --forest-deep: var(--primary);
  --sage: var(--course);
  --sage-soft: var(--contact-surface);
  --cream: var(--white);
  --paper: var(--white);
  --clay: var(--workshop);
  --clay-soft: var(--warm-neutral);
  --gold: var(--workshop);
  --muted: var(--primary);
  --line: rgba(95, 91, 91, 0.2);
  --shadow: 0 24px 70px rgba(95, 91, 91, 0.15);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1180px, calc(100% - 48px));
}

.theme-courses {
  --theme-rgb: 123, 165, 180;
  --theme-solid: var(--course);
  --theme-alpha: 0.18;
}

.theme-workshops {
  --theme-rgb: 171, 139, 127;
  --theme-solid: var(--workshop);
  --theme-alpha: 0.16;
}

.theme-mindfulness {
  --theme-rgb: 108, 124, 152;
  --theme-solid: var(--mindfulness);
  --theme-alpha: 0.14;
}

.theme-neutral {
  --theme-rgb: 171, 213, 237;
  --theme-solid: var(--mindfulness);
  --theme-alpha: 0.14;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3.4rem, 6.25vw, 6.2rem);
  letter-spacing: -0.055em;
}

h1 em {
  color: var(--clay);
  font-weight: 400;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 4vw, 4.35rem);
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 18px;
  font-size: 2rem;
  letter-spacing: -0.025em;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 118px 0;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: white;
  background: var(--forest-deep);
  border-radius: 999px;
  transform: translateY(-150%);
}

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

.eyebrow {
  margin-bottom: 18px;
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1.4;
  overflow-wrap: break-word;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--subtle);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 56px;
  padding: 14px 24px;
  color: white;
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 720;
  letter-spacing: 0.02em;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button span,
.text-link span,
.card-link span {
  transition: transform 180ms ease;
}

.button:hover {
  background: var(--clay);
  border-color: var(--clay);
  transform: translateY(-2px);
}

.button:hover span,
.text-link:hover span,
.card-link:hover span {
  transform: translateX(4px);
}

.button:focus-visible,
.text-link:focus-visible,
.card-link:focus-visible,
.main-navigation a:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.button-small {
  min-height: 44px;
  padding: 10px 19px;
  font-size: 0.78rem;
}

.button-light {
  color: var(--forest-deep);
  background: var(--cream);
  border-color: var(--cream);
}

.button-light:hover {
  color: white;
}

.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 0.9rem;
  font-weight: 720;
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

/* Header */
.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 0;
}

.site-header.is-scrolled {
  position: fixed;
  padding: 10px 0;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
  animation: header-in 220ms ease both;
}

@keyframes header-in {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

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

.brand-mark {
  display: grid;
  width: 46px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--forest);
  border: 1px solid rgba(95, 91, 91, 0.35);
  border-radius: 50%;
}

.brand-mark svg {
  width: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.brand-logo-signet {
  display: flex;
  height: 54px;
  flex: 0 0 auto;
  align-items: center;
}

.brand-logo-signet img {
  display: block;
  width: auto;
  height: 100%;
  object-fit: contain;
}

.site-header.is-scrolled .brand-logo-signet {
  height: 42px;
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1.2;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 400;
}

.brand-copy span {
  color: rgba(51, 48, 48, 0.7);
  font-size: 0.67rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 31px);
  font-size: 0.76rem;
  font-weight: 700;
}

.main-navigation > a:not(.button) {
  position: relative;
  padding: 10px 0;
}

.main-navigation > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--forest);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-navigation > a:hover::after,
.main-navigation > a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 138px;
  background:
    radial-gradient(circle at 9% 11%, rgba(171, 139, 127, 0.18) 0, transparent 25%),
    var(--cream);
}

.hero-glow {
  position: absolute;
  top: 11%;
  left: 42%;
  width: 420px;
  height: 420px;
  background: rgba(255, 253, 248, 0.58);
  border-radius: 50%;
  filter: blur(2px);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: 64px;
  min-height: 700px;
  padding-bottom: 64px;
}

.hero-copy {
  padding: 44px 0 64px;
}

.hero-intro {
  max-width: 660px;
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.5;
}

.hero-note {
  max-width: 590px;
  margin-bottom: 32px;
  color: rgba(51, 48, 48, 0.72);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  padding: 0;
  margin: 36px 0 0;
  list-style: none;
  color: rgba(51, 48, 48, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-facts li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-facts span {
  display: grid;
  width: 20px;
  height: 20px;
  color: white;
  background: var(--sage);
  border-radius: 50%;
  font-size: 0.68rem;
  place-items: center;
}

.hero-visual {
  position: relative;
  width: min(100%, 520px);
  justify-self: end;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  top: 7%;
  right: -17%;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(95, 91, 91, 0.16);
  border-radius: 50%;
  content: "";
}

.hero-visual svg {
  width: 100%;
  filter: drop-shadow(0 32px 38px rgba(95, 91, 91, 0.14));
}

.visual-caption {
  position: absolute;
  z-index: 2;
  padding: 8px 14px;
  color: var(--forest);
  background: rgba(255, 253, 248, 0.84);
  border: 1px solid rgba(95, 91, 91, 0.18);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 0.92rem;
  font-style: italic;
  box-shadow: 0 9px 28px rgba(95, 91, 91, 0.1);
  backdrop-filter: blur(10px);
}

.visual-caption-top {
  top: 20%;
  right: -2%;
}

.visual-caption-bottom {
  bottom: 12%;
  left: 1%;
}

.practice-line {
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.practice-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3.6vw, 58px);
  min-height: 76px;
  padding: 0 28px;
  font-family: var(--serif);
  font-size: 1.02rem;
  font-style: italic;
}

.practice-track i {
  width: 5px;
  height: 5px;
  background: var(--clay);
  border-radius: 50%;
}

/* Offers */
.offers {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 44px;
}

.section-heading h2 {
  max-width: 730px;
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 500px;
  margin-bottom: 5px;
  color: rgba(51, 48, 48, 0.7);
}

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

.offer-card {
  position: relative;
  display: flex;
  min-height: 470px;
  padding: 36px;
  flex-direction: column;
  border-radius: 4px 70px 4px 4px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.offer-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.offer-card-sage {
  color: white;
  background: var(--forest);
}

.offer-card-clay {
  color: var(--ink);
  background: var(--clay-soft);
}

.offer-card-cream {
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
}

.card-number {
  position: absolute;
  top: 24px;
  right: 32px;
  color: currentColor;
  font-family: var(--serif);
  font-size: 0.85rem;
  font-style: italic;
  opacity: 0.65;
}

.card-icon {
  display: grid;
  width: 88px;
  height: 88px;
  margin-bottom: 64px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.85;
  place-items: center;
}

.card-icon svg {
  width: 50px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.offer-card p {
  margin-bottom: 30px;
  opacity: 0.78;
}

.offer-card .card-link {
  align-self: flex-start;
  margin-top: auto;
}

/* Schedule */
.schedule-section {
  padding-top: 40px;
}

.schedule-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  min-height: 530px;
  overflow: hidden;
  color: white;
  background: var(--forest-deep);
  border-radius: 4px 96px 4px 4px;
}

.schedule-art {
  position: relative;
  align-self: stretch;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one { width: 220px; }
.orbit-two { width: 365px; }
.orbit-three { width: 520px; }

.schedule-word {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: var(--serif);
  font-size: 3rem;
  font-style: italic;
  line-height: 1.05;
  text-align: center;
  transform: translate(-50%, -50%) rotate(-5deg);
}

.schedule-copy {
  max-width: 670px;
  padding: 70px clamp(44px, 6vw, 92px);
}

.schedule-copy p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.74);
}

.schedule-detail {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* About */
.about-section {
  background: linear-gradient(to right, var(--paper) 0 58%, var(--white) 58% 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.about-portrait {
  position: relative;
  max-width: 440px;
}

.portrait-frame {
  position: relative;
  aspect-ratio: 520 / 620;
  overflow: hidden;
  border-radius: 180px 180px 5px 5px;
  box-shadow: var(--shadow);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.portrait-initials {
  position: absolute;
  right: 22px;
  bottom: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--serif);
  font-size: 4.2rem;
  font-style: italic;
}

.about-portrait > p {
  position: relative;
  z-index: 2;
  width: fit-content;
  max-width: calc(100% - 28px);
  padding: 18px 22px;
  margin: -34px 0 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.3;
}

.about-portrait > p span {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-copy {
  max-width: 660px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(51, 48, 48, 0.72);
}

.about-copy blockquote {
  padding: 24px 0 24px 28px;
  margin: 34px 0;
  border-left: 2px solid var(--clay);
  font-family: var(--serif);
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  font-style: italic;
  line-height: 1.5;
}

/* Contact */
.contact-section {
  padding-bottom: 60px;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 70px;
  padding: 68px clamp(40px, 6vw, 85px);
  background: var(--sage-soft);
  border-radius: 4px 70px 4px 4px;
}

.contact-card h2 {
  margin-bottom: 18px;
}

.contact-card p:last-child {
  max-width: 610px;
  margin-bottom: 0;
  color: rgba(51, 48, 48, 0.7);
}

.contact-actions {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
}

.contact-actions > a:last-child {
  font-family: var(--serif);
  font-size: 1.25rem;
  border-bottom: 1px solid var(--ink);
}

.business-note {
  padding: 30px 0 72px;
}

.business-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.business-inner p {
  margin: 0;
}

/* Footer */
.site-footer {
  padding: 76px 0 24px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.85fr;
  gap: 80px;
  padding-bottom: 60px;
}

.brand-footer {
  color: white;
}

.brand-footer .brand-mark {
  width: 48px;
  height: 48px;
  background: url("../images/logo-signet-taupe.png") center / contain no-repeat;
  border: 0;
  border-radius: 0;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.brand-footer .brand-mark svg,
.brand-footer .brand-copy strong {
  display: none;
}

.brand-footer .brand-copy span {
  color: white;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.footer-brand > p {
  max-width: 330px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--serif);
  font-size: 1.12rem;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
}

.footer-column h2 {
  margin-bottom: 14px;
  color: white;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-column p {
  margin-bottom: 4px;
}

.footer-column a:hover,
.footer-bottom a:hover {
  color: white;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.48);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-links,
.footer-social {
  display: flex;
  align-items: center;
}

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

.footer-social {
  gap: 18px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.social-icon {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  place-items: center;
}

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

.social-link:hover .social-icon {
  color: white;
}

.footer-link-separator {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.22);
}

/* Inner pages */
.inner-page .site-header {
  position: absolute;
}

.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 164px 0 78px;
  background:
    radial-gradient(circle at 82% 32%, rgba(171, 139, 127, 0.2), transparent 24%),
    var(--cream);
}

.inner-hero::after {
  position: absolute;
  z-index: 0;
  top: 120px;
  right: clamp(-150px, -5vw, -40px);
  width: clamp(280px, 34vw, 510px);
  aspect-ratio: 1;
  border: 1px solid rgba(95, 91, 91, 0.16);
  border-radius: 50%;
  content: "";
}

.inner-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 80px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  color: rgba(51, 48, 48, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.breadcrumbs span { opacity: 0.55; }

.inner-hero h1 {
  max-width: 920px;
  margin-bottom: 28px;
  font-size: clamp(3.1rem, 6vw, 6rem);
}

.inner-hero .lead {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.16rem, 2vw, 1.45rem);
  line-height: 1.62;
}

.hero-aside {
  position: relative;
  z-index: 2;
  padding: 28px;
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid var(--line);
  border-radius: 3px 42px 3px 3px;
  backdrop-filter: blur(12px);
}

.hero-aside-label {
  display: block;
  margin-bottom: 9px;
  color: var(--clay);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-aside p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.55;
}

.content-section {
  padding: 84px 0;
}

.content-section-soft { background: var(--white); }
.content-section-sage { background: var(--sage-soft); }

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: start;
  gap: clamp(70px, 9vw, 130px);
}

.prose {
  max-width: 790px;
}

.prose > :first-child { margin-top: 0; }

.prose h2 {
  margin: 78px 0 25px;
  font-size: clamp(2.15rem, 3.5vw, 3.45rem);
}

.prose h2:first-child { margin-top: 0; }

.prose h3 {
  margin: 46px 0 14px;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.25;
}

.prose p,
.prose li {
  color: rgba(51, 48, 48, 0.78);
}

.prose p { margin-bottom: 22px; }

.prose strong { color: var(--ink); }

.prose ul {
  padding: 0;
  margin: 24px 0 34px;
  list-style: none;
}

.prose li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.prose li::before {
  position: absolute;
  top: 0.7em;
  left: 2px;
  width: 7px;
  height: 7px;
  background: var(--clay);
  border-radius: 50%;
  content: "";
}

.prose a:not(.button):not(.text-link) {
  color: var(--forest);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.intro-copy-large {
  margin-bottom: 36px;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.62;
}

.page-aside {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px;
}

.aside-card {
  padding: 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 3px 42px 3px 3px;
}

.aside-card-dark {
  color: white;
  background: var(--forest-deep);
  border-color: var(--forest-deep);
}

.aside-card .eyebrow { margin-bottom: 13px; }
.aside-card-dark .eyebrow { color: var(--primary); }

.aside-card h2,
.aside-card h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
  line-height: 1.25;
}

.aside-card p {
  margin-bottom: 20px;
  color: rgba(51, 48, 48, 0.7);
  font-size: 0.88rem;
}

.aside-card-dark p { color: rgba(255,255,255,0.7); }

.mini-contact {
  display: grid;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 700;
}

.mini-contact a:hover { text-decoration: underline; }

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

.service-card,
.workshop-card {
  position: relative;
  display: flex;
  min-height: 420px;
  padding: 38px;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px 56px 3px 3px;
}

.service-card:nth-child(2n),
.workshop-card:nth-child(2n) { background: var(--cream); }

.service-card .card-number,
.workshop-card .card-number { color: var(--clay); }

.service-card h2,
.workshop-card h2 {
  margin: 60px 0 18px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.service-card p,
.workshop-card p {
  color: rgba(51, 48, 48, 0.72);
}

.service-card .card-link,
.workshop-card .card-link {
  align-self: flex-start;
  margin-top: auto;
}

.workshop-card-with-image {
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.workshop-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.workshop-card-body {
  display: flex;
  min-height: 330px;
  padding: 34px 38px 38px;
  flex-direction: column;
}

.workshop-card-with-image h2 {
  margin: 0 0 18px;
}

.workshop-card-with-image .card-link {
  margin-top: auto;
}

.workshop-feature-media {
  padding: 0 0 clamp(18px, 3vw, 34px);
}

.workshop-feature-media img {
  display: block;
  width: 100%;
  max-height: 680px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid rgba(var(--theme-rgb), 0.38);
  border-radius: 3px 72px 3px 3px;
}

.workshop-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

.workshop-gallery img {
  height: 100%;
  max-height: 540px;
}

.workshop-gallery img:last-child {
  border-radius: 56px 3px 3px 3px;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  padding: 0;
  margin: 25px 0 30px;
  list-style: none;
}

.benefit-list li {
  display: flex;
  gap: 10px;
  color: rgba(51, 48, 48, 0.72);
  font-size: 0.86rem;
}

.benefit-list li::before {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: white;
  background: var(--sage);
  border-radius: 50%;
  content: "✓";
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 32px 0;
}

.fact {
  padding: 24px;
  background: var(--cream);
  border-left: 3px solid var(--clay);
}

.fact span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fact strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.5;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.module-card {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.module-card span {
  color: var(--clay);
  font-family: var(--serif);
  font-size: 0.85rem;
}

.module-card h3 {
  margin: 12px 0 10px;
  font-size: 1.35rem;
}

.module-card p {
  margin: 0;
  font-size: 0.88rem;
}

.mindfulness-quote {
  position: relative;
  padding: clamp(34px, 5vw, 54px);
  margin: clamp(40px, 5vw, 58px) 0;
  background: rgba(var(--theme-rgb), 0.1);
  border: 1px solid rgba(var(--theme-rgb), 0.34);
  border-radius: 3px 56px 3px 3px;
}

.mindfulness-feature-media {
  padding: 0;
}

.mindfulness-feature-media img {
  display: block;
  width: 100%;
  max-height: 680px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid rgba(var(--theme-rgb), 0.38);
  border-radius: 3px 72px 3px 3px;
}

.mindfulness-quote::before {
  position: absolute;
  top: 14px;
  right: 28px;
  color: rgba(var(--theme-rgb), 0.22);
  content: "“";
  font-family: var(--serif);
  font-size: 7rem;
  line-height: 1;
}

.mindfulness-quote p {
  position: relative;
  max-width: 680px;
  margin: 0;
  color: var(--primary);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3.2vw, 2.55rem);
  font-style: italic;
  line-height: 1.35;
}

.mindfulness-quote cite {
  display: block;
  margin-top: 18px;
  color: rgba(51, 48, 48, 0.64);
  font-size: 0.78rem;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mindfulness-steps {
  position: relative;
  display: grid;
  gap: 0;
  margin: 34px 0 18px;
}

.mindfulness-step {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 24px;
  padding: 0 0 40px;
}

.mindfulness-step:not(:last-child)::before {
  position: absolute;
  top: 46px;
  bottom: 0;
  left: 23px;
  width: 1px;
  background: rgba(var(--theme-rgb), 0.42);
  content: "";
}

.mindfulness-step > span {
  z-index: 1;
  display: grid;
  width: 47px;
  height: 47px;
  color: var(--primary);
  background: var(--white);
  border: 1px solid rgba(var(--theme-rgb), 0.52);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.86rem;
  place-items: center;
}

.mindfulness-step h3 {
  margin: 4px 0 10px;
}

.mindfulness-step p {
  margin: 0;
}

.mindfulness-modules .module-grid {
  position: relative;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 980px;
  margin-inline: auto;
}

.mindfulness-modules .module-grid::before {
  position: absolute;
  top: 38px;
  bottom: 38px;
  left: 50%;
  width: 1px;
  background: rgba(var(--theme-rgb), 0.38);
  content: "";
  transform: translateX(-50%);
}

.mindfulness-modules .module-card {
  position: relative;
  width: calc(50% - 46px);
  min-height: 175px;
  margin-bottom: 18px;
  padding: 30px 34px;
  border-radius: 3px 44px 3px 3px;
}

.mindfulness-modules .module-card:nth-child(even) {
  margin-left: auto;
  border-radius: 44px 3px 3px 3px;
}

.mindfulness-modules .module-card::after {
  position: absolute;
  top: 36px;
  width: 13px;
  height: 13px;
  background: var(--white);
  border: 3px solid var(--theme-solid);
  border-radius: 50%;
  content: "";
}

.mindfulness-modules .module-card:nth-child(odd)::after {
  right: -53px;
}

.mindfulness-modules .module-card:nth-child(even)::after {
  left: -52px;
}

.theme-mindfulness .mindfulness-intro {
  padding-top: clamp(50px, 6vw, 72px);
  padding-bottom: clamp(64px, 7vw, 84px);
}

.theme-mindfulness .mindfulness-modules {
  padding: clamp(64px, 7vw, 82px) 0 clamp(48px, 5vw, 64px);
}

.theme-mindfulness .mindfulness-modules .section-heading {
  margin-bottom: 38px;
}

.theme-mindfulness .mindfulness-modules .module-card:last-child {
  margin-bottom: 0;
}

.theme-mindfulness .mindfulness-schedule {
  padding: clamp(38px, 4vw, 54px) 0 clamp(64px, 7vw, 82px);
}

.theme-mindfulness .mindfulness-schedule .event-panel {
  margin: 0 0 clamp(46px, 5vw, 62px);
}

.event-panel {
  padding: clamp(38px, 6vw, 70px);
  margin: 70px 0;
  color: white;
  background: var(--forest-deep);
  border-radius: 3px 72px 3px 3px;
}

.event-panel h2 { margin-top: 0; color: white; }
.event-panel p { color: rgba(255,255,255,0.74); }

.event-panel .fact-grid { margin-bottom: 0; }

.event-panel .fact {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
}

.event-panel .fact span { color: rgba(255,255,255,0.58); }
.event-panel .fact strong { color: white; }

.eversports-placeholder {
  display: grid;
  min-height: 430px;
  padding: 50px;
  place-items: center;
  background:
    repeating-linear-gradient(-45deg, transparent 0 18px, rgba(95, 91, 91, .025) 18px 36px),
    var(--cream);
  border: 1px dashed rgba(95, 91, 91, 0.38);
  text-align: center;
}

.eversports-placeholder > div { max-width: 500px; }

.eversports-placeholder svg {
  width: 64px;
  margin: 0 auto 24px;
  fill: none;
  stroke: var(--forest);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.eversports-placeholder h2 { margin: 0 0 14px; font-size: 2rem; }
.eversports-placeholder p { margin: 0; color: var(--muted); }

.eversports-widget {
  width: 100%;
  min-height: 430px;
}

.eversports-section {
  padding: clamp(32px, 4vw, 52px) 0;
}

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

.contact-option {
  min-height: 270px;
  padding: 36px;
  background: var(--cream);
  border-radius: 3px 52px 3px 3px;
}

.contact-option h2 { margin: 28px 0 12px; font-size: 1.7rem; }
.contact-option a { font-family: var(--serif); font-size: 1.05rem; }
.contact-option a:hover { color: var(--clay); }

.contact-icon {
  display: grid;
  width: 48px;
  height: 48px;
  color: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 50%;
  place-items: center;
}

.timeline {
  padding: 0;
  margin: 40px 0 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.timeline li::before { display: none; }

.timeline time {
  color: var(--clay);
  font-family: var(--serif);
}

.timeline p { margin: 0; }

.legal-notice {
  padding: 24px;
  margin: 30px 0;
  background: rgba(171, 139, 127, 0.16);
  border-left: 3px solid var(--clay);
  font-size: 0.9rem;
}

.legal-page .prose { max-width: 850px; }

.privacy-page .inner-hero,
.imprint-page .inner-hero {
  padding: 154px 0 34px;
}

.privacy-page .inner-hero h1,
.imprint-page .inner-hero h1 {
  margin-bottom: 0;
}

.privacy-page .content-section,
.imprint-page .content-section {
  padding: 42px 0 88px;
}

.privacy-page .legal-content h2:first-child,
.imprint-page .legal-content h2:first-child {
  margin-top: 0;
}

@media (max-width: 700px) {
  .privacy-page .inner-hero,
  .imprint-page .inner-hero {
    padding: 132px 0 26px;
  }

  .privacy-page .content-section,
  .imprint-page .content-section {
    padding: 34px 0 70px;
  }
}

.page-cta {
  padding: 76px 0;
  color: white;
  background: var(--forest-deep);
}

.page-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 60px;
}

.page-cta h2 { margin-bottom: 15px; }
.page-cta p { max-width: 690px; margin: 0; color: rgba(255,255,255,0.7); }

.site-footer-simple { margin-top: 0; }

@media (max-width: 1080px) {
  .main-navigation {
    gap: 16px;
  }

  .main-navigation > a:not(.button) {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 30px;
  }

  .hero-visual {
    width: 440px;
  }

  .offer-card {
    min-height: 500px;
    padding: 30px;
  }

  .about-grid {
    gap: 70px;
  }
}

@media (max-width: 840px) {
  :root {
    --shell: min(100% - 36px, 680px);
  }

  .section {
    padding: 86px 0;
  }

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

  .site-header.is-scrolled {
    padding: 10px 0;
  }

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

  .site-header.is-scrolled .brand-logo-signet {
    height: 42px;
  }

  .menu-toggle {
    position: relative;
    z-index: 31;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    place-content: center;
    gap: 6px;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 19px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .main-navigation {
    position: fixed;
    z-index: 30;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 120px 38px 60px;
    flex-direction: column;
    gap: 8px;
    background: var(--cream);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-navigation.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-navigation > a:not(.button) {
    display: block;
    font-family: var(--serif);
    font-size: clamp(1.6rem, 6vw, 2.3rem);
    font-weight: 400;
  }

  .main-navigation .button {
    margin-top: 18px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-grid {
    display: flex;
    align-items: stretch;
    min-height: auto;
    padding-bottom: 74px;
    flex-direction: column;
  }

  .hero-copy {
    padding-bottom: 10px;
  }

  .hero-visual {
    width: min(100%, 500px);
    align-self: center;
  }

  .section-heading,
  .contact-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .offer-card {
    min-height: 410px;
  }

  .card-icon {
    margin-bottom: 44px;
  }

  .schedule-card {
    grid-template-columns: 1fr;
    border-radius: 4px 70px 4px 4px;
  }

  .schedule-art {
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .about-section {
    background: linear-gradient(to bottom, var(--paper) 0 40%, var(--white) 40% 100%);
  }

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

  .about-portrait {
    width: min(100%, 440px);
    justify-self: center;
  }

  .contact-actions {
    align-items: flex-start;
    margin-top: 12px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .inner-hero { padding: 148px 0 82px; }
  .inner-hero-grid,
  .content-layout,
  .page-cta-inner { grid-template-columns: 1fr; }
  .inner-hero-grid { gap: 46px; }
  .hero-aside { max-width: 460px; }
  .page-aside { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid,
  .workshop-grid { grid-template-columns: 1fr; }
  .service-card,
  .workshop-card { min-height: 380px; }
  .workshop-card-with-image { min-height: 0; }
  .workshop-gallery { grid-template-columns: 1fr; }
  .workshop-gallery img { max-height: none; }
  .mindfulness-modules .module-grid::before {
    right: auto;
    left: 23px;
    transform: none;
  }
  .mindfulness-modules .module-card,
  .mindfulness-modules .module-card:nth-child(even) {
    width: calc(100% - 64px);
    margin-right: 0;
    margin-left: 64px;
    border-radius: 3px 44px 3px 3px;
  }
  .mindfulness-modules .module-card:nth-child(odd)::after,
  .mindfulness-modules .module-card:nth-child(even)::after {
    right: auto;
    left: -47px;
  }
  .content-section { padding: 82px 0; }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
  }

  html,
  body {
    overflow-x: clip;
  }

  .shell {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  body {
    font-size: 16px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 9.6vw, 3rem);
    letter-spacing: -0.02em;
    text-wrap: auto;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 2.75rem);
    letter-spacing: -0.025em;
    text-wrap: auto;
  }

  .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.09em;
  }

  .section {
    padding: 74px 0;
  }

  .brand-copy strong {
    font-size: 0.95rem;
  }

  .brand-copy span {
    font-size: 0.58rem;
  }

  .brand-mark {
    width: 42px;
  }

  .hero-copy {
    max-width: 100%;
    min-width: 0;
    padding-top: 28px;
  }

  .hero-intro,
  .hero-note,
  .inner-hero .lead {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-intro {
    font-size: 1.18rem;
  }

  .button-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-facts {
    align-items: flex-start;
    flex-direction: column;
  }

  .visual-caption-top {
    right: -1%;
  }

  .practice-track {
    justify-content: flex-start;
    animation: ticker 18s linear infinite alternate;
  }

  @keyframes ticker {
    to { transform: translateX(-36%); }
  }

  .offer-card {
    min-height: 440px;
    padding: 28px;
    border-radius: 4px 52px 4px 4px;
  }

  .schedule-card {
    width: 100%;
    border-radius: 0;
  }

  .schedule-copy {
    padding: 54px 28px 62px;
  }

  .schedule-copy .button-row {
    gap: 18px;
  }

  .about-grid {
    gap: 58px;
  }

  .about-copy blockquote {
    padding-left: 20px;
  }

  .contact-section {
    padding-bottom: 40px;
  }

  .contact-card {
    width: 100%;
    padding: 54px 28px;
    border-radius: 0;
  }

  .business-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .inner-hero { padding: 132px 0 66px; }
  .inner-hero h1 { font-size: clamp(2.75rem, 14vw, 4rem); }
  .inner-hero .lead { font-size: 1.08rem; }
  .hero-aside { padding: 24px; }
  .content-section { padding: 68px 0; }
  .page-aside,
  .benefit-list,
  .fact-grid,
  .module-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .service-card,
  .workshop-card { min-height: 400px; padding: 28px; }
  .workshop-card-with-image { min-height: 0; padding: 0; }
  .workshop-card-body { min-height: 300px; padding: 28px; }
  .workshop-feature-media img { border-radius: 3px 44px 3px 3px; }
  .mindfulness-quote { padding: 30px 24px; }
  .mindfulness-quote::before { right: 16px; font-size: 5rem; }
  .mindfulness-feature-media img { border-radius: 3px 44px 3px 3px; }
  .mindfulness-step { grid-template-columns: 46px minmax(0, 1fr); gap: 16px; }
  .mindfulness-step > span { width: 40px; height: 40px; }
  .mindfulness-step:not(:last-child)::before { top: 40px; left: 19px; }
  .mindfulness-modules .module-grid::before { left: 16px; }
  .mindfulness-modules .module-card,
  .mindfulness-modules .module-card:nth-child(even) {
    width: calc(100% - 44px);
    margin-left: 44px;
    padding: 25px;
  }
  .mindfulness-modules .module-card:nth-child(odd)::after,
  .mindfulness-modules .module-card:nth-child(even)::after {
    left: -34px;
  }
  .event-panel { width: calc(100% + 28px); margin-left: -14px; border-radius: 0; }
  .eversports-placeholder { min-height: 360px; padding: 32px 22px; }
  .contact-option { min-height: 230px; padding: 28px; }
  .timeline li { grid-template-columns: 1fr; gap: 6px; }
  .page-cta { padding: 60px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ================================================================
   Final color system
   White canvas, dark taupe typography, one transparent theme per page.
   ================================================================ */

body {
  color: var(--text);
  background: var(--white);
}

h1,
h2,
h3,
.brand-copy strong {
  color: var(--primary);
}

.eyebrow {
  color: var(--primary);
}

.button {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

.button:hover {
  color: var(--white);
  background: var(--text);
  border-color: var(--text);
}

.button:focus-visible,
.text-link:focus-visible,
.card-link:focus-visible,
.main-navigation a:focus-visible,
.menu-toggle:focus-visible {
  outline-color: var(--text);
  box-shadow: 0 0 0 5px rgba(171, 139, 127, 0.7);
}

.button-light {
  color: var(--primary);
  background: var(--white);
  border-color: var(--white);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
}

.brand-mark {
  color: var(--primary);
  border-color: rgba(95, 91, 91, 0.4);
}

.brand-copy span,
.hero-note,
.section-heading > p,
.about-copy > p:not(.eyebrow),
.contact-card p:last-child,
.prose p,
.prose li,
.service-card p,
.workshop-card p,
.aside-card p {
  color: rgba(51, 48, 48, 0.72);
}

.main-navigation > a:not(.button)::after {
  background: var(--workshop);
}

/* Home page */
.hero,
.offers,
.schedule-section,
.about-section,
.contact-section,
.business-note {
  background: var(--white);
}

.hero {
  background-image: none;
}

.hero-glow {
  top: 14%;
  left: 48%;
  width: clamp(360px, 37vw, 520px);
  height: auto;
  aspect-ratio: 1;
  background: radial-gradient(
    circle at 62% 43%,
    rgba(229, 196, 137, 0.46) 0 20%,
    rgba(197, 161, 113, 0.25) 42%,
    rgba(171, 139, 127, 0.12) 64%,
    transparent 73%
  );
  box-shadow: 0 20px 70px rgba(171, 139, 127, 0.12);
  filter: blur(10px);
  opacity: 1;
  transform: translateX(-8%);
}

h1 em {
  color: var(--primary);
  text-decoration-color: var(--workshop);
  text-decoration-line: underline;
  text-decoration-thickness: 0.075em;
  text-underline-offset: 0.12em;
}

.hero-facts {
  color: rgba(51, 48, 48, 0.74);
}

.hero-facts span {
  background: var(--course);
}

.hero-visual::before {
  border-color: rgba(197, 161, 113, 0.34);
}

.hero-visual image {
  filter: saturate(0.88) sepia(0.08) brightness(1.04);
}

.visual-caption {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(95, 91, 91, 0.22);
  box-shadow: 0 9px 28px rgba(95, 91, 91, 0.14);
}

#archFill stop:first-child { stop-color: var(--subtle); }
#archFill stop:last-child { stop-color: var(--contact-surface); }
#sunFill stop:first-child { stop-color: var(--warm-neutral); }
#sunFill stop:last-child { stop-color: var(--workshop); }
.hero-visual [fill="#9ca8bb"] { fill: var(--cool-neutral); }
.hero-visual [fill="#6c7c98"] { fill: var(--mindfulness); }
.hero-visual [fill="#ab8b7f"] { fill: var(--workshop); }
.hero-visual [stroke="#5f5b5b"] { stroke: var(--primary); }
.hero-visual [stroke="#ffffff"] { stroke: var(--white); }

.practice-line {
  background: var(--white);
}

.practice-track i {
  background: var(--workshop);
}

.offer-card,
.offer-card-sage,
.offer-card-clay,
.offer-card-cream {
  position: relative;
  color: var(--text);
  border-radius: 4px;
  isolation: isolate;
}

.offer-card-sage {
  background: #bbdaed;
  border: 1px solid #94bfd5;
}

.offer-card-clay {
  background: #c7ada3;
  border: 1px solid #ad8f85;
}

.offer-card-cream {
  color: #ffffff;
  background: #62728e;
  border: 1px solid #53627d;
}

.offer-card h3,
.offer-card-sage h3,
.offer-card-clay h3,
.offer-card-cream h3 {
  color: var(--primary);
}

.offer-card-cream h3 {
  color: #ffffff;
}

.offer-card .card-number {
  display: none;
}

.offer-card .card-icon,
.offer-card-sage .card-icon,
.offer-card-clay .card-icon,
.offer-card-cream .card-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 52px;
  background: transparent;
  border: 0;
  border-radius: 0;
  place-items: start;
}

.offer-card .card-icon svg {
  width: 58px;
  stroke-width: 2.8;
}
.offer-card-sage .card-icon { color: #356f86; }
.offer-card-clay .card-icon { color: #874f43; }
.offer-card-cream .card-icon { color: #c5dda7; }
.offer-card-sage .card-link { border-bottom-color: #527f96; }
.offer-card-clay .card-link { border-bottom-color: #765f57; }
.offer-card-cream .card-link { border-bottom-color: rgba(255, 255, 255, 0.72); }
.offer-card-sage .card-link span { color: #527f96; }
.offer-card-clay .card-link span { color: #765f57; }
.offer-card-cream .card-link span { color: #ffffff; }

.schedule-card {
  color: var(--text);
  background: #eaf5fb;
  border: 1px solid rgba(123, 165, 180, 0.34);
  box-shadow: 0 18px 52px rgba(82, 127, 150, 0.08);
}

.schedule-art {
  background: #f8fcfe;
  border-color: rgba(123, 165, 180, 0.22);
}

.schedule-art {
  display: grid;
  padding: 42px;
  place-items: center;
}

.mini-course-plan {
  width: min(100%, 300px);
  padding: 30px 26px 24px;
  background: var(--white);
  border: 1px solid rgba(123, 165, 180, 0.46);
  border-radius: 3px 34px 3px 3px;
  box-shadow: 0 18px 42px rgba(82, 127, 150, 0.1);
}

.mini-plan-heading {
  display: grid;
  gap: 5px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(82, 127, 150, 0.26);
}

.mini-plan-heading span {
  color: #527f96;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mini-plan-heading strong {
  color: var(--primary);
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
}

.mini-plan-list {
  display: grid;
  gap: 0;
}

.mini-plan-row {
  display: grid;
  grid-template-columns: 10px 1fr;
  align-items: center;
  gap: 13px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(82, 127, 150, 0.18);
}

.mini-plan-row i {
  width: 9px;
  height: 9px;
  background: #356f86;
  border-radius: 50%;
}

.mini-plan-row:nth-child(2) i { background: #7ba5b4; }
.mini-plan-row:nth-child(3) i { background: #62728e; }
.mini-plan-row:nth-child(4) i { background: #94bfd5; }

.mini-plan-row span {
  display: grid;
  gap: 2px;
}

.mini-plan-row strong {
  color: var(--text);
  font-size: 0.8rem;
}

.mini-plan-row small {
  color: rgba(51, 48, 48, 0.62);
  font-size: 0.68rem;
}

.mini-plan-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 18px;
  color: #527f96;
  font-size: 0.68rem;
  font-weight: 700;
}

.mini-plan-footer span {
  width: 18px;
  height: 1px;
  background: currentColor;
}

.orbit-one { border-color: var(--contact-surface); }
.orbit-two { border-color: var(--cool-neutral); }
.orbit-three { border-color: var(--warm-neutral); }

.schedule-word,
.schedule-card h2 {
  color: var(--primary);
}

.schedule-copy .eyebrow-light {
  color: #527f96;
}

.schedule-copy p:not(.eyebrow),
.schedule-detail {
  color: rgba(51, 48, 48, 0.72);
}

.schedule-card .button-light {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

.schedule-card .button-light:hover {
  background: var(--text);
  border-color: var(--text);
}

.about-section {
  background-image: none;
}

.about-portrait [fill="#e5e9ef"] { fill: var(--subtle); }
.about-portrait [fill="#ab8b7f"] { fill: var(--workshop); }
.about-portrait [fill="#7ba5b4"] { fill: var(--course); }
.about-portrait [stroke="#ffffff"] { stroke: var(--white); }

.about-portrait > p {
  background: var(--white);
  border-color: var(--line);
}

.about-copy blockquote {
  border-color: var(--workshop);
}

.contact-card {
  background: var(--contact-surface);
}

.contact-actions > a:last-child {
  border-color: var(--primary);
}

/* Inner pages */
.inner-hero,
.content-section,
.content-section-soft,
.content-section-sage {
  background: var(--white);
  background-image: none;
}

.inner-hero::after {
  background: rgba(var(--theme-rgb), 0.08);
  border-color: rgba(var(--theme-rgb), 0.35);
}

.inner-hero::before {
  position: absolute;
  z-index: 1;
  top: clamp(112px, 10vw, 148px);
  right: clamp(38px, 8vw, 120px);
  width: clamp(108px, 12vw, 164px);
  aspect-ratio: 1;
  background-color: var(--theme-solid);
  content: "";
  opacity: var(--hero-icon-opacity, 0.15);
  pointer-events: none;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.legal-page .inner-hero::before,
.legal-page .inner-hero::after,
.page-contact .inner-hero::before,
.page-contact .inner-hero::after,
.page-about .inner-hero::before,
.page-about .inner-hero::after,
.page-error .inner-hero::before,
.page-error .inner-hero::after {
  display: none;
}

.page-error .inner-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.page-error .inner-hero h1 {
  max-width: 820px;
}

.error-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

@media (max-width: 560px) {
  .error-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
}

.theme-courses .inner-hero::before {
  -webkit-mask-image: url("../icons/icon-kurse.svg");
  mask-image: url("../icons/icon-kurse.svg");
  background-color: #4f8da4;
  --hero-icon-opacity: 0.48;
}

@media (min-width: 1081px) {
  .theme-courses .inner-hero::before {
    top: clamp(82px, 7vw, 108px);
    right: clamp(38px, 8vw, 120px);
  }
}

.theme-workshops .inner-hero::before {
  -webkit-mask-image: url("../icons/icon-workshops.svg");
  mask-image: url("../icons/icon-workshops.svg");
  background-color: #a86656;
  --hero-icon-opacity: 0.45;
}

.theme-mindfulness .inner-hero::before {
  -webkit-mask-image: url("../icons/icon-achtsamkeit.svg");
  mask-image: url("../icons/icon-achtsamkeit.svg");
  background-color: #657a9f;
  --hero-icon-opacity: 0.5;
}

.theme-courses .inner-hero::after,
.theme-workshops .inner-hero::after,
.theme-mindfulness .inner-hero::after {
  display: none;
}

.hero-aside-stack {
  display: grid;
  align-self: end;
  justify-items: end;
  gap: 12px;
}

.hero-aside-stack .hero-aside {
  width: 100%;
}

.hero-theme-icon {
  display: block;
  width: clamp(108px, 12vw, 164px);
  aspect-ratio: 1;
  margin-right: clamp(18px, 3vw, 42px);
  background: #657a9f;
  opacity: 0.5;
  -webkit-mask: url("../icons/icon-achtsamkeit.svg") center / contain no-repeat;
  mask: url("../icons/icon-achtsamkeit.svg") center / contain no-repeat;
}

.theme-mindfulness .hero-theme-icon {
  display: none;
}

@media (max-width: 560px) {
  .inner-hero::before {
    top: 102px;
    right: 20px;
    width: 82px;
    opacity: var(--hero-icon-opacity, 0.42);
  }

  .hero-aside-stack {
    width: 100%;
    max-width: 460px;
    gap: 10px;
  }

  .hero-theme-icon {
    width: 82px;
    margin-right: 20px;
  }
}

.hero-aside {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(var(--theme-rgb), 0.38);
}

.hero-aside-label {
  color: var(--primary);
}

.page-about .inner-hero {
  padding-bottom: clamp(18px, 3vw, 28px);
}

.page-about .content-section:first-of-type {
  padding-top: clamp(12px, 2.4vw, 24px);
  padding-bottom: clamp(42px, 5vw, 64px);
}

.page-about .content-section-soft {
  padding-top: clamp(42px, 5vw, 64px);
}

.page-about .inner-hero-grid {
  grid-template-columns: minmax(0, 1fr) 310px;
}

.page-about .hero-aside {
  width: 100%;
}

.page-about .page-aside {
  width: 310px;
  max-width: 100%;
  justify-self: end;
}

.page-about .page-aside {
  grid-template-columns: 1fr;
}

.page-about .inner-hero .lead,
.page-about .intro-copy-large {
  color: rgba(51, 48, 48, 0.78);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.62;
}

.page-about .hero-aside,
.page-about .page-aside .aside-card,
.page-about .page-aside .aside-card-dark {
  color: var(--text);
  background: rgba(var(--theme-rgb), 0.24);
  border-color: rgba(var(--theme-rgb), 0.55);
  box-shadow: 0 18px 48px rgba(var(--theme-rgb), 0.11);
}

.page-about .hero-aside p,
.page-about .page-aside .aside-card p,
.page-about .page-aside .aside-card-dark p {
  color: rgba(51, 48, 48, 0.78);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.55;
}

.page-about .page-aside .aside-card h2,
.page-about .page-aside .aside-card h3,
.page-about .page-aside .aside-card-dark h2,
.page-about .page-aside .aside-card-dark h3 {
  color: var(--text);
  font-size: 1.45rem;
}

.page-about .hero-aside-label,
.page-about .page-aside .eyebrow,
.page-about .page-aside .aside-card-dark .eyebrow {
  color: var(--primary);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .page-about .inner-hero-grid {
    grid-template-columns: 1fr;
  }

  .page-about .hero-aside {
    width: 310px;
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .page-about .inner-hero-grid {
    grid-template-columns: 1fr;
  }

  .page-about .hero-aside,
  .page-about .page-aside {
    width: 100%;
  }
}

.service-card,
.service-card:nth-child(2n),
.workshop-card,
.workshop-card:nth-child(2n),
.module-card,
.aside-card,
.aside-card-dark,
.fact {
  color: var(--text);
  background: rgba(var(--theme-rgb), var(--theme-alpha));
  border-color: rgba(var(--theme-rgb), 0.4);
}

.theme-courses .service-card,
.theme-courses .service-card:nth-child(2n) {
  background: #eaf5fb;
  border-color: rgba(123, 165, 180, 0.36);
}

.theme-courses .hero-aside {
  color: var(--text);
  background: #bbdaed;
  border-color: #94bfd5;
  box-shadow: 0 18px 48px rgba(82, 127, 150, 0.12);
}

.theme-courses .hero-aside-label {
  color: #356f86;
}

.theme-courses .hero-aside p {
  color: #333030;
}

.theme-courses .course-questions-box {
  color: var(--text);
  background: #bbdaed;
  border-color: #94bfd5;
  box-shadow: 0 18px 48px rgba(82, 127, 150, 0.1);
}

.theme-courses .course-questions-box .eyebrow,
.theme-courses .course-questions-box h3 {
  color: #356f86;
}

.theme-courses .course-questions-box p {
  color: #333030;
}

.theme-workshops .hero-aside {
  color: var(--text);
  background: #eee6e3;
  border-color: #d7c2ba;
  box-shadow: 0 18px 48px rgba(135, 79, 67, 0.1);
}

.theme-workshops .hero-aside-label {
  color: #874f43;
}

.theme-workshops .hero-aside p {
  color: #333030;
}

.theme-mindfulness .hero-aside {
  color: var(--text);
  background: #e8ebf0;
  border-color: #c5ccda;
  box-shadow: 0 18px 48px rgba(101, 122, 159, 0.1);
}

.theme-mindfulness .hero-aside-label {
  color: #53698f;
}

.theme-mindfulness .hero-aside p {
  color: #333030;
}

.theme-courses .service-card .benefit-list li::before {
  color: #527f96;
  background: #ffffff;
  box-shadow: 0 1px 5px rgba(82, 127, 150, 0.22);
}

.theme-courses .service-card-with-image {
  padding: 0;
  overflow: hidden;
}

.service-card-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 48%;
}

.service-card-image-hatha {
  object-position: center top;
}

.service-card-image-faszien {
  object-position: center 84%;
}

.service-card-image-pilates {
  object-position: center 52%;
}

.service-card-body {
  display: flex;
  padding: 32px 38px 38px;
  flex: 1;
  flex-direction: column;
}

.theme-courses .service-card-body {
  background: #eaf5fb;
}

.service-card-with-image .service-card-body h2 {
  margin-top: 0;
}

.service-card .card-number,
.workshop-card .card-number {
  color: var(--primary);
}

.service-card h2,
.workshop-card h2,
.module-card h3,
.aside-card h2,
.aside-card h3,
.aside-card-dark h2,
.aside-card-dark h3 {
  color: var(--primary);
}

.theme-mindfulness .module-card h3 {
  color: #53698f;
}

.aside-card-dark .eyebrow,
.module-card span,
.fact span {
  color: var(--primary);
}

.aside-card-dark p {
  color: rgba(51, 48, 48, 0.72);
}

.aside-card-dark .button-light {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

.event-panel {
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(var(--theme-rgb), 0.42);
}

.event-panel h2 {
  color: var(--primary);
}

.event-panel p {
  color: rgba(51, 48, 48, 0.72);
}

.event-panel .eyebrow-light,
.page-cta .eyebrow-light {
  color: var(--primary);
}

.event-panel .fact {
  color: var(--text);
  background: rgba(var(--theme-rgb), var(--theme-alpha));
  border-color: var(--theme-solid);
}

.event-panel .fact span,
.event-panel .fact strong {
  color: var(--primary);
}

.kloster-intro-section {
  padding-bottom: clamp(38px, 5vw, 58px);
}

.kloster-schedule-section {
  padding-top: clamp(22px, 3vw, 34px);
}

.eversports-placeholder {
  background: var(--white);
  border-color: rgba(123, 165, 180, 0.58);
}

.eversports-placeholder svg {
  stroke: var(--course);
}

.contact-option {
  background: rgba(171, 213, 237, 0.38);
  border: 1px solid rgba(123, 165, 180, 0.35);
}

.contact-icon {
  color: var(--primary);
  border-color: var(--course);
}

/* Contact page: compact, clearly grouped content */
.page-contact .content-section {
  padding: clamp(62px, 7vw, 82px) 0;
}

.page-contact .section-heading {
  gap: clamp(28px, 5vw, 64px);
  margin-bottom: clamp(30px, 4vw, 42px);
}

.page-contact .contact-grid {
  gap: clamp(16px, 2vw, 22px);
}

.page-contact .hero-aside,
.page-contact .aside-card {
  background: rgba(171, 213, 237, 0.38);
  border-color: rgba(123, 165, 180, 0.35);
}

.page-contact .contact-option {
  min-height: 0;
  padding: clamp(26px, 3vw, 32px);
}

.page-contact .contact-option h2 {
  margin: 20px 0 9px;
  font-size: clamp(1.45rem, 2.2vw, 1.65rem);
}

.page-contact .contact-option p {
  margin-bottom: 16px;
}

.page-contact .content-layout {
  gap: clamp(42px, 7vw, 88px);
}

.page-contact .prose h2 {
  margin: 48px 0 14px;
  font-size: clamp(1.75rem, 2.7vw, 2.35rem);
}

.page-contact .prose h2:first-child {
  margin-top: 0;
}

.page-contact .prose p {
  margin-bottom: 18px;
}

.page-contact .aside-card {
  padding: 24px;
}

.page-contact .aside-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 880px) {
  .page-contact .section-heading {
    gap: 16px;
  }

  .page-contact .content-layout {
    gap: 38px;
  }
}

@media (max-width: 560px) {
  .page-contact .content-section {
    padding: 52px 0;
  }

  .page-contact .contact-option {
    padding: 24px;
  }

  .page-contact .prose h2 {
    margin-top: 38px;
    font-size: 1.7rem;
  }

  .page-contact .prose > .button {
    display: flex;
    width: fit-content;
    margin-inline: auto;
  }

  .page-contact .prose a[href^="https://www.angelagutting.de"] {
    display: flex;
    width: fit-content;
    margin-inline: auto;
    justify-content: center;
  }
}

.legal-notice {
  background: rgba(171, 139, 127, 0.16);
  border-color: var(--workshop);
}

.page-cta {
  color: var(--text);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.page-cta h2 {
  color: var(--primary);
}

.page-cta p {
  color: rgba(51, 48, 48, 0.72);
}

.page-cta .button-light {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

/* Footer remains the single full-width dark surface. */
.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: var(--primary);
}

.brand-footer .brand-mark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.brand-footer .brand-copy strong,
.footer-column h2 {
  color: var(--white);
}

@media (max-width: 840px) {
  .main-navigation,
  .about-section {
    background: var(--white);
  }

  .hero-glow {
    top: auto;
    bottom: 9%;
    left: 50%;
    width: min(78vw, 480px);
    transform: translateX(-50%);
  }
}

@media (max-width: 560px) {
  .menu-toggle > span:not(.sr-only) {
    background: var(--primary);
  }

  .hero-glow {
    bottom: 7%;
    width: 90vw;
  }
}

/* ================================================================
   Final mobile experience
   All layout changes below are intentionally capped at 840px so the
   established desktop presentation from 841px upward stays untouched.
   ================================================================ */

.mobile-quick-entry {
  display: none;
}

@media (max-width: 840px) {
  h1,
  h2,
  h3 {
    letter-spacing: 0;
  }

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

  .site-header.is-scrolled {
    padding: 9px 0;
  }

  .header-inner {
    width: min(100% - 30px, 540px);
    gap: 14px;
    margin-inline: auto;
  }

  .brand {
    min-height: 44px;
    gap: 10px;
  }

  .brand-logo-signet {
    height: 42px;
  }

  .site-header.is-scrolled .brand-logo-signet {
    height: 38px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(95, 91, 91, 0.24);
    box-shadow: 0 10px 28px rgba(95, 91, 91, 0.08);
  }

  .main-navigation {
    align-items: center;
    justify-content: flex-start;
    padding: 112px max(28px, calc((100vw - 540px) / 2)) 54px;
    gap: 14px;
    text-align: center;
  }

  .main-navigation > a:not(.button) {
    display: inline-flex;
    min-height: 44px;
    min-width: 44px;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    font-size: 2rem;
    line-height: 1.12;
  }

  .main-navigation > a:not(.button)::after {
    bottom: 0;
  }

  .main-navigation .button {
    width: min(100%, 284px);
    min-height: 52px;
    margin-top: 14px;
  }

  body.theme-home main {
    display: flex;
    flex-direction: column;
  }

  .theme-home .hero {
    order: 1;
    padding-top: 108px;
  }

  .theme-home .mobile-quick-entry {
    display: block;
    order: 2;
    padding: 28px 0 18px;
    background: var(--white);
  }

  .theme-home .schedule-section {
    order: 3;
    padding: 32px 0 64px;
  }

  .theme-home .offers {
    order: 4;
    padding: 60px 0 74px;
  }

  .theme-home .about-section {
    order: 5;
    padding: 74px 0;
  }

  .theme-home .contact-section {
    order: 6;
    padding: 64px 0 34px;
  }

  .theme-home .business-note {
    order: 7;
    padding: 24px 0 62px;
  }

  .theme-home .hero-grid {
    align-items: center;
    gap: 24px;
    min-height: auto;
    padding-bottom: 32px;
    text-align: center;
  }

  .theme-home .hero-copy {
    max-width: 540px;
    padding: 26px 0 0;
    margin-inline: auto;
  }

  .theme-home .hero h1 {
    max-width: 520px;
    margin: 0 auto 20px;
    font-size: 2.9rem;
    line-height: 1.08;
  }

  .theme-home .hero-intro {
    max-width: 500px;
    margin: 0 auto 10px;
    font-size: 1.24rem;
  }

  .theme-home .hero-note {
    max-width: 470px;
    margin: 0 auto 26px;
  }

  .theme-home .hero .button-row {
    justify-content: center;
    gap: 14px;
  }

  .theme-home .hero .button {
    min-width: 224px;
  }

  .theme-home .hero .text-link {
    justify-content: center;
  }

  .text-link,
  .card-link {
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .theme-home .hero-facts {
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
  }

  .theme-home .hero-facts li {
    padding: 8px 11px;
    background: rgba(123, 165, 180, 0.12);
    border: 1px solid rgba(123, 165, 180, 0.22);
    border-radius: 999px;
  }

  .theme-home .hero-facts span {
    width: 18px;
    height: 18px;
  }

  .theme-home .hero-visual {
    width: min(70vw, 330px);
    margin: 2px auto 0;
    align-self: center;
    justify-self: center;
  }

  .theme-home .hero-visual::before {
    top: 9%;
    right: -10%;
    width: 70%;
  }

  .theme-home .practice-line {
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }

  .theme-home .practice-track {
    width: auto;
    min-width: 0;
    min-height: auto;
    padding: 18px 24px 20px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 14px;
    animation: none;
    font-size: 0.98rem;
  }

  .theme-home .practice-track i {
    width: 4px;
    height: 4px;
  }

  .mobile-quick-inner {
    display: grid;
    width: min(100% - 32px, 520px);
    gap: 10px;
    margin-inline: auto;
  }

  .mobile-quick-card {
    display: grid;
    min-height: 86px;
    align-content: center;
    gap: 4px;
    padding: 18px 20px;
    border: 1px solid rgba(95, 91, 91, 0.16);
    border-radius: 8px;
    text-align: center;
  }

  .mobile-quick-card span {
    color: var(--primary);
    font-family: var(--serif);
    font-size: 1.35rem;
    line-height: 1.2;
  }

  .mobile-quick-card small {
    color: rgba(51, 48, 48, 0.68);
    font-size: 0.83rem;
    line-height: 1.45;
  }

  .mobile-quick-card-courses {
    background: #eaf5fb;
    border-color: rgba(123, 165, 180, 0.34);
  }

  .mobile-quick-card-workshops {
    background: #f1e9e6;
    border-color: rgba(171, 139, 127, 0.34);
  }

  .mobile-quick-card-mindfulness {
    background: #eef1f5;
    border-color: rgba(108, 124, 152, 0.28);
  }

  .section-heading {
    display: block;
    max-width: 540px;
    margin: 0 auto 28px;
    text-align: center;
  }

  .section-heading h2 {
    max-width: 500px;
    margin-inline: auto;
    font-size: 2.2rem;
  }

  .section-heading > p {
    max-width: 460px;
    margin: 14px auto 0;
  }

  .offer-grid,
  .service-grid,
  .workshop-grid,
  .contact-grid {
    max-width: 540px;
    margin-inline: auto;
  }

  .offer-grid,
  .service-grid,
  .workshop-grid {
    gap: 14px;
  }

  .offer-card,
  .service-card,
  .workshop-card {
    min-height: 0;
    padding: 24px 22px 26px;
    align-items: center;
    border-radius: 8px;
    text-align: center;
  }

  .offer-card:hover,
  .service-card:hover,
  .workshop-card:hover {
    box-shadow: none;
    transform: none;
  }

  .offer-card .card-icon {
    width: 48px;
    height: 48px;
    margin: 0 0 18px;
    place-items: center;
  }

  .offer-card .card-icon svg {
    width: 44px;
  }

  .offer-card h3,
  .service-card h2,
  .workshop-card h2 {
    margin: 0 0 12px;
    font-size: 1.72rem;
  }

  .offer-card p,
  .service-card p,
  .workshop-card p {
    margin-bottom: 18px;
  }

  .offer-card .card-link,
  .service-card .card-link,
  .workshop-card .card-link {
    align-self: center;
    margin-top: 4px;
  }

  .theme-home .schedule-card {
    display: flex;
    min-height: 0;
    flex-direction: column;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
  }

  .theme-home .schedule-art {
    width: 100%;
    min-height: 0;
    padding: 28px 20px 4px;
    background: transparent;
    border: 0;
  }

  .theme-home .mini-course-plan {
    width: min(100%, 320px);
    border-radius: 8px;
    text-align: left;
  }

  .theme-home .schedule-copy {
    max-width: 520px;
    padding: 26px 24px 38px;
    margin-inline: auto;
  }

  .theme-home .schedule-copy h2 {
    font-size: 2.1rem;
  }

  .theme-home .schedule-copy p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .theme-home .schedule-copy .button-row {
    align-items: center;
    justify-content: center;
  }

  .theme-home .about-grid {
    gap: 34px;
    text-align: center;
  }

  .theme-home .about-portrait {
    max-width: 320px;
    margin-inline: auto;
  }

  .theme-home .about-portrait > p {
    max-width: 92%;
    margin: -24px auto 0;
    border-radius: 8px;
    text-align: center;
  }

  .theme-home .about-copy {
    max-width: 540px;
    margin-inline: auto;
  }

  .theme-home .about-copy > p:not(.eyebrow) {
    margin-inline: auto;
  }

  .theme-home .about-copy blockquote {
    padding: 22px 0 0;
    border-top: 2px solid var(--workshop);
    border-left: 0;
    text-align: center;
  }

  .theme-home .about-copy .text-link {
    justify-content: center;
  }

  .theme-home .contact-card {
    width: 100%;
    padding: 44px 24px;
    border-radius: 0;
    text-align: center;
  }

  .theme-home .contact-card p:last-child {
    margin-inline: auto;
  }

  .theme-home .contact-actions {
    align-items: center;
  }

  .theme-home .contact-actions .button {
    min-width: 220px;
  }

  .business-inner {
    justify-content: center;
    text-align: center;
  }

  .business-inner .text-link {
    margin-inline: auto;
  }

  .inner-page .inner-hero {
    display: grid;
    justify-items: center;
    padding: 112px 0 54px;
    text-align: center;
  }

  .inner-page.theme-courses .inner-hero::before,
  .inner-page.theme-workshops .inner-hero::before,
  .inner-page.theme-mindfulness .inner-hero::before {
    position: static;
    display: block;
    width: 58px;
    margin: 0 auto 18px;
    opacity: 0.42;
    transform: none;
  }

  .inner-page .inner-hero-grid {
    justify-items: center;
    gap: 22px;
  }

  .breadcrumbs {
    display: none;
  }

  .inner-page .inner-hero h1 {
    max-width: 540px;
    margin-right: auto;
    margin-left: auto;
    font-size: 2.55rem;
    line-height: 1.08;
  }

  .inner-page .inner-hero .lead {
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
    font-size: 1.1rem;
  }

  .hero-aside,
  .aside-card,
  .aside-card-dark {
    border-radius: 8px;
    text-align: center;
  }

  .hero-aside {
    width: min(100%, 430px);
    max-width: 430px;
    padding: 22px;
  }

  .hero-aside-stack {
    justify-items: center;
  }

  .content-section {
    padding: 58px 0;
  }

  .content-layout {
    gap: 30px;
  }

  .prose {
    max-width: 560px;
    margin-inline: auto;
  }

  .prose h2 {
    margin-top: 40px;
    font-size: 2rem;
    text-align: center;
  }

  .prose h3 {
    margin-top: 32px;
    font-size: 1.45rem;
    text-align: center;
  }

  .intro-copy-large {
    font-size: 1.18rem;
    text-align: center;
  }

  .page-aside {
    width: min(100%, 430px);
    margin-inline: auto;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .aside-card,
  .aside-card-dark {
    padding: 24px;
  }

  .aside-card .button,
  .aside-card-dark .button {
    width: min(100%, 280px);
  }

  .service-card-with-image,
  .workshop-card-with-image {
    padding: 0;
    overflow: hidden;
    border-radius: 8px;
  }

  .service-card-image,
  .workshop-card-image,
  .workshop-feature-media img,
  .mindfulness-feature-media img {
    max-height: 380px;
    aspect-ratio: 4 / 3;
    border-radius: 8px 8px 0 0;
  }

  .service-card-body,
  .workshop-card-body {
    min-height: 0;
    padding: 24px 22px 26px;
    text-align: center;
  }

  .benefit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    text-align: left;
  }

  .benefit-list li {
    font-size: 0.82rem;
  }

  .mindfulness-feature-media {
    padding-top: 18px;
  }

  .mindfulness-quote {
    padding: 28px 22px;
    border-radius: 8px;
    text-align: center;
  }

  .mindfulness-quote p {
    margin-inline: auto;
    font-size: 1.55rem;
  }

  .mindfulness-step {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    padding-bottom: 28px;
    text-align: center;
  }

  .mindfulness-step:not(:last-child)::before {
    display: none;
  }

  .mindfulness-step > span {
    width: 44px;
    height: 44px;
  }

  .mindfulness-modules .module-grid::before,
  .mindfulness-modules .module-card::after {
    display: none;
  }

  .mindfulness-modules .module-card,
  .mindfulness-modules .module-card:nth-child(even) {
    width: 100%;
    min-height: 0;
    margin: 0 0 12px;
    padding: 22px;
    border-radius: 8px;
    text-align: center;
  }

  .event-panel {
    padding: 30px 22px;
    margin: 0 0 34px;
    border-radius: 8px;
    text-align: center;
  }

  .fact-grid {
    gap: 10px;
  }

  .fact {
    padding: 18px;
    border-left: 0;
    border-radius: 8px;
    text-align: center;
  }

  .page-cta {
    padding: 54px 0;
    text-align: center;
  }

  .page-cta-inner {
    max-width: 540px;
    justify-items: center;
    gap: 22px;
    margin-inline: auto;
  }

  .page-cta .button {
    min-width: 220px;
  }

  .eversports-section {
    overflow: hidden;
    padding: 28px 0;
  }

  .eversports-widget {
    min-height: 360px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .contact-grid {
    gap: 14px;
  }

  .contact-option {
    min-height: 0;
    padding: 26px 24px;
    border-radius: 8px;
    text-align: center;
  }

  .contact-icon {
    margin-inline: auto;
  }

  .contact-option a,
  .contact-actions > a:last-child,
  .breadcrumbs a,
  .prose a:not(.button):not(.text-link),
  .mini-contact a {
    display: inline-flex;
    min-height: 44px;
    min-width: 44px;
    align-items: center;
    justify-content: center;
    overflow-wrap: anywhere;
  }

  .mini-contact {
    justify-items: center;
  }

  .page-contact .prose a[href^="https://www.angelagutting.de"] {
    display: flex;
    width: fit-content;
    margin-inline: auto;
  }

  .site-footer {
    text-align: center;
  }

  .footer-grid,
  .footer-bottom,
  .footer-bottom-links,
  .footer-social {
    justify-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 18px;
    padding-top: 26px;
  }

  .footer-bottom p {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.72rem;
  }

  .footer-brand,
  .footer-column,
  .footer-bottom,
  .footer-bottom-links {
    align-items: center;
  }

  .footer-bottom-links {
    order: 1;
    display: flex;
    max-width: 280px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
  }

  .footer-social {
    width: 100%;
    align-items: center;
    justify-content: center;
    flex: 0 0 100%;
    flex-direction: row;
    gap: 18px;
  }

  .social-link {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    font-size: 0;
    gap: 0;
  }

  .social-icon {
    width: 20px;
    height: 20px;
  }

  .social-icon svg {
    width: 20px;
    height: 20px;
  }

  .footer-link-separator {
    display: none;
  }

  .brand-footer {
    justify-content: center;
  }

  .site-footer a {
    display: inline-flex;
    min-height: 44px;
    min-width: 44px;
    align-items: center;
    justify-content: center;
  }

  .footer-bottom > p {
    order: 2;
  }

  .footer-bottom-links > a {
    margin: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 0;
  }

  .brand-logo-signet {
    height: 40px;
  }

  .site-header.is-scrolled .brand-logo-signet {
    height: 36px;
  }

  .main-navigation {
    padding: 104px 26px 44px;
  }

  .main-navigation > a:not(.button) {
    font-size: 1.8rem;
  }

  .theme-home .hero {
    padding-top: 98px;
  }

  .theme-home .hero-grid {
    gap: 18px;
    padding-bottom: 24px;
  }

  .theme-home .hero-copy {
    padding-top: 18px;
  }

  .theme-home .hero h1 {
    font-size: 2.42rem;
  }

  .theme-home .hero-intro {
    font-size: 1.14rem;
  }

  .theme-home .hero .button-row {
    align-items: center;
    flex-direction: column;
    gap: 12px;
  }

  .theme-home .hero .button,
  .theme-home .hero .text-link {
    width: min(100%, 300px);
    justify-content: center;
    text-align: center;
  }

  .theme-home .hero-facts {
    align-items: center;
    flex-direction: row;
  }

  .theme-home .hero-facts li {
    padding: 6px 9px;
    font-size: 0.72rem;
  }

  .theme-home .hero-visual {
    width: min(78vw, 292px);
  }

  .mobile-quick-entry {
    padding-top: 22px;
  }

  .mobile-quick-card {
    min-height: 82px;
    padding: 16px 18px;
  }

  .mobile-quick-card span {
    font-size: 1.26rem;
  }

  .section-heading h2 {
    font-size: 1.95rem;
  }

  .offer-card,
  .service-card,
  .workshop-card {
    padding: 22px 20px 24px;
  }

  .offer-card h3,
  .service-card h2,
  .workshop-card h2 {
    font-size: 1.58rem;
  }

  .theme-home .mini-course-plan {
    padding: 22px 18px 20px;
  }

  .theme-home .schedule-copy h2 {
    font-size: 1.95rem;
  }

  .theme-home .about-portrait {
    max-width: 290px;
  }

  .theme-home .contact-card {
    padding: 40px 22px;
  }

  .inner-page .inner-hero {
    padding: 102px 0 48px;
  }

  .breadcrumbs {
    margin-bottom: 18px;
    font-size: 0.64rem;
  }

  .inner-page .inner-hero h1 {
    font-size: 2.28rem;
  }

  .inner-page .inner-hero .lead {
    font-size: 1.05rem;
  }

  .content-section {
    padding: 52px 0;
  }

  .prose h2 {
    font-size: 1.8rem;
  }

  .mindfulness-quote p {
    font-size: 1.45rem;
  }

  .benefit-list,
  .fact-grid {
    grid-template-columns: 1fr;
  }

  .page-cta .button,
  .aside-card .button,
  .aside-card-dark .button {
    width: 100%;
  }
}
