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

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

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

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

:root {
  --cream: #f4efe8;
  --soft-sand: #e6d7c6;
  --dusty-mauve: #b79aa9;
  --dusty-mauve-dark: #a88d7c;
  --warm-taupe: #a88d7c;
  --espresso: #241c18;
  --gold: #c6a97a;
  --white-warm: #fbf7f1;
  --shadow: 0 28px 80px rgba(36, 28, 24, 0.12);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--espresso);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14.7px;
  font-weight: 300;
  letter-spacing: 0.005em;
  line-height: 1.78;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 70px);
  min-height: 116px;
  padding: 16px clamp(28px, 4.8vw, 72px);
  background: rgba(244, 239, 232, 0.9);
  backdrop-filter: blur(16px);
  transition: min-height 220ms ease, padding 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  min-height: 86px;
  box-shadow: 0 12px 38px rgba(36, 28, 24, 0.06);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: clamp(168px, 19vw, 250px);
}

.logo-link img {
  width: 100%;
  max-height: 96px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.8vw, 34px);
  width: 100%;
  font-size: 13.3px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 15px 17px;
  border-radius: 7px;
  color: var(--espresso);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  background: var(--dusty-mauve);
  color: var(--cream);
}

.main-nav a:hover {
  transform: translateY(-1px);
}

.button:hover {
  background: var(--dusty-mauve-dark);
}

.menu-toggle {
  display: none;
}

.home-hero {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 612px;
  padding-top: 116px;
  background: var(--cream);
  isolation: isolate;
}

.home-hero::before {
  position: absolute;
  z-index: 1;
  inset: 116px 0 0;
  background:
    linear-gradient(90deg, var(--cream) 0%, rgba(244, 239, 232, 0.97) 25%, rgba(244, 239, 232, 0.72) 41%, rgba(244, 239, 232, 0.2) 57%, rgba(244, 239, 232, 0) 73%),
    linear-gradient(180deg, rgba(244, 239, 232, 0.72) 0%, rgba(244, 239, 232, 0.08) 22%, rgba(244, 239, 232, 0) 68%, rgba(244, 239, 232, 0.52) 100%);
  content: "";
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  max-width: 660px;
  min-height: 468px;
  padding: clamp(24px, 4vw, 52px) clamp(28px, 5.7vw, 88px);
}

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

h1 {
  margin-bottom: 28px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 52px;
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1.12;
}

.home-hero h1 span {
  color: var(--gold);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.72em;
  font-weight: 300;
}

h2 {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.11em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-content p {
  max-width: 610px;
  margin-bottom: 22px;
  font-size: 14.7px;
  font-weight: 300;
  letter-spacing: 0.18em;
  line-height: 1.8;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-width: 258px;
  min-height: 56px;
  padding: 17px 31px;
  border-radius: 7px;
  background: var(--dusty-mauve);
  color: var(--cream);
  font-size: 14.7px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.1;
  text-transform: uppercase;
  transition: background 220ms ease, transform 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.hero-image-wrap {
  position: absolute;
  z-index: 0;
  top: 116px;
  right: 0;
  bottom: 0;
  left: 27%;
  min-height: 468px;
  overflow: hidden;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 468px;
  object-fit: cover;
  object-position: center right;
}

.icon-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--cream);
  padding: 42px clamp(28px, 5.7vw, 88px) 52px;
  box-shadow: none;
}

.icon-card {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 122px;
  padding: 0 26px;
  border-right: 1px solid rgba(198, 169, 122, 0.3);
  text-align: center;
  transition: transform 220ms ease, color 220ms ease;
}

.icon-card:last-child {
  border-right: 0;
}

.icon-card:hover {
  color: var(--gold);
  transform: translateY(-4px);
}

.icon-card img {
  width: 58px;
  height: 58px;
  margin-bottom: 17px;
  transition: filter 220ms ease;
}

.icon-card:hover img {
  filter: brightness(0) saturate(100%) invert(10%) sepia(13%) saturate(937%) hue-rotate(338deg) brightness(94%) contrast(94%);
}

.icon-card span {
  font-size: 13.3px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.55;
  text-transform: uppercase;
}

.subpage-main {
  min-height: calc(100vh - 190px);
  padding: 186px clamp(24px, 5vw, 72px) 92px;
  background:
    radial-gradient(circle at 86% 20%, rgba(183, 154, 169, 0.2), transparent 34%),
    linear-gradient(180deg, var(--cream) 0%, var(--white-warm) 62%, var(--soft-sand) 100%);
}

.subpage-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 0.56fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.subpage-copy {
  max-width: 720px;
}

.eyebrow {
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  line-height: 1.35;
  text-transform: uppercase;
}

.subpage-copy p {
  max-width: 660px;
  margin-bottom: 18px;
}

