:root {
  --cream: #f7f2e8;
  --cream-deep: #eee4d2;
  --paper: #fffdf8;
  --sage: #aeb59f;
  --sage-soft: #dce0d3;
  --olive: #5e6249;
  --olive-dark: #353a2c;
  --lavender: #8b7d91;
  --lavender-soft: #ddd5df;
  --mauve: #a97070;
  --ink: #292b25;
  --muted: #65675d;
  --line: rgba(74, 78, 60, 0.2);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* WordPress and WooCommerce integration */
.wp-shop-products {
  background: var(--paper);
  padding: clamp(5rem, 8vw, 8rem) 7vw;
}

.wp-shop-products-header {
  max-width: 760px;
  margin-bottom: 3rem;
}

.wp-shop-products .woocommerce ul.products {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}

.wp-shop-products .woocommerce ul.products::before,
.wp-shop-products .woocommerce ul.products::after {
  display: none;
}

.wp-shop-products .woocommerce ul.products li.product {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  float: none;
  margin: 0;
  padding: 1.25rem;
  width: auto;
}

.wp-shop-products .woocommerce ul.products li.product img {
  border-radius: 0.85rem;
  margin-bottom: 1.25rem;
}

.wp-shop-products .woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.15;
}

.wp-shop-products .woocommerce ul.products li.product .price {
  color: var(--mauve);
  font-weight: 700;
}

.wp-shop-products .woocommerce a.button {
  background: var(--olive-dark);
  border-radius: 999px;
  color: white;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  padding: 0.9rem 1.25rem;
  text-transform: uppercase;
}

.wp-shop-empty {
  border: 1px solid var(--line);
  border-radius: 1rem;
  color: var(--muted);
  padding: 1.5rem;
}

@media (max-width: 820px) {
  .wp-shop-products .woocommerce ul.products {
    grid-template-columns: 1fr;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--lavender-soft);
}

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

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

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.07;
}

h1 {
  font-size: clamp(3.4rem, 6.7vw, 6.8rem);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2.45rem, 4.6vw, 4.65rem);
  letter-spacing: -0.045em;
}

h3 {
  font-size: clamp(1.65rem, 2.25vw, 2.35rem);
  letter-spacing: -0.025em;
}

.announcement {
  align-items: center;
  background: var(--olive-dark);
  color: #f8f2e8;
  display: flex;
  font-size: 0.68rem;
  font-weight: 650;
  gap: 0.85rem;
  justify-content: center;
  letter-spacing: 0.15em;
  min-height: 31px;
  padding: 0.35rem 1rem;
  text-transform: uppercase;
}

.site-header {
  align-items: center;
  background: rgba(247, 242, 232, 0.94);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(170px, 1fr);
  min-height: 92px;
  padding: 0 4vw;
  position: relative;
  z-index: 20;
}

.brand-link {
  display: inline-flex;
  justify-self: start;
}

.brand-lockup {
  align-items: center;
  display: inline-flex;
  gap: 0.75rem;
}

.brand-emblem {
  height: 55px;
  mix-blend-mode: multiply;
  object-fit: cover;
  object-position: center;
  width: 66px;
}

.brand-words {
  display: flex;
  flex-direction: column;
}

.brand-words strong {
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
}

.brand-words small {
  color: var(--muted);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-top: 0.4rem;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: clamp(0.8rem, 1.45vw, 1.55rem);
  justify-content: center;
}

.desktop-nav a {
  color: #4a4d43;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.055em;
  padding: 0.7rem 0;
  position: relative;
}

.desktop-nav a::after {
  background: var(--mauve);
  bottom: 0.35rem;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  width: 100%;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-action {
  justify-self: end;
}

.mobile-menu {
  display: none;
}

.button {
  align-items: center;
  background: var(--olive-dark);
  border: 1px solid var(--olive-dark);
  border-radius: 999px;
  color: #fffdf7;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 750;
  justify-content: center;
  letter-spacing: 0.12em;
  min-height: 50px;
  padding: 0.9rem 1.65rem;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: transparent;
  color: var(--olive-dark);
  transform: translateY(-2px);
}

.button-small {
  font-size: 0.62rem;
  min-height: 42px;
  padding: 0.75rem 1.25rem;
}

.button-light {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--olive-dark);
}

.button-light:hover,
.button-light:focus-visible {
  border-color: var(--paper);
  color: var(--paper);
}

.text-link {
  align-items: center;
  border-bottom: 1px solid currentColor;
  color: var(--olive-dark);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 750;
  gap: 1rem;
  letter-spacing: 0.11em;
  padding: 0.35rem 0;
  text-transform: uppercase;
}

.text-link span {
  font-size: 1.1rem;
  transition: transform 160ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.eyebrow,
.card-kicker {
  color: var(--mauve);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  margin-bottom: 1.15rem;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  min-height: calc(100vh - 123px);
  overflow: hidden;
  padding: clamp(4.5rem, 8vh, 7.5rem) 7vw clamp(4rem, 8vh, 7rem);
  position: relative;
}

.hero::before {
  background: linear-gradient(140deg, rgba(220, 224, 211, 0.7), transparent 50%);
  border-radius: 50%;
  content: "";
  filter: blur(1px);
  height: 460px;
  left: -260px;
  position: absolute;
  top: 20%;
  width: 460px;
}

.hero-copy {
  align-self: center;
  max-width: 800px;
  padding-right: 3vw;
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--olive-dark);
  margin-bottom: 1.85rem;
}

.hero h1 em {
  color: var(--lavender);
  font-weight: 400;
}

.hero-lead {
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.7vw, 1.42rem);
  line-height: 1.55;
  max-width: 660px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin-top: 2.4rem;
}

.hero-note {
  color: #75776f;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  margin: 2.25rem 0 0;
  text-transform: uppercase;
}

.hero-note span {
  color: var(--mauve);
  margin: 0 0.55rem;
}

.hero-art {
  align-self: center;
  aspect-ratio: 0.95;
  isolation: isolate;
  justify-self: center;
  max-width: 620px;
  position: relative;
  width: 100%;
}

.botanical-halo {
  background: radial-gradient(circle at 46% 42%, #e9dfcd 0 37%, #dce0d3 38% 56%, transparent 57%);
  border-radius: 50%;
  inset: 3% 5% 9%;
  position: absolute;
  z-index: -1;
}

.hero-emblem {
  filter: contrast(0.9) saturate(0.74);
  height: 74%;
  left: 13%;
  mix-blend-mode: multiply;
  object-fit: contain;
  position: absolute;
  top: 7%;
  width: 74%;
}

.hero-seal {
  align-items: center;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--line);
  border-radius: 50%;
  bottom: 4%;
  display: flex;
  flex-direction: column;
  height: 160px;
  justify-content: center;
  left: 35%;
  padding: 1.5rem;
  position: absolute;
  text-align: center;
  width: 160px;
}

