@font-face {
  font-family: "Supreme";
  src: url("../fonts/Supreme-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Supreme";
  src: url("../fonts/Supreme-VariableItalic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --font: "Supreme", Arial, sans-serif;
  --font-display: var(--font);
  --ochre: #cd7029;
  --brand-brown: #884b20;
  --brand-yellow: #f2eb56;
  --ink: #302820;
  --cream: #fff;
  --paper: #fff;
  --line: rgba(65, 60, 48, .14);
  --shadow: 0 22px 60px rgba(54, 48, 35, .14);
  --radius: 10px;
}

body.season-vasant {
  --season-primary: #cd7029;
  --season-secondary: #f4a953;
  --season-accent: #f2eb56;
  --season-soft: #fbefdb;
  --season-deep: #884b20;
  --season-hero: linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.82) 45%, rgba(255,255,255,.28)), radial-gradient(circle at 7% 35%, rgba(244,169,83,.16), transparent 25%), linear-gradient(135deg, #fff, #fff);
  --season-image: url("../img/vasant.png");
}

body.season-grishma {
  --season-primary: #cd7029;
  --season-secondary: #f4a953;
  --season-accent: #f2eb56;
  --season-soft: #fbefdb;
  --season-deep: #884b20;
  --season-hero: linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.82) 45%, rgba(255,255,255,.28)), radial-gradient(circle at 7% 35%, rgba(244,169,83,.16), transparent 25%), linear-gradient(135deg, #fff, #fff);
  --season-image: url("../img/grishma.png");
}

body.season-varsha {
  --season-primary: #cd7029;
  --season-secondary: #f4a953;
  --season-accent: #f2eb56;
  --season-soft: #fbefdb;
  --season-deep: #884b20;
  --season-hero: linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.82) 45%, rgba(255,255,255,.28)), radial-gradient(circle at 7% 35%, rgba(244,169,83,.16), transparent 25%), linear-gradient(135deg, #fff, #fff);
  --season-image: url("../img/varsha.png");
}

body.season-sharad {
  --season-primary: #cd7029;
  --season-secondary: #f4a953;
  --season-accent: #f2eb56;
  --season-soft: #fbefdb;
  --season-deep: #884b20;
  --season-hero: linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.82) 45%, rgba(255,255,255,.28)), radial-gradient(circle at 7% 35%, rgba(244,169,83,.16), transparent 25%), linear-gradient(135deg, #fff, #fff);
  --season-image: url("../img/sharad.png");
}

body.season-hemant {
  --season-primary: #cd7029;
  --season-secondary: #f4a953;
  --season-accent: #f2eb56;
  --season-soft: #fbefdb;
  --season-deep: #884b20;
  --season-hero: linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.82) 45%, rgba(255,255,255,.28)), radial-gradient(circle at 7% 35%, rgba(244,169,83,.16), transparent 25%), linear-gradient(135deg, #fff, #fff);
  --season-image: url("../img/hemant.png");
}

body.season-shishira {
  --season-primary: #cd7029;
  --season-secondary: #f4a953;
  --season-accent: #f2eb56;
  --season-soft: #fbefdb;
  --season-deep: #884b20;
  --season-hero: linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.82) 45%, rgba(255,255,255,.28)), radial-gradient(circle at 7% 35%, rgba(244,169,83,.16), transparent 25%), linear-gradient(135deg, #fff, #fff);
  --season-image: url("../img/shishira.png");
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
}

a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }

.container {
  width: min(1260px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 20;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
}

.skip-link:focus { left: 10px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.season-strip {
  background: #cb6e28;
  color: #fff8ed;
  font-size: 14px;
}

.season-strip__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.season-strip__label {
  display: flex;
  align-items: center;
  gap: 13px;
}

.leaf-mark {
  color: var(--season-secondary);
  font-size: 18px;
}

.divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,.35);
}

.season-strip a {
  color: #fff8ed;
  text-decoration: none;
  border: 1px solid rgba(244,169,83,.75);
  border-radius: 4px;
  padding: 5px 28px;
}

.site-header {
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 98px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand img {
  width: 245px;
  object-fit: contain;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .03em;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item > a {
  text-decoration: none;
  padding: 37px 0 34px;
  border-bottom: 2px solid transparent;
}

.nav-item:first-child > a,
.nav-item > a:hover {
  color: var(--season-primary);
  border-bottom-color: var(--season-secondary);
}

.submenu-toggle {
  border: 0;
  background: transparent;
  color: inherit;
  margin-left: 4px;
  cursor: pointer;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: -18px;
  width: 250px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 10px;
}

.dropdown a {
  display: block;
  text-decoration: none;
  padding: 9px 10px;
  border-radius: 6px;
}

.dropdown a:hover { background: var(--season-soft); }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { display: block; }

.header-contact {
  min-width: 104px;
}

.cart-link {
  color: var(--season-primary);
  text-decoration: none;
  font-size: 22px;
}

.menu-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 22px;
  border-radius: 4px;
  border: 1px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .03em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(40, 45, 30, .14);
}

.btn-primary {
  background: var(--season-primary);
  color: #fffaf2;
}

.btn-secondary,
.btn-outline {
  background: rgba(255,250,242,.72);
  border-color: rgba(47,51,40,.28);
  color: var(--ink);
}

.home-hero {
  position: relative;
  min-height: 420px;
  background: var(--season-hero);
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.2), rgba(255,255,255,.9) 58%, rgba(255,255,255,.4)),
    url("../img/paisagemindia.png") center/cover;
  opacity: .22;
}