.subpage-note {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid rgba(198, 169, 122, 0.28);
  border-radius: 18px;
  background: rgba(251, 247, 241, 0.72);
  box-shadow: var(--shadow);
}

.subpage-note p:last-child {
  margin-bottom: 0;
}

.signup-note {
  display: grid;
  justify-items: start;
  gap: 18px;
  width: min(100%, 540px);
  margin-top: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--espresso);
  box-shadow: none;
}

.signup-note p {
  margin-bottom: 0;
}

.signup-note .button {
  min-width: 238px;
  min-height: 52px;
  background: var(--dusty-mauve);
}

.signup-note .button:hover {
  background: #9f8291;
}

.signup-phone {
  font-size: 13px;
}

.signup-phone a {
  color: var(--espresso);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--warm-taupe);
  text-underline-offset: 4px;
}

.signup-form-notice {
  padding-left: 16px;
  border-left: 2px solid var(--gold);
  font-weight: 500;
}

.signup-form-notice a {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.signup-page .subpage-main {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  background: var(--cream);
  isolation: isolate;
}

.signup-page .subpage-main::before {
  content: none;
}

.signup-page .subpage-panel {
  display: block;
  max-width: var(--max-width);
}

.signup-page .subpage-copy {
  position: relative;
  z-index: 2;
  width: min(38%, 470px);
}

.signup-page .subpage-copy h1 {
  max-width: 650px;
}

.signup-portrait {
  position: absolute;
  z-index: 0;
  top: 116px;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  min-height: 644px;
  background: var(--warm-taupe);
}

.signup-portrait::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, var(--cream) 0%, var(--cream) 22%, rgba(244, 239, 232, 0.98) 27%, rgba(244, 239, 232, 0.76) 31%, rgba(244, 239, 232, 0.38) 35%, rgba(244, 239, 232, 0.08) 38%, transparent 40%);
  content: "";
  pointer-events: none;
}

.signup-portrait img {
  width: 104%;
  max-width: none;
  height: 100%;
  min-height: 644px;
  object-fit: cover;
  object-position: center 24%;
  transform: translateX(6%);
}

.subpage-visual {
  display: grid;
  place-items: center;
  min-height: 410px;
  border: 1px solid rgba(198, 169, 122, 0.32);
  border-radius: 230px 230px 12px 12px;
  background:
    linear-gradient(145deg, rgba(251, 247, 241, 0.78), rgba(230, 215, 198, 0.86)),
    radial-gradient(circle at 62% 24%, rgba(183, 154, 169, 0.22), transparent 34%);
  box-shadow: var(--shadow);
}

.subpage-visual img {
  width: 92px;
  height: 92px;
}

.contact-main {
  padding-bottom: 110px;
}

.contact-intro {
  display: block;
  max-width: 980px;
  margin-bottom: clamp(34px, 4vw, 52px);
  text-align: center;
}

.contact-intro .subpage-copy {
  max-width: 820px;
  margin: 0 auto;
}

.contact-intro .subpage-copy p {
  margin-right: auto;
  margin-left: auto;
}

.contact-form-section {
  max-width: 980px;
  margin: 0 auto;
}

.contact-form-card {
  padding: clamp(30px, 5vw, 62px);
  border: 1px solid rgba(198, 169, 122, 0.24);
  border-radius: 18px;
  background: rgba(255, 252, 248, 0.9);
  box-shadow: 0 26px 70px rgba(36, 28, 24, 0.1);
}

.contact-form-heading {
  max-width: 680px;
  margin-bottom: 38px;
}

.contact-form-heading h2 {
  margin-bottom: 14px;
  font-size: 24px;
  text-transform: none;
}

.contact-form-heading p:last-child {
  margin-bottom: 0;
}

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

.form-field {
  display: grid;
  gap: 9px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label,
.form-check {
  color: var(--espresso);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid rgba(168, 141, 124, 0.36);
  border-radius: 8px;
  outline: 0;
  background: rgba(244, 239, 232, 0.62);
  color: var(--espresso);
  font: 300 14px/1.55 "Montserrat", Arial, sans-serif;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.form-field input,
.form-field select {
  min-height: 52px;
  padding: 13px 15px;
}

.form-field textarea {
  min-height: 126px;
  padding: 14px 15px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(36, 28, 24, 0.56);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--gold);
  background: var(--white-warm);
  box-shadow: 0 0 0 3px rgba(198, 169, 122, 0.15);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  line-height: 1.55;
}

.form-check input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--dusty-mauve);
}

.form-check a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 180ms ease;
}

.form-check a:hover {
  color: var(--dusty-mauve);
}

.form-submit {
  border: 0;
  cursor: pointer;
  font-family: "Montserrat", Arial, sans-serif;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  display: none;
  margin: 0;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.55;
}