.hero-seal span {
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.hero-seal small {
  color: var(--muted);
  font-size: 0.52rem;
  letter-spacing: 0.06em;
  line-height: 1.55;
  margin-top: 0.55rem;
  text-transform: uppercase;
}

.floating-note {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 0.84rem;
  padding: 0.65rem 1rem;
  position: absolute;
  white-space: nowrap;
}

.note-one {
  right: -1%;
  top: 22%;
}

.note-two {
  left: 1%;
  top: 43%;
}

.note-three {
  bottom: 19%;
  right: 0;
}

.shop-feature,
.paths-section,
.store-section {
  padding: clamp(5rem, 10vw, 9rem) 7vw;
}

.shop-feature {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 4rem;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  margin-bottom: 4rem;
}

.section-heading h2,
.store-section-intro h2 {
  color: var(--olive-dark);
  margin-bottom: 0;
  max-width: 900px;
}

.section-heading > p,
.store-section-intro > p:last-child {
  color: var(--muted);
  margin-bottom: 0.4rem;
  max-width: 520px;
}

.shop-heading-side {
  justify-self: end;
  max-width: 520px;
}

.shop-heading-side > p {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.shop-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.2fr 0.8fr;
}

.shop-card {
  border-radius: 30px;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.product-card {
  background: var(--cream-deep);
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
}

.product-card-expanded {
  min-height: 540px;
}

.shop-card-copy {
  align-self: end;
  padding: clamp(2rem, 4.2vw, 4.2rem);
  position: relative;
  z-index: 3;
}

.shop-card h3 {
  color: var(--olive-dark);
  margin-bottom: 1.25rem;
}

.shop-card-copy > p:not(.card-kicker) {
  color: var(--muted);
  margin-bottom: 2rem;
}

.product-image-wrap {
  align-items: center;
  background: #f4f8f8;
  border-radius: 240px 0 0 0;
  display: flex;
  justify-content: center;
  min-height: 100%;
  overflow: hidden;
  padding: 1.5rem;
}

.product-image-wrap img {
  height: auto;
  max-height: 500px;
  object-fit: contain;
  width: 100%;
}

.home-product-features {
  color: #55584e;
  font-family: var(--serif);
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.home-product-features li {
  border-bottom: 1px solid var(--line);
  padding: 0.6rem 0 0.6rem 1.25rem;
  position: relative;
}

.home-product-features li::before {
  color: var(--mauve);
  content: "✦";
  font-size: 0.55rem;
  left: 0;
  position: absolute;
  top: 0.85rem;
}

.recording-card {
  background: var(--lavender-soft);
  display: flex;
}

.recording-card .shop-card-copy {
  padding-top: 12rem;
}

.recording-orbit {
  height: 270px;
  position: absolute;
  right: -20px;
  top: -25px;
  width: 270px;
}

.recording-orbit::before,
.recording-orbit::after,
.recording-orbit span {
  border: 1px solid rgba(53, 58, 44, 0.35);
  border-radius: 50%;
  content: "";
  inset: 0;
  position: absolute;
}

.recording-orbit::after {
  inset: 35px;
}

.recording-orbit span:nth-child(1) {
  inset: 72px;
}

.recording-orbit span:nth-child(2) {
  background: rgba(169, 112, 112, 0.45);
  border: none;
  height: 16px;
  inset: 91px auto auto 39px;
  width: 16px;
}

.recording-orbit span:nth-child(3) {
  background: var(--olive);
  border: none;
  height: 10px;
  inset: auto 30px 83px auto;
  width: 10px;
}

.paths-section {
  background: var(--cream);
}

.path-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.path-card {
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid var(--line);
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  min-height: 525px;
  padding: 2.4rem clamp(1.7rem, 2.7vw, 3rem) 3rem;
  position: relative;
  scroll-margin-top: 2rem;
}

.path-card:not(:first-child) {
  padding-left: clamp(1.7rem, 2.7vw, 3rem);
}

.path-card:last-child {
  padding-right: clamp(1.7rem, 2.7vw, 3rem);
}

.path-card:nth-last-child(-n + 2) {
  grid-column: span 3;
  min-height: 470px;
}

.path-number {
  color: var(--mauve);
  font-family: var(--serif);
  font-size: 0.92rem;
  margin-bottom: 3rem;
}

.path-card h3 {
  color: var(--olive-dark);
  margin-bottom: 1.35rem;
}

.path-card > p:not(.card-kicker) {
  color: var(--muted);
}

.path-card ul {
  color: #55584e;
  font-family: var(--serif);
  list-style: none;
  margin: 1.25rem 0 2.25rem;
  padding: 0;
}

.path-card li {
  border-bottom: 1px solid var(--line);
  padding: 0.65rem 0;
}

.path-card .text-link {
  align-self: flex-start;
  margin-top: auto;
}

.brand-promise {
  align-items: center;
  background: var(--olive-dark);
  color: var(--paper);
  display: flex;
  gap: 2.5vw;
  justify-content: center;
  min-height: 210px;
  overflow: hidden;
  padding: 3rem 4vw;
}

.brand-promise p {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 4.4rem);
  margin: 0;
}

.brand-promise span {
  color: #c3acba;
  font-size: 0.8rem;
}

.about-section {
  align-items: center;
  background: var(--paper);
  display: grid;
  gap: clamp(4rem, 8vw, 9rem);
  grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.18fr);
  padding: clamp(6rem, 10vw, 10rem) 9vw;
}

.portrait-frame {
  justify-self: center;
  max-width: 330px;
  padding: 2rem 2rem 0;
  position: relative;
  width: 100%;
}

.portrait-backdrop {
  background: var(--sage-soft);
  border-radius: 49% 49% 1rem 1rem;
  inset: 0 0 3rem;
  position: absolute;
}

.portrait-frame img {
  aspect-ratio: 3 / 4;
  border-radius: 48% 48% 0.8rem 0.8rem;
  object-fit: cover;
  position: relative;
  width: 100%;
}

.portrait-caption {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  bottom: 1.1rem;
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 0.82rem;
  left: 50%;
  padding: 0.75rem 1.2rem;
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
}

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

.about-copy h2 {
  color: var(--olive-dark);
  margin-bottom: 2rem;
}

.about-copy > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 620px;
}

.about-copy .about-lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.55;
}

.credential-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 2rem 0;
}

.credential-row span {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--olive-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.55rem 0.9rem;
  text-transform: uppercase;
}

.venue-section {
  background: var(--cream);
  display: grid;
  gap: 7vw;
  grid-template-columns: 1fr 1fr;
  padding: clamp(6rem, 10vw, 10rem) 9vw;
}

.venue-section h2 {
  color: var(--olive-dark);
}

.venue-section > div:nth-child(2) > p {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.55;
}

.venue-list {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1fr;
  margin-top: 2.2rem;
}

.venue-list span {
  border-bottom: 1px solid var(--line);
  color: var(--olive-dark);
  padding: 0.85rem 0;
}

.shop-feature-bottom {
  background: var(--paper);
}

.contact-section {
  align-items: center;
  background: var(--lavender);
  color: white;
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  min-height: 560px;
  overflow: hidden;
  padding: 5rem 10vw;
}

.contact-emblem {
  filter: grayscale(1) brightness(2.1);
  mix-blend-mode: screen;
  opacity: 0.38;
  width: min(400px, 90%);
}

.contact-section > div {
  max-width: 780px;
}

.contact-section .eyebrow {
  color: #f0ded9;
}

.contact-section h2 {
  font-size: clamp(3rem, 5.5vw, 6rem);
  margin-bottom: 1.5rem;
}

.contact-section p:not(.eyebrow) {
  font-family: var(--serif);
  font-size: 1.25rem;
  max-width: 650px;
}

.contact-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.light-link {
  color: white;
}

.site-footer {
  background: #282c24;
  color: #d8d7cf;
  padding: 5rem 7vw 2rem;
}

.footer-grid {
  display: grid;
  gap: 5rem;
  grid-template-columns: 1.6fr 0.7fr 0.7fr;
  padding-bottom: 4.5rem;
}

.footer-brand .brand-emblem {
  filter: grayscale(1) brightness(2);
  mix-blend-mode: screen;
  opacity: 0.65;
}

.footer-brand .brand-words strong,
.footer-brand .brand-words small {
  color: #f2eee4;
}

.footer-intro {
  color: #aaa99f;
  margin: 1.4rem 0 0;
  max-width: 320px;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-heading {
  color: #f2eee4;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid span {
  font-size: 0.86rem;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  font-size: 0.67rem;
  justify-content: space-between;
  letter-spacing: 0.1em;
  padding-top: 1.75rem;
  text-transform: uppercase;
}

/* Store */
.store-hero {
  align-items: end;
  background:
    radial-gradient(circle at 86% 14%, rgba(221, 213, 223, 0.8) 0 13%, transparent 13.5%),
    var(--cream);
  display: grid;
  gap: 5rem;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  min-height: 650px;
  padding: 7rem 9vw;
}

.store-hero h1 {
  color: var(--olive-dark);
  font-size: clamp(3.8rem, 7vw, 7.2rem);
  max-width: 950px;
}

.store-hero > div > p:last-child {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.3rem;
  max-width: 680px;
}

.store-category-nav {
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.store-category-nav a {
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--olive-dark);
  display: flex;
  font-family: var(--serif);
  font-size: 1.25rem;
  justify-content: space-between;
  padding: 1.25rem 0;
}

.store-category-nav a::after {
  content: "↓";
  font-family: var(--sans);
  font-size: 0.9rem;
}

.store-section {
  background: var(--paper);
  scroll-margin-top: 1rem;
}

.store-section-intro {
  margin: 0 auto 5rem;
  max-width: 900px;
  text-align: center;
}

.store-section-intro > p:last-child {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin: 1.8rem auto 0;
}

.featured-product {
  align-items: center;
  display: grid;
  gap: clamp(3rem, 8vw, 9rem);
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  margin: 0 auto;
  max-width: 1120px;
}

.featured-product-image {
  background: #edf3f2;
  border-radius: 48% 48% 1.5rem 1.5rem;
  justify-self: center;
  max-width: 400px;
  overflow: hidden;
  padding: 1.25rem;
  position: relative;
  width: 100%;
}

.featured-product-image img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
  width: 100%;
}

.availability {
  background: var(--olive-dark);
  border-radius: 999px;
  color: white;
  font-size: 0.63rem;
  font-weight: 800;
  left: 50%;
  letter-spacing: 0.11em;
  padding: 0.7rem 1rem;
  position: absolute;
  text-transform: uppercase;
  top: 2rem;
  transform: translateX(-50%);
  z-index: 2;
}

.featured-product-copy {
  max-width: 560px;
}

.featured-product-copy h3 {
  color: var(--olive-dark);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  margin-bottom: 1.5rem;
}

