@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/inter-400.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/inter-500.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/inter-600.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/inter-700.ttf") format("truetype");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/playfair-600.ttf") format("truetype");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/playfair-700.ttf") format("truetype");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/playfair-800.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/poppins-500.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/poppins-600.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/poppins-700.ttf") format("truetype");
}

:root {
  --green: #a7cf38;
  --green-strong: #8ebd24;
  --gold: #d4af37;
  --orange: #e47026;
  --brown: #713818;
  --text: #3a332b;
  --muted: #6f6255;
  --line: #eadfce;
  --paper: #fffdf9;
  --warm: #fff7e7;
  --soft-green: #f4fbe2;
  --soft-gold: #fff6d8;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

figure {
  margin: 0;
}

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

.narrow {
  width: min(900px, calc(100% - 36px));
}

.gyro {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 .gyro,
.section-heading h2 .gyro,
.text-block h2 .gyro,
.training-copy h3 .gyro,
.meister-card h3 .gyro,
.service-body h3 .gyro {
  font-family: inherit;
  font-weight: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(18px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 2px solid var(--green);
  backdrop-filter: blur(12px);
}

.logo {
  flex: 0 0 auto;
  color: inherit;
  font-family: Poppins, Arial, sans-serif;
  font-size: clamp(27px, 4vw, 42px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
}

.logo-heike {
  color: var(--gold);
}

.logo-wolff {
  color: var(--green);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: var(--brown);
  font-size: 15px;
  font-weight: 650;
}

.mobile-menu {
  position: relative;
  display: none;
}

.mobile-menu summary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid rgba(113, 56, 24, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--brown);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  list-style: none;
  cursor: pointer;
}

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

.mobile-menu summary span,
.mobile-menu summary span::before,
.mobile-menu summary span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--brown);
}

.mobile-menu summary span {
  position: relative;
}

.mobile-menu summary span::before,
.mobile-menu summary span::after {
  position: absolute;
  left: 0;
  content: "";
}

.mobile-menu summary span::before {
  top: -6px;
}

.mobile-menu summary span::after {
  top: 6px;
}

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(250px, calc(100vw - 32px));
  padding: 8px;
  border: 1px solid rgba(113, 56, 24, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(91, 69, 42, 0.18);
}

.mobile-menu nav a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: var(--brown);
  font-weight: 700;
  text-decoration: none;
}

.mobile-menu nav a:hover {
  background: var(--soft-green);
  color: var(--green-strong);
}

.main-nav a,
.phone-link,
.site-footer a {
  text-decoration: none;
}

.main-nav a:hover,
.phone-link:hover,
.site-footer a:hover {
  color: var(--green-strong);
}

.phone-link {
  flex: 0 0 auto;
  color: var(--orange);
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  display: grid;
  min-height: min(720px, calc(100svh - 74px));
  place-items: center;
  overflow: hidden;
  padding: 78px 18px 96px;
  background:
    radial-gradient(circle at 85% 8%, rgba(167, 207, 56, 0.26), transparent 31%),
    radial-gradient(circle at 5% 100%, rgba(228, 112, 38, 0.16), transparent 30%),
    linear-gradient(180deg, #edf8cf 0%, #fff7df 68%, #f4ddb9 100%);
}

.hero-inner {
  max-width: 980px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brown);
  font-family: Poppins, Arial, sans-serif;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(48px, 8.5vw, 104px);
  font-weight: 800;
  line-height: 1.08;
}

.hero h1 span {
  display: block;
}

.hero-copy {
  margin: 28px 0 4px;
  color: var(--brown);
  font-size: clamp(19px, 2.5vw, 26px);
  font-weight: 650;
}

.hero-subcopy {
  margin: 0;
  color: var(--orange);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 650;
}

.gallery-section {
  padding: 76px 0 38px;
  background: white;
}

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

.image-row figure,
.workshop-image,
.training-image,
.about-photo {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(91, 69, 42, 0.14);
}

.image-row img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.section {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
}

.section-warm {
  background:
    radial-gradient(circle at 96% 8%, rgba(167, 207, 56, 0.12), transparent 28%),
    linear-gradient(180deg, var(--warm), white);
}

.detail-green {
  background:
    radial-gradient(circle at 92% 0%, rgba(167, 207, 56, 0.15), transparent 30%),
    linear-gradient(180deg, var(--soft-green), white);
}

.detail-gold {
  background:
    radial-gradient(circle at 8% 0%, rgba(212, 175, 55, 0.15), transparent 28%),
    linear-gradient(180deg, var(--soft-gold), white);
}

