@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/cormorant-garamond-500.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/cormorant-garamond-600.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/cormorant-garamond-500-italic.woff2") format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/dm-sans-400.woff2") format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/dm-sans-500.woff2") format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/dm-sans-600.woff2") format("woff2");
}

:root {
  --canvas: #f7f2e8;
  --ivory: #fffdf8;
  --forest: #2f684e;
  --forest-deep: #1b4735;
  --forest-soft: #46755e;
  --terracotta: #a9573e;
  --sage: #b7cda9;
  --sage-soft: #e3eddf;
  --gold: #d5a64f;
  --gold-light: #f0d9a3;
  --leaf-sun: #c9df88;
  --leaf-gradient: radial-gradient(circle at 82% 14%, rgba(201, 223, 136, 0.13), transparent 29%), linear-gradient(145deg, #397552 0%, #2f684e 48%, #23533c 100%);
  --leaf-deep-gradient: radial-gradient(circle at 78% 0%, rgba(151, 191, 99, 0.12), transparent 27%), linear-gradient(145deg, #225840 0%, #1b4735 52%, #123627 100%);
  --charcoal: #303632;
  --muted: #696f6a;
  --line: rgba(47, 104, 78, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --shadow: 0 26px 70px rgba(29, 78, 51, 0.15);
  --radius: 26px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--canvas);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

::selection {
  color: var(--ivory);
  background: var(--terracotta);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.consent-open {
  overflow: hidden;
}

.consent-banner {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  padding: 24px;
  overflow-y: auto;
  place-items: center;
  background: rgba(11, 29, 24, 0.62);
  backdrop-filter: blur(6px);
}

.consent-banner[hidden] {
  display: none;
}

.consent-panel {
  width: min(100%, 560px);
  padding: clamp(26px, 5vw, 38px);
  color: var(--forest);
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(6, 22, 17, 0.32);
}

.consent-panel h2 {
  margin-bottom: 12px;
  color: var(--forest);
  font: 600 clamp(2rem, 7vw, 2.7rem) / 1 var(--serif);
}

.consent-panel p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.consent-panel > a {
  display: inline-block;
  color: var(--forest);
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.consent-actions button {
  min-height: 46px;
  padding: 11px 18px;
  color: var(--ivory);
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 999px;
  cursor: pointer;
  font: 600 0.88rem var(--sans);
}

.consent-actions button:last-child {
  color: var(--forest);
  background: transparent;
}

.consent-actions button:hover,
.consent-actions button:focus-visible {
  transform: translateY(-1px);
}

@media (max-width: 520px) {
  .consent-banner {
    padding: 16px;
  }

  .consent-panel {
    border-radius: 20px;
  }

  .consent-actions {
    flex-direction: column;
  }

  .consent-actions button {
    width: 100%;
  }
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ivory);
  background: var(--forest);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

h1,
h2,
h3 {
  color: var(--forest);
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(4rem, 5.8vw, 4.9rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 5.2vw, 5.3rem);
}

h3 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 2.65rem);
  line-height: 1.04;
}

h1 em,
h2 em {
  color: var(--terracotta);
  font-weight: 500;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--forest);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.micro-label {
  margin-bottom: 13px;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.practice-highlight {
  color: var(--terracotta);
  font-weight: 600;
  background: linear-gradient(transparent 68%, rgba(209, 164, 92, 0.24) 68%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.89rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  color: var(--ivory);
  background: linear-gradient(135deg, #397552, var(--forest));
  box-shadow: 0 10px 28px rgba(64, 119, 72, 0.18);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--forest), var(--forest-deep));
}

.button-secondary {
  color: var(--forest);
  border-color: rgba(47, 104, 78, 0.35);
}

.button-secondary:hover {
  border-color: var(--forest);
  background: rgba(255, 253, 248, 0.52);
}

.button-small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 0.79rem;
}

.button-cream {
  color: var(--forest);
  background: var(--canvas);
}

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

.button-ghost {
  color: var(--ivory);
  border-color: rgba(255, 253, 248, 0.46);
}

.button-ghost:hover {
  border-color: var(--ivory);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary-light {
  color: var(--ivory);
  border-color: rgba(255, 253, 248, 0.42);
}

.button-secondary-light:hover {
  border-color: var(--ivory);
  background: rgba(255, 255, 255, 0.08);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(247, 242, 232, 0.9);
  box-shadow: 0 7px 30px rgba(47, 104, 78, 0.05);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  line-height: 1;
  text-decoration: none;
}

.brand-symbol {
  display: block;
  width: 42px;
  height: 39px;
  flex: 0 0 auto;
}

.brand-wordmark {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.brand-wordmark strong {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand-wordmark small {
  color: var(--terracotta);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-footer .brand-symbol {
  width: 48px;
  height: 44px;
}

.brand-footer .brand-wordmark strong {
  font-size: 1.22rem;
}

.brand-footer .brand-wordmark small {
  color: var(--gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav > a:not(.button) {
  position: relative;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--terracotta);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button).active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

.nav-backdrop {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  padding-top: 178px;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 76px;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.72fr);
}

.hero-intro {
  max-width: 635px;
  margin-bottom: 36px;
  color: #4d5751;
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
  line-height: 1.75;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
  padding: 0;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  list-style: none;
}

.hero-trust li {
  position: relative;
  padding-left: 17px;
}

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

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-glow-one {
  top: 80px;
  right: -180px;
  width: 630px;
  height: 630px;
  background: rgba(163, 199, 112, 0.25);
}

.hero-glow-two {
  bottom: -280px;
  left: -250px;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(185, 101, 69, 0.13);
}

.next-class-card {
  position: relative;
  min-height: 590px;
  padding: 25px;
  overflow: hidden;
  color: var(--ivory);
  background-color: var(--forest);
  background-image: var(--leaf-gradient);
  border-radius: 220px 220px var(--radius) var(--radius);
  box-shadow: var(--shadow);
}

.class-card-topline {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 48px 50px 4px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.class-card-topline > span {
  white-space: nowrap;
}

.availability-dot {
  display: flex;
  align-items: center;
  gap: 7px;
}

.availability-dot i {
  width: 6px;
  height: 6px;
  background: #caddaa;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(202, 221, 170, 0.13);
}

.sun-motif {
  position: absolute;
  z-index: 1;
  top: 38px;
  left: 50%;
  width: 290px;
  height: 290px;
  transform: translateX(-50%);
}

.sun-core,
.sun-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.sun-core {
  inset: 73px;
  background: linear-gradient(145deg, var(--gold), #b97749);
  box-shadow: 0 0 80px rgba(209, 164, 92, 0.18);
}

.sun-ring {
  border: 1px solid rgba(255, 253, 248, 0.13);
}

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

.sun-ring::before {
  inset: 34px;
}

.sun-ring::after {
  inset: 60px;
}

.next-class-content {
  position: absolute;
  z-index: 4;
  right: 25px;
  bottom: 25px;
  left: 25px;
  padding: 30px;
  background: rgba(255, 253, 248, 0.96);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(7, 20, 16, 0.2);
}

.next-class-content h2 {
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 3.4vw, 3.4rem);
}

.class-facts {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
}

.class-facts div {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.class-facts dt {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.class-facts dd {
  margin: 0;
  color: var(--forest);
  font-size: 0.81rem;
  font-weight: 600;
  text-align: right;
}

.card-link,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 6px;
  color: var(--forest);
  border-bottom: 1px solid var(--forest);
  font-size: 0.83rem;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
}

.card-link span,
.text-link span {
  transition: transform 180ms ease;
}

.card-link:hover span,
.text-link:hover span {
  transform: translate(3px, -3px);
}

.trust-band {
  color: var(--ivory);
  background-color: var(--forest);
  background-image: linear-gradient(110deg, #23533c, var(--forest) 48%, #397552);
}

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

.trust-grid > div {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 146px;
  padding: 26px 34px;
  border-right: 1px solid rgba(255, 253, 248, 0.13);
  text-align: center;
}

.trust-grid > div:first-child {
  padding-left: 34px;
}

.trust-grid > div:last-child {
  border: 0;
}

.trust-grid strong {
  margin-bottom: 5px;
  color: var(--canvas);
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.2;
}

.trust-grid span {
  color: rgba(255, 253, 248, 0.84);
  font-size: 0.875rem;
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 90px;
  margin-bottom: 68px;
  grid-template-columns: minmax(0, 1.1fr) minmax(270px, 0.7fr);
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 475px;
  margin: 0 0 8px;
  color: var(--muted);
}

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

.offering-card {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  padding: 42px;
  background: rgba(255, 253, 248, 0.7);
  border: 1px solid rgba(47, 104, 78, 0.11);
  border-radius: var(--radius);
  transition: transform 240ms ease, box-shadow 240ms ease, background-color 240ms ease;
}

.offering-card:hover {
  z-index: 2;
  background: var(--ivory);
  box-shadow: 0 20px 54px rgba(44, 58, 48, 0.1);
  transform: translateY(-5px);
}

.offering-featured {
  background: var(--sage-soft);
  border-color: transparent;
}

.course-card {
  background: #efe1d6;
  border-color: transparent;
}

.offering-number {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 46px;
  place-items: center;
  color: var(--forest);
  border: 1px solid rgba(47, 104, 78, 0.26);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.94rem;
}

.offering-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.offering-title-row h3 {
  max-width: 400px;
}

.price {
  flex: 0 0 auto;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
}

.price span {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.9rem;
}

.offering-card > p {
  max-width: 530px;
  color: var(--muted);
}

.offering-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin: 20px 0 36px;
  list-style: none;
}

.offering-meta li {
  padding: 7px 11px;
  color: var(--forest);
  background: rgba(255, 253, 248, 0.66);
  border: 1px solid rgba(47, 104, 78, 0.12);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.offering-card > .card-link,
.offering-actions {
  margin-top: auto;
}

.offering-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.platform-availability-card {
  display: grid;
  gap: 14px;
  margin: 0 0 28px;
  padding: 20px;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(47, 104, 78, 0.12);
  border-radius: 16px;
}

.platform-availability-card .micro-label,
.platform-availability-card .platform-search-copy {
  margin: 0;
}

.platform-search-copy {
  max-width: 620px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.6;
}

.platform-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.platform-logo-frame {
  display: grid;
  min-height: 64px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid rgba(10, 13, 15, 0.08);
  border-radius: 12px;
  place-items: center;
}

.platform-logo {
  display: block;
  height: auto;
}

.platform-logo-urban {
  width: 174px;
}

.platform-logo-classpass {
  width: 144px;
}

.platform-logo-wellhub {
  width: 136px;
}

.platform-logos-compact .platform-logo-frame {
  min-height: 52px;
  padding: 11px 14px;
}

.platform-logos-compact .platform-logo-urban {
  width: 146px;
}

.platform-logos-compact .platform-logo-classpass {
  width: 122px;
}

.platform-logos-compact .platform-logo-wellhub {
  width: 114px;
}

.welcome-section {
  background: var(--ivory);
}

.welcome-grid {
  display: grid;
  align-items: center;
  gap: 105px;
  grid-template-columns: 0.78fr 1.1fr;
}

.welcome-art {
  position: relative;
  min-height: 650px;
}

.arch {
  position: absolute;
  border-radius: 230px 230px 20px 20px;
}

.arch-back {
  top: 28px;
  right: 30px;
  width: 82%;
  height: 90%;
  background: var(--sage-soft);
}

.arch-front {
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 82%;
  height: 88%;
  overflow: hidden;
  background-color: var(--forest);
  background-image: var(--leaf-gradient);
  box-shadow: var(--shadow);
}

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

.arch-front::before {
  top: 94px;
  left: 50%;
  width: 210px;
  height: 210px;
  transform: translateX(-50%);
}

.arch-front::after {
  top: 130px;
  left: 50%;
  width: 138px;
  height: 138px;
  background: var(--terracotta);
  border: 0;
  transform: translateX(-50%);
}

.breath-line {
  position: absolute;
  z-index: 2;
  top: 198px;
  bottom: 45px;
  left: 50%;
  width: 1px;
  background: linear-gradient(var(--gold), transparent);
}

.breath-dot {
  position: absolute;
  z-index: 3;
  top: 193px;
  left: calc(50% - 4px);
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
}

.welcome-art p {
  position: absolute;
  z-index: 4;
  right: 30px;
  bottom: 42px;
  left: 30px;
  margin: 0;
  color: var(--canvas);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  line-height: 1.18;
  text-align: center;
}

.welcome-art p em {
  color: var(--gold-light);
}

.welcome-copy .lead,
.sheetal-copy .lead {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.45;
}

.welcome-copy > p:not(.eyebrow),
.sheetal-copy > p:not(.eyebrow) {
  max-width: 650px;
}

blockquote {
  max-width: 650px;
  padding: 24px 0 0 26px;
  margin: 36px 0 0;
  color: var(--forest);
  border-top: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.45;
}

.approach {
  color: rgba(255, 253, 248, 0.74);
  background-color: var(--forest);
  background-image: var(--leaf-gradient);
}

.section-heading-light h2,
.section-heading-light .eyebrow,
.section-heading-light > p {
  color: var(--ivory);
}

.section-heading-light h2 em {
  color: var(--gold-light);
}

.section-heading-light > p {
  color: rgba(255, 253, 248, 0.65);
}

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

.approach-card {
  padding: 50px;
  background: rgba(255, 253, 248, 0.055);
  border: 1px solid rgba(255, 253, 248, 0.13);
  border-radius: var(--radius);
}

.approach-card-accent {
  background: linear-gradient(150deg, rgba(92, 145, 83, 0.5), rgba(35, 83, 60, 0.82));
  box-shadow: inset 0 1px 0 rgba(225, 239, 196, 0.1);
}

.approach-card .micro-label {
  color: var(--gold-light);
}

.approach-card h3 {
  max-width: 450px;
  color: var(--canvas);
  font-size: clamp(2.35rem, 3.4vw, 3.4rem);
}

.approach-card > p:not(.micro-label) {
  min-height: 145px;
}

.approach-card details {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 253, 248, 0.15);
}

.approach-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ivory);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  list-style: none;
}

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

.approach-card summary::after {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.3);
  border-radius: 50%;
  content: "+";
}

.approach-card details[open] summary::after {
  content: "−";
}

.details-content {
  padding-top: 18px;
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.88rem;
}

.details-content ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.details-content p {
  margin-bottom: 0;
}

.practice-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 52px 10px 0;
  margin-bottom: 0;
  list-style: none;
}

.practice-flow li {
  position: relative;
  flex: 1;
  text-align: center;
}

.practice-flow li:not(:last-child)::after {
  position: absolute;
  top: 14px;
  right: calc(-50% + 35px);
  left: calc(50% + 35px);
  height: 1px;
  background: rgba(255, 253, 248, 0.19);
  content: "";
}

.practice-flow span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.practice-flow p {
  margin: 0;
  color: var(--canvas);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.for-everyone {
  background: var(--sage-soft);
}

.for-everyone .container {
  display: grid;
  gap: 100px;
  grid-template-columns: 0.87fr 1.13fr;
}

.everyone-intro > p:last-child {
  max-width: 500px;
  color: #53615a;
}

.audience-list {
  border-top: 1px solid rgba(47, 104, 78, 0.18);
}

.audience-list > div {
  display: grid;
  align-items: center;
  gap: 28px;
  padding: 24px 6px;
  border-bottom: 1px solid rgba(47, 104, 78, 0.18);
  grid-template-columns: 118px 1fr;
}

.audience-list span {
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
}

.audience-list p {
  margin: 0;
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 500;
}

.sheetal-section {
  background: var(--ivory);
}

.sheetal-grid {
  display: grid;
  align-items: center;
  gap: 110px;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.12fr);
}

.portrait-photo-frame {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: linear-gradient(155deg, #4a865c, #2f684e 48%, var(--forest-deep));
  border-radius: 210px 210px 20px 20px;
  box-shadow: var(--shadow);
}

.portrait-picture {
  position: absolute;
  inset: 0;
  display: block;
}

.portrait-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.sheetal-copy .text-link {
  margin-top: 22px;
}

.review-section {
  padding: 86px 0;
  color: var(--ivory);
  background: var(--terracotta);
}

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

.review-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.review-heading .eyebrow,
.review-heading h2 {
  color: var(--ivory);
}

.review-heading .eyebrow > span {
  background: var(--canvas);
}

.review-heading h2 {
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 3.9rem);
}

.review-summary {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
  white-space: nowrap;
}

.review-summary strong {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
}

.review-summary span,
.review-stars {
  color: var(--gold-light);
  letter-spacing: 0.08em;
}

.review-summary small {
  color: rgba(255, 253, 248, 0.76);
  font-size: 0.8rem;
}

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

.review-card {
  display: flex;
  min-width: 0;
  min-height: 250px;
  padding: 30px;
  flex-direction: column;
  color: var(--forest);
  background: var(--ivory);
  border: 1px solid rgba(255, 253, 248, 0.5);
  border-radius: 18px;
}

.review-stars {
  margin: 0 0 22px;
  font-size: 0.84rem;
}

.review-card blockquote {
  margin: 0 0 26px;
  font-family: var(--serif);
  font-size: clamp(1.28rem, 2vw, 1.62rem);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.reviewer {
  display: grid;
  gap: 3px;
  margin: auto 0 0;
}

.reviewer strong {
  color: var(--forest);
  font-size: 0.85rem;
}

.reviewer span {
  color: var(--muted);
  font-size: 0.72rem;
}

.review-content > .button {
  justify-self: start;
  margin-top: 2px;
}

.visit-section {
  background: var(--canvas);
}

.visit-grid {
  display: grid;
  align-items: center;
  gap: 100px;
  grid-template-columns: 0.95fr 1.05fr;
}

.visit-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 32px;
  color: var(--muted);
}

.location-card {
  padding: 18px 42px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 26px 65px rgba(44, 58, 48, 0.07);
}

.location-row {
  display: grid;
  align-items: center;
  gap: 25px;
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 46px 1fr;
}

.location-row:last-child {
  border-bottom: 0;
}

.location-row > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--terracotta);
  background: #f1e3d9;
  border-radius: 50%;
  font-family: var(--serif);
}

.location-row div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 30px;
}

.location-row small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-row strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: right;
}

.faq-section {
  background: var(--ivory);
}

.faq-grid {
  display: grid;
  gap: 100px;
  grid-template-columns: 0.8fr 1.2fr;
}

.faq-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-heading > p:last-child {
  max-width: 410px;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  padding: 0;
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--forest);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.25;
  list-style: none;
}

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