.form-status.is-pending,
.form-status.is-success,
.form-status.is-error {
  display: block;
}

.form-status.is-pending {
  background: rgba(230, 215, 198, 0.58);
}

.form-status.is-success {
  background: rgba(198, 169, 122, 0.2);
}

.form-status.is-error {
  background: rgba(183, 154, 169, 0.2);
}

.contact-details {
  max-width: 620px;
  margin: 48px auto 0;
  color: rgba(36, 28, 24, 0.74);
  font-size: 12.5px;
  line-height: 1.75;
  text-align: center;
}

.contact-details h2 {
  margin-bottom: 16px;
  font-size: 15px;
  letter-spacing: 0.12em;
}

.contact-details p {
  margin-bottom: 14px;
}

.contact-details a {
  color: var(--espresso);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.prices-section {
  max-width: 1120px;
  margin: 0 auto;
}

.prices-main {
  padding-top: 116px;
}

.prices-intro {
  position: relative;
  width: 100vw;
  min-height: 520px;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  isolation: isolate;
}

.prices-intro::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--cream) 0%,
    rgba(244, 239, 232, 0.99) 27%,
    rgba(244, 239, 232, 0.9) 38%,
    rgba(244, 239, 232, 0.48) 51%,
    rgba(244, 239, 232, 0.08) 66%,
    transparent 74%
  );
  content: "";
  pointer-events: none;
}

.prices-heading {
  position: relative;
  z-index: 2;
  width: min(52%, 660px);
  max-width: none;
  box-sizing: border-box;
  margin: 0;
  padding-top: clamp(108px, 10vw, 146px);
  padding-left: max(6vw, calc((100vw - 1120px) / 2));
  text-align: left;
}

.prices-heading p {
  max-width: 540px;
}

.prices-intro-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  min-height: 520px;
  border: 0;
  border-radius: 0;
  background: var(--soft-sand);
  box-shadow: none;
}

.prices-intro-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: clamp(42px, 5vw, 64px);
}

.price-card {
  min-height: 390px;
  padding: 44px 36px;
  border: 1px solid rgba(198, 169, 122, 0.28);
  border-radius: 18px;
  background: rgba(255, 252, 248, 0.86);
  box-shadow: 0 24px 64px rgba(36, 28, 24, 0.09);
  text-align: center;
}

.price-card-accent {
  background: rgba(230, 215, 198, 0.72);
}