.product-summary {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.product-features {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}

.product-features li {
  border-bottom: 1px solid var(--line);
  color: #54574d;
  padding: 0.7rem 0 0.7rem 1.5rem;
  position: relative;
}

.product-features li::before {
  color: var(--mauve);
  content: "✦";
  font-size: 0.62rem;
  left: 0;
  position: absolute;
  top: 0.92rem;
}

.price-note {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.coming-soon-card {
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 28px;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr 1fr auto;
  margin: 8rem auto 0;
  max-width: 1320px;
  padding: 3rem;
}

.coming-soon-card h3 {
  color: var(--olive-dark);
  font-size: 2.2rem;
  margin-bottom: 0;
}

.coming-soon-card > p {
  color: var(--muted);
  margin: 0;
}

.recordings-section {
  background: var(--lavender-soft);
  padding: clamp(6rem, 10vw, 10rem) 7vw;
  scroll-margin-top: 1rem;
}

.recording-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1320px;
}

.recording-product {
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(74, 78, 60, 0.16);
  border-radius: 26px;
  min-height: 440px;
  padding: 2.5rem;
}

.audio-mark {
  align-items: center;
  display: flex;
  gap: 5px;
  height: 72px;
  margin-bottom: 3rem;
}

.audio-mark span {
  background: var(--mauve);
  border-radius: 99px;
  display: block;
  height: 30%;
  width: 4px;
}

.audio-mark span:nth-child(2) {
  height: 65%;
}

.audio-mark span:nth-child(3) {
  height: 100%;
}

.audio-mark span:nth-child(4) {
  height: 55%;
}

.audio-mark span:nth-child(5) {
  height: 38%;
}

.recording-product h3 {
  color: var(--olive-dark);
  margin-bottom: 1.2rem;
}

.recording-product > p:not(.card-kicker) {
  color: var(--muted);
}

.release-label {
  color: var(--mauve);
  display: block;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  margin-top: 2rem;
  text-transform: uppercase;
}

.recording-cta {
  align-items: center;
  background: var(--olive-dark);
  border-radius: 28px;
  color: white;
  display: flex;
  justify-content: space-between;
  margin: 1.25rem auto 0;
  max-width: 1320px;
  padding: 2.5rem 3rem;
}

.recording-cta .eyebrow {
  color: #d8bfc5;
  margin-bottom: 0.5rem;
}

.recording-cta h3 {
  margin: 0;
}

.recording-safety-note {
  color: var(--muted);
  font-size: 0.72rem;
  font-style: italic;
  margin: 1.2rem auto 0;
  max-width: 1320px;
  text-align: center;
}

.shop-help {
  background: var(--cream);
  padding: 7rem 7vw;
  text-align: center;
}

.shop-help h2 {
  color: var(--olive-dark);
  margin-bottom: 1.2rem;
}

.shop-help > p:not(.eyebrow) {
  color: var(--muted);
  margin: 0 auto 1.8rem;
  max-width: 590px;
}

/* Hypnotherapy */
.service-hero {
  align-items: center;
  background:
    radial-gradient(circle at 8% 88%, rgba(220, 224, 211, 0.72) 0 17%, transparent 17.5%),
    var(--cream);
  display: grid;
  gap: 5vw;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  min-height: calc(100vh - 123px);
  overflow: hidden;
  padding: clamp(5rem, 9vh, 8rem) 8vw;
}

.service-hero-copy {
  max-width: 830px;
  position: relative;
  z-index: 2;
}

.service-hero h1 {
  color: var(--olive-dark);
  margin-bottom: 1.8rem;
}

.service-hero h1 em {
  color: var(--lavender);
  font-weight: 400;
}

.service-hero-lead {
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.55;
  max-width: 690px;
}

.mind-art {
  aspect-ratio: 1;
  isolation: isolate;
  justify-self: center;
  max-width: 590px;
  position: relative;
  width: 100%;
}

.mind-orbit {
  border: 1px solid rgba(94, 98, 73, 0.34);
  border-radius: 50%;
  position: absolute;
}

.orbit-one {
  inset: 2%;
}

.orbit-two {
  border-color: rgba(139, 125, 145, 0.45);
  inset: 13%;
}

.orbit-three {
  background: rgba(220, 224, 211, 0.56);
  border-color: rgba(169, 112, 112, 0.28);
  inset: 25%;
  z-index: -1;
}

.mind-art img {
  filter: contrast(0.9) saturate(0.7);
  height: 57%;
  left: 21.5%;
  mix-blend-mode: multiply;
  object-fit: contain;
  position: absolute;
  top: 20%;
  width: 57%;
}

.mind-note {
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 0.86rem;
  padding: 0.7rem 1rem;
  position: absolute;
  white-space: nowrap;
}

.mind-note-one {
  right: 2%;
  top: 19%;
}

.mind-note-two {
  bottom: 20%;
  left: 0;
}

.mind-note-three {
  bottom: 5%;
  right: 8%;
}

.service-intro {
  background: var(--paper);
  display: grid;
  gap: 8vw;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  padding: clamp(6rem, 10vw, 10rem) 9vw;
}

.service-intro h2,
.session-section h2,
.integrated-section h2,
.faq-section h2 {
  color: var(--olive-dark);
}

.service-intro-copy {
  max-width: 690px;
}

.service-intro-copy > p {
  color: var(--muted);
}

.service-intro-copy .service-intro-lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.55;
}

.support-section {
  background: var(--cream);
  padding: clamp(6rem, 10vw, 10rem) 7vw;
  scroll-margin-top: 2rem;
}

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

.support-card {
  background: rgba(255, 253, 248, 0.76);
  border: 1px solid var(--line);
  border-radius: 26px;
  min-height: 390px;
  padding: 2.5rem;
}

.support-number {
  color: var(--mauve);
  display: block;
  font-family: var(--serif);
  font-size: 0.92rem;
  margin-bottom: 2.8rem;
}

.support-card h3 {
  color: var(--olive-dark);
  font-size: clamp(1.6rem, 2.1vw, 2.2rem);
  margin-bottom: 1.2rem;
}

.support-card > p:not(.card-kicker) {
  color: var(--muted);
}

.session-section {
  background: var(--olive-dark);
  color: var(--paper);
  display: grid;
  gap: 8vw;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  padding: clamp(6rem, 10vw, 10rem) 9vw;
}

.session-section h2 {
  color: var(--paper);
}

.session-heading > p:not(.eyebrow) {
  color: #c5c4ba;
  font-family: var(--serif);
  font-size: 1.18rem;
}

.process-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-step {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 2rem;
  grid-template-columns: 45px 1fr;
  padding: 2rem 0;
}

.process-step > span {
  color: #d6bfc6;
  font-family: var(--serif);
}

.process-step h3 {
  color: var(--paper);
  font-size: 1.75rem;
  margin-bottom: 0.6rem;
}

.process-step p {
  color: #b9b9af;
  margin: 0;
  max-width: 720px;
}

.integrated-section {
  align-items: center;
  background: var(--paper);
  display: grid;
  gap: 9vw;
  grid-template-columns: minmax(350px, 0.9fr) minmax(0, 1.1fr);
  padding: clamp(6rem, 10vw, 10rem) 9vw;
}

.integrated-section > div:last-child {
  max-width: 700px;
}

.integrated-section > div:last-child > p:not(.eyebrow) {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.integrated-art {
  aspect-ratio: 1;
  justify-self: center;
  max-width: 520px;
  position: relative;
  width: 100%;
}

.integrated-art span {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--olive-dark);
  display: flex;
  font-family: var(--serif);
  font-size: 1.15rem;
  height: 58%;
  justify-content: center;
  position: absolute;
  width: 58%;
}

.integrated-art span:nth-child(1) {
  background: rgba(220, 224, 211, 0.72);
  left: 4%;
  top: 4%;
}

.integrated-art span:nth-child(2) {
  background: rgba(221, 213, 223, 0.72);
  right: 4%;
  top: 4%;
}

.integrated-art span:nth-child(3) {
  background: rgba(238, 228, 210, 0.84);
  bottom: 4%;
  left: 21%;
}

.faq-section {
  background: var(--cream);
  display: grid;
  gap: 8vw;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  padding: clamp(6rem, 10vw, 10rem) 9vw;
}

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

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

.faq-list summary {
  color: var(--olive-dark);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.3rem;
  list-style: none;
  padding-right: 3rem;
  position: relative;
}

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

.faq-list summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 300;
  position: absolute;
  right: 0.25rem;
  top: 0;
}

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

.faq-list details p {
  color: var(--muted);
  margin: 1rem 3rem 0 0;
  max-width: 720px;
}

.service-cta {
  align-items: center;
  background: var(--lavender);
  color: white;
  display: grid;
  gap: 7vw;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1.42fr);
  min-height: 570px;
  overflow: hidden;
  padding: 5rem 10vw;
}

.service-cta > img {
  filter: grayscale(1) brightness(2.1);
  mix-blend-mode: screen;
  opacity: 0.36;
  width: min(390px, 92%);
}

.service-cta > div {
  max-width: 800px;
}

.service-cta .eyebrow {
  color: #f0ded9;
}

.service-cta h2 {
  font-size: clamp(3rem, 5.5vw, 6rem);
  margin-bottom: 1.4rem;
}

.service-cta > div > p:not(.eyebrow) {
  font-family: var(--serif);
  font-size: 1.25rem;
  max-width: 650px;
}

.service-disclaimer {
  background: var(--paper);
  color: var(--muted);
  font-size: 0.72rem;
  margin: 0;
  padding: 1.5rem 7vw;
  text-align: center;
}

/* Nutrition */
.nutrition-hero {
  background:
    radial-gradient(circle at 10% 88%, rgba(221, 213, 223, 0.55) 0 16%, transparent 16.5%),
    var(--cream);
}

.nutrition-art {
  aspect-ratio: 1;
  isolation: isolate;
  justify-self: center;
  max-width: 590px;
  position: relative;
  width: 100%;
}