.faq-list summary::after {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--terracotta);
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
}

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

.faq-list details p {
  max-width: 650px;
  padding: 0 60px 28px 0;
  margin: 0;
  color: var(--muted);
}

.closing-section {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  color: var(--ivory);
  background-color: var(--forest);
  background-image: var(--leaf-gradient);
  text-align: center;
}

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

.closing-content .eyebrow {
  justify-content: center;
  color: var(--canvas);
}

.closing-content .eyebrow > span {
  background: var(--gold);
}

.closing-content h2 {
  color: var(--canvas);
  font-size: clamp(3.6rem, 6vw, 6.2rem);
}

.closing-content h2 em {
  color: var(--gold-light);
}

.closing-content > p:not(.eyebrow) {
  margin-bottom: 34px;
  color: rgba(255, 253, 248, 0.67);
}

.button-row-center {
  justify-content: center;
}

.closing-orbit {
  position: absolute;
  border: 1px solid rgba(255, 253, 248, 0.1);
  border-radius: 50%;
}

.orbit-one {
  top: -310px;
  left: calc(50% - 490px);
  width: 980px;
  height: 980px;
}

.orbit-two {
  top: -150px;
  left: calc(50% - 330px);
  width: 660px;
  height: 660px;
}

.site-footer {
  padding: 72px 0 24px;
  color: rgba(255, 253, 248, 0.66);
  background-color: var(--forest-deep);
  background-image: var(--leaf-deep-gradient);
}

