:root {
  --cream: #f7f2e7;
  --cream-light: #fbf8f0;
  --ink: #173b3a;
  --teal: #04505b;
  --gold: #dcae36;
  --gold-light: #efca63;
  --line: #d9d3c7;
  --radius: 34px;
  --gap: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 0.75rem 1rem;
  background: white;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  width: 1715px;
  height: 143px;
  margin: 0 auto 0 45px;
  zoom: var(--stage-scale, 1);
  display: flex;
  align-items: center;
  gap: 68px;
}

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

.brand-symbol {
  position: relative;
  display: block;
  flex: 0 0 150px;
  width: 150px;
  height: 126px;
}

.symbol-top,
.symbol-bottom {
  position: absolute;
  left: 0;
  width: 150px;
  overflow: hidden;
}

.symbol-top {
  top: -4px;
  height: 88px;
}

.symbol-bottom {
  bottom: 1px;
  height: 34px;
}

.brand-symbol img {
  position: absolute;
  left: 0;
  width: 150px;
  max-width: none;
  height: 150px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.symbol-top img {
  top: 0;
}

.symbol-bottom img {
  top: -104px;
}

.brand-name {
  color: #858586;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 2.05vw, 2.3rem);
  font-style: italic;
  white-space: nowrap;
}

.navigation {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.navigation a {
  padding: 0.75rem 0;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  font-size: 1.03rem;
  white-space: nowrap;
}

.navigation a:hover,
.navigation a:focus-visible {
  border-color: var(--gold);
}

.menu-button {
  display: none;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  color: var(--ink);
  background: transparent;
  font: inherit;
}

.mosaic {
  position: relative;
  width: 1840px;
  height: 1088px;
  margin: 0 auto 92px;
  zoom: var(--stage-scale, 1);
  display: grid;
  grid-template-columns: minmax(0, 765fr) minmax(0, 456fr) minmax(0, 374fr) minmax(0, 209fr);
  grid-template-rows: 617px 471px;
  column-gap: var(--gap);
}

.card,
.content-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.hero-card {
  z-index: 2;
  grid-column: 1 / 3;
  grid-row: 1;
  width: 858px;
  height: 568px;
  margin-top: 21px;
  padding: 62px 88px 54px 96px;
  background: linear-gradient(135deg, #f9f6ee, #f5f0e5);
  clip-path: polygon(0 0, 100% 0, 89% 100%, 0 100%);
}

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

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

.hero-card h1 {
  margin-bottom: 28px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5.5rem, 5.7vw, 6.6rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.hero-card p {
  margin-bottom: 0;
  color: #344a49;
  font-size: 1.25rem;
  line-height: 1.55;
}

.botanical {
  position: absolute;
  color: rgba(185, 168, 110, 0.28);
  pointer-events: none;
}

.botanical path {
  stroke-width: 2.1;
  vector-effect: non-scaling-stroke;
}

.botanical-hero {
  right: 74px;
  bottom: 18px;
  width: 210px;
  height: 270px;
}

.room-card {
  z-index: 1;
  grid-column: 2 / 5;
  grid-row: 1;
  height: 617px;
  margin: 0;
  clip-path: polygon(9.2% 0, 100% 0, 100% 100%, 0 100%);
}

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

.interest-card {
  z-index: 3;
  grid-column: 1;
  grid-row: 2;
  height: 510px;
  transform: translateY(-39px);
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 36px;
  padding: 86px 58px 62px 86px;
  color: white;
  background: linear-gradient(150deg, #075866, #003e4b);
}

.interest-action h2 {
  margin-bottom: 44px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.55rem;
  font-weight: 400;
  line-height: 1.25;
}

.gold-button {
  width: 280px;
  min-height: 80px;
  padding: 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(140deg, var(--gold-light), #e4b94c);
  text-decoration: none;
  font-size: 1.25rem;
}

.gold-button span {
  font-size: 2rem;
}

.times {
  align-self: center;
  padding-left: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.times h3 {
  margin-bottom: 22px;
  color: #e8bb4e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 400;
}

.period {
  margin-bottom: 22px;
}

.period span,
.period strong {
  display: block;
}

.period span {
  margin-bottom: 6px;
  color: #b9cbcf;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.period strong {
  font-size: 0.98rem;
}

.time {
  min-height: 54px;
  margin: 0 0 12px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  font-size: 1rem;
  white-space: nowrap;
}

.time strong {
  margin-left: auto;
}

.photo-card {
  grid-column: 2;
  grid-row: 2;
  height: 466px;
  margin: 0;
  width: 455px;
  transform: translate(9px, 5px);
  border: 3px solid #d0c3ad;
  background: #c8b08d;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.instagram-card {
  grid-column: 3;
  grid-row: 2;
  height: 464px;
  width: 373px;
  transform: translate(13px, 7px);
  color: white;
  text-decoration: none;
}

.instagram-card > img,
.instagram-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.instagram-card > img {
  object-fit: contain;
  object-position: center center;
  background: #85765f;
}

.instagram-shade {
  background: linear-gradient(180deg, rgba(5, 37, 36, 0.08), rgba(4, 48, 47, 0.66));
}

.instagram-content {
  position: absolute;
  inset: 34px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.instagram-icon {
  position: relative;
  width: 49px;
  height: 49px;
  margin-bottom: 28px;
  border: 4px solid white;
  border-radius: 13px;
}

.instagram-icon::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 4px solid white;
  border-radius: 50%;
}

.instagram-icon::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
}

.instagram-content strong {
  width: 100%;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 1.2rem;
}

.instagram-content > span {
  margin-top: 28px;
  font-size: 1.06rem;
  line-height: 1.6;
}

.info-card {
  grid-column: 4;
  grid-row: 2;
  height: 456px;
  width: 194px;
  transform: translate(14px, 15px);
  display: flex;
  justify-content: center;
  padding-top: 42px;
  color: #4c3914;
  background: linear-gradient(150deg, #e4b444, #d5a129);
  text-decoration: none;
  transition: filter 180ms ease;
}

.info-card:hover,
.info-card:focus-visible {
  filter: brightness(1.07);
}

.info-card:focus-visible {
  outline: 4px solid var(--ink);
  outline-offset: -7px;
}

.info-icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.botanical-info {
  right: 4px;
  bottom: -10px;
  width: 170px;
  height: 292px;
  color: rgba(91, 66, 18, 0.14);
}

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

.course-section {
  background: linear-gradient(140deg, #f7efd9, #fbfaf5);
}

.course-heading {
  max-width: 820px;
  margin-bottom: 48px;
}

.course-heading h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4.2vw, 4.5rem);
  font-weight: 400;
  line-height: 1.04;
}

.course-heading > p:last-child {
  margin-bottom: 0;
  color: #4f605e;
  font-size: 1.12rem;
  line-height: 1.65;
}

.course-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.course-facts article {
  min-height: 235px;
  padding: 30px;
  border: 1px solid rgba(166, 141, 77, 0.28);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.56);
}

.course-facts article > span,
.trial-note div > span {
  display: block;
  margin-bottom: 16px;
  color: #8d6a20;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.course-facts h3 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.15;
}

.course-facts p,
.trial-note p {
  margin-bottom: 0;
  color: #53615f;
  line-height: 1.6;
}

.trial-note {
  margin-top: 12px;
  padding: 28px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-radius: 24px;
  color: white;
  background: var(--teal);
}

.trial-note div {
  max-width: 760px;
}

.trial-note div > span {
  color: var(--gold-light);
}

.trial-note p {
  color: white;
}

.course-mail-button {
  flex: 0 0 auto;
  min-height: 60px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold-light);
  text-decoration: none;
  font-weight: 700;
}

.two-panel {
  display: grid;
  grid-template-columns: minmax(310px, 0.78fr) minmax(0, 1.22fr);
  gap: 14px;
}

.content-card {
  padding: clamp(46px, 5vw, 78px);
  background: #fbfaf6;
  box-shadow: 0 20px 45px rgba(47, 54, 47, 0.08);
}

.metta-panel {
  color: white;
  background: linear-gradient(155deg, #075662, #073f49);
}

.eyebrow {
  margin-bottom: 26px;
  color: var(--gold-light);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #505958;
}

.metta-panel blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.2vw, 2.4rem);
  line-height: 1.2;
}

.text-panel h2,
.simple-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3.35rem);
  font-weight: 400;
  line-height: 1.08;
}

.about-portrait {
  float: right;
  width: min(44%, 390px);
  margin: 0 0 28px 38px;
  overflow: hidden;
  border-radius: 24px;
  background: #e9e4da;
}

.about-portrait img {
  width: 100%;
  height: auto;
}

.about-portrait figcaption {
  padding: 10px 14px 12px;
  color: #5d6664;
  text-align: center;
  font-size: 0.86rem;
}

.training-details {
  clear: both;
  margin-top: 42px;
  border: 1px solid rgba(152, 124, 54, 0.32);
  border-radius: 24px;
  background: #f7f1df;
}

.training-details summary {
  min-height: 78px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

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

.training-details summary span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.training-details summary small {
  flex: 0 0 auto;
  padding: 9px 14px;
  border: 1px solid rgba(23, 59, 58, 0.34);
  border-radius: 999px;
  font-size: 0.82rem;
}

.training-details[open] summary {
  border-bottom: 1px solid rgba(152, 124, 54, 0.25);
}

.training-details[open] summary small::before {
  content: "schließen";
}

.training-details[open] summary small {
  font-size: 0;
}

.training-details[open] summary small::before {
  font-size: 0.82rem;
}

.training-content {
  padding: 28px 24px 30px;
}

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

.training-cards article {
  padding: 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.training-cards article > span {
  display: block;
  margin-bottom: 12px;
  color: #8d6a20;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.training-cards h3,
.further-training-title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.training-cards h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.training-cards p {
  margin-bottom: 0;
  color: #53615f;
  line-height: 1.55;
}

.further-training-title {
  margin: 34px 0 18px;
  font-size: 1.55rem;
}

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

.further-training-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.5;
}

.further-training-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.certificate-note {
  margin: 26px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(152, 124, 54, 0.25);
  color: #5c6866;
  font-size: 0.95rem;
  font-style: italic;
}

.text-panel > p:not(.eyebrow, .closing),
.wellbeing p,
.simple-section p {
  font-size: 1.06rem;
  line-height: 1.72;
}

.closing {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid #dfca84;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.4vw, 2.7rem);
}

.closing small {
  display: block;
  margin-bottom: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.wellbeing {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(40px, 6vw, 100px);
  background: linear-gradient(140deg, #f5edd6, #f8faf7);
}

.wellbeing h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.4vw, 6rem);
  font-weight: 400;
  line-height: 0.98;
}

.wellbeing h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.7vw, 3rem);
  font-weight: 400;
}

.wellbeing blockquote {
  margin: 28px 0;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.5;
}

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

.life-topic-card {
  min-height: 570px;
}

.life-topic-card h2 {
  margin: 12px 0 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 4.4vw, 4.7rem);
  font-weight: 400;
  line-height: 1.04;
}