.home-hero::after {
  content: "ॐ";
  position: absolute;
  left: 9%;
  top: 26%;
  color: rgba(205, 112, 41, .08);
  font-size: 240px;
  line-height: 1;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 620px);
  gap: 0;
  align-items: center;
  padding: 62px 0 106px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 18px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 780;
  letter-spacing: .22em;
}


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

h1 {
  max-width: 610px;
  margin-bottom: 22px;
  color: var(--season-primary);
  font-size: clamp(34px, 4vw, 57px);
  line-height: 1.12;
  font-weight: 820;
  letter-spacing: -.02em;
}

h1 em {
  display: block;
  color: var(--season-primary);
  font-style: italic;
  font-weight: 650;
}

h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  color: var(--season-primary);
}

h3 {
  font-size: 24px;
  line-height: 1.15;
}

.hero-copy {
  max-width: 560px;
  font-size: 18px;
}

.hero-school {
  min-height: 378px;
  background:
    radial-gradient(circle at 18% 48%, rgba(205,112,41,.08), transparent 28%),
    #fff;
}

.hero-school::before {
  content: "";
  position: absolute;
  inset: 0;
  width: auto;
  opacity: 1;
  background: url("../img/hero-whatsapp-2026-06-24.jpeg") center 60% / cover no-repeat;
  filter: contrast(1.06) saturate(1.08);
  transform: scaleX(-1);
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-school::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.93) 0%, rgba(255,255,255,.78) 35%, rgba(255,255,255,.24) 58%, rgba(255,255,255,.02) 100%),
    linear-gradient(0deg, rgba(136,75,32,.12), rgba(136,75,32,0) 44%);
}

.hero-school .hero-grid {
  grid-template-columns: minmax(0, 580px);
  gap: 0;
  padding: 44px 0 62px;
}

.hero-school .eyebrow {
  margin-bottom: 12px;
  color: var(--ink);
  text-shadow: 0 1px 12px rgba(255,255,255,.8);
}

.hero-school h1 {
  max-width: 580px;
  margin-bottom: 16px;
  font-size: clamp(31px, 3.35vw, 48px);
  line-height: 1.08;
  color: var(--season-primary);
  text-shadow: 0 1px 18px rgba(255,255,255,.72);
}

.hero-school h1 em {
  color: var(--season-primary);
}

.hero-school .hero-copy {
  max-width: 610px;
  font-size: 16px;
  color: var(--ink);
  text-shadow: 0 1px 12px rgba(255,255,255,.82);
}

.hero-school .button-row {
  margin-top: 22px;
  gap: 14px;
}

.hero-school .btn-primary {
  background: var(--season-primary);
  color: #fffaf2;
  box-shadow: 0 12px 24px rgba(205,112,41,.16);
}

.hero-school .btn-secondary {
  background: rgba(255,255,255,.74);
  border-color: rgba(47,51,40,.24);
  color: var(--ink);
  backdrop-filter: blur(2px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}

.hero-logo-panel {
  display: grid;
  place-items: center;
  min-height: 270px;
}

.hero-logo-panel img {
  width: min(560px, 100%);
  object-fit: contain;
  filter: drop-shadow(0 14px 35px rgba(54,48,35,.08));
}

.pillar-section {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding-top: 18px;
  background: var(--paper);
}

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

.pillar-card {
  position: relative;
  min-height: 214px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff8ed;
  box-shadow: 0 12px 26px rgba(54,48,35,.06);
}

.pillar-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}

.pillar-card.health .pillar-card__image {
  object-position: center 56%;
}

.pillar-card.wellbeing .pillar-card__image {
  object-position: center 60%;
}

.pillar-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(42,29,20,.66) 0%, rgba(72,43,24,.48) 38%, rgba(136,75,32,.12) 68%, rgba(205,112,41,0) 100%),
    linear-gradient(0deg, rgba(42,29,20,.2), transparent 62%);
}

.pillar-card.health::before {
  background:
    linear-gradient(90deg, rgba(42,29,20,.64) 0%, rgba(76,44,23,.46) 40%, rgba(205,112,41,.12) 70%, rgba(205,112,41,0) 100%),
    linear-gradient(0deg, rgba(42,29,20,.2), transparent 62%);
}

