:root {
  --cream: #f4efe3;
  --cream-light: #fcf8ef;
  --ink: #29241f;
  --ink-soft: #5d5249;
  --terracotta: #c65d32;
  --terracotta-dark: #7d3422;
  --sun: #efa84a;
  --peach: #e8b98f;
  --sage: #77806a;
  --line: rgba(41, 36, 31, 0.18);
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--cream-light);
  font-size: 12px;
}

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

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  min-height: 104px;
  padding: 0 clamp(28px, 4.5vw, 84px);
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(250px, 1fr);
  align-items: center;
  gap: clamp(20px, 3vw, 54px);
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 225px;
  height: 66px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.main-nav {
  padding: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(252, 248, 239, 0.55);
}

.main-nav a {
  padding: 9px 17px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  background: var(--ink);
  color: var(--cream-light);
}

.header-cta {
  justify-self: end;
  padding: 13px 18px 13px 22px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  border: 1px solid var(--terracotta);
  border-radius: 999px;
  color: var(--terracotta-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: var(--terracotta);
  color: var(--cream-light);
}

.header-cta span {
  font-size: 13px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 780px;
  height: 100svh;
  padding: 126px clamp(34px, 5.8vw, 110px) 116px;
  display: grid;
  grid-template-columns: minmax(560px, 1.08fr) minmax(590px, 0.92fr);
  align-items: center;
  gap: clamp(30px, 4vw, 80px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 6%, rgba(239, 168, 74, 0.11), transparent 28%),
    var(--cream);
}

.ambient-circle {
  position: absolute;
  border: 1px solid rgba(198, 93, 50, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.ambient-circle-one {
  top: 23%;
  left: -150px;
  width: 360px;
  height: 360px;
}

.ambient-circle-two {
  top: 13%;
  left: 40%;
  width: 88px;
  height: 88px;
  background: rgba(239, 168, 74, 0.11);
}

.side-note {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 20px;
  margin: 0;
  color: rgba(41, 36, 31, 0.45);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
}

.hero-copy {
  position: relative;
  z-index: 6;
  align-self: center;
  padding-bottom: 20px;
}

.eyebrow {
  margin: 0 0 25px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--terracotta-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  display: block;
  background: var(--terracotta);
}

.hero h1 {
  max-width: 790px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(82px, 7.1vw, 132px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.78;
}

.hero h1 em {
  position: relative;
  z-index: 1;
  color: var(--terracotta);
  font-weight: 500;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -12px;
  bottom: 4px;
  left: -4px;
  height: 19px;
  border-radius: 50%;
  background: rgba(239, 168, 74, 0.27);
  transform: rotate(-1.5deg);
}

.hero-lead {
  max-width: 570px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.85;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.button-primary {
  min-width: 224px;
  padding: 16px 20px 16px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-radius: 999px;
  background: var(--terracotta);
  box-shadow: 0 14px 30px rgba(125, 52, 34, 0.16);
  color: var(--cream-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.button-primary:hover {
  transform: translateY(-3px);
  background: var(--terracotta-dark);
}

.button-primary span,
.button-link span {
  font-size: 15px;
}

.button-link {
  padding: 12px 0 8px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-proof {
  max-width: 630px;
  margin-top: clamp(38px, 5vh, 60px);
  padding-top: 23px;
  display: grid;
  grid-template-columns: 58px 1fr 1fr;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.proof-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid var(--terracotta);
  border-radius: 50%;
  color: var(--terracotta-dark);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.hero-proof p {
  margin: 0;
  display: grid;
  gap: 4px;
}

.hero-proof strong {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.hero-proof span {
  color: var(--ink-soft);
  font-size: 9px;
  line-height: 1.55;
}

.practice-stage {
  position: relative;
  z-index: 5;
  width: min(100%, 680px);
  height: min(690px, calc(100svh - 190px));
  min-height: 560px;
  justify-self: end;
}

.arch-outline {
  position: absolute;
  top: 1%;
  right: 4%;
  width: 75%;
  height: 96%;
  border: 1px solid rgba(198, 93, 50, 0.33);
  border-radius: 50% 50% 18px 18px / 37% 37% 18px 18px;
  transform: translate(26px, -24px);
}

.practice-arch {
  position: absolute;
  top: 3%;
  right: 6%;
  bottom: 2%;
  width: 72%;
  overflow: hidden;
  border-radius: 50% 50% 18px 18px / 36% 36% 18px 18px;
  background:
    linear-gradient(180deg, rgba(252, 222, 151, 0.94) 0%, rgba(232, 150, 79, 0.94) 48%, rgba(148, 60, 35, 0.98) 100%);
  box-shadow: 0 30px 70px rgba(88, 53, 32, 0.17);
}

.practice-arch::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

.arch-sun {
  position: absolute;
  top: 18%;
  left: 50%;
  width: min(70%, 310px);
  aspect-ratio: 1;
  border: 1px solid rgba(125, 52, 34, 0.37);
  border-radius: 50%;
  transform: translateX(-50%);
}

.arch-sun::before,
.arch-sun::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 248, 230, 0.55);
  border-radius: 50%;
}

.arch-sun::before {
  inset: 24px;
}

.arch-sun::after {
  inset: 50px;
  background: rgba(255, 229, 157, 0.32);
}

.arch-kicker {
  position: absolute;
  z-index: 2;
  top: 8%;
  left: 50%;
  margin: 0;
  color: var(--terracotta-dark);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.arch-image {
  position: absolute;
  z-index: 3;
  top: 25%;
  left: 50%;
  width: min(66%, 290px);
  aspect-ratio: 1;
  border: 9px solid rgba(255, 248, 230, 0.8);
  border-radius: 48% 52% 48% 52% / 50% 46% 54% 50%;
  object-fit: cover;
  box-shadow: 0 24px 45px rgba(92, 37, 23, 0.24);
  filter: saturate(0.82) contrast(1.05);
  transform: translateX(-50%) rotate(-2deg);
}

.arch-caption {
  position: absolute;
  z-index: 4;
  right: 10%;
  bottom: 7%;
  left: 10%;
  margin: 0;
  display: grid;
  gap: 5px;
  color: var(--cream-light);
  text-align: center;
}

.arch-caption span {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.arch-caption strong {
  font-family: var(--display);
  font-size: clamp(27px, 2vw, 37px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.practice-chip {
  position: absolute;
  z-index: 9;
  min-width: 142px;
  padding: 9px 14px 9px 9px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(41, 36, 31, 0.14);
  border-radius: 999px;
  background: rgba(252, 248, 239, 0.94);
  box-shadow: 0 16px 35px rgba(72, 46, 30, 0.12);
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.practice-chip:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(72, 46, 30, 0.18);
}

.practice-chip img {
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.practice-chip span {
  display: grid;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.05;
}

.practice-chip small {
  margin-bottom: 3px;
  color: var(--terracotta);
  font-family: var(--sans);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.chip-hatha {
  top: 11%;
  left: 2%;
}

.chip-flow {
  top: 37%;
  right: -1%;
}

.chip-yin {
  bottom: 23%;
  left: -2%;
}

.chip-rest {
  right: 0;
  bottom: 8%;
}

.hero-footer {
  position: absolute;
  z-index: 12;
  right: clamp(34px, 5.8vw, 110px);
  bottom: 0;
  left: clamp(34px, 5.8vw, 110px);
  min-height: 82px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-top: 1px solid var(--line);
}

.hero-footer > * {
  position: relative;
  margin: 0;
  padding: 18px 34px;
  display: grid;
  align-content: center;
  gap: 3px;
  border-right: 1px solid var(--line);
}

.hero-footer > *:first-child {
  padding-left: 0;
}

.hero-footer > *:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero-footer span {
  color: var(--terracotta);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-footer strong {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-footer i {
  position: absolute;
  right: 24px;
  top: 50%;
  font-size: 13px;
  font-style: normal;
  transform: translateY(-50%);
}

.hero-footer > *:last-child i {
  right: 0;
}

.section {
  padding: clamp(90px, 10vw, 160px) clamp(28px, 6vw, 110px);
  scroll-margin-top: 84px;
}

.section-heading {
  margin-bottom: clamp(55px, 7vw, 96px);
  display: grid;
  grid-template-columns: 115px minmax(0, 1fr) minmax(280px, 380px);
  align-items: end;
  gap: clamp(26px, 4vw, 70px);
}

.section-index {
  margin: 0;
  color: var(--terracotta);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-index.light {
  color: var(--peach);
}

.section-heading .eyebrow,
.schedule-heading .eyebrow {
  margin-bottom: 18px;
}

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

.eyebrow.pale {
  color: var(--peach);
}

.section-heading h2,
.schedule-heading h2,
.online-band h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 5.4vw, 92px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.section-heading h2 em,
.schedule-heading h2 em,
.online-band h2 em,
.contact h2 em {
  color: var(--terracotta);
  font-weight: 500;
}

.section-intro {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.85;
}

.facts-strip {
  min-height: 154px;
  padding: 28px clamp(28px, 6vw, 110px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 3vw, 48px);
  background: var(--ink);
  color: var(--cream-light);
}

.facts-strip p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 18px;
}

.facts-strip strong {
  color: var(--peach);
  font-family: var(--display);
  font-size: clamp(25px, 2vw, 36px);
  font-weight: 500;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.facts-strip span {
  color: rgba(252, 248, 239, 0.65);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.facts-strip i {
  color: var(--terracotta);
  font-size: 10px;
  font-style: normal;
}

.disciplines {
  background: var(--cream-light);
}

.discipline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.discipline-card {
  min-height: 330px;
  padding: clamp(26px, 3vw, 42px);
  display: grid;
  align-content: space-between;
  gap: 34px;
  background: var(--cream-light);
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.discipline-card:hover {
  position: relative;
  z-index: 2;
  background: #fffaf0;
  transform: translateY(-5px);
}

.discipline-featured {
  grid-column: span 2;
  grid-template-columns: minmax(200px, 0.8fr) minmax(280px, 1fr);
  align-items: center;
  background: #efe5d3;
}

.discipline-visual {
  position: relative;
  min-height: 110px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.discipline-visual::before {
  content: "";
  position: absolute;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(198, 93, 50, 0.24);
  border-radius: 50%;
  transform: translate(28px, 5px);
}

.discipline-visual > span {
  color: var(--terracotta);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.discipline-visual img {
  position: relative;
  width: 110px;
  height: 110px;
  margin-right: 18px;
  object-fit: contain;
}

.discipline-featured .discipline-visual {
  min-height: 190px;
  align-items: center;
}

.discipline-featured .discipline-visual::before {
  width: 178px;
  height: 178px;
}

.discipline-featured .discipline-visual img {
  width: 180px;
  height: 180px;
}

.card-kicker {
  margin: 0 0 13px;
  color: var(--terracotta);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.discipline-card h3,
.price-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(31px, 2.8vw, 48px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.discipline-card > div:last-child > p:last-child {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.8;
}

.online-band {
  min-height: 650px;
  padding: clamp(80px, 9vw, 140px) clamp(28px, 6vw, 110px);
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(380px, 1fr) minmax(250px, 0.7fr);
  align-items: center;
  gap: clamp(40px, 6vw, 110px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 50%, rgba(239, 168, 74, 0.14), transparent 25%),
    var(--terracotta-dark);
  color: var(--cream-light);
}

.online-mark {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid rgba(252, 248, 239, 0.25);
  border-radius: 50% 50% 24px 24px / 38% 38% 24px 24px;
  font-family: var(--display);
  font-size: clamp(75px, 8vw, 125px);
  line-height: 1;
}

.online-mark::before,
.online-mark::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(232, 185, 143, 0.3);
  border-radius: 50%;
}

.online-mark::before {
  width: 190px;
  height: 190px;
}

.online-mark::after {
  width: 265px;
  height: 265px;
}

.online-mark span,
.online-mark i {
  position: relative;
  z-index: 2;
}

.online-mark i {
  color: var(--sun);
  font-family: var(--sans);
  font-size: 15px;
  font-style: normal;
}

.online-copy .section-index {
  margin-bottom: 24px;
}

.online-copy h2 em {
  color: var(--peach);
}

.online-copy > p:not(.section-index) {
  max-width: 580px;
  margin: 28px 0 34px;
  color: rgba(252, 248, 239, 0.72);
  font-size: 13px;
  line-height: 1.85;
}

.button {
  border: 0;
}

.button-light,
.button-dark,
.button-outline {
  padding: 16px 20px 16px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.button-light {
  background: var(--cream-light);
  color: var(--terracotta-dark);
}

.button-dark {
  background: var(--ink);
  color: var(--cream-light);
}

.button-outline {
  border: 1px solid var(--line);
}

.button-light:hover,
.button-dark:hover,
.button-outline:hover {
  transform: translateY(-3px);
}

.button-light:hover {
  background: var(--peach);
}

.button-outline:hover {
  background: var(--cream-light);
}

.online-details {
  border-top: 1px solid rgba(252, 248, 239, 0.22);
}

.online-details p {
  margin: 0;
  padding: 21px 0;
  display: grid;
  gap: 5px;
  border-bottom: 1px solid rgba(252, 248, 239, 0.22);
}

.online-details span {
  color: var(--peach);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.online-details strong {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
}

.teachers {
  background: #eee6d9;
}

.teacher-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.teacher-card {
  min-height: 245px;
  padding: clamp(26px, 3vw, 44px);
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 3vw, 46px);
  background: #eee6d9;
  transition: background-color 0.25s ease;
}

.teacher-card:hover {
  background: var(--cream-light);
}

.teacher-photo {
  position: relative;
  width: 145px;
  height: 155px;
  overflow: hidden;
  border-radius: 48% 48% 12px 12px / 38% 38% 12px 12px;
  background: var(--peach);
}

.teacher-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(125, 52, 34, 0.12), transparent 55%);
  pointer-events: none;
}

.teacher-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
}

.teacher-card:nth-child(2) .teacher-photo img,
.teacher-card:nth-child(4) .teacher-photo img,
.teacher-card:nth-child(5) .teacher-photo img {
  object-fit: contain;
  padding: 18px;
}

.teacher-card p {
  margin: 0 0 12px;
  color: var(--terracotta);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.teacher-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(27px, 2.4vw, 39px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.teacher-card span {
  margin-top: 16px;
  display: block;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.65;
}

.teacher-card.staff-support {
  min-height: 190px;
  grid-column: 1 / -1;
  grid-template-columns: 110px minmax(0, 1fr);
}

.staff-support .teacher-photo {
  width: 105px;
  height: 115px;
}

.schedule {
  background: var(--ink);
  color: var(--cream-light);
}

.schedule-heading {
  margin-bottom: clamp(55px, 7vw, 90px);
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(45px, 8vw, 145px);
}

.schedule-heading h2 em {
  color: var(--peach);
}

.schedule-intro {
  padding-bottom: 8px;
}

.schedule-intro p {
  margin: 0 0 22px;
  color: rgba(252, 248, 239, 0.68);
  font-size: 12px;
  line-height: 1.85;
}

.schedule-intro a,
.price-note a {
  padding-bottom: 7px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid currentColor;
  color: var(--peach);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: rgba(252, 248, 239, 0.18);
  border: 1px solid rgba(252, 248, 239, 0.18);
}

.day-card {
  min-height: 480px;
  padding: 28px 22px;
  background: #302a25;
}

.day-card:nth-child(2),
.day-card:nth-child(4) {
  background: #352d27;
}

.day-card h3 {
  margin: 0 0 28px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(252, 248, 239, 0.16);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
}

.day-card h3 span {
  color: var(--terracotta);
  font-family: var(--sans);
  font-size: 7px;
  font-weight: 700;
}

.day-card ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
  list-style: none;
}

.day-card li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 13px;
}

.day-card time {
  color: var(--peach);
  font-size: 9px;
  font-weight: 700;
}

.day-card li > span {
  display: grid;
  gap: 2px;
}

.day-card strong {
  font-size: 9px;
  font-weight: 600;
  line-height: 1.35;
}

.day-card small {
  color: rgba(252, 248, 239, 0.48);
  font-size: 8px;
}

.schedule-cta {
  margin-top: 28px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid rgba(252, 248, 239, 0.2);
}

.schedule-cta > div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.schedule-cta > div > span {
  color: var(--terracotta);
}

.schedule-cta p {
  margin: 0;
  color: rgba(252, 248, 239, 0.65);
  font-size: 10px;
}

.schedule-cta strong {
  color: var(--cream-light);
}

.pricing {
  background: var(--cream-light);
}

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

.price-card {
  min-height: 480px;
  padding: clamp(30px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
}

.price-card.featured {
  background: var(--terracotta);
  color: var(--cream-light);
  transform: translateY(-18px);
}

.price-card.featured .card-kicker,
.price-card.featured .price span {
  color: var(--cream-light);
}

.price {
  margin: auto 0 28px;
  padding: 45px 0 23px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-bottom: 1px solid var(--line);
}

.price-card.featured .price {
  border-color: rgba(252, 248, 239, 0.3);
}

.price strong {
  font-family: var(--display);
  font-size: clamp(49px, 4.2vw, 72px);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.price span {
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.price-card li {
  padding-left: 17px;
  position: relative;
  font-size: 9px;
}

.price-card li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--sun);
  font-size: 7px;
}

.price-options {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-options > div {
  min-height: 125px;
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 5px;
  border-right: 1px solid var(--line);
}

.price-options > div:last-child {
  border-right: 0;
}

.price-options span {
  color: var(--terracotta);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.price-options strong {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
}

.price-options em {
  color: var(--ink-soft);
  font-size: 9px;
  font-style: normal;
}

.price-note {
  margin-top: 28px;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: #eee4d4;
}

.price-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 10px;
}

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

.price-note a {
  flex: 0 0 auto;
  color: var(--terracotta-dark);
}

.contact {
  padding-bottom: clamp(120px, 12vw, 190px);
  display: grid;
  justify-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(239, 168, 74, 0.13), transparent 30%),
    var(--cream);
  text-align: center;
}

.contact-mark {
  width: 112px;
  height: 112px;
  margin-bottom: 38px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--terracotta);
  border-radius: 50%;
  background: var(--cream-light);
}

.contact-mark img {
  width: 95px;
  height: auto;
  mix-blend-mode: multiply;
}

.contact .eyebrow {
  justify-content: center;
}

.contact h2 em {
  color: var(--terracotta);
}

.contact-lead {
  max-width: 620px;
  margin: 30px 0 38px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.85;
}

.contact-actions {
  width: min(100%, 1040px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.contact-actions .button {
  min-height: 62px;
}

.contact-actions .button span {
  color: var(--terracotta);
  font-size: 7px;
}

.contact-actions .button-dark span {
  color: var(--peach);
}

.contact-actions .button i {
  font-style: normal;
}

.contact-details {
  width: min(100%, 1040px);
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.contact-details > * {
  position: relative;
  min-height: 95px;
  margin: 0;
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 4px;
  border-right: 1px solid var(--line);
}

.contact-details > *:last-child {
  border-right: 0;
}

.contact-details span {
  color: var(--terracotta);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-details strong {
  font-size: 9px;
  font-weight: 600;
}

.contact-details i {
  position: absolute;
  top: 50%;
  right: 22px;
  font-style: normal;
  transform: translateY(-50%);
}

footer {
  padding: 55px clamp(28px, 6vw, 110px) 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 30px;
  background: var(--ink);
  color: var(--cream-light);
}

.footer-brand img {
  width: 190px;
  height: 60px;
  padding: 6px 10px;
  background: var(--cream-light);
  mix-blend-mode: normal;
}

footer > p {
  max-width: 420px;
  margin: 0;
  grid-column: 1;
  color: rgba(252, 248, 239, 0.58);
  font-size: 10px;
}

footer nav {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 25px;
}

footer nav a {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(252, 248, 239, 0.25);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-meta {
  margin-top: 32px;
  padding-top: 24px;
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(252, 248, 239, 0.14);
  color: rgba(252, 248, 239, 0.45);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-cta {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: none;
}

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

  .main-nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(480px, 1fr) minmax(460px, 0.88fr);
  }

  .hero h1 {
    font-size: clamp(76px, 8vw, 105px);
  }

  .practice-stage {
    height: min(630px, calc(100svh - 200px));
  }

  .chip-flow,
  .chip-rest {
    right: -3%;
  }

  .section-heading {
    grid-template-columns: 80px minmax(0, 1fr);
  }

  .section-intro {
    max-width: 600px;
    grid-column: 2;
  }

  .facts-strip {
    gap: 20px;
  }

  .facts-strip p {
    display: grid;
    gap: 4px;
  }

  .online-band {
    grid-template-columns: minmax(220px, 0.6fr) minmax(360px, 1fr);
  }

  .online-details {
    grid-column: 2;
  }

  .teacher-card {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .teacher-photo {
    width: 120px;
    height: 135px;
  }

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

  .day-card {
    min-height: 420px;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: fixed;
    min-height: 82px;
    padding: 0 22px;
    background: rgba(244, 239, 227, 0.94);
    backdrop-filter: blur(14px);
  }

  .brand img {
    width: 172px;
    height: 52px;
  }

  .header-cta {
    display: none;
  }

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

  .menu-toggle span {
    width: 21px;
    height: 1px;
    display: block;
    background: var(--ink);
    transition: transform 0.25s ease;
  }

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

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

  .main-nav {
    position: fixed;
    z-index: 40;
    inset: 0;
    padding: 115px 28px 50px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    border: 0;
    border-radius: 0;
    background: var(--cream-light);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .main-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-family: var(--display);
    font-size: 35px;
    font-weight: 500;
    letter-spacing: -0.035em;
    text-transform: none;
  }

  .hero {
    height: auto;
    min-height: 100svh;
    padding: 125px 24px 40px;
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(67px, 17vw, 102px);
  }

  .hero-lead {
    max-width: 650px;
  }

  .practice-stage {
    width: min(100%, 650px);
    height: 650px;
    justify-self: center;
  }

  .hero-footer {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: 1fr;
  }

  .hero-footer > * {
    min-height: 76px;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-footer i,
  .hero-footer > *:last-child i {
    right: 2px;
  }

  .side-note {
    display: none;
  }

  .section {
    padding: 85px 24px;
  }

  .section-heading,
  .schedule-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-intro {
    grid-column: auto;
  }

  .facts-strip {
    padding: 35px 24px;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .facts-strip i {
    display: none;
  }

  .facts-strip p {
    display: flex;
  }

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

  .discipline-featured {
    grid-column: span 2;
  }

  .online-band {
    padding: 85px 24px;
    grid-template-columns: 1fr;
  }

  .online-mark {
    width: min(100%, 390px);
    min-height: 280px;
  }

  .online-details {
    grid-column: auto;
  }

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

  .schedule-heading {
    grid-template-columns: 1fr;
  }

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

  .day-card {
    min-height: 380px;
  }

  .price-grid {
    gap: 10px;
  }

  .price-card {
    min-height: 440px;
    padding: 30px 23px;
  }

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

  .price-options > div:nth-child(2) {
    border-right: 0;
  }

  .price-options > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

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

  .contact-details > * {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-details > *:last-child {
    border-bottom: 0;
  }

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

  footer nav {
    grid-column: 1;
    grid-row: auto;
    justify-content: flex-start;
  }
}

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

  .hero-proof {
    grid-template-columns: 50px 1fr;
  }

  .hero-proof p:last-child {
    grid-column: 2;
  }

  .practice-stage {
    height: 560px;
  }

  .practice-arch {
    right: 8%;
    width: 84%;
  }

  .arch-outline {
    right: 6%;
    width: 84%;
  }

  .practice-chip {
    min-width: 126px;
    padding-right: 10px;
  }

  .practice-chip img {
    width: 38px;
    height: 38px;
  }

  .practice-chip span {
    font-size: 15px;
  }

  .chip-hatha {
    left: 0;
  }

  .chip-flow {
    right: -4px;
  }

  .chip-yin {
    left: -4px;
  }

  .chip-rest {
    right: 0;
  }

  .section-heading h2,
  .schedule-heading h2,
  .online-band h2,
  .contact h2 {
    font-size: clamp(49px, 14vw, 68px);
  }

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

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

  .discipline-featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .discipline-card,
  .discipline-featured {
    min-height: 0;
  }

  .discipline-featured .discipline-visual {
    min-height: 160px;
  }

  .discipline-featured .discipline-visual::before {
    width: 145px;
    height: 145px;
  }

  .discipline-featured .discipline-visual img {
    width: 150px;
    height: 150px;
  }

  .teacher-card {
    grid-template-columns: 95px minmax(0, 1fr);
    gap: 20px;
  }

  .teacher-photo {
    width: 95px;
    height: 115px;
  }

  .schedule-grid,
  .price-grid,
  .price-options {
    grid-template-columns: 1fr;
  }

  .day-card {
    min-height: 0;
  }

  .schedule-cta,
  .price-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-card {
    min-height: 420px;
  }

  .price-card.featured {
    transform: none;
  }

  .price-options > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .price-options > div:last-child {
    border-bottom: 0;
  }

  .contact-actions .button {
    font-size: 8px;
  }

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  footer {
    padding-bottom: 100px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 35;
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-height: 54px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 999px;
    background: var(--terracotta);
    box-shadow: 0 12px 35px rgba(41, 36, 31, 0.28);
    color: var(--cream-light);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }
}

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