.nutrition-plate {
  align-items: center;
  background:
    radial-gradient(circle, var(--paper) 0 26%, transparent 26.5%),
    conic-gradient(from -30deg, var(--sage-soft) 0 34%, var(--lavender-soft) 34% 62%, var(--cream-deep) 62% 100%);
  border: 1px solid rgba(74, 78, 60, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(255, 253, 248, 0.55), 0 0 0 31px var(--line);
  display: flex;
  height: 68%;
  justify-content: center;
  left: 16%;
  position: absolute;
  top: 16%;
  width: 68%;
}

.nutrition-plate span {
  align-self: center;
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 1.25rem;
  position: relative;
  z-index: 2;
}

.nutrition-note {
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 0.86rem;
  padding: 0.7rem 1rem;
  position: absolute;
  white-space: nowrap;
}

.nutrition-note-one {
  right: 1%;
  top: 18%;
}

.nutrition-note-two {
  bottom: 20%;
  left: 0;
}

.nutrition-note-three {
  bottom: 5%;
  right: 8%;
}

.nutrition-support {
  background: #f2ede2;
}

.meal-plan-section {
  align-items: center;
  background: var(--paper);
  display: grid;
  gap: 8vw;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  padding: clamp(6rem, 10vw, 10rem) 9vw;
}

.meal-plan-copy {
  max-width: 680px;
}

.meal-plan-copy h2,
.women-nutrition-section h2,
.nutrition-credentials h2,
.nutrition-crosslink h2 {
  color: var(--olive-dark);
}

.meal-plan-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.meal-plan-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: 28px 28px 0 var(--sage-soft);
  justify-self: center;
  max-width: 640px;
  padding: clamp(2rem, 4vw, 4rem);
  width: calc(100% - 28px);
}

.meal-plan-card-header {
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.4rem;
}

.meal-plan-card-header .card-kicker {
  margin: 0;
}

.meal-plan-card-header > span {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.8rem;
}

.diet-example-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
}

.diet-example-grid span {
  align-items: center;
  background: rgba(255, 253, 248, 0.8);
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--olive-dark);
  display: flex;
  font-family: var(--serif);
  min-height: 78px;
  padding: 1rem 1.2rem;
}

.meal-plan-card-footer {
  border-top: 1px solid var(--line);
  color: var(--mauve);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.65rem;
  font-weight: 800;
  gap: 1rem 1.8rem;
  letter-spacing: 0.11em;
  margin-top: 2rem;
  padding-top: 1.4rem;
  text-transform: uppercase;
}

.women-nutrition-section {
  background: var(--cream);
  padding: clamp(6rem, 10vw, 10rem) 8vw;
}

.women-nutrition-heading {
  margin: 0 auto 4rem;
  max-width: 900px;
  text-align: center;
}

.women-nutrition-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.25rem;
  margin: 1.5rem auto 0;
  max-width: 760px;
}

.women-stage-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1320px;
}

.women-stage-grid article {
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid var(--line);
  border-radius: 50% 50% 24px 24px;
  min-height: 430px;
  padding: 3rem 2.5rem;
  text-align: center;
}

.women-stage-grid article > span {
  color: var(--mauve);
  display: block;
  font-family: var(--serif);
  margin-bottom: 3.5rem;
}

.women-stage-grid h3 {
  color: var(--olive-dark);
  font-size: clamp(1.65rem, 2.1vw, 2.2rem);
}

.women-stage-grid p {
  color: var(--muted);
}

.nutrition-process {
  background: #3e4638;
}

.nutrition-credentials {
  align-items: center;
  background: var(--paper);
  display: grid;
  gap: 8vw;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  padding: clamp(6rem, 10vw, 10rem) 9vw;
}

.nutrition-credentials > div:last-child {
  max-width: 760px;
}

.nutrition-credentials > div:last-child > p:not(.eyebrow) {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.credential-emblem {
  align-items: center;
  aspect-ratio: 1;
  background: var(--sage-soft);
  border-radius: 50% 50% 12px 12px;
  display: flex;
  justify-content: center;
  justify-self: center;
  max-width: 500px;
  overflow: hidden;
  width: 100%;
}

.credential-emblem img {
  filter: contrast(0.85) saturate(0.64);
  mix-blend-mode: multiply;
  width: 76%;
}

.nutrition-crosslink {
  align-items: center;
  background: #f2ede2;
  display: grid;
  gap: 9vw;
  grid-template-columns: minmax(350px, 0.9fr) minmax(0, 1.1fr);
  padding: clamp(6rem, 10vw, 10rem) 9vw;
}

.nutrition-crosslink > div:last-child {
  max-width: 700px;
}

.nutrition-crosslink > div:last-child > p:not(.eyebrow) {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.nutrition-path-art {
  aspect-ratio: 1;
  justify-self: center;
  max-width: 500px;
  position: relative;
  width: 100%;
}

.nutrition-path-art span {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--olive-dark);
  display: flex;
  font-family: var(--serif);
  font-size: 1.1rem;
  height: 52%;
  justify-content: center;
  position: absolute;
  width: 52%;
}

.nutrition-path-art span:nth-child(1) {
  background: rgba(220, 224, 211, 0.88);
  left: 4%;
  top: 9%;
}

.nutrition-path-art span:nth-child(2) {
  background: rgba(238, 228, 210, 0.9);
  right: 4%;
  top: 9%;
}

.nutrition-path-art span:nth-child(3) {
  background: rgba(221, 213, 223, 0.82);
  bottom: 6%;
  left: 24%;
}

.nutrition-cta {
  background: var(--olive);
}

/* Coaching */
.coaching-hero {
  background:
    radial-gradient(circle at 88% 13%, rgba(220, 224, 211, 0.72) 0 17%, transparent 17.5%),
    radial-gradient(circle at 8% 90%, rgba(221, 213, 223, 0.58) 0 16%, transparent 16.5%),
    var(--cream);
}

.coaching-art {
  aspect-ratio: 1;
  isolation: isolate;
  justify-self: center;
  max-width: 590px;
  position: relative;
  width: 100%;
}

.coaching-orbit {
  border: 1px solid rgba(74, 78, 60, 0.22);
  border-radius: 50%;
  position: absolute;
}

.coaching-orbit-one {
  background: rgba(255, 253, 248, 0.36);
  height: 80%;
  left: 10%;
  top: 10%;
  width: 80%;
}

.coaching-orbit-two {
  background:
    conic-gradient(from 210deg, rgba(221, 213, 223, 0.82), rgba(220, 224, 211, 0.88), rgba(238, 228, 210, 0.9), rgba(221, 213, 223, 0.82));
  border: 16px solid rgba(255, 253, 248, 0.72);
  box-shadow: 0 0 0 1px var(--line);
  height: 58%;
  left: 21%;
  top: 21%;
  width: 58%;
}

.coaching-center {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  height: 29%;
  justify-content: center;
  left: 35.5%;
  position: absolute;
  text-align: center;
  top: 35.5%;
  width: 29%;
  z-index: 2;
}

.coaching-center span {
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 1.15rem;
  max-width: 90px;
}

.coaching-note {
  background: rgba(255, 253, 248, 0.95);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 0.86rem;
  padding: 0.7rem 1.15rem;
  position: absolute;
  white-space: nowrap;
  z-index: 3;
}

.coaching-note-one {
  right: 2%;
  top: 17%;
}

.coaching-note-two {
  bottom: 21%;
  left: 0;
}

.coaching-note-three {
  bottom: 4%;
  right: 10%;
}

.coaching-support {
  background: #f1ece4;
}

.coaching-season-section {
  background: var(--paper);
  padding: clamp(6rem, 10vw, 10rem) 8vw;
}

.coaching-season-heading {
  margin: 0 auto 4rem;
  max-width: 920px;
  text-align: center;
}

.coaching-season-heading h2,
.coaching-toolkit h2,
.coaching-credentials h2,
.coaching-crosslink h2 {
  color: var(--olive-dark);
}

.coaching-season-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.25rem;
  margin: 1.5rem auto 0;
  max-width: 780px;
}

.coaching-season-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1320px;
}

.coaching-season-grid article {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 32px 32px 48% 48%;
  min-height: 420px;
  padding: 3rem 2.6rem;
  text-align: center;
}

.coaching-season-grid article > span {
  color: var(--mauve);
  display: block;
  font-family: var(--serif);
  margin-bottom: 3.6rem;
}

.coaching-season-grid h3 {
  color: var(--olive-dark);
  font-size: clamp(1.65rem, 2.1vw, 2.2rem);
}

.coaching-season-grid p {
  color: var(--muted);
}

.coaching-process {
  background: #5f5664;
}

.coaching-toolkit {
  align-items: center;
  background: var(--paper);
  display: grid;
  gap: 8vw;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
  padding: clamp(6rem, 10vw, 10rem) 9vw;
}

.coaching-toolkit-copy {
  max-width: 690px;
}

.coaching-toolkit-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.coaching-toolkit-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: 28px 28px 0 var(--lavender-soft);
  justify-self: center;
  max-width: 640px;
  padding: clamp(2rem, 4vw, 4rem);
  width: calc(100% - 28px);
}

.coaching-toolkit-header {
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.4rem;
}

.coaching-toolkit-header .card-kicker {
  margin: 0;
}

.coaching-toolkit-header > span {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.8rem;
}

.coaching-tool-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
}

.coaching-tool-grid span {
  align-items: center;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--olive-dark);
  display: flex;
  font-family: var(--serif);
  min-height: 78px;
  padding: 1rem 1.2rem;
}