.pillar-card.wellbeing::before {
  background:
    linear-gradient(90deg, rgba(42,29,20,.64) 0%, rgba(76,44,23,.46) 40%, rgba(136,75,32,.12) 70%, rgba(255,250,242,0) 100%),
    linear-gradient(0deg, rgba(42,29,20,.2), transparent 62%);
}

.pillar-card__content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: 214px;
  max-width: 335px;
  padding: 28px 34px;
}

.pillar-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(255,250,242,.88);
  color: var(--ochre);
  font-size: 30px;
}

.pillar-card h2 {
  color: #fff8ed;
  margin-bottom: 6px;
  text-shadow:
    0 2px 3px rgba(28,22,16,.58),
    0 8px 18px rgba(28,22,16,.34);
}

.pillar-card p { margin-bottom: 16px; }
.pillar-card p {
  text-shadow:
    0 1px 2px rgba(28,22,16,.62),
    0 6px 14px rgba(28,22,16,.34);
}
.pillar-card .btn { width: fit-content; background: rgba(255,250,242,.93); color: var(--ink); }

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px;
  padding: 34px 0 46px;
}

.feature {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(198,111,29,.09);
  color: var(--season-primary);
  font-size: 24px;
}

.feature h3 {
  margin-bottom: 4px;
  font-size: 14px;
  text-transform: uppercase;
}

.feature p { margin: 0; font-size: 14px; }

.content-band {
  padding: 74px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 540px;
  margin-bottom: 0;
}

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

.content-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.content-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ochre);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .12em;
}

.text-link {
  color: var(--season-primary);
  font-weight: 780;
  text-decoration: none;
}

.text-link::after { content: " →"; }

.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1.45fr .9fr 1fr;
  gap: 36px;
  padding: 46px 0 58px;
}

.site-footer h2 {
  margin-bottom: 18px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--ink);
}

.site-footer a {
  display: block;
  text-decoration: none;
  margin: 8px 0;
}

.newsletter form {
  display: flex;
  gap: 8px;
  margin-top: 26px;
}

input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  padding: 13px 14px;
  font: inherit;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 82px);
  gap: 8px;
  margin: 14px 0 16px;
}

.insta-grid span {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(54, 48, 35, .07);
}

.insta-grid span::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 52%, rgba(48, 40, 32, .18)),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(205,112,41,.10));
}

.insta-grid span:nth-child(1) {
  background: url("../img/alimentosenutricao.png") center / cover;
}

.insta-grid span:nth-child(2) {
  background: url("../img/hemant.png") center / cover;
}

.insta-grid span:nth-child(3) {
  background: url("../img/terapiasayurvedicas.png") center / cover;
}

.insta-grid span:nth-child(4) {
  background: url("../img/paisagemindia.png") center / cover;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.site-footer .social-links a {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin: 0;
  border: 1.5px solid var(--season-primary);
  border-radius: 999px;
  color: var(--season-primary);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.site-footer .social-links a:hover {
  background: var(--season-primary);
  color: #fff;
  transform: translateY(-2px);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.social-links svg path[d*="10.5 9.5"] {
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  background: #fff;
  color: var(--muted);
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 16px;
  font-size: 13px;
}

.footer-bottom p { margin: 0; }

.page-hero {
  padding: 76px 0;
  background: var(--season-hero);
}

.wellbeing-hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 60px;
}

.wellbeing-hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -34% auto;
  width: 420px;
  aspect-ratio: 1;
  border: 1px solid rgba(205, 112, 41, .16);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 235, 86, .16), transparent 62%);
}

.wellbeing-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .66fr);
  gap: 54px;
  align-items: center;
}

.wellbeing-hero__copy h1 {
  max-width: 760px;
}

.wellbeing-hero__media {
  position: relative;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(205, 112, 41, .26);
  border-radius: 8px;
  background: rgba(255, 250, 242, .72);
  box-shadow: 0 18px 46px rgba(54, 48, 35, .12);
}

.wellbeing-hero__media::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 26px;
  z-index: -1;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(205, 112, 41, .12);
}

.wellbeing-hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
}

.wellbeing-hero__media figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 4px 0;
  color: var(--season-primary);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.wellbeing-hero__media figcaption::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(205, 112, 41, .26);
}

.page-wrap {
  padding: 70px 0;
}

.page-hero--image {
  position: relative;
  overflow: hidden;
  background: var(--season-hero);
}

.page-hero .hero-copy {
  max-width: 720px;
}

.page-hero h1,
.therapy-opening h1,
.treatment-page-intro h1 {
  font-size: clamp(31px, 3.35vw, 48px);
  line-height: 1.08;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--season-primary);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a {
  text-decoration: none;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: 54px;
  align-items: center;
}

.editorial-copy {
  font-size: 18px;
}