.section-heading {
  margin-bottom: 38px;
  text-align: center;
}

.section-heading h2,
.text-block h2,
.training-copy h3,
.meister-card h3 {
  margin: 0;
  color: var(--brown);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 750;
  line-height: 1.12;
}

.course-heading {
  display: grid;
  gap: 6px;
}

.course-heading span {
  white-space: nowrap;
}

.course-heading small {
  display: block;
  color: var(--muted);
  font-family: Poppins, Arial, sans-serif;
  font-size: clamp(19px, 2.6vw, 26px);
  font-weight: 700;
  line-height: 1.25;
}

.section-heading span {
  display: block;
  width: 84px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: var(--green);
}

.service-grid,
.event-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.event-card,
.meister-card,
.training-copy,
.contact-grid > * {
  border: 0;
  border-radius: 18px;
  background: white;
  box-shadow: 0 14px 34px rgba(91, 69, 42, 0.11);
}

.service-card {
  overflow: hidden;
}

.service-band {
  height: 12px;
}

.service-body {
  padding: 24px;
}

.service-body h3 {
  margin: 0 0 10px;
  color: var(--brown);
  font-family: Poppins, Arial, sans-serif;
  font-size: 24px;
}

.service-body p {
  margin: 0 0 18px;
  color: var(--muted);
}

.service-body ul,
.qualification-list,
.check-list,
.bullet-list {
  padding-left: 1.1rem;
}

.service-body li,
.qualification-list li,
.check-list li,
.bullet-list li {
  margin-bottom: 7px;
}

.text-block {
  max-width: 840px;
  font-size: 18px;
}

.text-block.container,
.container.text-block {
  width: min(840px, calc(100% - 36px));
}

.legal-content {
  width: min(840px, calc(100% - 36px));
  margin-right: auto;
  margin-left: auto;
}

.legal-content h1 {
  margin: 0 0 24px;
  color: var(--brown);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 7vw, 58px);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.legal-content h2 {
  font-size: clamp(28px, 7vw, 52px);
  overflow-wrap: anywhere;
}

.section-kicker {
  color: var(--muted);
  font-weight: 700;
}

.strong-line {
  color: var(--brown);
  font-weight: 800;
}

.course-details {
  margin: 22px 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
}

.course-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  color: var(--brown);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.course-details summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--green-strong);
  font-size: 24px;
  line-height: 1;
}

.course-details[open] summary::after {
  content: "-";
}

.course-details-body {
  padding: 0 16px 16px;
}

.course-details-body p {
  margin: 0 0 14px;
}

.course-details-body p:last-child {
  margin-bottom: 0;
}

.nowrap {
  white-space: nowrap;
}

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

.event-grid.compact {
  grid-template-columns: repeat(2, 1fr);
}

.event-card {
  padding: 18px;
  border-left: 5px solid var(--green);
  text-align: left;
}

button.event-card {
  width: 100%;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  cursor: pointer;
  font: inherit;
}

.event-date {
  display: block;
  margin-bottom: 6px;
  color: var(--green-strong);
  font-weight: 800;
}

.event-title {
  display: block;
  color: var(--brown);
  font-weight: 750;
}

.event-hint {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.workshop-image {
  width: min(420px, 100%);
  margin: 42px auto 0;
}

.workshop-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.training-section {
  background:
    radial-gradient(circle at 6% 4%, rgba(167, 207, 56, 0.13), transparent 28%),
    linear-gradient(180deg, white, var(--warm));
}

.training-copy,
.meister-card {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 30px;
  border-top: 6px solid var(--gold);
}

.training-image {
  width: min(420px, 100%);
  margin: 30px auto 42px;
}

.training-image img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.price-line {
  color: var(--brown);
  font-size: 19px;
  font-weight: 800;
}

.about-photo {
  width: min(390px, 100%);
  margin: 0 auto 34px;
}

.about-photo img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.about-copy {
  margin: 0 auto;
}

.contact-section {
  background:
    radial-gradient(circle at 90% 0%, rgba(228, 112, 38, 0.12), transparent 29%),
    linear-gradient(180deg, white, var(--warm));
}

.contact-grid {
  grid-template-columns: repeat(4, 1fr);
}

.contact-grid > * {
  min-height: 138px;
  padding: 24px;
  color: var(--muted);
  font-style: normal;
  text-align: center;
}

.contact-grid a {
  text-decoration: none;
}

.contact-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brown);
  font-family: Poppins, Arial, sans-serif;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 32px max(18px, calc((100vw - var(--max)) / 2)) 38px;
  background: var(--brown);
  color: white;
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