.coaching-toolkit-note {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  margin: 2rem 0 0;
  padding-top: 1.4rem;
}

.coaching-credentials {
  align-items: center;
  background: var(--sage-soft);
  display: grid;
  gap: 8vw;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  padding: clamp(6rem, 10vw, 10rem) 9vw;
}

.coaching-credentials > div:first-child {
  max-width: 780px;
}

.coaching-credentials > div:first-child > p:not(.eyebrow) {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.22rem;
}

.coaching-credentials .coaching-portrait {
  aspect-ratio: 3 / 4;
  background: var(--lavender-soft);
  border-radius: 48% 48% 1.25rem 1.25rem;
  box-shadow: 22px 22px 0 rgba(221, 213, 223, 0.72);
  max-width: 430px;
}

.coaching-credentials .coaching-portrait img {
  filter: none;
  height: 100%;
  mix-blend-mode: normal;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.coaching-crosslink {
  background: var(--cream);
  display: grid;
  gap: 7vw;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  padding: clamp(6rem, 10vw, 10rem) 8vw;
}

.coaching-crosslink > div:first-child > p:not(.eyebrow) {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.18rem;
}

.coaching-path-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.coaching-path-grid article,
.coaching-path-grid a {
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid var(--line);
  border-radius: 24px;
  display: block;
  min-height: 330px;
  padding: 2.2rem;
  transition: background 180ms ease, transform 180ms ease;
}

.coaching-path-grid a:hover,
.coaching-path-grid a:focus-visible {
  background: var(--paper);
  transform: translateY(-4px);
}

.coaching-path-grid article {
  background: var(--olive-dark);
  color: var(--paper);
}

.coaching-path-grid > * > span {
  color: var(--mauve);
  display: block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 4rem;
  text-transform: uppercase;
}

.coaching-path-grid article > span {
  color: #d8c0c7;
}

.coaching-path-grid h3 {
  font-size: clamp(1.45rem, 1.8vw, 1.9rem);
}

.coaching-path-grid a h3 {
  color: var(--olive-dark);
}

.coaching-path-grid p {
  color: var(--muted);
  margin: 0;
}

.coaching-path-grid article p {
  color: #c8c7be;
}

.coaching-cta {
  background: var(--olive);
}

/* About */
.about-hero {
  background:
    radial-gradient(circle at 90% 12%, rgba(221, 213, 223, 0.68) 0 17%, transparent 17.5%),
    radial-gradient(circle at 8% 90%, rgba(220, 224, 211, 0.6) 0 15%, transparent 15.5%),
    var(--cream);
}

.about-symbol {
  aspect-ratio: 1;
  isolation: isolate;
  justify-self: center;
  max-width: 590px;
  position: relative;
  width: 100%;
}

.about-symbol-circle {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--olive-dark);
  display: flex;
  font-family: var(--serif);
  font-size: 1rem;
  height: 55%;
  justify-content: center;
  position: absolute;
  width: 55%;
}

.about-symbol-mind {
  background: rgba(221, 213, 223, 0.78);
  left: 4%;
  top: 7%;
}

.about-symbol-body {
  background: rgba(238, 228, 210, 0.9);
  right: 4%;
  top: 7%;
}

.about-symbol-nature {
  background: rgba(220, 224, 211, 0.86);
  bottom: 4%;
  left: 22.5%;
}

.about-symbol-center {
  align-items: center;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  height: 31%;
  justify-content: center;
  left: 34.5%;
  position: absolute;
  top: 34.5%;
  width: 31%;
  z-index: 2;
}

.about-symbol-center img {
  filter: contrast(0.86) saturate(0.66);
  mix-blend-mode: multiply;
  width: 82%;
}

.about-symbol-note {
  background: rgba(255, 253, 248, 0.95);
  border: 1px solid var(--line);
  border-radius: 999px;
  bottom: 3%;
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 0.82rem;
  left: 50%;
  padding: 0.7rem 1.1rem;
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 3;
}

.founder-story {
  align-items: center;
  background: var(--paper);
  display: grid;
  gap: clamp(4rem, 8vw, 9rem);
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
  padding: clamp(6rem, 10vw, 10rem) 9vw;
  scroll-margin-top: 2rem;
}

.founder-portrait {
  justify-self: center;
  max-width: 350px;
  padding: 2rem 2rem 3.5rem;
  position: relative;
  width: 100%;
}

.founder-portrait-backdrop {
  background: var(--lavender-soft);
  border-radius: 49% 49% 1rem 1rem;
  inset: 0 0 4.5rem;
  position: absolute;
}

.founder-portrait img {
  aspect-ratio: 3 / 4;
  border-radius: 48% 48% 0.8rem 0.8rem;
  object-fit: cover;
  position: relative;
  width: 100%;
}

.founder-portrait > span {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  bottom: 1rem;
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 0.78rem;
  left: 50%;
  line-height: 1.45;
  padding: 0.75rem 1.1rem;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  width: min(92%, 430px);
}

.founder-story-copy {
  max-width: 780px;
}

.founder-story-copy h2,
.about-experience h2,
.vital-mana-story h2,
.about-fit h2,
.about-paths h2 {
  color: var(--olive-dark);
}

.founder-story-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.founder-story-copy .founder-story-lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.38rem;
  line-height: 1.55;
}

.about-experience {
  background: var(--cream);
  padding: clamp(6rem, 10vw, 10rem) 7vw;
}

.about-experience-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-experience-grid article {
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid var(--line);
  border-radius: 26px;
  min-height: 440px;
  padding: 2.5rem;
}

.about-experience-number {
  color: var(--mauve);
  display: block;
  font-family: var(--serif);
  margin-bottom: 3rem;
}

.about-experience-grid h3 {
  color: var(--olive-dark);
  font-size: clamp(1.5rem, 1.85vw, 2rem);
  margin-bottom: 1.2rem;
}

.about-experience-grid article > p:not(.card-kicker) {
  color: var(--muted);
}

.about-beliefs {
  background: var(--olive-dark);
  color: var(--paper);
  display: grid;
  gap: 8vw;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  padding: clamp(6rem, 10vw, 10rem) 9vw;
}

.about-beliefs-heading h2 {
  color: var(--paper);
}

.about-beliefs-heading > p:not(.eyebrow) {
  color: #c5c4ba;
  font-family: var(--serif);
  font-size: 1.18rem;
}

.about-belief-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.about-belief-grid article {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  min-height: 280px;
  padding: 2.2rem;
}

.about-belief-grid h3 {
  color: var(--paper);
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.about-belief-grid p {
  color: #b9b9af;
  margin: 0;
}

.vital-mana-story {
  align-items: center;
  background: var(--paper);
  display: grid;
  gap: 9vw;
  grid-template-columns: minmax(330px, 0.8fr) minmax(0, 1.2fr);
  padding: clamp(6rem, 10vw, 10rem) 9vw;
}

.vital-mana-story-art {
  align-items: center;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 253, 248, 0.74) 0 28%, transparent 28.5%),
    linear-gradient(145deg, var(--sage-soft), var(--lavender-soft));
  border: 1px solid var(--line);
  border-radius: 50% 50% 18px 18px;
  display: flex;
  justify-content: center;
  justify-self: center;
  max-width: 510px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.vital-mana-story-art img {
  filter: contrast(0.84) saturate(0.62);
  mix-blend-mode: multiply;
  position: relative;
  width: 72%;
  z-index: 2;
}

.vital-mana-story-art span {
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 0.82rem;
  position: absolute;
}

.vital-mana-story-art span:nth-of-type(1) {
  left: 9%;
  top: 43%;
}

.vital-mana-story-art span:nth-of-type(2) {
  right: 8%;
  top: 43%;
}

.vital-mana-story-art span:nth-of-type(3) {
  bottom: 8%;
  left: 22%;
}

.vital-mana-story-art span:nth-of-type(4) {
  bottom: 8%;
  right: 22%;
}

.vital-mana-story-copy {
  max-width: 760px;
}

.vital-mana-story-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.about-fit {
  background: var(--lavender-soft);
  display: grid;
  gap: 8vw;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  padding: clamp(6rem, 10vw, 10rem) 9vw;
}

.about-fit > div > p:not(.eyebrow) {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.18rem;
}

.about-fit ul {
  background: rgba(255, 253, 248, 0.64);
  border: 1px solid var(--line);
  border-radius: 28px;
  list-style: none;
  margin: 0;
  padding: 1rem 2.5rem;
}

.about-fit li {
  border-bottom: 1px solid var(--line);
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 1.18rem;
  padding: 1.35rem 0 1.35rem 2rem;
  position: relative;
}

.about-fit li:last-child {
  border-bottom: 0;
}

.about-fit li::before {
  color: var(--mauve);
  content: "✦";
  font-size: 0.62rem;
  left: 0;
  position: absolute;
  top: 1.65rem;
}

.about-paths {
  background: var(--cream);
  padding: clamp(6rem, 10vw, 10rem) 8vw;
}

.about-paths-heading {
  margin: 0 auto 4rem;
  max-width: 920px;
  text-align: center;
}

.about-paths-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.2rem;
  margin: 1.5rem auto 0;
  max-width: 760px;
}

.about-path-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1320px;
}

.about-path-grid a {
  background: rgba(255, 253, 248, 0.76);
  border: 1px solid var(--line);
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 2.6rem;
  transition: background 180ms ease, transform 180ms ease;
}