.price-card h2 {
  min-height: 66px;
  margin-bottom: 28px;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.price-amount {
  margin-bottom: 8px;
  color: var(--espresso);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 62px;
  font-weight: 500;
  line-height: 1;
}

.price-amount span {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.price-detail {
  margin-bottom: 24px;
  color: var(--warm-taupe);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-description {
  max-width: 350px;
  margin: 0 auto;
  line-height: 1.75;
}

.cancellation-policy {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  margin: 64px 0 0;
  padding: 36px 40px;
  border: 1px solid rgba(198, 169, 122, 0.28);
  border-radius: 12px;
  background: rgba(255, 252, 248, 0.68);
  box-shadow: 0 20px 56px rgba(36, 28, 24, 0.07);
}

.cancellation-policy h2 {
  margin-bottom: 16px;
  font-size: 19px;
}

.cancellation-policy .eyebrow {
  margin-bottom: 16px;
}

.cancellation-policy p {
  margin-bottom: 0;
}

.vouchers-section {
  max-width: 980px;
  margin: 0 auto;
}

.vouchers-heading {
  max-width: none;
  width: 100%;
  margin: 0;
  text-align: left;
}

.vouchers-heading p {
  max-width: none;
  line-height: 1.85;
}

.voucher-intro {
  width: 100%;
  max-width: 860px;
}

.voucher-visual {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 390px;
  padding: 48px;
  overflow: hidden;
  border: 1px solid rgba(198, 169, 122, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 252, 248, 0.96), rgba(230, 215, 198, 0.88));
  box-shadow: 0 26px 72px rgba(36, 28, 24, 0.1);
  text-align: center;
}

.voucher-visual::before,
.voucher-visual::after {
  position: absolute;
  width: 72%;
  height: 1px;
  background: rgba(198, 169, 122, 0.5);
  content: "";
}

.voucher-visual::before {
  top: 38px;
}

.voucher-visual::after {
  bottom: 38px;
}

.voucher-visual-label {
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.voucher-visual strong {
  margin-bottom: 24px;
  color: var(--espresso);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(52px, 6vw, 76px);
  font-weight: 500;
  line-height: 1;
}

.voucher-visual > span:last-child {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.voucher-process {
  max-width: 860px;
  margin-top: clamp(38px, 5vw, 58px);
  padding: clamp(40px, 5vw, 64px);
  border-radius: 8px;
  background: rgba(255, 252, 248, 0.82);
  box-shadow: 0 22px 62px rgba(36, 28, 24, 0.075);
}

.voucher-process h2 {
  max-width: 680px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 4vw, 48px);
  letter-spacing: 0.015em;
  line-height: 1.1;
  text-transform: none;
}

.voucher-steps {
  display: grid;
  gap: 22px;
  margin: 34px 0 40px;
}

.voucher-steps p {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  margin: 0;
  line-height: 1.8;
}

.voucher-steps span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.voucher-whatsapp-button {
  min-width: 340px;
}

@media (max-width: 900px) {
  .voucher-intro {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .voucher-visual {
    width: 100%;
    max-width: 620px;
  }

  .voucher-process {
    margin-top: 42px;
  }
}

@media (max-width: 560px) {
  .voucher-visual {
    min-height: 300px;
    padding: 34px 22px;
  }

  .voucher-process {
    margin-top: 32px;
    padding: 32px 22px;
  }

  .voucher-steps p {
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }

  .voucher-whatsapp-button {
    width: 100%;
    min-width: 0;
    padding-right: 18px;
    padding-left: 18px;
  }
}

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

.voucher-card {
  display: grid;
  justify-items: center;
  min-height: 370px;
  padding: 44px 34px;
  border: 1px solid rgba(198, 169, 122, 0.32);
  border-radius: 18px;
  background: rgba(255, 252, 248, 0.88);
  box-shadow: 0 24px 64px rgba(36, 28, 24, 0.09);
  text-align: center;
}

.voucher-card-accent {
  background: rgba(230, 215, 198, 0.7);
}

.voucher-label {
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.voucher-card h2 {
  min-height: 62px;
  margin-bottom: 18px;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.voucher-amount {
  margin-bottom: 30px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 68px;
  font-weight: 500;
  line-height: 1;
}

.voucher-amount span {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
}

.voucher-button {
  align-self: end;
  min-width: 230px;
}

.voucher-note {
  max-width: 680px;
  margin: 36px auto 0;
  text-align: center;
}

.courses-section {
  max-width: 1180px;
  margin: 0 auto;
}

.courses-main {
  padding-top: 116px;
}

.courses-intro {
  position: relative;
  width: 100vw;
  min-height: 520px;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  isolation: isolate;
}

.courses-intro::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--cream) 0%,
    rgba(244, 239, 232, 0.99) 27%,
    rgba(244, 239, 232, 0.9) 38%,
    rgba(244, 239, 232, 0.48) 51%,
    rgba(244, 239, 232, 0.08) 66%,
    transparent 74%
  );
  content: "";
  pointer-events: none;
}

.courses-heading {
  position: relative;
  z-index: 2;
  width: min(52%, 680px);
  max-width: none;
  box-sizing: border-box;
  margin: 0;
  padding-top: clamp(96px, 9vw, 132px);
  padding-left: max(5vw, calc((100vw - 1180px) / 2));
  text-align: left;
}

.courses-heading p {
  max-width: 590px;
}

.courses-intro-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  min-height: 520px;
  border-radius: 0;
  background: var(--soft-sand);
  box-shadow: none;
}

.courses-intro-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.course-calendar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(198, 169, 122, 0.3);
  border-radius: 14px;
  background: rgba(255, 252, 248, 0.72);
  box-shadow: 0 24px 70px rgba(36, 28, 24, 0.09);
  margin-top: clamp(64px, 8vw, 96px);
}

.calendar-day {
  min-height: 350px;
  padding: 26px 18px;
  border-right: 1px solid rgba(198, 169, 122, 0.24);
}

.calendar-day:last-child {
  border-right: 0;
}

.calendar-day h2 {
  min-height: 44px;
  margin-bottom: 24px;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-align: center;
}

.course-event {
  display: grid;
  gap: 5px;
  min-height: 112px;
  margin-bottom: 14px;
  padding: 19px 16px;
  border-radius: 8px;
  border: 1px solid rgba(198, 169, 122, 0.2);
  background: rgba(244, 239, 232, 0.96);
  color: var(--espresso);
  box-shadow: 0 10px 28px rgba(36, 28, 24, 0.055);
}

.course-event strong {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.course-signup-link {
  width: fit-content;
  margin-top: 2px;
  color: var(--dusty-mauve);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.course-signup-link:hover {
  color: var(--espresso);
}

.course-time {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

.calendar-day-empty {
  display: grid;
  align-content: start;
}

.calendar-rest {
  padding-top: 34px;
  color: rgba(36, 28, 24, 0.42);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.course-calendar-footer {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.course-calendar-footer p {
  margin-bottom: 0;
}

.course-calendar-footer a {
  color: var(--espresso);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.course-calendar-footer a:hover {
  color: var(--dusty-mauve);
  text-decoration-color: var(--dusty-mauve);
}

.about-main {
  padding-top: 116px;
  background:
    radial-gradient(circle at 92% 12%, rgba(183, 154, 169, 0.15), transparent 28%),
    linear-gradient(180deg, var(--cream) 0%, var(--white-warm) 58%, var(--soft-sand) 100%);
}

.about-story {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1fr);
  gap: clamp(54px, 8vw, 112px);
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(86px, 10vw, 138px) clamp(24px, 5vw, 72px);
}

.about-story-intro {
  padding-top: clamp(70px, 8vw, 108px);
}

.about-story-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
  max-width: none;
  background: rgba(230, 215, 198, 0.5);
  padding-right: max(5vw, calc((100vw - 1180px) / 2));
  padding-left: max(5vw, calc((100vw - 1180px) / 2));
}

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

.about-copy h1 {
  max-width: 720px;
}

.about-copy h2,
.about-section-heading h2,
.about-closing h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1.08;
  text-transform: none;
}

.about-copy p {
  margin-bottom: 20px;
  line-height: 1.85;
}

.about-media {
  overflow: hidden;
  min-height: 0;
  border-radius: 8px;
  background: var(--soft-sand);
  box-shadow: 0 26px 72px rgba(36, 28, 24, 0.11);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.about-media-wide {
  min-height: 0;
}

.about-media-wide img {
  min-height: 0;
  object-position: 67% center;
}

.about-media-stilllife {
  min-height: 0;
}

.about-media-stilllife img {
  min-height: 0;
  object-position: 68% center;
}

.about-copy blockquote {
  margin: 30px 0 0;
  padding-left: 26px;
  border-left: 2px solid var(--gold);
  color: var(--warm-taupe);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(27px, 3vw, 36px);
  line-height: 1.3;
}

.about-focus {
  padding: clamp(92px, 10vw, 136px) clamp(24px, 5vw, 72px);
  background: var(--cream);
}

.about-section-heading {
  max-width: 1180px;
  margin: 0 auto 54px;
}

.about-focus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.about-focus-card {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 260px;
  padding: 34px 26px 32px;
  border: 1px solid rgba(198, 169, 122, 0.25);
  border-radius: 8px;
  background: rgba(255, 252, 248, 0.82);
  box-shadow: 0 18px 48px rgba(36, 28, 24, 0.065);
  text-align: center;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.about-focus-card:hover {
  border-color: rgba(198, 169, 122, 0.42);
  box-shadow: 0 22px 54px rgba(36, 28, 24, 0.09);
  transform: translateY(-4px);
}

.about-focus-card img {
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
  object-fit: contain;
  transition: filter 220ms ease, transform 220ms ease;
}

.about-focus-card:hover img {
  filter: brightness(0) saturate(100%) invert(10%) sepia(13%) saturate(937%) hue-rotate(338deg) brightness(94%) contrast(94%);
  transform: translateY(-2px);
}

.about-focus-card h3 {
  min-height: 46px;
  margin-bottom: 12px;
  color: var(--espresso);
  font-size: 14px;
  text-align: center;
  transition: color 220ms ease;
}

.about-focus-card p {
  max-width: 240px;
  margin-bottom: 0;
  color: var(--espresso);
  line-height: 1.7;
  text-align: center;
  transition: color 220ms ease;
}

.about-focus-card:hover h3,
.about-focus-card:hover p {
  color: var(--gold);
}

.about-closing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  padding: clamp(80px, 9vw, 120px) max(5vw, calc((100vw - 1180px) / 2));
  background: var(--dusty-mauve);
  color: var(--cream);
}

.about-closing div {
  max-width: 780px;
}

.about-closing h2 {
  margin-bottom: 22px;
}

.about-closing p {
  margin-bottom: 0;
  line-height: 1.85;
}

.about-closing .about-closing-greeting {
  margin-top: 24px;
}

.about-signature {
  margin-top: 10px;
  color: var(--cream);
  font-family: "Allura", cursive;
  font-size: 48px;
  line-height: 1;
}

.about-closing .button {
  flex: 0 0 auto;
  background: var(--cream);
  color: var(--espresso);
}

.about-closing .button:hover {
  background: var(--warm-taupe);
  color: var(--cream);
}

@media (max-width: 900px) {
  .about-main {
    padding-top: 92px;
  }

  .about-story,
  .about-story-reverse {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 72px 32px;
  }

  .about-story-intro {
    padding-top: 52px;
  }

  .about-story-reverse .about-copy {
    order: 1;
  }

  .about-story-reverse .about-media {
    order: 2;
  }

  .about-story-philosophy .about-copy {
    order: 1;
  }

  .about-story-philosophy .about-media {
    order: 2;
  }

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

  .about-media,
  .about-media img {
    min-height: 520px;
  }

  .about-media-wide,
  .about-media-wide img,
  .about-media-stilllife,
  .about-media-stilllife img {
    min-height: 430px;
  }

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

  .about-closing {
    align-items: flex-start;
    flex-direction: column;
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media (max-width: 560px) {
  .about-story,
  .about-story-reverse {
    gap: 34px;
    padding: 56px 22px;
  }

  .about-story-intro {
    padding-top: 42px;
  }

  .about-copy h1 {
    font-size: 40px;
  }

  .about-copy h2,
  .about-section-heading h2,
  .about-closing h2 {
    font-size: 36px;
  }

  .about-media,
  .about-media img {
    min-height: 460px;
  }

  .about-story-intro .about-media {
    justify-self: center;
    width: 60%;
    min-height: 276px;
  }

  .about-story-intro .about-media img {
    min-height: 276px;
  }

  .about-media-wide,
  .about-media-wide img,
  .about-media-stilllife,
  .about-media-stilllife img {
    min-height: 320px;
  }

  .about-media-wide img {
    object-position: 68% center;
  }

  .about-focus {
    padding: 64px 22px;
  }

  .about-section-heading {
    margin-bottom: 36px;
  }

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

  .about-focus-card {
    min-height: 0;
  }

  .about-focus-card img {
    width: 50px;
    height: 50px;
  }

  .about-focus-card h3 {
    min-height: 0;
  }

  .about-closing {
    gap: 38px;
    padding: 64px 22px;
  }

  .about-closing .button {
    width: 100%;
  }
}

.legal-page {
  min-height: 100vh;
  background: var(--dusty-mauve);
  color: var(--cream);
}

.legal-page .site-header {
  background: rgba(244, 239, 232, 0.94);
}

.legal-page .main-nav a {
  color: var(--espresso);
}

.legal-page .main-nav a:hover,
.legal-page .main-nav a.is-active {
  background: var(--dusty-mauve);
  color: var(--cream);
}

.legal-page .menu-toggle {
  border-color: rgba(198, 169, 122, 0.38);
  background: rgba(251, 247, 241, 0.82);
  color: var(--espresso);
}

.legal-main {
  min-height: calc(100vh - 102px);
  padding: 184px clamp(24px, 7vw, 110px) 100px;
}

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

.legal-eyebrow {
  margin-bottom: 22px;
  color: var(--cream);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.legal-content h1 {
  margin-bottom: 56px;
  color: var(--cream);
}

.legal-content section {
  padding: 28px 0;
  border-top: 1px solid rgba(244, 239, 232, 0.24);
}

.legal-content h2 {
  margin-bottom: 14px;
  color: var(--cream);
  font-size: 16px;
}

.legal-content p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(244, 239, 232, 0.92);
}

.legal-content a {
  color: var(--cream);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.legal-footer {
  border-top: 1px solid rgba(244, 239, 232, 0.22);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 102px;
  padding: 30px clamp(28px, 5.7vw, 88px);
  background: var(--dusty-mauve);
  color: var(--cream);
}

.site-footer a {
  color: var(--cream);
}

.instagram-link,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13.3px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.instagram-icon {
  position: relative;
  display: inline-block;
  width: 31px;
  height: 31px;
  border: 2px solid var(--cream);
  border-radius: 9px;
}

.instagram-icon::before {
  position: absolute;
  inset: 7px;
  border: 2px solid var(--cream);
  border-radius: 50%;
  content: "";
}

.instagram-icon::after {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cream);
  content: "";
}

@media (max-width: 1140px) {
  .site-header {
    gap: 20px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .logo-link {
    width: 178px;
  }

  .main-nav {
    gap: 7px;
    font-size: 12px;
  }

  .main-nav a {
    padding-left: 12px;
    padding-right: 12px;
  }

  h1 {
    font-size: 50px;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 156px;
    background: var(--cream);
    backdrop-filter: none;
  }

  .site-header.is-scrolled {
    min-height: 156px;
  }

  .logo-link {
    width: 168px;
  }

  .logo-link img {
    max-height: 126px;
  }

  .menu-toggle {
    position: relative;
    z-index: 40;
    display: grid;
    gap: 5px;
    width: 34px;
    height: 34px;
    place-content: center;
    border: 1px solid rgba(198, 169, 122, 0.38);
    border-radius: 50%;
    background: rgba(251, 247, 241, 0.74);
    color: var(--espresso);
  }

  .menu-toggle span {
    display: block;
    width: 12px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(3px) rotate(42deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-3px) rotate(-42deg);
  }

  .main-nav {
    position: fixed;
    top: 156px;
    right: 0;
    left: 0;
    bottom: auto;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    gap: 4px;
    width: auto;
    padding: 12px 8px 16px;
    background: var(--cream);
    backdrop-filter: none;
    opacity: 0;
    pointer-events: none;
    transform: none;
    box-shadow: 0 18px 48px rgba(36, 28, 24, 0.08);
    transition: opacity 220ms ease;
  }

  .menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav a {
    min-width: 0;
    min-height: 30px;
    padding: 8px 6px;
    font-size: 9px;
    letter-spacing: 0.045em;
  }

  .home-hero {
    padding-top: 156px;
  }

  .home-hero::before {
    inset: 156px 0 0;
    background:
      linear-gradient(180deg, var(--cream) 0%, rgba(244, 239, 232, 0.96) 40%, rgba(244, 239, 232, 0.42) 58%, rgba(244, 239, 232, 0) 74%),
      linear-gradient(90deg, rgba(244, 239, 232, 0.5) 0%, rgba(244, 239, 232, 0) 42%, rgba(244, 239, 232, 0) 100%);
  }

  .hero-content {
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 42px;
  }

  .hero-image-wrap,
  .hero-image-wrap img {
    min-height: 470px;
  }

  .hero-image-wrap {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: -24px;
  }

  .icon-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding-top: 36px;
  }

  .icon-card {
    border-right: 0;
    border-bottom: 1px solid rgba(198, 169, 122, 0.28);
    padding: 24px 18px;
  }

  .icon-card:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .subpage-main {
    padding-top: 138px;
  }

  .subpage-panel {
    grid-template-columns: 1fr;
  }

  .subpage-visual {
    min-height: 320px;
    max-width: 460px;
    width: 100%;
  }

  .signup-page .subpage-panel {
    display: block;
  }

  .signup-page .subpage-main {
    min-height: auto;
    padding-bottom: 0;
    background: var(--cream);
  }

  .signup-page .subpage-copy {
    width: 100%;
  }

  .signup-portrait {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: calc(100% + 48px);
    min-height: 540px;
    margin: 24px -24px 0;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .signup-portrait::after {
    content: none;
  }

  .signup-portrait img {
    width: 100%;
    min-height: 540px;
    object-position: center 24%;
    transform: none;
  }

  .site-footer {
    align-items: flex-start;
    display: grid;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .contact-intro {
    margin-bottom: 72px;
  }

  .prices-main {
    padding-top: 92px;
  }

  .prices-intro {
    min-height: 0;
    overflow: visible;
  }

  .prices-intro::after {
    inset: auto 0 0;
    height: 430px;
    background: linear-gradient(
      180deg,
      var(--cream) 0%,
      rgba(244, 239, 232, 0.72) 8%,
      rgba(244, 239, 232, 0.18) 22%,
      transparent 36%
    );
  }

  .prices-heading {
    width: 100%;
    padding: 0 22px;
  }

  .prices-intro-image {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 430px;
    margin-top: 38px;
  }

  .prices-intro-image img {
    min-height: 430px;
    object-position: 59% center;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 14.7px;
  }

  .site-header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .logo-link {
    width: 154px;
  }

  .main-nav {
    top: 156px;
  }

  .home-hero {
    padding-top: 156px;
  }

  .home-hero::before {
    inset: 156px 0 0;
  }

  h1 {
    font-size: 37px;
    letter-spacing: 0.01em;
  }

  h2 {
    font-size: 21px;
    letter-spacing: 0.015em;
  }

  .hero-content {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-content p {
    font-size: 13px;
    letter-spacing: 0.12em;
  }

  .button {
    width: 100%;
    min-width: 0;
    min-height: 45px;
    padding: 14px 25px;
    font-size: 11.8px;
  }

  .hero-image-wrap,
  .hero-image-wrap img {
    min-height: 390px;
  }

  .icon-strip {
    grid-template-columns: 1fr;
    padding-left: 22px;
    padding-right: 22px;
  }

  .icon-card:last-child {
    grid-column: auto;
  }

  .icon-card img {
    width: 49px;
    height: 49px;
  }

  .subpage-main {
    padding-left: 22px;
    padding-right: 22px;
  }

  .subpage-note {
    padding: 22px;
  }

  .signup-note {
    padding: 0;
  }

  .signup-note .button {
    min-width: 0;
  }

  .contact-main {
    padding-bottom: 72px;
  }

  .contact-form-card {
    padding: 28px 20px;
    border-radius: 14px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 21px;
  }

  .form-field-wide {
    grid-column: auto;
  }

  .contact-form-heading h2 {
    font-size: 21px;
  }

  .form-submit {
    width: 100%;
  }

  .prices-intro {
    min-height: 0;
  }

  .prices-heading {
    margin-bottom: 0;
  }

  .prices-intro-image {
    width: 100%;
    max-width: none;
    min-height: 340px;
    margin-top: 30px;
  }

  .prices-intro-image img {
    min-height: 340px;
    object-position: 62% center;
  }

  .prices-intro::after {
    height: 340px;
  }

  .price-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .price-card {
    min-height: 0;
    padding: 34px 24px;
  }

  .price-card h2 {
    min-height: 0;
  }

  .cancellation-policy {
    margin-top: 42px;
    padding: 28px 22px;
  }

  .vouchers-heading {
    margin-bottom: 34px;
  }

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

  .voucher-card {
    min-height: 0;
    padding: 34px 24px;
  }

  .voucher-card h2 {
    min-height: 0;
  }

  .voucher-button {
    width: 100%;
    min-width: 0;
  }

  .courses-intro {
    min-height: 0;
    overflow: visible;
  }

  .courses-main {
    padding-top: 92px;
  }

  .courses-intro::after {
    inset: auto 0 0;
    height: 360px;
    background: linear-gradient(
      180deg,
      var(--cream) 0%,
      rgba(244, 239, 232, 0.72) 8%,
      rgba(244, 239, 232, 0.18) 22%,
      transparent 36%
    );
  }

  .courses-heading {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding: 42px 22px 0;
  }

  .courses-intro-image {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 360px;
    margin-top: 36px;
  }

  .courses-intro-image img {
    min-height: 360px;
    object-position: 64% center;
  }

  .course-calendar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    margin-top: 52px;
  }

  .calendar-day {
    min-height: 0;
    padding: 22px;
    border: 1px solid rgba(198, 169, 122, 0.26);
    border-radius: 10px;
    background: rgba(255, 252, 248, 0.8);
  }

  .calendar-day h2 {
    min-height: 0;
    margin-bottom: 16px;
    text-align: left;
  }

  .calendar-day-empty {
    display: none;
  }

  .course-event {
    min-height: 0;
  }

  .course-calendar-footer {
    gap: 16px;
  }

  .legal-page .main-nav {
    background: rgba(244, 239, 232, 0.98);
  }

  .legal-main {
    padding-top: 142px;
    padding-bottom: 70px;
  }

  .legal-content h1 {
    margin-bottom: 38px;
  }

  .site-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 14px;
    min-height: auto;
    padding: 24px 14px;
  }

  .instagram-link,
  .site-footer nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 9px;
    letter-spacing: 0.045em;
    line-height: 1.4;
  }

  .instagram-icon {
    width: 20px;
    height: 20px;
    border-width: 1.5px;
    border-radius: 6px;
  }

  .instagram-icon::before {
    inset: 4px;
    border-width: 1.5px;
  }

  .instagram-icon::after {
    top: 4px;
    right: 4px;
    width: 3px;
    height: 3px;
  }
}

@media (max-width: 560px) {
  .home-hero {
    padding-top: 156px;
  }

  .home-hero::before {
    inset: 156px 0 0;
  }

  .hero-content {
    padding-top: 30px;
  }

  .prices-main,
  .courses-main,
  .subpage-main,
  .legal-main {
    padding-top: 186px;
  }

  .legal-eyebrow {
    margin-bottom: 30px;
  }

  .about-main {
    padding-top: 156px;
  }

  .about-story-intro {
    padding-top: 30px;
  }

  .courses-heading {
    padding-top: 0;
  }

  .courses-intro-image {
    display: none;
  }

  .course-calendar {
    margin-top: 30px;
  }

  .prices-intro-image {
    display: none;
  }

  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
  }

  .price-card {
    padding: 22px 14px;
  }

  .price-card h2 {
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .price-amount {
    font-size: 42px;
  }

  .price-description {
    font-size: 12px;
    line-height: 1.55;
  }

  .voucher-whatsapp-button {
    width: 100%;
    min-width: 0;
    padding-right: 14px;
    padding-left: 14px;
    font-size: 10.5px;
    letter-spacing: 0.09em;
  }

  .contact-intro {
    margin-bottom: 30px;
  }

  .signup-note {
    justify-items: center;
    width: 100%;
    text-align: center;
  }

  .signup-phone {
    text-align: center;
  }

  .signup-portrait {
    width: 100%;
    aspect-ratio: 4 / 5;
    min-height: 0;
    margin: 30px 0;
    border-radius: 8px;
    background: var(--soft-sand);
    box-shadow: 0 26px 72px rgba(36, 28, 24, 0.11);
  }

  .signup-portrait img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center 28%;
  }

  .about-story,
  .about-story-reverse {
    gap: 24px;
  }

  .about-story-intro .about-media {
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .about-story-intro .about-media img {
    min-height: 0;
    object-position: center 28%;
  }

  .about-media-wide,
  .about-media-wide img,
  .about-media-stilllife,
  .about-media-stilllife img {
    min-height: 272px;
  }
}