dialog {
  width: min(520px, calc(100vw - 36px));
  border: 0;
  border-radius: 18px;
  padding: 30px;
  color: var(--text);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.45);
}

.dialog-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 26px;
}

.staging-note {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  padding: 9px 18px;
  background: var(--brown);
  color: white;
  font-size: 14px;
}

.staging-note a {
  color: var(--soft-gold);
  font-weight: 700;
  text-decoration: none;
}

.palette-lab {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(260px, 1.8fr);
  gap: 14px 22px;
  align-items: center;
  padding: 14px max(18px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--text);
  font-size: 14px;
}

.palette-lab strong {
  display: block;
  color: var(--brown);
  font-family: Poppins, Arial, sans-serif;
  font-size: 15px;
}

.palette-lab span {
  color: var(--muted);
}

.palette-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.palette-option {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--brown);
  cursor: pointer;
  font: inherit;
  font-weight: 750;
}

.palette-option[aria-pressed="true"] {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(167, 207, 56, 0.22);
}

.swatch-set {
  display: inline-flex;
  gap: 3px;
}

.swatch-set span {
  width: 13px;
  height: 13px;
  border-radius: 999px;
}

body.staging .site-header {
  top: 40px;
  background: rgba(255, 255, 255, 0.92);
}

@media (min-width: 761px) {
  .palette-lab {
    position: sticky;
    top: 40px;
    z-index: 35;
    box-shadow: 0 10px 24px rgba(91, 69, 42, 0.08);
  }

  body.staging .site-header {
    position: static;
    top: auto;
  }
}