.about-path-grid a:hover,
.about-path-grid a:focus-visible {
  background: var(--paper);
  transform: translateY(-4px);
}

.about-path-grid a > span {
  color: var(--mauve);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 4rem;
  text-transform: uppercase;
}

.about-path-grid h3 {
  color: var(--olive-dark);
}

.about-path-grid p {
  color: var(--muted);
}

.about-path-grid strong {
  color: var(--olive-dark);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  margin-top: auto;
  text-transform: uppercase;
}

.about-cta {
  background: var(--lavender);
}

/* Contact & booking */
.booking-hero {
  align-items: center;
  background:
    radial-gradient(circle at 6% 92%, rgba(174, 181, 159, 0.34) 0 12%, transparent 12.5%),
    var(--cream);
  display: grid;
  gap: clamp(4rem, 8vw, 9rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.8fr);
  min-height: 760px;
  padding: 7rem 8vw;
  scroll-margin-top: 1rem;
}

.booking-hero-copy {
  max-width: 820px;
  min-width: 0;
}

.booking-hero h1 {
  color: var(--olive-dark);
  font-size: clamp(3.6rem, 6.6vw, 6.9rem);
}

.booking-hero h1 em {
  color: var(--mauve);
  font-weight: 400;
}

.booking-hero-lead {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.28rem;
  max-width: 680px;
}

.booking-location {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  margin: 2.5rem 0 0;
  text-transform: uppercase;
}

.booking-location span {
  color: var(--mauve);
  margin: 0 0.6rem;
}

.discovery-card {
  background: var(--lavender);
  border-radius: 48% 48% 28px 28px;
  color: white;
  min-width: 0;
  overflow: hidden;
  padding: clamp(10rem, 14vw, 12rem) 3.2rem 3.2rem;
  position: relative;
}

.discovery-emblem {
  filter: grayscale(1) brightness(2.2);
  mix-blend-mode: screen;
  opacity: 0.16;
  position: absolute;
  right: -12%;
  top: -3%;
  width: 72%;
}

.discovery-card .card-kicker {
  color: #f0ded9;
  position: relative;
}

.discovery-card h2 {
  font-size: clamp(2.7rem, 4vw, 4.5rem);
  margin-bottom: 1.6rem;
  position: relative;
}

.discovery-card > p:not(.card-kicker) {
  font-family: var(--serif);
  font-size: 1.12rem;
  position: relative;
}

.discovery-card ul {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
  position: relative;
}

.discovery-card li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.7rem 0 0.7rem 1.45rem;
  position: relative;
}

.discovery-card li::before {
  color: #f0ded9;
  content: "✦";
  font-size: 0.55rem;
  left: 0;
  position: absolute;
  top: 0.93rem;
}

.discovery-card .button {
  position: relative;
}

.discovery-card small {
  display: block;
  font-size: 0.66rem;
  font-style: italic;
  margin-top: 1.25rem;
  opacity: 0.82;
  position: relative;
}

.calendar-booking {
  background: var(--lavender-soft);
  padding: clamp(6rem, 9vw, 9rem) 7vw;
  scroll-margin-top: 1rem;
}

.calendar-booking-intro {
  margin: 0 auto 3.5rem;
  max-width: 840px;
  text-align: center;
}

.calendar-booking-intro h2 {
  color: var(--olive-dark);
}

.calendar-booking-copy {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.2rem;
  margin: 0 auto;
  max-width: 680px;
}

.calendar-booking-intro .calendar-booking-duration {
  color: var(--olive-dark);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  margin: 1rem auto 0;
  max-width: 680px;
}

.calendar-booking-frame {
  background: white;
  border: 1px solid rgba(74, 78, 60, 0.16);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(53, 58, 44, 0.1);
  margin: 0 auto;
  max-width: 1180px;
  overflow: hidden;
  padding: 1rem;
}

.calendar-booking-frame iframe {
  background: white;
  border-radius: 18px;
  display: block;
  min-height: 820px;
  width: 100%;
}

.calendar-booking-fallback {
  color: var(--muted);
  font-size: 0.74rem;
  margin: 1.4rem auto 0;
  text-align: center;
}

.calendar-booking-fallback a {
  color: var(--olive-dark);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.booking-paths {
  background: var(--paper);
  padding: clamp(6rem, 10vw, 10rem) 7vw;
}

.booking-section-heading {
  align-items: end;
  display: grid;
  gap: 4rem;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  margin: 0 auto 5rem;
  max-width: 1320px;
}

.booking-section-heading h2 {
  color: var(--olive-dark);
  margin-bottom: 0;
}

.booking-section-heading > p {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.18rem;
  margin: 0;
}

.booking-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  max-width: 1320px;
}

.booking-path-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 3rem;
}

.booking-path-card > span {
  color: var(--mauve);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 4rem;
}

.booking-path-card h3 {
  color: var(--olive-dark);
}

.booking-path-card p {
  color: var(--muted);
}

.booking-path-card .text-link {
  margin-top: auto;
}

.product-question-card {
  align-items: center;
  background: var(--sage-soft);
  border-radius: 28px;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr 0.8fr auto;
  margin: 1.25rem auto 0;
  max-width: 1320px;
  padding: 2.5rem 3rem;
}

.product-question-card h3 {
  color: var(--olive-dark);
  margin: 0;
}

.product-question-card > p {
  color: var(--muted);
  margin: 0;
}

.booking-process {
  background: var(--cream);
  display: grid;
  gap: clamp(4rem, 9vw, 10rem);
  grid-template-columns: minmax(0, 0.8fr) minmax(400px, 1fr);
  padding: clamp(6rem, 10vw, 10rem) 9vw;
}

.booking-process h2 {
  color: var(--olive-dark);
}

.booking-process ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.booking-process li {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 2rem;
  grid-template-columns: 45px 1fr;
  padding: 0 0 2rem;
}

.booking-process li + li {
  padding-top: 2rem;
}