.lead-text {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.26;
  color: var(--season-primary);
  font-weight: 720;
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.founder-band {
  background: #fff;
}

.founder-profile {
  display: grid;
  grid-template-columns: minmax(320px, .68fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.founder-profile__image {
  position: relative;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(205, 112, 41, .22);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(54, 48, 35, .1);
}

.founder-profile__image::before {
  content: "";
  position: absolute;
  left: -24px;
  bottom: 36px;
  z-index: -1;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(205, 112, 41, .11);
}

.founder-profile__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
}

.founder-profile__copy {
  max-width: 720px;
}

.founder-profile__copy h2 {
  max-width: 680px;
  margin-bottom: 18px;
}

.founder-profile__copy .lead-text {
  color: var(--ink);
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 650;
}

.founder-profile__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.founder-profile__points span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(205, 112, 41, .28);
  border-radius: 999px;
  color: var(--season-primary);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.value-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,250,242,.72);
  padding: 28px;
}

.value-card h3 {
  margin-bottom: 10px;
  color: var(--season-primary);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(136,75,32,.92), rgba(205,112,41,.86)),
    var(--season-primary);
  color: #fff8ed;
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  color: #fff8ed;
  margin-bottom: 8px;
}

.cta-panel p {
  margin-bottom: 0;
}

.cta-panel .btn {
  flex: 0 0 auto;
  background: #fff8ed;
  color: var(--ink);
}

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

.simple-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.privacy-page {
  display: grid;
  gap: 18px;
  max-width: 920px;
}

.privacy-updated {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
}

.privacy-block {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.privacy-block h2 {
  color: var(--season-primary);
  font-size: 24px;
}

.privacy-block p:last-child {
  margin-bottom: 0;
}

.privacy-block a {
  color: var(--season-primary);
  font-weight: 760;
}

.wellbeing-content {
  display: grid;
  gap: 38px;
}

.content-intro {
  max-width: 890px;
}

.content-intro p:last-child {
  margin-bottom: 0;
}

.wellbeing-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.wellbeing-card {
  position: relative;
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 250, 242, .72)),
    #fff;
  box-shadow: 0 12px 30px rgba(55, 40, 28, .045);
  overflow: hidden;
}

.wellbeing-card::after {
  content: "";
  position: absolute;
  right: -26px;
  top: -26px;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(205, 112, 41, .16);
  border-radius: 50%;
}

.wellbeing-card > * {
  position: relative;
  z-index: 1;
}

.wellbeing-card h3 {
  color: var(--season-primary);
  margin-bottom: 10px;
}

.wellbeing-card p:last-child {
  margin-bottom: 0;
}

.food-mandala {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(205, 112, 41, .2);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255,250,242,.82), rgba(255,250,242,.26)),
    url("../img/hemant.png") center / cover,
    radial-gradient(circle at center, rgba(205, 112, 41, .14) 0 16%, transparent 16.5%),
    radial-gradient(circle at center, transparent 0 36%, rgba(136, 75, 32, .14) 36.5%, transparent 37%),
    linear-gradient(135deg, rgba(255, 250, 242, .96), rgba(251, 239, 219, .66));
  background-blend-mode: normal, soft-light, normal, normal, normal;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(54, 48, 35, .08);
}

.food-mandala::before,
.food-mandala::after {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(136, 75, 32, .15);
  border-radius: 50%;
}

.food-mandala::after {
  inset: 24%;
}

.food-mandala__center,
.food-mandala__item {
  position: absolute;
  z-index: 1;
  text-align: center;
}

.food-mandala__center {
  left: 50%;
  top: 50%;
  display: grid;
  width: 170px;
  height: 170px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(205, 112, 41, .34);
  border-radius: 50%;
  background: #fffaf2;
  box-shadow: 0 18px 40px rgba(55, 40, 28, .08);
}

.food-mandala__center span {
  display: block;
  color: var(--season-primary);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 720;
}

.food-mandala__center strong {
  max-width: 112px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
  text-transform: uppercase;
}

.food-mandala__item {
  width: min(260px, 28vw);
  padding: 22px;
  border: 1px solid rgba(205, 112, 41, .18);
  border-radius: 8px;
  background: rgba(255, 250, 242, .94);
  box-shadow: 0 14px 34px rgba(55, 40, 28, .07);
}

.food-mandala__item span {
  display: block;
  color: var(--season-primary);
  font-weight: 850;
}

.food-mandala__item p {
  margin: 8px 0 0;
  font-size: 14px;
}

.food-mandala__item--1 {
  left: 50%;
  top: 34px;
  transform: translateX(-50%);
}

.food-mandala__item--2 {
  right: 7%;
  top: 50%;
  transform: translateY(-50%);
}

.food-mandala__item--3 {
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
}

.food-mandala__item--4 {
  left: 7%;
  top: 50%;
  transform: translateY(-50%);
}

.rhythm-steps,
.routine-clock {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.rhythm-steps article,
.routine-clock article {
  min-height: 240px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, .95), rgba(251, 239, 219, .5));
}