@media (min-width: 901px) {
  .palette-lab {
    grid-template-columns: minmax(140px, 0.35fr) minmax(0, 2fr);
  }

  .palette-options {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .palette-option {
    justify-content: center;
    min-width: 0;
    padding: 6px 7px;
    font-size: 13px;
  }
}

body.staging[data-palette="analog"] {
  --gold: #c4a33a;
  --orange: #c86f3f;
  --brown: #624126;
  --text: #3d362d;
  --muted: #75685b;
  --line: #eadcc5;
  --paper: #fffdf8;
  --warm: #fff5e5;
  --soft-gold: #fff2c7;
  --staging-glow: rgba(200, 111, 63, 0.16);
}

body.staging[data-palette="split"] {
  --gold: #d6a85c;
  --orange: #cf7a52;
  --brown: #633b2f;
  --text: #3b342d;
  --muted: #756457;
  --line: #ead8c9;
  --paper: #fffdf9;
  --warm: #fff1e4;
  --soft-gold: #f6e4bd;
  --staging-glow: rgba(207, 122, 82, 0.15);
}

body.staging[data-palette="triad"] {
  --gold: #c9a646;
  --orange: #d99058;
  --brown: #5a3f2f;
  --text: #3a342c;
  --muted: #74695b;
  --line: #eadfca;
  --paper: #fffdf8;
  --warm: #fff3df;
  --soft-gold: #f5e8b8;
  --staging-glow: rgba(217, 144, 88, 0.15);
}

body.staging[data-palette="earth"] {
  --gold: #8f8060;
  --orange: #b8754a;
  --brown: #4f4638;
  --text: #39362f;
  --muted: #6c665b;
  --line: #e4ddcf;
  --paper: #fffdf8;
  --warm: #f8f1e5;
  --soft-gold: #eee6d4;
  --staging-glow: rgba(184, 117, 74, 0.14);
}

body.staging[data-palette="sage"] {
  --gold: #9c9a70;
  --orange: #c98f86;
  --brown: #58483f;
  --text: #3a3530;
  --muted: #70675f;
  --line: #e6ddd4;
  --paper: #fffdf9;
  --warm: #f7f1ea;
  --soft-gold: #ecebd6;
  --staging-glow: rgba(201, 143, 134, 0.14);
}

body.staging[data-palette="editorial"] {
  --gold: #c3a64b;
  --orange: #ba5f52;
  --brown: #57372d;
  --text: #332f2b;
  --muted: #6d5e57;
  --line: #e6d9d1;
  --paper: #fffdfb;
  --warm: #f8efe8;
  --soft-gold: #f2e8bd;
  --staging-glow: rgba(186, 95, 82, 0.15);
}

body.staging[data-palette="saffron"] {
  --gold: #d2a13a;
  --orange: #c9823f;
  --brown: #5e3f25;
  --text: #3a332b;
  --muted: #726558;
  --line: #eadcc4;
  --paper: #fffdf8;
  --warm: #fff4df;
  --soft-gold: #f8e9bb;
  --staging-glow: rgba(201, 130, 63, 0.15);
}

body.staging[data-palette="copper"] {
  --gold: #b88b55;
  --orange: #b96b45;
  --brown: #5a3528;
  --text: #38312c;
  --muted: #705f55;
  --line: #e8d9cc;
  --paper: #fffdfa;
  --warm: #faefe7;
  --soft-gold: #ead9bc;
  --staging-glow: rgba(185, 107, 69, 0.15);
}

body.staging[data-palette="peach"] {
  --gold: #d0a85f;
  --orange: #d88d74;
  --brown: #6a3d33;
  --text: #3b322f;
  --muted: #75625d;
  --line: #ecd9d0;
  --paper: #fffdfb;
  --warm: #fff0e9;
  --soft-gold: #f5e7c8;
  --staging-glow: rgba(216, 141, 116, 0.14);
}

body.staging[data-palette="rosewood"] {
  --gold: #bd9960;
  --orange: #c47a77;
  --brown: #5b3335;
  --text: #3a3030;
  --muted: #715d5d;
  --line: #e8d5d2;
  --paper: #fffdfc;
  --warm: #fbefec;
  --soft-gold: #efe1c5;
  --staging-glow: rgba(196, 122, 119, 0.14);
}

body.staging[data-palette="cinnamon"] {
  --gold: #d2a85a;
  --orange: #b9653f;
  --brown: #633828;
  --text: #39312c;
  --muted: #725f55;
  --line: #e8d8cb;
  --paper: #fffdf9;
  --warm: #fbefe5;
  --soft-gold: #f3e1bd;
  --staging-glow: rgba(185, 101, 63, 0.15);
}

body.staging[data-palette="marigold"] {
  --gold: #d6ad3f;
  --orange: #d37a32;
  --brown: #674123;
  --text: #3b342b;
  --muted: #756655;
  --line: #ebdcc1;
  --paper: #fffdf7;
  --warm: #fff5dc;
  --soft-gold: #f7e6a9;
  --staging-glow: rgba(211, 122, 50, 0.14);
}

body.staging[data-palette] .hero {
  background:
    radial-gradient(circle at 85% 8%, rgba(167, 207, 56, 0.26), transparent 31%),
    radial-gradient(circle at 5% 100%, var(--staging-glow, rgba(228, 112, 38, 0.16)), transparent 30%),
    linear-gradient(180deg, #edf8cf 0%, var(--soft-gold) 68%, var(--warm) 100%);
}

body.staging[data-palette] #services .service-card:nth-child(1) .service-band {
  background: var(--orange) !important;
}

body.staging[data-palette] #services .service-card:nth-child(2) .service-band {
  background: var(--green) !important;
}

body.staging[data-palette] #services .service-card:nth-child(3) .service-band {
  background: var(--gold) !important;
}

@media (max-width: 900px) {
  .image-row,
  .service-grid,
  .event-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .event-grid.compact {
    grid-template-columns: 1fr;
  }

  .image-row img,
  .training-image img,
  .about-photo img {
    height: auto;
    max-height: 380px;
  }
}

@media (max-width: 760px) {
  .palette-lab {
    grid-template-columns: 1fr;
    padding: 12px 16px;
  }

  .palette-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .palette-option {
    justify-content: center;
    min-width: 0;
    min-height: 32px;
    padding: 6px 7px;
    font-size: 13px;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px 14px;
  }

  .main-nav {
    display: none;
  }

  .legal-nav {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-start;
  }

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

  .phone-link {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    padding: 12px 16px;
  }

  .logo {
    font-size: 29px;
  }

  .phone-link {
    font-size: 16px;
  }

  .hero {
    min-height: min(600px, calc(100svh - 150px));
    padding: 56px 16px 64px;
  }

  .hero-inner {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(38px, 10vw, 47px);
  }

  .hero h1 span {
    display: grid;
    gap: 4px;
  }

  .training-copy,
  .meister-card {
    padding: 24px 20px;
  }

  .training-copy h3,
  .meister-card h3 {
    font-size: clamp(22px, 6.7vw, 34px);
  }

  .course-heading {
    gap: 5px;
  }

  .course-heading small {
    font-size: 18px;
  }

  .section {
    padding: 58px 0;
  }

  .site-footer {
    flex-direction: column;
  }
}