.booking-process li > span {
  color: var(--mauve);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.booking-process h3 {
  color: var(--olive-dark);
  font-size: 1.8rem;
  margin-bottom: 0.65rem;
}

.booking-process li p {
  color: var(--muted);
  margin: 0;
}

.booking-contact-band {
  align-items: center;
  background: var(--olive-dark);
  color: white;
  display: grid;
  gap: clamp(4rem, 9vw, 10rem);
  grid-template-columns: 1fr 0.85fr;
  padding: clamp(6rem, 9vw, 9rem) 9vw;
}

.booking-contact-band .eyebrow {
  color: #d8bfc5;
}

.booking-contact-band h2 {
  font-size: clamp(3rem, 5vw, 5.4rem);
}

.booking-contact-band > div:first-child > p:last-child {
  font-family: var(--serif);
  font-size: 1.2rem;
}

.booking-contact-details {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.booking-contact-details a,
.booking-contact-details p {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
  font-family: var(--serif);
  font-size: 1.2rem;
  margin: 0;
  overflow-wrap: anywhere;
  padding: 1.15rem 0;
}

.booking-contact-details a:hover,
.booking-contact-details a:focus-visible {
  color: #ead9dc;
}

.booking-contact-details span {
  color: #d8bfc5;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.booking-privacy-note {
  background: #282c24;
  color: #aaa99f;
  font-size: 0.68rem;
  font-style: italic;
  margin: 0;
  padding: 1.25rem 9vw;
  text-align: center;
}

/* Workshops & experiences */
.workshop-hero {
  align-items: center;
  background:
    radial-gradient(circle at 10% 86%, rgba(220, 224, 211, 0.72) 0 15%, transparent 15.5%),
    radial-gradient(circle at 94% 12%, rgba(221, 213, 223, 0.68) 0 20%, transparent 20.5%),
    var(--cream);
  display: grid;
  gap: clamp(4rem, 8vw, 9rem);
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  min-height: 790px;
  overflow: hidden;
  padding: clamp(6rem, 9vw, 9rem) 7vw;
}

.workshop-hero-copy {
  max-width: 830px;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.workshop-hero h1 {
  color: var(--olive-dark);
  font-size: clamp(3.5rem, 6.2vw, 6.7rem);
  margin-bottom: 1.8rem;
}

.workshop-hero h1 em {
  color: var(--mauve);
  font-weight: 400;
}

.workshop-hero-lead {
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  line-height: 1.5;
  max-width: 720px;
}

.workshop-hero-copy > p:not(.eyebrow, .workshop-hero-lead, .workshop-format-line) {
  color: var(--muted);
  max-width: 720px;
}

.workshop-format-line {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.105em;
  margin: 2.4rem 0 0;
  text-transform: uppercase;
}

.workshop-format-line span {
  color: var(--mauve);
  margin: 0 0.45rem;
}

.workshop-hero-art {
  aspect-ratio: 1;
  isolation: isolate;
  justify-self: center;
  max-width: 620px;
  position: relative;
  width: 100%;
}

.workshop-orbit {
  align-items: center;
  border: 1px solid rgba(74, 78, 60, 0.2);
  border-radius: 50%;
  color: var(--olive-dark);
  display: flex;
  font-family: var(--serif);
  font-size: 0.9rem;
  height: 48%;
  justify-content: center;
  position: absolute;
  width: 48%;
}

.workshop-orbit-one {
  background: rgba(221, 213, 223, 0.84);
  left: 5%;
  top: 3%;
}

.workshop-orbit-two {
  background: rgba(238, 228, 210, 0.92);
  right: 5%;
  top: 3%;
}

.workshop-orbit-three {
  background: rgba(220, 224, 211, 0.9);
  bottom: 5%;
  left: 5%;
}

.workshop-orbit-four {
  background: rgba(225, 197, 196, 0.72);
  bottom: 5%;
  right: 5%;
}

.workshop-hero-emblem {
  align-items: center;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  height: 39%;
  justify-content: center;
  left: 30.5%;
  position: absolute;
  top: 30.5%;
  width: 39%;
  z-index: 2;
}

.workshop-hero-emblem img {
  filter: contrast(0.9) saturate(0.72);
  mix-blend-mode: multiply;
  width: 86%;
}

.workshop-category-nav {
  background: var(--olive-dark);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 4vw;
}

.workshop-category-nav a {
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  color: white;
  display: flex;
  font-family: var(--serif);
  font-size: 1.02rem;
  gap: 0.8rem;
  justify-content: center;
  min-height: 92px;
  padding: 1rem;
  text-align: center;
  transition: background 180ms ease;
}

.workshop-category-nav a:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.workshop-category-nav a:hover,
.workshop-category-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.workshop-category-nav span {
  color: #d8bfc5;
  font-family: var(--sans);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.workshop-category {
  padding: clamp(6rem, 10vw, 10rem) 7vw;
  scroll-margin-top: 1rem;
}

.workshop-category-lavender {
  background: var(--lavender-soft);
}

.workshop-category-sage {
  background: var(--sage-soft);
}

.workshop-category-mauve {
  background: #eadcda;
}

.workshop-category-cream {
  background: var(--cream-deep);
}

.workshop-category-heading {
  align-items: end;
  display: grid;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  margin: 0 auto 5rem;
  max-width: 1380px;
}

.workshop-category-heading h2 {
  color: var(--olive-dark);
  margin-bottom: 0;
}

.workshop-category-heading > div:last-child p {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.18rem;
}

.workshop-category-heading > div:last-child p:last-child {
  margin-bottom: 0;
}

.workshop-card-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  max-width: 1380px;
}

.workshop-card {
  align-self: start;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(74, 78, 60, 0.18);
  border-radius: 24px;
  overflow: hidden;
}

.workshop-card summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  list-style: none;
  min-height: 190px;
  padding: 2.2rem 2.4rem;
}

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

.workshop-card summary:focus-visible {
  outline: 2px solid var(--mauve);
  outline-offset: -5px;
}

.workshop-card summary > span:first-child {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.workshop-card summary strong {
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.45vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.workshop-card summary small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
  max-width: 520px;
}

.workshop-card-toggle {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--olive-dark);
  display: flex;
  flex: 0 0 44px;
  font-family: var(--serif);
  font-size: 1.6rem;
  height: 44px;
  justify-content: center;
  line-height: 1;
  transition: transform 180ms ease;
}

.workshop-card[open] .workshop-card-toggle {
  transform: rotate(45deg);
}

.workshop-card[open] summary {
  border-bottom: 1px solid rgba(74, 78, 60, 0.16);
}

.workshop-card-details {
  padding: 2.4rem;
}

.workshop-card-details > div:not(.workshop-card-meta) {
  margin-bottom: 1.8rem;
}

.workshop-card-details p,
.workshop-card-details li {
  color: var(--muted);
}

.workshop-detail-label {
  color: var(--mauve) !important;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}

.workshop-card-details ul {
  margin: 0;
  padding-left: 1.15rem;
}

.workshop-card-details li + li {
  margin-top: 0.45rem;
}

.workshop-card-meta {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
  margin: 2rem 0;
  padding: 1.4rem 0;
}

.workshop-card-meta p {
  margin: 0;
}

.workshop-card-meta span {
  color: var(--olive-dark);
  display: block;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.workshop-more {
  align-items: start;
  border-top: 1px solid rgba(74, 78, 60, 0.22);
  display: grid;
  gap: clamp(3rem, 7vw, 7rem);
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  margin: 5rem auto 0;
  max-width: 1380px;
  padding-top: 4rem;
}

.workshop-more h3 {
  color: var(--olive-dark);
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.workshop-more-groups {
  display: grid;
  gap: 2.4rem;
}

.workshop-more-groups > div > p {
  color: var(--mauve);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.workshop-more ul {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}

.workshop-more li {
  border-bottom: 1px solid rgba(74, 78, 60, 0.17);
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 1.02rem;
  padding: 0.75rem 1rem 0.75rem 0;
}

.workshop-formats {
  align-items: center;
  background: var(--olive-dark);
  color: white;
  display: grid;
  gap: clamp(4rem, 9vw, 10rem);
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
  padding: clamp(6rem, 9vw, 9rem) 9vw;
}

.workshop-formats .eyebrow {
  color: #d8bfc5;
}

.workshop-formats h2 {
  font-size: clamp(3rem, 5vw, 5.3rem);
}

.workshop-formats ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.workshop-formats li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--serif);
  font-size: 1.25rem;
  padding: 1rem 0 1rem 1.5rem;
  position: relative;
}

.workshop-formats li::before {
  color: #d8bfc5;
  content: "✦";
  font-size: 0.55rem;
  left: 0;
  position: absolute;
  top: 1.35rem;
}

.workshop-perfect-for {
  background: var(--paper);
  padding: clamp(6rem, 9vw, 9rem) 7vw;
  text-align: center;
}

.workshop-perfect-for h2 {
  color: var(--olive-dark);
  margin-bottom: 3rem;
}

.workshop-perfect-for > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 0 auto;
  max-width: 1100px;
}

.workshop-perfect-for span {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--olive-dark);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  padding: 0.8rem 1.2rem;
  text-transform: uppercase;
}

.workshop-cta {
  align-items: center;
  background: var(--lavender);
  color: white;
  display: grid;
  gap: clamp(4rem, 9vw, 10rem);
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(6rem, 9vw, 9rem) 9vw;
}

.workshop-cta .eyebrow {
  color: #f0ded9;
}

.workshop-cta h2 {
  font-size: clamp(3rem, 5vw, 5.3rem);
  max-width: 850px;
}

.workshop-cta > div:first-child > p:not(.eyebrow) {
  font-family: var(--serif);
  font-size: 1.18rem;
  max-width: 760px;
}

.workshop-cta .workshop-pricing-note {
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  margin-top: 1.5rem;
  padding-left: 1.25rem;
}

.workshop-cta .hero-actions {
  justify-content: flex-end;
}

.workshop-education-note {
  background: #282c24;
  color: #aaa99f;
  font-size: 0.68rem;
  font-style: italic;
  margin: 0;
  padding: 1.25rem 9vw;
  text-align: center;
}

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

  .desktop-nav {
    display: none;
  }

  .header-action {
    display: none;
  }

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

  .mobile-menu summary {
    border: 1px solid var(--line);
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    list-style: none;
    padding: 0.65rem 1rem;
    text-transform: uppercase;
  }

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

  .mobile-menu nav {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    min-width: 240px;
    padding: 0.8rem;
    position: absolute;
    right: 0;
    top: calc(100% + 0.8rem);
  }

  .mobile-menu nav a {
    border-bottom: 1px solid var(--line);
    padding: 0.7rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .floating-note {
    font-size: 0.72rem;
  }

  .shop-card {
    min-height: 470px;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-image-wrap {
    border-radius: 0;
    height: 235px;
    order: -1;
  }

  .product-image-wrap img {
    object-position: center 45%;
  }

  .coming-soon-card {
    grid-template-columns: 1fr 1fr;
  }

  .service-hero {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.82fr);
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .meal-plan-section {
    gap: 5vw;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  }

  .coaching-toolkit {
    gap: 5vw;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  }

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

  .booking-hero {
    gap: 4rem;
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.8fr);
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .workshop-hero {
    gap: 4rem;
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.85fr);
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .workshop-category-nav {
    grid-template-columns: 1fr 1fr;
  }

  .workshop-category-nav a:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.13);
  }

  .workshop-category-nav a:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .product-question-card {
    grid-template-columns: 1fr 1fr;
  }

  .product-question-card .text-link {
    justify-self: start;
  }

  .support-card {
    padding: 2rem;
  }

  .coming-soon-card .text-link {
    justify-self: start;
  }
}