.rhythm-steps span,
.routine-clock span,
.recipe-card span,
.guide-panels span {
  display: block;
  margin-bottom: 14px;
  color: var(--season-primary);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.rhythm-steps h3,
.routine-clock h2 {
  color: var(--season-primary);
}

.rhythm-steps p:last-child,
.routine-clock p:last-child {
  margin-bottom: 0;
}

.routine-clock {
  counter-reset: routine;
}

.routine-clock article {
  position: relative;
  padding-top: 82px;
}

.routine-clock article::before {
  counter-increment: routine;
  content: "0" counter(routine);
  position: absolute;
  left: 30px;
  top: 28px;
  color: rgba(205, 112, 41, .32);
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 760;
}

.reflection-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding: 34px;
  border: 1px solid rgba(205, 112, 41, .28);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 250, 242, .94), rgba(251, 239, 219, .74));
  overflow: hidden;
}

.reflection-panel::after {
  content: "Om";
  position: absolute;
  right: 30px;
  bottom: -42px;
  color: rgba(205, 112, 41, .07);
  font-family: var(--font-display);
  font-size: 150px;
  font-weight: 800;
  line-height: 1;
}

.reflection-panel > * {
  position: relative;
  z-index: 1;
}

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

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

.reflection-panel li {
  padding-left: 22px;
  position: relative;
}

.reflection-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .75em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--season-primary);
}

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

.recipe-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(205, 112, 41, .17);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 250, 242, .72)),
    #fff;
  box-shadow: 0 12px 30px rgba(55, 40, 28, .05);
  overflow: hidden;
}

.recipe-card::before {
  content: "";
  display: block;
  width: 46px;
  height: 4px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--season-primary);
}

.recipe-card:nth-child(2) {
  transform: translateY(24px);
}

.recipe-card:nth-child(3) {
  transform: translateY(8px);
}

.recipe-card h2 {
  color: var(--season-primary);
  font-size: clamp(25px, 2.4vw, 34px);
}

.recipe-card h3 {
  margin: 22px 0 8px;
  font-size: 15px;
  text-transform: uppercase;
}

.recipe-card ul,
.guide-panels ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.season-current--guide {
  grid-template-columns: minmax(0, .88fr) minmax(320px, .7fr);
}

.season-current--guide img {
  width: 100%;
  min-height: 260px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(136, 75, 32, .08);
}

.guide-panels {
  display: grid;
  grid-template-columns: .8fr repeat(2, 1fr);
  gap: 18px;
}

.guide-panels article {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(205, 112, 41, .17);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,250,242,.76)),
    #fff;
  overflow: hidden;
}

.guide-panels article::after {
  content: "";
  position: absolute;
  right: -18px;
  top: -18px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(242, 235, 86, .2);
}

.guide-panels article > * {
  position: relative;
  z-index: 1;
}

.guide-panels h2 {
  color: var(--season-primary);
}

.dosha-compass {
  position: relative;
  min-height: 440px;
  border: 1px solid rgba(205, 112, 41, .2);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255,250,242,.92), rgba(255,250,242,.45)),
    url("../img/paisagemindia.png") center / cover,
    radial-gradient(circle at center, rgba(205, 112, 41, .18) 0 12%, transparent 12.5%),
    radial-gradient(circle at center, transparent 0 31%, rgba(205, 112, 41, .18) 31.5%, transparent 32%),
    linear-gradient(135deg, rgba(255, 250, 242, .94), rgba(251, 239, 219, .68));
  background-blend-mode: normal, soft-light, normal, normal, normal;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(54, 48, 35, .08);
}

.dosha-compass::before,
.dosha-compass::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(136, 75, 32, .18);
  border-radius: 50%;
}

.dosha-compass::after {
  inset: 27%;
}

.dosha-compass__center,
.dosha-compass__node {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  text-align: center;
}

.dosha-compass__center {
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fffaf2;
  border: 1px solid rgba(205, 112, 41, .32);
  box-shadow: 0 18px 40px rgba(55, 40, 28, .08);
}

.dosha-compass__center span {
  display: block;
  color: var(--season-primary);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
}

.dosha-compass__center strong {
  max-width: 96px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
  text-transform: uppercase;
}

.dosha-compass__node {
  width: min(250px, 27vw);
  min-height: 118px;
  padding: 20px;
  border: 1px solid rgba(205, 112, 41, .18);
  border-radius: 8px;
  background: rgba(255, 250, 242, .94);
  box-shadow: 0 14px 34px rgba(55, 40, 28, .07);
}

.dosha-compass__node span {
  color: var(--season-primary);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
}

.dosha-compass__node p {
  margin: 6px 0 0;
  font-size: 14px;
}

.dosha-compass__node--vata {
  left: 50%;
  top: 34px;
  transform: translateX(-50%);
}

.dosha-compass__node--pitta {
  right: 7%;
  bottom: 54px;
}