.platform-availability-footer {
  display: grid;
  align-items: center;
  gap: clamp(36px, 7vw, 100px);
  padding-bottom: 54px;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.12);
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
}

.platform-availability-footer .micro-label {
  margin: 0 0 12px;
  color: var(--gold-light);
}

.platform-availability-footer h2 {
  max-width: 620px;
  margin: 0 0 12px;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.03;
}

.platform-availability-footer .platform-availability-copy > p:last-child {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 253, 248, 0.7);
  line-height: 1.7;
}

.platform-availability-footer .platform-logos {
  justify-content: flex-end;
}

.platform-availability-aside {
  display: grid;
  gap: 14px;
  padding: 20px;
  margin-top: 24px;
  color: var(--forest);
  background: rgba(255, 253, 248, 0.96);
  border-radius: 16px;
}

.content-aside-card-accent .platform-availability-aside .micro-label {
  margin: 0;
  color: var(--terracotta);
}

.content-aside-card-accent .platform-availability-aside .platform-search-copy {
  margin: 0;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  gap: 55px;
  padding-bottom: 60px;
  grid-template-columns: 2fr repeat(3, 0.72fr);
}

.brand-footer {
  margin-bottom: 20px;
  color: var(--ivory);
}

.footer-grid > div:first-child p {
  max-width: 290px;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: var(--ivory);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 253, 248, 0.64);
  font-size: 0.79rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--ivory);
}