@media (max-width: 820px) {
  h1 {
    font-size: clamp(3.2rem, 13vw, 5.5rem);
  }

  .announcement {
    font-size: 0.57rem;
    gap: 0.55rem;
    letter-spacing: 0.1em;
  }

  .site-header {
    min-height: 78px;
    padding: 0 1.1rem;
  }

  .brand-emblem {
    height: 44px;
    width: 54px;
  }

  .brand-words strong {
    font-size: 1.15rem;
  }

  .brand-words small {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 5.5rem 1.35rem 3rem;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-art {
    margin-top: 3.5rem;
    max-width: 520px;
  }

  .shop-feature,
  .paths-section,
  .store-section {
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  .section-heading {
    align-items: start;
    gap: 1.75rem;
    grid-template-columns: 1fr;
  }

  .shop-heading-side {
    justify-self: start;
  }

  .shop-grid,
  .path-grid,
  .about-section,
  .venue-section,
  .featured-product,
  .recording-grid,
  .store-hero,
  .service-hero,
  .service-intro,
  .session-section,
  .integrated-section,
  .faq-section,
  .meal-plan-section,
  .nutrition-credentials,
  .nutrition-crosslink {
    grid-template-columns: 1fr;
  }

  .coaching-toolkit,
  .coaching-credentials,
  .coaching-crosslink {
    grid-template-columns: 1fr;
  }

  .founder-story,
  .about-beliefs,
  .vital-mana-story,
  .about-fit {
    grid-template-columns: 1fr;
  }

  .service-hero {
    gap: 3.5rem;
    min-height: auto;
    padding: 5.5rem 1.35rem 4rem;
  }

  .mind-art {
    max-width: 520px;
  }

  .nutrition-art {
    max-width: 520px;
  }

  .coaching-art {
    max-width: 520px;
  }

  .about-symbol {
    max-width: 520px;
  }

  .service-intro,
  .session-section,
  .integrated-section,
  .faq-section,
  .meal-plan-section,
  .nutrition-credentials,
  .nutrition-crosslink {
    gap: 4rem;
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  .coaching-toolkit,
  .coaching-credentials,
  .coaching-crosslink {
    gap: 4rem;
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  .founder-story,
  .about-beliefs,
  .vital-mana-story,
  .about-fit {
    gap: 4rem;
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  .about-experience,
  .about-paths {
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  .women-nutrition-section {
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  .coaching-season-section {
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  .women-stage-grid {
    grid-template-columns: 1fr;
  }

  .coaching-season-grid,
  .coaching-path-grid {
    grid-template-columns: 1fr;
  }

  .about-experience-grid,
  .about-belief-grid,
  .about-path-grid {
    grid-template-columns: 1fr;
  }

  .about-experience-grid article,
  .about-belief-grid article,
  .about-path-grid a {
    min-height: auto;
  }

  .about-path-grid a > span {
    margin-bottom: 2.5rem;
  }

  .booking-hero,
  .booking-section-heading,
  .booking-grid,
  .booking-process,
  .booking-contact-band {
    grid-template-columns: 1fr;
  }

  .workshop-hero,
  .workshop-category-heading,
  .workshop-card-grid,
  .workshop-more,
  .workshop-formats,
  .workshop-cta {
    grid-template-columns: 1fr;
  }

  .workshop-hero {
    min-height: auto;
    padding: 5.5rem 1.35rem 4.5rem;
  }

  .workshop-hero-copy {
    max-width: none;
  }

  .workshop-hero-art {
    max-width: 560px;
  }

  .workshop-category,
  .workshop-perfect-for,
  .workshop-formats,
  .workshop-cta {
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  .workshop-category-heading {
    align-items: start;
    gap: 2rem;
  }

  .workshop-card summary {
    min-height: auto;
  }

  .workshop-more {
    gap: 2.5rem;
  }

  .workshop-cta .hero-actions {
    justify-content: flex-start;
  }

  .booking-hero {
    min-height: auto;
    padding: 5.5rem 1.35rem 4rem;
  }

  .discovery-card {
    max-width: 560px;
  }

  .booking-paths,
  .calendar-booking,
  .booking-process,
  .booking-contact-band {
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  .booking-section-heading {
    align-items: start;
    gap: 1.5rem;
  }

  .booking-path-card {
    min-height: auto;
  }

  .booking-path-card > span {
    margin-bottom: 2.5rem;
  }

  .product-question-card {
    grid-template-columns: 1fr;
  }

  .women-stage-grid article {
    border-radius: 42% 42% 22px 22px;
    min-height: auto;
    padding: 3rem 2rem;
  }

  .women-stage-grid article > span {
    margin-bottom: 2rem;
  }

  .coaching-season-grid article {
    border-radius: 28px 28px 42% 42%;
    min-height: auto;
    padding: 3rem 2rem;
  }

  .coaching-season-grid article > span {
    margin-bottom: 2rem;
  }

  .meal-plan-card {
    box-shadow: 16px 16px 0 var(--sage-soft);
    width: calc(100% - 16px);
  }

  .coaching-toolkit-card {
    box-shadow: 16px 16px 0 var(--lavender-soft);
    width: calc(100% - 16px);
  }

  .credential-emblem {
    max-width: 480px;
  }

  .coaching-credentials .credential-emblem {
    order: -1;
  }

  .coaching-path-grid article,
  .coaching-path-grid a {
    min-height: auto;
  }

  .coaching-path-grid > * > span {
    margin-bottom: 2.5rem;
  }

  .support-section {
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

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

  .support-card {
    min-height: auto;
  }

  .service-cta {
    grid-template-columns: 1fr;
    min-height: 650px;
    padding: 5rem 1.35rem;
  }

  .service-cta > img {
    display: none;
  }

  .shop-card {
    min-height: 500px;
  }

  .path-grid {
    border-bottom: 0;
  }

  .path-card,
  .path-card:not(:first-child),
  .path-card:last-child {
    border: 1px solid var(--line);
    border-radius: 22px;
    grid-column: 1 / -1;
    min-height: auto;
    padding: 2.5rem 1.5rem;
  }

  .path-card:nth-last-child(-n + 2) {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .path-number {
    margin-bottom: 2rem;
  }

  .path-card .text-link {
    margin-top: 1rem;
  }

  .brand-promise {
    flex-wrap: wrap;
    gap: 0.6rem 1.2rem;
    justify-content: flex-start;
    min-height: 170px;
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  .about-section,
  .venue-section {
    gap: 4rem;
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  .portrait-frame {
    max-width: 500px;
  }

  .founder-portrait,
  .vital-mana-story-art {
    max-width: 500px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    min-height: 650px;
    padding: 5rem 1.35rem;
  }

  .contact-emblem {
    display: none;
  }

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

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

  .store-hero {
    gap: 3rem;
    min-height: 680px;
    padding: 5rem 1.35rem;
  }

  .store-hero h1 {
    font-size: clamp(3.3rem, 14vw, 5.8rem);
  }

  .featured-product {
    gap: 3.5rem;
  }

  .coming-soon-card {
    grid-template-columns: 1fr;
    margin-top: 5rem;
  }

  .recordings-section {
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  .recording-product {
    min-height: auto;
  }

  .recording-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .contact-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-note {
    line-height: 2;
  }

  .hero-art {
    margin-left: -0.5rem;
    width: calc(100% + 1rem);
  }

  .floating-note {
    font-size: 0.63rem;
    padding: 0.5rem 0.65rem;
  }

  .hero-seal {
    height: 125px;
    width: 125px;
  }

  .hero-seal span {
    font-size: 1.1rem;
  }

  .hero-seal small {
    font-size: 0.43rem;
  }

  .shop-card-copy {
    padding: 2rem;
  }

  .recording-card .shop-card-copy {
    padding-top: 11rem;
  }

  .brand-promise p {
    font-size: 1.8rem;
  }

  .venue-list {
    grid-template-columns: 1fr;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.7rem;
  }

  .featured-product-image {
    border-radius: 42% 42% 1rem 1rem;
    padding: 0.6rem;
  }

  .coming-soon-card,
  .recording-cta {
    padding: 2rem;
  }

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

  .mind-note {
    font-size: 0.66rem;
    padding: 0.5rem 0.68rem;
  }

  .nutrition-note {
    font-size: 0.66rem;
    padding: 0.5rem 0.68rem;
  }

  .coaching-note {
    font-size: 0.66rem;
    padding: 0.5rem 0.68rem;
  }

  .about-symbol-note {
    font-size: 0.64rem;
    padding: 0.5rem 0.65rem;
  }

  .about-symbol-circle {
    font-size: 0.78rem;
  }

  .about-fit ul {
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  .diet-example-grid {
    grid-template-columns: 1fr;
  }

  .coaching-tool-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    gap: 1rem;
    grid-template-columns: 32px 1fr;
  }

  .discovery-card {
    border-radius: 42% 42% 22px 22px;
    padding: 8rem 1.6rem 2rem;
  }

  .calendar-booking-frame {
    border-radius: 20px;
    padding: 0.35rem;
  }

  .calendar-booking-frame iframe {
    border-radius: 16px;
    min-height: 900px;
  }

  .booking-path-card,
  .product-question-card {
    padding: 2rem;
  }

  .booking-contact-details a,
  .booking-contact-details p {
    font-size: 1rem;
  }

  .workshop-category-nav {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .workshop-category-nav a,
  .workshop-category-nav a:nth-child(2),
  .workshop-category-nav a:last-child {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    justify-content: flex-start;
    min-height: 68px;
    text-align: left;
  }

  .workshop-category-nav a:first-child {
    border-top: 0;
  }

  .workshop-card summary,
  .workshop-card-details {
    padding: 1.7rem;
  }

  .workshop-card summary {
    gap: 1rem;
  }

  .workshop-card summary strong {
    font-size: 1.8rem;
  }

  .workshop-card-toggle {
    flex-basis: 38px;
    height: 38px;
  }

  .workshop-card-meta,
  .workshop-more ul {
    grid-template-columns: 1fr;
  }

  .workshop-perfect-for > div {
    align-items: stretch;
    flex-direction: column;
  }

  .workshop-perfect-for span {
    border-radius: 14px;
  }
}

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

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