.dosha-compass__node--kapha {
  left: 7%;
  bottom: 54px;
}

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

.dosha-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(55, 40, 28, .05);
}

.dosha-card span,
.season-guide span {
  color: var(--season-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.dosha-card h2 {
  margin: 14px 0 6px;
  color: var(--season-primary);
  font-size: clamp(28px, 3vw, 42px);
}

.dosha-card h3 {
  min-height: 54px;
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 1.3;
}

.dosha-card p:last-child {
  margin-top: auto;
  margin-bottom: 0;
}

.listening-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.listening-strip article {
  min-height: 156px;
  padding: 24px;
  background: rgba(255, 250, 242, .86);
}

.listening-strip span {
  display: block;
  margin-bottom: 12px;
  color: var(--season-primary);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.listening-strip p {
  margin-bottom: 0;
}

.season-current {
  display: grid;
  grid-template-columns: minmax(260px, .6fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(205, 112, 41, .28);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 250, 242, .92), rgba(251, 239, 219, .8));
}

.season-current h2 {
  color: var(--season-primary);
  margin-bottom: 8px;
}

.season-current p:last-child {
  margin-bottom: 0;
}

.season-rhythm {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(205, 112, 41, .18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(54, 48, 35, .06);
}

.season-rhythm article {
  position: relative;
  min-height: 156px;
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 250, 242, .84), rgba(251, 239, 219, .42));
}

.season-rhythm article:last-child {
  border-right: 0;
}

.season-rhythm article::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin-bottom: 18px;
  border: 2px solid var(--season-primary);
  border-radius: 50%;
  background: #fff;
}

.season-rhythm article::after {
  content: "";
  position: absolute;
  left: 36px;
  right: -1px;
  top: 32px;
  height: 2px;
  background: rgba(205, 112, 41, .24);
}

.season-rhythm article:last-child::after {
  display: none;
}

.season-rhythm article.is-current {
  background: linear-gradient(180deg, rgba(205, 112, 41, .14), rgba(255, 250, 242, .94));
}

.season-rhythm article.is-current::before {
  background: var(--season-primary);
  box-shadow: 0 0 0 7px rgba(205, 112, 41, .13);
}

.season-rhythm span,
.season-rhythm em,
.season-rhythm strong,
.season-rhythm small {
  display: block;
}

.season-rhythm span {
  color: var(--season-primary);
  font-weight: 850;
  text-transform: uppercase;
}

.season-rhythm em {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.25;
}

.season-rhythm strong {
  margin: 6px 0 8px;
  color: var(--ink);
}

.season-rhythm small {
  color: var(--muted);
  line-height: 1.35;
}

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

.season-guide {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 22px;
  padding: 18px;
  border: 1px solid rgba(205, 112, 41, .15);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,250,242,.7)),
    #fff;
  box-shadow: 0 12px 28px rgba(55, 40, 28, .045);
}

.season-guide.is-current {
  border-color: rgba(205, 112, 41, .52);
  box-shadow: 0 14px 32px rgba(136, 75, 32, .08);
}

.season-guide img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  border-radius: 6px;
  object-fit: cover;
}

.season-guide h3 {
  margin: 8px 0 4px;
  color: var(--season-primary);
}

.season-guide strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
}

.season-guide p:last-child {
  margin-bottom: 0;
}

.health-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .78fr);
  gap: 56px;
  align-items: end;
}

.health-paths {
  display: grid;
  gap: 18px;
}

.health-path {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.health-path:last-child {
  border-bottom: 1px solid var(--line);
}

.health-path__number {
  color: var(--season-primary);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .12em;
}

.health-path h2 {
  max-width: 760px;
  color: var(--season-primary);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
}

.health-path p:last-child {
  max-width: 760px;
  margin-bottom: 0;
}

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

.health-principles article {
  min-height: 160px;
  padding: 28px;
  background: rgba(255, 250, 242, .78);
}

.health-principles h3 {
  color: var(--season-primary);
  margin-bottom: 10px;
}

.wellbeing-intro {
  padding-bottom: 34px;
}

.wellbeing-map {
  display: grid;
  border-top: 1px solid var(--line);
  margin-bottom: 70px;
}

.wellbeing-map__item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.wellbeing-map__item > span {
  color: var(--season-primary);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .12em;
}

.wellbeing-map__item h2 {
  color: var(--season-primary);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
}

.wellbeing-map__item p {
  max-width: 760px;
  margin-bottom: 0;
}

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

.course-page-intro {
  padding-bottom: 34px;
}

.course-page-intro h1 {
  color: var(--season-primary);
  font-size: clamp(31px, 3.35vw, 48px);
  line-height: 1.08;
}

.course-feature-grid--compact {
  padding-bottom: 70px;
}

.course-feature-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf2;
  box-shadow: 0 16px 38px rgba(60, 43, 31, .08);
}

.course-feature-card__image {
  display: block;
  overflow: hidden;
  background: var(--season-soft);
}