.footer-venue {
  display: grid;
  gap: 6px;
  margin-top: 15px;
  font-style: normal;
}

.footer-venue strong {
  margin: 0;
}

.footer-venue a {
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 253, 248, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.67rem;
}

.mobile-booking-bar {
  display: none;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

.js .reveal-delay {
  transition-delay: 100ms;
}

/* Legal pages */
.legal-page {
  min-height: 100vh;
  background: var(--canvas);
}

.legal-header {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.legal-main {
  width: min(calc(100% - 48px), 780px);
  padding: 90px 0 120px;
  margin: 0 auto;
}

.legal-main h1 {
  font-size: clamp(3.6rem, 7vw, 6rem);
}

.legal-main h2 {
  margin-top: 55px;
  font-size: 2.25rem;
}

.legal-main h3 {
  margin-top: 32px;
  font-size: 1.55rem;
}

.legal-main p,
.legal-main li {
  color: #4f5953;
}

.legal-main a {
  color: var(--forest);
}

.legal-notice {
  padding: 22px 24px;
  margin-bottom: 48px;
  color: var(--forest);
  background: #efe1d6;
  border-left: 4px solid var(--terracotta);
  border-radius: 0 12px 12px 0;
}

.legal-notice strong {
  display: block;
  margin-bottom: 5px;
}

@media (max-width: 1020px) {
  .site-nav {
    gap: 20px;
  }

  .site-nav > a:not(.button) {
    display: none;
  }

  .hero-grid,
  .welcome-grid,
  .sheetal-grid {
    gap: 58px;
  }

  .next-class-card {
    min-height: 560px;
  }

  .section-heading,
  .for-everyone .container,
  .visit-grid,
  .faq-grid {
    gap: 58px;
  }

  .offering-card {
    padding: 34px;
  }

  .offering-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .welcome-art {
    min-height: 560px;
  }

  .approach-card {
    padding: 38px;
  }

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

  .review-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .platform-availability-footer {
    grid-template-columns: 1fr;
  }

  .platform-availability-footer .platform-logos {
    justify-content: flex-start;
  }

  h1 {
    font-size: clamp(3.6rem, 16vw, 5.1rem);
  }

  h2 {
    font-size: clamp(2.75rem, 12vw, 4rem);
  }

  .site-header,
  .site-header.scrolled {
    background: var(--canvas);
    border-bottom: 1px solid var(--line);
    backdrop-filter: none;
  }

  .header-inner {
    min-height: 72px;
  }

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

  .nav-backdrop {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: block;
    visibility: hidden;
    background: rgba(11, 29, 24, 0.48);
    opacity: 0;
    transition: opacity 200ms ease, visibility 200ms ease;
  }

  .nav-backdrop.open {
    visibility: visible;
    opacity: 1;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--forest);
    transition: transform 180ms ease;
  }

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

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

  .site-nav {
    position: fixed;
    z-index: 101;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(86vw, 360px);
    visibility: hidden;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 92px 26px 30px;
    overflow-y: auto;
    background: var(--canvas);
    opacity: 0;
    box-shadow: -18px 0 55px rgba(11, 29, 24, 0.18);
    transform: translateX(100%);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

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

  .site-nav > a:not(.button) {
    display: block;
    padding: 18px 2px;
    font-family: var(--serif);
    font-size: 1.65rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    margin-top: 24px;
    width: 100%;
  }

  .hero {
    min-height: 0;
    padding-top: 132px;
  }

  .hero-grid,
  .welcome-grid,
  .sheetal-grid,
  .section-heading,
  .for-everyone .container,
  .visit-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 52px;
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero .button-row .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    gap: 8px;
  }

  .next-class-card {
    min-height: 570px;
    border-radius: 180px 180px 22px 22px;
  }

  .next-class-content {
    padding: 25px;
  }

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

  .trust-grid > div {
    min-height: 126px;
    padding: 22px 18px;
    border-right: 1px solid rgba(255, 253, 248, 0.13);
    border-bottom: 1px solid rgba(255, 253, 248, 0.13);
  }

  .trust-grid > div:first-child {
    padding-left: 18px;
  }

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

  .trust-grid > div:nth-child(3),
  .trust-grid > div:nth-child(4) {
    border-bottom: 0;
  }

  .section-heading {
    align-items: start;
    gap: 25px;
    margin-bottom: 46px;
  }

  .offering-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }

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

  .offering-number {
    margin-bottom: 32px;
  }

  .welcome-grid,
  .sheetal-grid {
    gap: 54px;
  }

  .welcome-art,
  .portrait-photo-frame {
    min-height: 520px;
  }

  .welcome-art p {
    right: 28px;
    left: 28px;
    font-size: 1.85rem;
  }

  .approach-card > p:not(.micro-label) {
    min-height: 0;
  }

  .practice-flow {
    align-items: stretch;
    flex-direction: column;
    padding-top: 45px;
  }

  .practice-flow li:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -34px;
    left: 50%;
    width: 1px;
    height: 28px;
  }

  .for-everyone .container,
  .faq-grid {
    gap: 45px;
  }

  .audience-list > div {
    gap: 18px;
    grid-template-columns: 112px 1fr;
  }

  .review-section {
    padding: 72px 0;
  }

  .review-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .review-summary {
    flex-wrap: wrap;
  }

  .review-summary small {
    width: 100%;
  }

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

  .review-card,
  .review-card:last-child {
    min-height: 0;
    grid-column: auto;
  }

  .location-card {
    padding: 10px 26px;
  }

  .faq-heading {
    position: static;
  }

  .closing-section {
    padding: 100px 0 120px;
  }

  .closing-content h2 {
    font-size: clamp(3.2rem, 14vw, 4.8rem);
  }

  .button-row-center .button {
    width: 100%;
  }

  .footer-grid {
    gap: 38px;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-booking-bar {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    visibility: hidden;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 11px 11px 11px 18px;
    color: var(--ivory);
    background: rgba(27, 71, 53, 0.96);
    border: 1px solid rgba(255, 253, 248, 0.12);
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(15, 29, 24, 0.28);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
    backdrop-filter: blur(16px);
  }

  .mobile-booking-bar.visible {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .mobile-booking-bar div {
    display: grid;
  }

  .mobile-booking-bar small {
    color: rgba(255, 253, 248, 0.62);
    font-size: 0.61rem;
  }

  .mobile-booking-bar strong {
    color: var(--ivory);
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.1;
  }

  .mobile-booking-bar a {
    padding: 10px 16px;
    color: var(--forest);
    background: var(--canvas);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    text-decoration: none;
  }

  .legal-main {
    width: min(calc(100% - 34px), 780px);
    padding: 65px 0 100px;
  }
}

@media (max-width: 480px) {
  .brand {
    gap: 8px;
  }

  .brand-symbol {
    width: 36px;
    height: 33px;
  }

  .brand-wordmark strong {
    font-size: 0.95rem;
  }

  .brand-wordmark small {
    font-size: 0.55rem;
    letter-spacing: 0.15em;
  }

  .platform-logo-frame {
    width: 100%;
  }

  .platform-logos-compact .platform-logo-frame {
    width: auto;
  }

  .next-class-card {
    min-height: 540px;
    padding: 18px;
  }

  .class-card-topline {
    align-items: center;
    flex-direction: column;
    padding: 42px 58px 4px;
    text-align: center;
  }

  .next-class-content {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .offering-card,
  .approach-card {
    padding: 28px 24px;
  }

  .offering-title-row {
    gap: 14px;
  }

  .price {
    font-size: 1.55rem;
  }

  .welcome-art,
  .portrait-photo-frame {
    min-height: 450px;
  }

  .arch-back,
  .arch-front {
    width: 88%;
  }

  .location-row div {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .location-row strong {
    text-align: left;
  }

  .faq-list summary {
    min-height: 84px;
    font-size: 1.35rem;
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

.content-page {
  background: var(--canvas);
}

.content-page .site-header {
  background: rgba(247, 242, 232, 0.94);
}

.content-hero {
  position: relative;
  overflow: hidden;
  padding: 190px 0 105px;
  color: var(--forest);
  background:
    radial-gradient(circle at 84% 20%, rgba(163, 199, 112, 0.24), transparent 31%),
    linear-gradient(145deg, var(--canvas) 0%, #eee9d9 100%);
}

.content-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: clamp(50px, 7vw, 110px);
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.content-hero h1 {
  max-width: 820px;
  margin: 20px 0 26px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(3.3rem, 6vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.97;
}

.content-lead {
  max-width: 720px;
  margin: 0 0 34px;
  color: var(--forest-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.8;
}

.content-facts {
  display: grid;
  gap: 1px;
  overflow: hidden;
  padding: 1px;
  background: rgba(50, 102, 80, 0.16);
  border: 1px solid rgba(50, 102, 80, 0.12);
  border-radius: 220px 220px 28px 28px;
  box-shadow: 0 35px 80px rgba(25, 48, 39, 0.12);
}

.content-facts span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  padding: 28px;
  color: var(--forest);
  background: rgba(255, 253, 248, 0.8);
  font-family: var(--serif);
  font-size: 1.5rem;
  text-align: center;
}

.content-facts span:first-child {
  padding-top: 58px;
}

.content-portrait {
  display: block;
  overflow: hidden;
  aspect-ratio: 8 / 11;
  border: 1px solid rgba(50, 102, 80, 0.13);
  border-radius: 220px 220px 28px 28px;
  box-shadow: 0 35px 80px rgba(25, 48, 39, 0.16);
}

.content-breadcrumbs {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.8rem;
}

.content-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.content-breadcrumbs li + li::before {
  margin-right: 8px;
  color: var(--terracotta);
  content: "/";
}

.content-breadcrumbs a {
  color: var(--forest-soft);
  text-underline-offset: 3px;
}

.content-byline {
  margin: -12px 0 32px;
  color: var(--muted);
  font-size: 0.82rem;
}

.content-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 42%;
}

.content-orbit {
  position: absolute;
  border: 1px solid rgba(183, 117, 81, 0.14);
  border-radius: 50%;
}

.content-orbit-one {
  top: -260px;
  right: -160px;
  width: 650px;
  height: 650px;
}

.content-orbit-two {
  bottom: -380px;
  left: -280px;
  width: 700px;
  height: 700px;
}

.content-layout {
  display: grid;
  align-items: start;
  gap: clamp(55px, 8vw, 125px);
  padding-top: 105px;
  padding-bottom: 115px;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
}

.content-article {
  display: grid;
  gap: 64px;
}

.content-section {
  padding-bottom: 62px;
  border-bottom: 1px solid rgba(50, 102, 80, 0.14);
}

.content-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.content-section h2,
.related-section h2,
.content-aside h2 {
  margin: 0 0 22px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.55rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.content-section p {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.85;
}

.content-section .content-emphasis {
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1.35;
}

.content-section-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.content-points {
  display: grid;
  gap: 11px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.content-points li {
  position: relative;
  padding-left: 25px;
  color: var(--forest-soft);
}

.content-points li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--terracotta);
  border-radius: 50%;
  content: "";
}

.content-aside {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 20px;
}

.content-aside-card {
  padding: 34px;
  background: var(--paper);
  border: 1px solid rgba(50, 102, 80, 0.12);
  border-radius: 24px;
}

.content-aside-card h2 {
  font-size: 2.1rem;
}

.content-aside-card p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.content-local-card p + p {
  margin-top: -8px;
}

.content-phone {
  display: block;
  width: fit-content;
  margin-top: 18px;
  color: var(--forest-soft);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration-color: rgba(50, 102, 80, 0.28);
  text-underline-offset: 4px;
}

.content-aside-card-accent {
  color: var(--canvas);
  background-color: var(--forest);
  background-image: var(--leaf-gradient);
}

.content-aside-card-accent h2,
.content-aside-card-accent .micro-label {
  color: var(--canvas);
}

.content-aside-card-accent p {
  color: rgba(255, 253, 248, 0.74);
}

.related-section {
  padding: 100px 0 110px;
  background: var(--paper);
  border-top: 1px solid rgba(50, 102, 80, 0.1);
}

.related-grid {
  display: grid;
  gap: 16px;
  margin-top: 42px;
  grid-template-columns: repeat(3, 1fr);
}

.related-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 130px;
  gap: 24px;
  padding: 28px;
  color: var(--forest);
  background: var(--canvas);
  border: 1px solid rgba(50, 102, 80, 0.12);
  border-radius: 20px;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.related-grid a:hover,
.related-grid a:focus-visible {
  border-color: rgba(183, 117, 81, 0.5);
  transform: translateY(-3px);
}

.related-grid strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

@media (max-width: 900px) {
  .content-hero-grid,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .content-facts {
    max-width: 540px;
    border-radius: 170px 170px 24px 24px;
  }

  .content-portrait {
    width: min(100%, 500px);
  }

  .content-aside {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 640px) {
  .content-hero {
    padding: 145px 0 78px;
  }

  .content-hero h1 {
    font-size: clamp(3rem, 15vw, 4.3rem);
  }

  .content-layout {
    padding-top: 75px;
    padding-bottom: 80px;
  }

  .content-aside {
    grid-template-columns: 1fr;
  }

}