.life-topic-card > p:not(.eyebrow) {
  font-size: 1.06rem;
  line-height: 1.72;
}

.menopause-topic {
  background: linear-gradient(145deg, #f5e9dc, #fbfaf6);
}

.age-topic {
  background: linear-gradient(145deg, #e5efea, #fbfaf6);
}

.simple-section {
  text-align: center;
}

.balance-section {
  background:
    radial-gradient(circle at 93% 8%, rgba(220, 174, 54, 0.17), transparent 30%),
    linear-gradient(145deg, #f8f1df, #f7faf6);
}

.balance-heading {
  max-width: 920px;
  margin: 0 auto 48px;
  text-align: center;
}

.balance-heading h2 {
  margin: 12px 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5.5vw, 5.7rem);
  font-weight: 400;
  line-height: 1.02;
}

.balance-heading > p:last-child {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.balance-topics article {
  min-height: 310px;
  padding: 34px 30px;
  border: 1px solid rgba(23, 59, 58, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.5);
}

.balance-topics span {
  color: #a77b13;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.balance-topics h3 {
  margin: 28px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  font-weight: 400;
}

.balance-topics p {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.7;
}

.balance-closing {
  max-width: 890px;
  margin: 48px auto 0;
  padding-top: 34px;
  border-top: 1px solid #dfca84;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.6vw, 2.5rem);
  line-height: 1.35;
  text-align: center;
}

.facts-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(36px, 6vw, 92px);
  background: linear-gradient(145deg, #fbfaf6, #edf4f1);
}

.video-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr);
  align-items: center;
  gap: clamp(32px, 6vw, 90px);
  background: linear-gradient(145deg, #f6edda, #fbfaf6);
}

.video-section[hidden] {
  display: none;
}

.video-section h2 {
  margin: 10px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.04;
}

.video-section p {
  font-size: 1.06rem;
  line-height: 1.72;
}

.video-section video {
  width: 100%;
  max-height: 680px;
  border-radius: 24px;
  background: #102e2e;
}

.facts-heading h2 {
  margin: 10px 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  font-weight: 400;
  line-height: 1;
}

.facts-heading > p:last-child {
  font-size: 1.06rem;
  line-height: 1.72;
}

.faq-list details {
  border-bottom: 1px solid rgba(23, 59, 58, 0.18);
}

.faq-list summary {
  position: relative;
  padding: 24px 46px 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 4px;
  color: #9b7317;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.7rem;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin: -4px 42px 24px 0;
  font-size: 1.03rem;
  line-height: 1.7;
}

.contact-link {
  display: inline-block;
  margin: 16px 0;
  color: #07515c;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
}

.placeholder-note {
  color: #747a78;
}

.social-links {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.social-links a {
  display: inline-block;
  padding: 12px 20px;
  border: 1px solid rgba(23, 59, 58, 0.3);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: var(--gold);
  background: #fff7de;
}

.site-footer {
  padding: 30px 16px 44px;
  color: #686e6c;
  text-align: center;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0 0 12px;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.site-footer a {
  color: var(--ink);
  text-underline-offset: 4px;
}

.site-footer a:hover,
.site-footer a:focus-visible,
.site-footer a[aria-current="page"] {
  color: #986f0d;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 88% 8%, rgba(220, 174, 54, 0.12), transparent 26rem),
    var(--cream);
}

.legal-header {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.legal-brand {
  color: #77797a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 4vw, 2.35rem);
  font-style: italic;
  text-decoration: none;
}

.back-link {
  padding: 11px 18px;
  border: 1px solid rgba(23, 59, 58, 0.3);
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}

.back-link:hover,
.back-link:focus-visible {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.55);
}

.legal-main {
  width: min(1100px, calc(100% - 32px));
  margin: 18px auto 30px;
}

.legal-card {
  padding: clamp(32px, 7vw, 82px);
  border: 1px solid rgba(23, 59, 58, 0.08);
  border-radius: var(--radius);
  background: rgba(251, 248, 240, 0.92);
  box-shadow: 0 20px 60px rgba(45, 50, 42, 0.08);
}

.legal-card h1 {
  margin: 8px 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5.5vw, 4.25rem);
  font-weight: 400;
  line-height: 1;
}

.legal-card section {
  margin-top: 38px;
}

.legal-card h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
}

.legal-card p,
.legal-card li {
  font-size: 1.03rem;
  line-height: 1.72;
}

.legal-card ul {
  padding-left: 1.35rem;
}

.legal-warning {
  margin: 0;
  padding: 20px 22px;
  border-left: 5px solid var(--gold);
  border-radius: 0 14px 14px 0;
  background: #fff4cf;
}

.legal-placeholder {
  display: inline-block;
  padding: 3px 7px;
  border-radius: 5px;
  color: #563f08;
  background: #ffe797;
  font-weight: 700;
}

.legal-version {
  margin: 48px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #6d7471;
  font-size: 0.9rem !important;
}

@media (max-width: 1100px) {
  :root {
    --radius: 26px;
  }

  .site-header {
    position: relative;
    width: calc(100% - 24px);
    height: auto;
    min-height: 106px;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    margin: 0 auto;
    zoom: 1;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand-symbol {
    flex-basis: 82px;
    width: 82px;
    height: 70px;
  }

  .brand-symbol img {
    width: 82px;
    height: 82px;
  }

  .symbol-top {
    height: 49px;
  }

  .symbol-bottom {
    height: 19px;
  }

  .symbol-bottom img {
    top: -57px;
  }

  .brand-name {
    font-size: clamp(1.2rem, 5.1vw, 1.65rem);
  }

  .menu-button {
    display: block;
  }

  .navigation {
    position: absolute;
    z-index: 30;
    top: calc(100% - 4px);
    right: 0;
    left: 0;
    display: none;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-radius: 20px;
    background: #fbf8f0;
    box-shadow: 0 14px 28px rgba(33, 50, 45, 0.16);
  }

  .navigation.is-open {
    display: flex;
  }

  .navigation a {
    padding: 13px;
    font-size: 1rem;
  }

  .mosaic {
    width: calc(100% - 16px);
    height: auto;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    zoom: 1;
  }

  .hero-card,
  .room-card,
  .interest-card,
  .photo-card,
  .instagram-card,
  .info-card {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    transform: none;
  }

  .hero-card {
    min-height: 520px;
    padding: 54px 30px 44px;
    clip-path: none;
  }

  .hero-card h1 {
    margin-bottom: 30px;
    font-size: clamp(3.65rem, 17vw, 5.25rem);
    line-height: 1.02;
  }

  .hero-card p {
    max-width: 82%;
    font-size: 1.06rem;
  }

  .hero-card p br {
    display: none;
  }

  .botanical-hero {
    right: -6px;
    bottom: -16px;
    width: 165px;
    height: 210px;
  }

  .room-card {
    aspect-ratio: 3 / 2;
    clip-path: none;
  }

  .room-card img {
    object-fit: contain;
  }

  .interest-card {
    min-height: 520px;
    padding: 48px 28px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .interest-action h2 {
    margin-bottom: 30px;
    font-size: 2.25rem;
  }

  .gold-button {
    width: min(100%, 260px);
    min-height: 68px;
  }

  .times {
    padding: 28px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 0;
  }

  .time {
    white-space: normal;
  }

  .eyebrow {
    font-size: 0.875rem;
  }

  .photo-card {
    min-height: 320px;
  }

  .about-portrait {
    float: none;
    width: min(100%, 380px);
    margin: 0 auto 30px;
  }

  .training-details summary {
    align-items: flex-start;
  }

  .training-cards,
  .further-training-list {
    grid-template-columns: 1fr;
  }

  .instagram-card {
    aspect-ratio: 1122 / 1402;
  }

  .instagram-card > img {
    object-fit: contain;
    background: #8b7c62;
  }

  .info-card {
    min-height: 260px;
  }

  .botanical-info {
    right: 8%;
    bottom: -92px;
  }

  .two-panel,
  .wellbeing,
  .life-topics {
    grid-template-columns: 1fr;
  }

  .life-topic-card {
    min-height: 0;
  }

  .content-section {
    width: calc(100% - 16px);
    margin-bottom: 56px;
  }

  .content-card {
    padding: 42px 28px;
  }

  .course-heading {
    margin-bottom: 32px;
  }

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

  .course-facts article {
    min-height: 0;
  }

  .trial-note {
    padding: 28px 24px;
    flex-direction: column;
    align-items: stretch;
  }

  .course-mail-button {
    justify-content: space-between;
  }

  .balance-heading {
    margin-bottom: 32px;
  }

  .balance-topics {
    grid-template-columns: 1fr;
  }

  .balance-topics article {
    min-height: 0;
    padding: 28px 24px;
  }

  .balance-topics h3 {
    margin-top: 18px;
  }

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

  .video-section {
    grid-template-columns: 1fr;
  }

  .legal-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-card {
    padding: 34px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