.course-feature-card__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .35s ease;
}

.course-feature-card__image img[src$="curso-terapias-ayurvedicas-real.png"],
.course-detail__image img[src$="curso-terapias-ayurvedicas-real.png"] {
  object-position: center 28%;
}

.course-feature-card:hover .course-feature-card__image img {
  transform: scale(1.035);
}

.course-feature-card__body {
  padding: 30px;
}

.course-feature-card__body h2 {
  color: var(--season-primary);
}

.course-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  gap: 54px;
  align-items: center;
}

.course-detail__image {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: var(--season-soft);
  box-shadow: var(--shadow);
}

.course-detail__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.course-recap-links {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.course-recap-links .text-link {
  white-space: nowrap;
}

.experience-hero {
  padding-bottom: 42px;
}

.experience-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1fr);
  gap: 44px;
  align-items: center;
}

.experience-hero__copy h1 {
  color: var(--season-primary);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
}

.experience-hero__copy p {
  max-width: 650px;
}

.experience-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.experience-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(205,112,41,.28);
  border-radius: 999px;
  color: var(--ochre);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.experience-hero__image {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(60, 43, 31, .08);
}

.experience-hero__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 56%;
}

.experience-moments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 58px;
}

.experience-moments article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,250,242,.96)),
    #fff;
}

.experience-moments span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(205,112,41,.1);
  color: var(--ochre);
  font-size: 20px;
}

.experience-moments h2 {
  color: var(--season-primary);
  font-size: 23px;
  line-height: 1.15;
}

.experience-gallery-section {
  padding-bottom: 34px;
}

.experience-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.experience-photo {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf2;
}

.experience-photo--featured {
  grid-column: span 2;
  grid-row: span 2;
}

.experience-photo img,
.experience-photo__empty {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.experience-photo__empty {
  background:
    radial-gradient(circle at 72% 22%, rgba(205,112,41,.18), transparent 30%),
    linear-gradient(135deg, rgba(255,250,242,1), rgba(244,233,214,1));
}

.experience-photo figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 28px);
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.course-detail__copy h1 {
  color: var(--season-primary);
  font-size: clamp(31px, 3.35vw, 48px);
  line-height: 1.08;
}

.treatment-page-intro h1 {
  max-width: 700px;
  color: var(--season-primary);
}

.treatment-section {
  padding: 28px 0 72px;
}

.treatment-section--multi {
  padding-top: 8px;
}

.treatment-section__head {
  max-width: 760px;
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.treatment-section__head h2 {
  color: var(--season-primary);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
}

.treatment-section__head > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
  margin-bottom: 0;
}

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

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

.treatment-row {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, .78);
  box-shadow: 0 14px 34px rgba(60, 43, 31, .06);
}

.treatment-row h3 {
  color: var(--ink);
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.05;
  margin-bottom: 10px;
}

.treatment-row p {
  margin-bottom: 0;
}

.treatment-row > .treatment-row__meta {
  order: -1;
}

.treatment-row__meta {
  width: fit-content;
  padding: 10px 12px;
  border-radius: 6px;
  background: var(--season-soft);
  color: var(--season-primary);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.24;
}

.treatment-row__meta span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.treatment-row .text-link {
  margin-top: auto;
}

.featured-treatment {
  margin-bottom: 26px;
  padding: 34px;
  border: 1px solid rgba(205, 112, 41, .3);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, .96), rgba(245, 225, 199, .66)),
    var(--paper);
  box-shadow: 0 16px 38px rgba(60, 43, 31, .08);
}

.featured-treatment__label {
  margin-bottom: 18px;
  color: var(--season-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.featured-treatment__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 34px;
  align-items: start;
}

.featured-treatment h3 {
  color: var(--season-primary);
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: .98;
  margin-bottom: 18px;
}

.featured-treatment__summary {
  max-width: 780px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.58;
}

.featured-treatment details,
.treatment-row details {
  margin-top: 16px;
}

.featured-treatment summary,
.treatment-row summary {
  cursor: pointer;
  color: var(--season-primary);
  font-weight: 800;
}

.featured-treatment details p,
.treatment-row details p {
  margin-top: 12px;
  color: var(--muted);
}

.program-footnote {
  margin-top: 14px;
  color: var(--season-primary);
  font-size: 14px;
  font-weight: 700;
}

.page-wrap--compact {
  padding-top: 0;
}

.therapy-intro {
  padding-bottom: 34px;
}

.therapy-intro--top {
  padding-top: 58px;
}

.therapy-opening {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .8fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 38px;
}

.therapy-opening h1 {
  max-width: 680px;
  color: var(--season-primary);
}

.therapy-opening__copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.therapy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.therapy-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(205, 112, 41, .24);
  border-radius: 999px;
  background: rgba(255, 250, 242, .74);
  color: var(--season-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}

.therapy-showcase {
  display: grid;
  gap: 34px;
  padding-bottom: 70px;
}

.therapy-story {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, .94fr);
  gap: 52px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.therapy-story:nth-child(even) .therapy-story__image {
  order: 2;
}

.therapy-story__image {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: var(--season-soft);
  box-shadow: var(--shadow);
}

.therapy-story__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(61, 43, 30, .16));
  pointer-events: none;
}

.therapy-story__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.therapy-story__copy {
  max-width: 560px;
}

.therapy-story__copy h2 {
  color: var(--season-primary);
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: .98;
  margin-bottom: 20px;
}

.therapy-story__copy p:not(.eyebrow) {
  font-size: 18px;
  line-height: 1.72;
}

.therapy-story__copy .text-link {
  margin-top: 8px;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--season-hero);
  padding: 24px;
}

.login-card {
  width: min(430px, 100%);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
}

.login-card img {
  width: 230px;
  margin: 0 auto 24px;
}

.login-card label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  font-weight: 700;
}

.form-error {
  background: rgba(235,33,51,.1);
  color: #8c1f26;
  padding: 10px 12px;
  border-radius: 4px;
}

@media (max-width: 1080px) {
  .header-inner { flex-wrap: wrap; }
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    border: 0;
    background: var(--season-primary);
    color: #fff;
    padding: 9px 13px;
    border-radius: 4px;
    font-size: 22px;
  }
  .main-nav {
    display: none;
    width: 100%;
    order: 4;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .main-nav.is-open { display: flex; }
  .nav-item {
    flex-wrap: wrap;
    border-top: 1px solid var(--line);
  }
  .nav-item > a { padding: 14px 0; }
  .submenu-toggle { margin-left: auto; }
  .dropdown {
    position: static;
    width: 100%;
    box-shadow: none;
    border: 0;
    background: var(--season-soft);
  }
  .has-dropdown:hover .dropdown { display: none; }
  .has-dropdown.submenu-open .dropdown { display: block; }
  .hero-grid, .wellbeing-hero__grid, .pillar-grid, .footer-grid, .simple-grid, .editorial-grid, .founder-profile, .value-list, .wellbeing-card-grid, .rhythm-steps, .routine-clock, .reflection-panel, .recipe-board, .guide-panels, .dosha-grid, .listening-strip, .season-current, .season-guide-grid, .season-rhythm, .health-hero__inner, .health-path, .health-principles, .wellbeing-map__item, .course-feature-grid, .course-detail__grid, .experience-hero__grid, .experience-moments, .treatment-section__head, .treatment-row, .featured-treatment__content, .therapy-opening, .therapy-story { grid-template-columns: 1fr; }
  .wellbeing-hero__media { max-width: 620px; }
  .food-mandala { min-height: auto; padding: 22px; display: grid; gap: 14px; }
  .food-mandala::before, .food-mandala::after { display: none; }
  .food-mandala__center, .food-mandala__item { position: static; width: 100%; min-height: 0; transform: none; }
  .food-mandala__center { height: auto; border-radius: 8px; padding: 24px; }
  .dosha-compass { min-height: auto; padding: 22px; display: grid; gap: 14px; }
  .dosha-compass::before, .dosha-compass::after { display: none; }
  .dosha-compass__center, .dosha-compass__node { position: static; width: 100%; min-height: 0; transform: none; }
  .dosha-compass__center { height: auto; border-radius: 8px; padding: 24px; }
  .season-rhythm article { border-right: 0; border-bottom: 1px solid var(--line); }
  .season-rhythm article:last-child { border-bottom: 0; }
  .season-rhythm article::after { left: 27px; right: auto; top: 42px; bottom: -1px; width: 2px; height: auto; }
  .therapy-story:nth-child(even) .therapy-story__image { order: 0; }
  .cta-panel { align-items: flex-start; flex-direction: column; }
  .pillar-section { margin-top: 0; padding-top: 20px; }
  .treatment-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-row, .card-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1260px); }
  .season-strip__inner, .season-strip__label, .section-head, .newsletter form {
    align-items: stretch;
    flex-direction: column;
  }
  .season-strip { padding: 10px 0; }
  .divider { display: none; }
  .brand img { width: 185px; }
  .header-contact, .cart-link { display: none; }
  .hero-grid { padding: 48px 0 58px; gap: 28px; }
  .hero-logo-panel { min-height: 160px; }
  .button-row { gap: 10px; }
  .btn { width: 100%; }
  .program-card { grid-template-columns: 1fr; }
  .treatment-list,
  .treatment-list--compact { grid-template-columns: 1fr; }
  .recipe-card:nth-child(2),
  .recipe-card:nth-child(3) { transform: none; }
  .feature-row, .card-grid, .value-list, .season-guide, .experience-gallery { grid-template-columns: 1fr; }
  .experience-photo--featured { grid-column: auto; grid-row: auto; }
  .dosha-compass__center span, .dosha-compass__node span { font-size: 26px; }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
}
