:root {
  --barley: #FFF5D0;
  --rhino: #1B475D;
  --rhino-soft: #3d6480;
  --maroon: #5F142C;
  --naples: #FAD564;
  --olive: #B4BD62;
  --neptune: #8EBD9D;
  --white: #FFFFFF;
  --font-heading: "Fraunces", serif;
  --font-body: "Karla", sans-serif;
  --text-xs: 0.8125rem;
  --text-sm: 0.9375rem;
  --text-base: 1.125rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5625rem;
  --text-2xl: clamp(1.75rem, 2.6vw, 2.125rem);
  --text-3xl: clamp(2rem, 3.4vw, 2.75rem);
  --text-4xl: clamp(2.25rem, 4.2vw, 3.625rem);
  --text-display: clamp(2.75rem, 7vw, 6rem);
}

/*
  FULL-COLOR ILLUSTRATION STYLE REFERENCE:
  Rich, warm, multi-color illustration in the spirit of botanical/anatomical field-
  journal art but rendered in full color rather than monochrome ink - teal/deep-green
  for organic forms, gold/maroon for warm accents, visible linework still present
  (not flat vector shapes) but filled with color rather than left as outline-only.
  Reference: the "Roots to Rasayana" book cover artwork (tree/mandala with roots,
  DNA helix, flame, water droplet, mountain, star elements in teal/gold/brown/blue).
*/

/* mobile: default styles */
/* tablet: @media (min-width: 768px) */
/* desktop: @media (min-width: 1200px) */

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--barley);
  color: var(--rhino);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

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

input,
select,
textarea {
  font-size: 1rem;
}

body,
.program-number,
.consultation-flow-number,
.pricing-price,
.about-stat-number {
  font-variant-numeric: tabular-nums;
}

::selection {
  background: var(--maroon);
  color: var(--white);
}

.site-shell {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  isolation: isolate;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: -18vh -12vw;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 18%, rgba(250, 213, 100, .22), transparent 30%),
    radial-gradient(circle at 82% 14%, rgba(142, 189, 157, .24), transparent 32%),
    radial-gradient(circle at 52% 88%, rgba(95, 20, 44, .08), transparent 30%);
  filter: blur(4px);
  opacity: .82;
  animation: page-glow-drift 18s ease-in-out infinite alternate;
}

.site-shell > * {
  position: relative;
  z-index: 1;
}

@keyframes page-glow-drift {
  0% { transform: translate3d(-1.5vw, -1vh, 0) scale(1); }
  100% { transform: translate3d(1.5vw, 1.4vh, 0) scale(1.04); }
}

.site-topbar-glass {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 96px;
  z-index: 39;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 14% 0%, rgba(250, 213, 100, .18), transparent 32%),
    radial-gradient(circle at 86% 0%, rgba(142, 189, 157, .16), transparent 34%),
    rgba(255, 255, 255, .78);
  border-bottom: 1px solid rgba(27, 71, 93, .1);
  box-shadow: 0 14px 34px rgba(27, 71, 93, .06);
  backdrop-filter: blur(20px) saturate(1.08);
  -webkit-backdrop-filter: blur(20px) saturate(1.08);
  transition:
    opacity .28s ease,
    box-shadow .28s ease;
}

.site-shell.is-topbar-scrolled .site-topbar-glass {
  opacity: 1;
}

[data-screen-label="Intro / Scroll Reveal"] {
  background:
    radial-gradient(circle at 14% 12%, rgba(250, 213, 100, .2), transparent 28%),
    radial-gradient(circle at 82% 28%, rgba(142, 189, 157, .18), transparent 34%),
    linear-gradient(180deg, var(--white), color-mix(in srgb, var(--white) 88%, var(--barley)));
}

.section-pad {
  padding: clamp(56px, 9vw, 120px) clamp(20px, 6vw, 7vw);
}

.section-dark {
  background: var(--rhino);
  color: var(--white);
}

.light-page-hero,
.blog-page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 10%, rgba(250, 213, 100, .28), transparent 32%),
    radial-gradient(circle at 82% 16%, rgba(142, 189, 157, .26), transparent 34%),
    linear-gradient(180deg, var(--white), color-mix(in srgb, var(--barley) 72%, var(--white))) !important;
  color: var(--rhino) !important;
}

.light-page-hero::before,
.blog-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, .7), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(250, 213, 100, .16), transparent 34%);
}

.light-page-hero > *,
.blog-page-hero > * {
  position: relative;
  z-index: 1;
}

.light-page-hero,
.light-page-hero h1,
.light-page-hero h2,
.light-page-hero .display-title,
.light-page-hero .section-title,
.blog-page-hero,
.blog-page-hero h1,
.blog-page-hero h2,
.blog-page-hero .display-title {
  color: var(--rhino) !important;
}

.light-page-hero p,
.light-page-hero .body-large,
.light-page-hero [style*="rgba(255, 245, 208"],
.blog-page-hero p,
.blog-page-hero .blog-page-kicker,
.blog-page-hero [style*="rgba(255, 245, 208"] {
  color: rgba(27, 71, 93, .78) !important;
}

.light-page-hero .eyebrow,
.blog-page-hero .eyebrow,
.blog-page-hero .blog-hero-meta,
.blog-page-hero .blog-hero-meta a {
  color: var(--maroon) !important;
}

.light-page-hero [style*="border-left"],
.light-page-hero [style*="border-top"] {
  border-color: rgba(95, 20, 44, .28) !important;
}

.section-paper {
  background: var(--barley);
}

.section-white {
  background: var(--white);
}

.section-naples {
  background: color-mix(in srgb, var(--neptune) 18%, var(--barley));
}

.section-olive {
  background: color-mix(in srgb, var(--neptune) 18%, var(--barley));
}

.section-neptune {
  background: color-mix(in srgb, var(--neptune) 18%, var(--barley));
}

.site-container {
  max-width: 1180px;
  margin: 0 auto;
}

.eyebrow {
  font-size: var(--text-xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--maroon);
  font-weight: 700;
}

.display-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: var(--text-display);
  line-height: .96;
  letter-spacing: 0;
  margin: 22px 0 0;
  text-wrap: balance;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: var(--text-4xl);
  line-height: 1.05;
  letter-spacing: 0;
  margin: 16px 0 0;
  text-wrap: balance;
}

.body-large {
  font-size: var(--text-lg);
  line-height: 1.65;
  color: var(--rhino-soft);
}

.section-dark .body-large {
  color: rgba(255, 245, 208, .86);
}

.gold-btn,
.dark-btn,
.ghost-btn,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 40px;
  min-height: 47px;
  padding: 16.2px 28.8px;
  font: 700 15.3px/1.15 var(--font-body);
  text-decoration: none;
  cursor: pointer;
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

.gold-btn,
.primary-btn {
  background: var(--maroon);
  color: var(--white);
  border: none;
}

.gold-btn:hover,
.primary-btn:hover {
  background: color-mix(in srgb, var(--maroon) 92%, black);
}

.secondary-btn {
  background: transparent;
  color: var(--rhino);
  border: 2px solid var(--rhino);
}

.section-dark .secondary-btn {
  color: var(--barley);
  border-color: var(--naples);
}

.tertiary-link {
  color: var(--maroon);
  font-size: 1.0625rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.whatsapp-btn {
  background: #25D366;
  color: #083f25;
  border: none;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

.site-sidebar,
.site-footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.site-sidebar::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(27, 71, 93, .92), rgba(27, 71, 93, .92)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='2' seed='19'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 .102 0 0 0 0 .180 0 0 0 0 .133 0 0 0 .34 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23grain)' opacity='.22'/%3E%3C/svg%3E");
  opacity: .18;
  mix-blend-mode: screen;
}

.site-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(250, 213, 100, .16), transparent 30%),
    linear-gradient(180deg, var(--white), color-mix(in srgb, var(--barley) 38%, var(--white)));
  color: var(--rhino);
  padding: clamp(56px, 8vw, 92px) clamp(20px, 6vw, 7vw) 44px;
  border-top: 1px solid rgba(27, 71, 93, .12);
}

.site-footer::before {
  display: none;
}

.site-sidebar > *,
.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 1;
}

.footer-logo {
  width: clamp(123.75px, 13.2vw, 189.75px);
  height: auto;
  display: block;
  object-fit: contain;
}

.footer-intro {
  max-width: 330px;
  color: var(--rhino-soft);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin: 18px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(160px, .75fr));
  gap: clamp(32px, 5vw, 68px);
}

.footer-heading {
  font-size: var(--text-xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--maroon);
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 1rem;
}

.footer-link-list a,
.footer-contact a {
  color: var(--rhino);
  text-decoration: none;
}

.footer-link-list a:hover,
.footer-contact a:hover {
  color: var(--maroon);
}

.footer-contact {
  color: var(--rhino-soft);
  font-size: var(--text-sm);
  line-height: 1.8;
}

.footer-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social-row a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(27, 71, 93, .14);
  border-radius: 50%;
  color: var(--rhino);
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(27, 71, 93, .08);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(27, 71, 93, .12);
  margin-top: 46px;
  padding-top: 22px;
  font-size: var(--text-sm);
  color: var(--rhino-soft);
}

.sidebar-brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--white);
}

.sidebar-brand-motif {
  width: 34px;
  color: var(--naples);
  opacity: .7;
  flex: none;
}

.dark-btn {
  background: var(--rhino);
  color: var(--white);
  border: none;
}

.ghost-btn {
  background: transparent;
  color: inherit;
  border: 1px solid rgba(95, 20, 44, .5);
}

.editorial-card {
  border: 1px solid rgba(27, 71, 93, .12);
  border-radius: 4px;
  background: var(--white);
}

.placeholder-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: repeating-linear-gradient(135deg, color-mix(in srgb, var(--naples) 24%, var(--barley)), color-mix(in srgb, var(--naples) 24%, var(--barley)) 11px, color-mix(in srgb, var(--olive) 22%, var(--barley)) 11px, color-mix(in srgb, var(--olive) 22%, var(--barley)) 22px);
  border: 1px solid rgba(27, 71, 93, .18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-photo span {
  font: 14px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .12em;
  color: var(--rhino-soft);
  text-transform: uppercase;
}

.topic-grid,
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(27, 71, 93, .16);
  border: 1px solid rgba(27, 71, 93, .16);
}

.topic-card {
  background: var(--white);
  min-height: 170px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 4px solid var(--axis-accent, transparent);
}

.floating-connect {
  position: fixed;
  right: clamp(16px, 3vw, 26px);
  bottom: clamp(16px, 3vw, 26px);
  z-index: 45;
  width: auto;
  max-width: calc(100vw - 32px);
}

.floating-connect .primary-btn {
  width: auto !important;
  max-width: calc(100vw - 32px);
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .28);
}

.home-floating-connect {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition:
    opacity .34s ease,
    transform .34s ease;
}

.home-floating-connect.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.article-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding: 28px;
  color: var(--rhino);
  text-decoration: none;
  transition:
    border-color .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.article-card:hover {
  border-color: color-mix(in srgb, var(--axis-accent, var(--maroon)) 64%, transparent);
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(27, 71, 93, .08);
}

.article-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 1.6vw, 1.25rem);
  line-height: 1.22;
  margin: 0;
}

.article-card-excerpt {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--rhino-soft);
  margin: 14px 0 0;
}

.article-read-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--maroon);
  font-size: 1.0625rem;
  font-weight: 700;
}

.article-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid color-mix(in srgb, var(--axis-accent, var(--maroon)) 72%, transparent);
  border-radius: 50%;
  color: var(--axis-accent, var(--maroon));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.blog-article-body {
  max-width: 68ch;
  margin: 0 auto;
}

.blog-article-body h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
  margin: 34px 0 0;
}

.blog-article-body p {
  font-size: clamp(1.125rem, 1.2vw, 1.1875rem);
  line-height: 1.7;
  color: var(--rhino-soft);
  margin: 18px 0 0;
}

.blog-article-body a {
  color: var(--maroon);
  font-weight: 600;
  text-decoration-color: color-mix(in srgb, var(--maroon) 42%, transparent);
  text-underline-offset: 4px;
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.learn-axis-section {
  --axis-accent: var(--maroon);
  scroll-margin-top: 90px;
}

.learn-axis-panel {
  border-top: 1px solid color-mix(in srgb, var(--axis-accent) 42%, transparent);
  padding-top: 28px;
  display: grid;
  grid-template-columns: minmax(220px, .7fr) 1.3fr;
  gap: clamp(28px, 5vw, 64px);
}

.learn-hero-intro {
  max-width: 760px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 245, 208, .2);
}

.learn-hero-intro h2 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  line-height: 1.12;
  color: var(--barley);
  margin: 0;
}

.learn-hero-intro p {
  font-size: var(--text-base);
  line-height: 1.65;
  color: rgba(255, 245, 208, .86);
  margin: 16px 0 0;
}

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

.learn-axis-section .eyebrow,
.learn-axis-section .article-arrow,
.learn-axis-section .article-card .eyebrow {
  color: var(--axis-accent);
}

.learn-axis-kicker {
  display: inline-flex;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--axis-accent) 42%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--axis-accent) 13%, var(--white));
  padding: 8px 11px;
}

.learn-axis-section:nth-of-type(5n + 1) { --axis-accent: var(--rhino); }
.learn-axis-section:nth-of-type(5n + 2) { --axis-accent: var(--maroon); }
.learn-axis-section:nth-of-type(5n + 3) { --axis-accent: var(--naples); }
.learn-axis-section:nth-of-type(5n + 4) { --axis-accent: var(--olive); }
.learn-axis-section:nth-of-type(5n + 5) { --axis-accent: var(--neptune); }

.learn-axis-section:nth-of-type(5n + 3),
.learn-axis-section:nth-of-type(5n + 4),
.learn-axis-section:nth-of-type(5n + 5) {
  --axis-accent-ink: var(--rhino);
}

.learn-axis-section:nth-of-type(5n + 3) .learn-axis-kicker,
.learn-axis-section:nth-of-type(5n + 4) .learn-axis-kicker,
.learn-axis-section:nth-of-type(5n + 5) .learn-axis-kicker {
  color: var(--axis-accent-ink);
}

.learn-topic-card:nth-child(5n + 1) { --axis-accent: var(--rhino); }
.learn-topic-card:nth-child(5n + 2) { --axis-accent: var(--maroon); }
.learn-topic-card:nth-child(5n + 3) { --axis-accent: var(--naples); }
.learn-topic-card:nth-child(5n + 4) { --axis-accent: var(--olive); }
.learn-topic-card:nth-child(5n + 5) { --axis-accent: var(--neptune); }

.learn-topic-card .eyebrow {
  color: var(--axis-accent);
}

.blog-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: var(--text-xs);
  color: rgba(255, 245, 208, .72);
}

.blog-hero-meta a {
  color: var(--naples);
  text-decoration: none;
  font-weight: 600;
}

.blog-hero-meta a:hover {
  color: var(--white);
}

.blog-page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(118px, 13vw, 178px) 7vw clamp(68px, 8vw, 110px);
  background: var(--rhino);
  color: var(--barley);
}

.blog-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(250, 213, 100, .17), transparent 31%),
    radial-gradient(circle at 86% 10%, rgba(142, 189, 157, .19), transparent 30%);
  pointer-events: none;
}

.blog-page-hero .site-container {
  position: relative;
  z-index: 1;
}

.blog-page-hero .display-title {
  color: var(--barley);
  max-width: 980px;
}

.blog-page-kicker {
  margin: 28px 0 0;
  color: rgba(255, 245, 208, .82);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.blog-page-main {
  padding: clamp(36px, 5vw, 58px) 7vw clamp(82px, 10vw, 128px);
  background:
    linear-gradient(180deg, var(--barley), var(--white) 52%, var(--barley));
}

.blog-featured-frame {
  overflow: hidden;
  min-height: clamp(240px, 35vw, 460px);
  box-shadow: 0 24px 52px rgba(27, 71, 93, .12);
  margin: 0;
  border-radius: 32px;
  border-color: color-mix(in srgb, var(--maroon) 22%, rgba(27, 71, 93, .18));
}

.blog-featured-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured-placeholder {
  min-height: 360px;
  color: rgba(27, 71, 93, .45);
  box-shadow: 0 24px 52px rgba(27, 71, 93, .12);
}

.blog-page-main .blog-article-body {
  margin-top: clamp(42px, 7vw, 76px);
}

.blog-cta-card {
  position: relative;
  overflow: hidden;
  margin: 72px auto 0;
  max-width: 860px;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(255, 245, 208, .16);
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 10%, rgba(250, 213, 100, .2), transparent 34%),
    var(--rhino);
  color: var(--white);
}

.blog-cta-card .body-large,
.blog-cta-card p {
  color: rgba(255, 245, 208, .74);
}

.blog-related-section {
  margin-top: 72px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(27, 71, 93, .12);
  border-radius: 32px;
  background: color-mix(in srgb, var(--neptune) 18%, var(--barley));
  box-shadow: 0 18px 44px rgba(27, 71, 93, .08);
}

.blog-related-grid .article-card {
  min-height: 190px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .9);
  text-decoration: none;
}

.blog-related-grid .article-card-title {
  font-size: clamp(1.25rem, 2vw, 1.625rem);
}

.accordion-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 24px 0;
  border: 0;
  border-top: 1px solid rgba(27, 71, 93, .16);
  background: transparent;
  color: inherit;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.accordion-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.1;
}

.faq-accordion-list {
  display: grid;
  gap: 14px;
}

.faq-accordion-item {
  border: 1px solid rgba(27, 71, 93, .14);
  border-radius: 6px;
  background: var(--white);
  transition:
    background .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}

.faq-accordion-item.is-open {
  background: color-mix(in srgb, var(--neptune) 24%, var(--barley));
  border-color: color-mix(in srgb, var(--maroon) 34%, rgba(27, 71, 93, .14));
  box-shadow: 0 18px 42px rgba(27, 71, 93, .08);
}

.faq-accordion-button {
  border-top: 0;
  padding: 24px 26px;
}

.faq-accordion-button .accordion-title {
  font-size: clamp(20px, 2vw, 24px);
}

.faq-accordion-icon {
  color: var(--maroon);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(95, 20, 44, .4);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition:
    background .22s ease,
    color .22s ease;
}

.faq-accordion-item.is-open .faq-accordion-icon {
  background: var(--maroon);
  color: var(--white);
}

.faq-answer {
  padding: 0 26px 26px;
}

.faq-answer.is-closed {
  display: none;
}

.faq-answer .body-large {
  margin: 0;
  font-size: var(--text-base);
  line-height: 1.68;
}

.faq-answer .pk-reveal,
.faq-answer .body-large {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.faq-support-section {
  position: relative;
}

.faq-support-grid {
  margin-top: 38px;
}

.faq-support-card {
  --support-accent: var(--maroon);
  min-height: 240px;
  position: relative;
  gap: 20px;
  border-top-color: var(--support-accent);
}

.faq-support-card:nth-child(5n + 1) { --support-accent: var(--maroon); }
.faq-support-card:nth-child(5n + 2) { --support-accent: var(--rhino); }
.faq-support-card:nth-child(5n + 3) { --support-accent: var(--neptune); }
.faq-support-card:nth-child(5n + 4) { --support-accent: var(--olive); }
.faq-support-card:nth-child(5n + 5) { --support-accent: var(--naples); }

.faq-support-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--support-accent) 20%, var(--barley));
}

.faq-support-icon .motif {
  width: 44px;
}

.faq-support-title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  line-height: 1.08;
  color: var(--rhino);
}

.faq-support-copy {
  font-size: var(--text-sm);
  line-height: 1.55;
  color: var(--rhino-soft);
  margin: 0;
}

.faq-context-flag {
  margin-top: 22px;
  max-width: 760px;
  border-left: 4px solid var(--maroon);
  background: color-mix(in srgb, var(--naples) 24%, var(--barley));
  padding: 18px 20px;
  color: var(--rhino);
}

.faq-testimonial-section {
  background: color-mix(in srgb, var(--neptune) 18%, var(--barley));
}

.faq-testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 38px;
}

.faq-testimonial-card {
  position: relative;
  min-width: 0;
  padding: 30px;
  border: 1px solid rgba(27, 71, 93, .14);
  border-top: 4px solid var(--maroon);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(27, 71, 93, .07);
}

.faq-testimonial-quote {
  font-size: clamp(1rem, 1.3vw, 1.0625rem);
  line-height: 1.62;
  color: var(--rhino);
  margin: 0;
}

.faq-testimonial-name {
  margin-top: 20px;
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1.35;
  color: var(--maroon);
}

.faq-cta-band .section-title {
  max-width: 820px;
  color: var(--barley);
}

.faq-cta-band .tertiary-link {
  color: var(--naples);
}

.consultation-flow-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 44px;
}

.consultation-flow-card {
  position: relative;
  min-height: 240px;
  padding: 30px;
  overflow: visible;
  border-color: color-mix(in srgb, var(--olive) 38%, rgba(27, 71, 93, .12));
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--white) 86%, var(--barley)), color-mix(in srgb, var(--neptune) 12%, var(--white)));
}

.consultation-flow-card::after {
  content: "";
  position: absolute;
  left: 30px;
  bottom: -10px;
  width: 2px;
  height: 28px;
  background: linear-gradient(90deg, var(--olive), var(--rhino));
  opacity: .55;
}

.consultation-flow-card:last-child::after {
  display: none;
}

.consultation-flow-number {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.4vw, 2.25rem);
  font-weight: 650;
  color: var(--maroon);
  line-height: 1;
}

.consultation-flow-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  line-height: 1.14;
  margin: 22px 0 0;
  color: var(--rhino);
}

.consultation-flow-copy {
  font-size: var(--text-base);
  line-height: 1.58;
  color: var(--rhino-soft);
  margin: 12px 0 0;
}

.consultation-followup-list {
  display: grid;
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.consultation-followup-list li {
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--rhino);
  padding: 16px 18px;
  background: var(--white);
  border-left: 3px solid var(--maroon);
}

.consultation-contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.consultation-contact-list a,
.consultation-contact-list span {
  color: var(--rhino);
  font-size: var(--text-base);
  line-height: 1.5;
}
.route-subnav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px 7vw;
  background: rgba(255, 245, 208, .94);
  border-bottom: 1px solid rgba(27, 71, 93, .12);
  backdrop-filter: blur(12px);
}

.route-subnav a {
  flex: none;
  color: var(--rhino);
  text-decoration: none;
  border: 1px solid rgba(27, 71, 93, .14);
  border-radius: 40px;
  padding: 10px 14px;
  font-size: var(--text-xs);
  font-weight: 600;
}

.motif {
  display: inline-block;
  width: var(--motif-size, 96px);
  height: auto;
  color: inherit;
  --motif-line: var(--rhino);
  --motif-stem: var(--olive);
  --motif-leaf: var(--neptune);
  --motif-fill: color-mix(in srgb, var(--naples) 50%, var(--barley));
  --motif-accent: var(--maroon);
  --motif-warm: var(--naples);
  --motif-root: color-mix(in srgb, var(--maroon) 48%, var(--rhino));
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.motif path:not([class]),
.motif circle:not([class]),
.motif ellipse:not([class]),
.motif line:not([class]),
.motif polyline:not([class]) {
  fill: none;
  stroke: currentColor;
  stroke-width: inherit;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.motif-color-field {
  --motif-line: var(--rhino);
  --motif-stem: var(--olive);
  --motif-leaf: var(--neptune);
  --motif-fill: color-mix(in srgb, var(--neptune) 42%, var(--barley));
  --motif-accent: var(--naples);
  --motif-warm: var(--olive);
  --motif-root: color-mix(in srgb, var(--olive) 58%, var(--rhino));
}

.motif-color-rasayana {
  --motif-line: var(--rhino);
  --motif-stem: color-mix(in srgb, var(--olive) 72%, var(--rhino));
  --motif-leaf: color-mix(in srgb, var(--neptune) 72%, var(--barley));
  --motif-fill: color-mix(in srgb, var(--naples) 62%, var(--barley));
  --motif-accent: var(--maroon);
  --motif-warm: var(--naples);
  --motif-root: color-mix(in srgb, var(--maroon) 58%, var(--rhino));
}

.motif-color-rhino {
  --motif-line: var(--rhino);
  --motif-stem: color-mix(in srgb, var(--rhino) 68%, var(--olive));
  --motif-leaf: color-mix(in srgb, var(--rhino) 48%, var(--neptune));
  --motif-fill: color-mix(in srgb, var(--barley) 72%, var(--white));
  --motif-accent: var(--maroon);
  --motif-warm: color-mix(in srgb, var(--naples) 58%, var(--barley));
  --motif-root: var(--rhino);
}

.motif .motif-line,
.motif .motif-stem,
.motif .motif-vein,
.motif .motif-root-line {
  fill: none;
}

.motif .motif-line {
  stroke: var(--motif-line);
}

.motif .motif-stem {
  stroke: var(--motif-stem);
}

.motif .motif-vein {
  stroke: var(--motif-accent);
  opacity: .72;
}

.motif .motif-root-line {
  stroke: var(--motif-root);
}

.motif .motif-leaf {
  fill: var(--motif-leaf);
  stroke: var(--motif-line);
}

.motif .motif-fill {
  fill: var(--motif-fill);
  stroke: var(--motif-line);
}

.motif .motif-accent {
  fill: var(--motif-accent);
  stroke: var(--motif-line);
}

.motif .motif-warm {
  fill: var(--motif-warm);
  stroke: var(--motif-line);
}

.motif-sm { --motif-size: 50px; }
.motif-md { --motif-size: 86px; }
.motif-lg { --motif-size: 128px; }
.motif-xl { --motif-size: 190px; }

.motif-divider {
  max-width: min(100%, var(--motif-size, 190px));
}

.four-pillars-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, .78fr);
  gap: clamp(44px, 6vw, 76px);
  align-items: center;
  margin-top: 56px;
}

.four-pillars-visual {
  display: flex;
  justify-content: center;
  padding: clamp(22px, 4vw, 42px);
}

.four-pillars-mandala {
  position: relative;
  width: min(680px, 92vw);
  aspect-ratio: 1;
  border-radius: 50%;
  isolation: isolate;
}

.four-pillars-art {
  position: absolute;
  inset: 0;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(255, 245, 208, .82), rgba(255, 245, 208, .18) 64%, rgba(95, 20, 44, .12)),
    color-mix(in srgb, var(--neptune) 28%, var(--barley));
  box-shadow:
    0 28px 80px rgba(27, 71, 93, .16),
    inset 0 0 0 1px rgba(95, 20, 44, .2);
  animation: pk-mandala-breathe 9s ease-in-out infinite;
}

.four-pillars-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.03);
}

.four-pillars-mandala::after {
  content: "";
  position: absolute;
  inset: 12%;
  z-index: 1;
  border-radius: 50%;
  border: 1px solid rgba(95, 20, 44, .18);
  background: radial-gradient(circle at center, rgba(255, 245, 208, .62), rgba(255, 245, 208, .18) 68%, transparent 69%);
  pointer-events: none;
}

.four-pillars-center,
.four-pillars-label,
.four-pillars-node {
  position: absolute;
  z-index: 2;
}

.four-pillars-center {
  left: 50%;
  top: 50%;
  width: clamp(126px, 22%, 170px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  background: rgba(255, 245, 208, .82);
  border: 1px solid rgba(95, 20, 44, .22);
  box-shadow: 0 18px 42px rgba(27, 71, 93, .16);
  backdrop-filter: blur(3px);
}

.four-pillars-center strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: .92;
  color: var(--rhino);
  font-weight: 400;
}

.four-pillars-center em {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1;
  color: var(--maroon);
  font-style: italic;
  font-weight: 300;
  margin-top: 4px;
}

.four-pillars-label {
  width: clamp(136px, 20vw, 210px);
  margin: 0;
  padding: 9px 11px;
  border-radius: 999px;
  background: rgba(255, 245, 208, .86);
  border: 1px solid rgba(27, 71, 93, .12);
  color: var(--rhino);
  font-size: var(--text-xs);
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 0 14px 34px rgba(27, 71, 93, .1);
  backdrop-filter: blur(3px);
}

.four-pillars-label--top {
  left: 50%;
  top: 4%;
  transform: translate(-50%, -50%);
}

.four-pillars-label--right {
  right: -5%;
  top: 50%;
  transform: translate(0, -50%);
}

.four-pillars-label--bottom {
  left: 50%;
  bottom: 1%;
  transform: translate(-50%, 50%);
}

.four-pillars-label--left {
  left: -5%;
  top: 50%;
  transform: translate(0, -50%);
}

.four-pillars-node {
  width: clamp(118px, 20%, 152px);
  min-height: clamp(84px, 13vw, 112px);
  padding: 13px 14px;
  border: 1px solid rgba(27, 71, 93, .16);
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  color: var(--rhino);
  font-family: var(--font-body);
  font-size: clamp(var(--text-xs), 1vw, var(--text-sm));
  font-weight: 600;
  line-height: 1.16;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(27, 71, 93, .12);
  backdrop-filter: blur(5px);
  transition:
    background .24s ease,
    border-color .24s ease,
    box-shadow .24s ease,
    color .24s ease,
    transform .24s ease;
}

.four-pillars-node:hover {
  transform: translate(-50%, -50%) scale(1.03);
  border-color: rgba(95, 20, 44, .34);
}

.four-pillars-node.is-active {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(95, 20, 44, .28);
}

.four-pillars-node--one {
  left: 25%;
  top: 27%;
  transform: translate(-50%, -50%);
}

.four-pillars-node--two {
  left: 75%;
  top: 27%;
  transform: translate(-50%, -50%);
}

.four-pillars-node--three {
  left: 75%;
  top: 73%;
  transform: translate(-50%, -50%);
}

.four-pillars-node--four {
  left: 25%;
  top: 73%;
  transform: translate(-50%, -50%);
}

@keyframes pk-mandala-breathe {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.018) rotate(.45deg);
  }
}

@media (max-width: 980px) {
  .four-pillars-layout {
    grid-template-columns: 1fr;
  }

  .four-pillars-mandala {
    width: min(640px, 92vw);
  }
}

@media (max-width: 680px) {
  .four-pillars-visual {
    padding: 8px 0 0;
  }

  .four-pillars-mandala {
    width: min(520px, 90vw);
  }

  .four-pillars-label {
    width: clamp(118px, 31vw, 152px);
    padding: 7px 8px;
    font-size: var(--text-xs);
    letter-spacing: .05em;
    line-height: 1.16;
  }

  .four-pillars-label--top {
    top: 3%;
  }

  .four-pillars-label--right {
    right: 1%;
  }

  .four-pillars-label--bottom {
    bottom: 0;
  }

  .four-pillars-label--left {
    left: 1%;
  }

  .four-pillars-node {
    width: clamp(94px, 27vw, 124px);
    min-height: 72px;
    padding: 9px 8px;
    border-radius: 12px;
    font-size: var(--text-xs);
    line-height: 1.12;
  }

  .four-pillars-node:hover {
    transform: translate(-50%, -50%);
  }

  .four-pillars-center {
    width: 34%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .four-pillars-art {
    animation: none;
  }
}

.ambient-loop {
  position: relative;
  display: block;
  width: var(--loop-size, 96px);
  aspect-ratio: var(--loop-ratio, 1);
  overflow: hidden;
  border-radius: var(--loop-radius, 999px);
  pointer-events: none;
  isolation: isolate;
}

.ambient-loop::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 38% 34%, rgba(250, 213, 100, .62), transparent 34%),
    radial-gradient(circle at 68% 66%, rgba(142, 189, 157, .5), transparent 38%),
    rgba(255, 245, 208, .22);
  border: 1px solid rgba(95, 20, 44, .14);
  animation: pk-ambient-placeholder 4.8s ease-in-out infinite;
}

.ambient-loop video,
.ambient-loop img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0;
  transition: opacity .35s ease;
}

.ambient-loop.is-loop-ready video,
.ambient-loop.is-loop-ready img {
  opacity: 1;
}

.ambient-loop.is-loop-ready::before {
  opacity: 0;
}

.ambient-loop__label {
  position: absolute;
  inset: auto 10px 10px;
  z-index: 2;
  color: var(--rhino);
  font-size: var(--text-xs);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
  opacity: .62;
}

.ambient-loop--small {
  --loop-size: clamp(74px, 8vw, 118px);
}

.ambient-loop--leaf {
  --loop-ratio: 1 / 1.18;
  --loop-radius: 48% 52% 44% 56%;
}

.ambient-loop--center-glow {
  --loop-size: 118%;
  position: absolute;
  inset: -9%;
  width: auto;
  z-index: -1;
  opacity: .78;
  mix-blend-mode: screen;
}

.ambient-loop--signature {
  --loop-size: auto;
  position: absolute;
  inset: -4%;
  z-index: 1;
  width: auto;
  opacity: .72;
  mix-blend-mode: screen;
}

.ambient-loop--steam {
  --loop-size: clamp(86px, 9vw, 132px);
  --loop-ratio: 4 / 5;
  --loop-radius: 44% 56% 48% 52%;
}

.ambient-loop--ripple,
.ambient-loop--stats,
.ambient-loop--book-glow {
  --loop-radius: 50%;
}

.ambient-loop--ripple {
  --loop-size: clamp(120px, 16vw, 190px);
}

.ambient-loop--stats {
  --loop-size: min(420px, 76vw);
  position: absolute;
  left: 50%;
  top: 58%;
  z-index: 0;
  transform: translate(-50%, -50%);
  opacity: .36;
  filter: blur(.2px);
}

.ambient-loop--book-glow {
  --loop-size: 122%;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  transform: translate(-50%, -50%);
  opacity: .62;
  mix-blend-mode: screen;
}

.value-prop-heading-wrap {
  display: inline-flex;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
}

.book-cover-loop-wrap,
.book-page-cover-loop-wrap,
.shodhan-loop-wrap {
  position: relative;
}

.book-cover-loop-wrap .ambient-loop--steam {
  position: absolute;
  right: clamp(-38px, -3vw, -18px);
  top: auto;
  bottom: clamp(-28px, -3vw, -14px);
  z-index: 3;
}

.book-cover-loop-wrap .ambient-loop--book-glow {
  z-index: 0;
}

.book-cover-loop-wrap .real-image-frame {
  position: relative;
  z-index: 1;
}

.shodhan-loop-wrap .ambient-loop--ripple {
  position: absolute;
  right: clamp(-26px, -3vw, -12px);
  bottom: clamp(-28px, -3vw, -14px);
  z-index: 2;
}

.book-page-cover-loop-wrap .real-image-frame,
.about-stats-grid {
  position: relative;
  z-index: 1;
}

@keyframes pk-ambient-placeholder {
  0%, 100% {
    transform: scale(1);
    opacity: .66;
  }
  50% {
    transform: scale(1.05);
    opacity: .94;
  }
}

.home-value-section {
  background:
    radial-gradient(circle at 88% 16%, color-mix(in srgb, var(--naples) 34%, transparent) 0 18%, transparent 38%),
    linear-gradient(135deg, color-mix(in srgb, var(--neptune) 36%, var(--barley)), color-mix(in srgb, var(--barley) 78%, var(--olive)));
  color: var(--rhino);
}

.home-value-section .real-image-frame {
  border: 1px solid rgba(27, 71, 93, .16);
  box-shadow: 0 24px 52px rgba(27, 71, 93, .16) !important;
}

.home-book-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 245, 208, .16);
}

.home-book-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 18%, rgba(250, 213, 100, .22), transparent 26%),
    radial-gradient(circle at 86% 82%, rgba(142, 189, 157, .18), transparent 32%);
}

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

.home-gut-grid,
.home-program-grid,
.home-testimonial-grid {
  width: 100%;
}

.home-gut-card {
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.home-gut-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(27, 71, 93, .1);
}

.home-gut-card-motif {
  --motif-size: 54px;
  margin-bottom: 22px;
}

.home-program-card {
  border: 1px solid rgba(255, 245, 208, .08);
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.home-program-card:hover {
  border-color: rgba(250, 213, 100, .46);
  transform: translateY(-2px);
}

.home-program-card .home-card-flourish {
  opacity: .34;
}

.home-testimonial-card {
  min-width: 0;
}

.home-testimonial-card .home-card-flourish {
  opacity: .28 !important;
}

.home-testimonial-paper {
  position: relative;
  padding: 42px 40px;
  min-width: 0;
  min-height: 374px;
  display: flex;
  flex-direction: column;
}

.home-testimonial-section {
  overflow: visible;
  background: var(--white);
  color: var(--rhino);
}

.home-testimonial-heading {
  text-align: center;
}

.home-testimonial-heading .section-title {
  max-width: 900px;
  margin-inline: auto;
}

.home-testimonial-marquee {
  --testimonial-card-width: clamp(360px, 32vw, 480px);
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: clamp(34px, 4vw, 54px);
  overflow: visible;
}

.home-testimonial-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-block: 54px;
  margin-block: -54px;
  scrollbar-width: none;
}

.home-testimonial-viewport::-webkit-scrollbar {
  display: none;
}

.home-testimonial-track {
  display: flex;
  gap: 30px;
  width: max-content;
  padding-inline: clamp(20px, 6vw, 7vw);
  will-change: transform;
}

.home-testimonial-card-v2 {
  position: relative;
  flex: 0 0 var(--testimonial-card-width);
  min-height: 390px;
  padding: 8px;
}

.home-testimonial-card-v2 .home-card-flourish {
  top: 28px;
  right: 30px;
  z-index: 2;
  opacity: .28 !important;
}

.home-testimonial-paper-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 22px 30px rgba(27, 71, 93, .08));
  pointer-events: none;
}

.testimonial-meta {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--maroon);
}

.testimonial-rule {
  width: 36px;
  height: 1px;
  margin: 16px 0 20px;
  background: var(--maroon);
}

.home-testimonial-card-v2 p {
  margin: 0;
  color: var(--rhino);
  font-family: var(--font-heading);
  font-size: clamp(1.12rem, 1.25vw, 1.35rem);
  line-height: 1.45;
}

.testimonial-person {
  margin-top: auto;
  padding-top: clamp(34px, 4vw, 58px);
}

.testimonial-person span {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--rhino);
}

.testimonial-person small {
  display: block;
  margin-top: 8px;
  color: var(--rhino-soft);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.home-testimonial-fade {
  position: absolute;
  top: -54px;
  bottom: -54px;
  z-index: 8;
  width: min(18vw, 240px);
  pointer-events: none;
}

.home-testimonial-fade--left {
  left: 0;
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0));
}

.home-testimonial-fade--right {
  right: 0;
  background: linear-gradient(270deg, var(--white), rgba(255, 255, 255, 0));
}

.home-testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.testimonial-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(27, 71, 93, .14);
  border-radius: 50%;
  background: var(--white);
  color: var(--rhino);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(27, 71, 93, .1);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, color .2s ease;
}

.testimonial-arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(95, 20, 44, .28);
  color: var(--maroon);
}

.home-featured-strip.is-hidden,
.home-featured-strip[hidden] {
  display: none !important;
}

@media (max-width: 767px) {
  .value-prop-heading-wrap {
    display: grid;
    grid-template-columns: 1fr;
  }

  .book-cover-loop-wrap .ambient-loop--steam {
    right: -20px;
    top: auto;
    bottom: -18px;
  }

  .book-cover-loop-wrap .ambient-loop--book-glow {
    --loop-size: 112%;
  }

  .shodhan-loop-wrap .ambient-loop--ripple {
    right: 8px;
    bottom: 8px;
  }

  .home-value-section,
  .home-book-section,
  .home-gut-section,
  .home-program-section,
  .home-testimonial-section {
    padding-left: 6vw !important;
    padding-right: 6vw !important;
  }

  .home-value-section {
    margin-top: -6vh !important;
    padding-top: 84px !important;
    padding-bottom: 84px !important;
  }

  .home-value-section .real-image-frame {
    width: 100% !important;
    min-height: 220px !important;
  }

  .home-book-panel {
    padding: 30px !important;
    gap: 34px !important;
  }

  .home-gut-grid,
  .home-program-grid,
  .home-testimonial-grid {
    grid-template-columns: 1fr !important;
  }

  .home-testimonial-paper {
    padding: 34px 28px;
  }

  .home-testimonial-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .home-testimonial-marquee {
    --testimonial-card-width: min(82vw, 330px);
  }

  .home-testimonial-heading {
    padding-inline: 6vw;
  }

  .home-testimonial-card-v2 {
    flex-basis: var(--testimonial-card-width);
    min-height: 360px;
  }

  .home-testimonial-fade {
    width: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-loop {
    display: none !important;
  }
}

.photo-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px dashed currentColor;
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 245, 208, .08), rgba(255, 255, 255, .28)),
    repeating-linear-gradient(135deg, rgba(27, 71, 93, .08) 0 8px, transparent 8px 18px);
  color: inherit;
}

.photo-placeholder::after {
  content: attr(data-photo);
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: 6px 9px;
  border-radius: 2px;
  background: rgba(255, 245, 208, .82);
  color: var(--rhino);
  font: 600 14px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.photo-placeholder--portrait {
  aspect-ratio: 2 / 3;
}

.photo-placeholder--landscape {
  aspect-ratio: 4 / 3;
}

.photo-placeholder--wide {
  aspect-ratio: 16 / 10;
}

.photo-placeholder--circle {
  aspect-ratio: 1;
  border-radius: 50%;
}

.real-image-frame {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(27, 71, 93, .08);
  isolation: isolate;
}

.real-image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.real-image-frame--portrait { aspect-ratio: 2 / 3; }
.real-image-frame--landscape { aspect-ratio: 4 / 3; }
.real-image-frame--wide { aspect-ratio: 16 / 10; }
.real-image-frame--circle {
  aspect-ratio: 1;
  border-radius: 50%;
}

.home-motif-accent {
  position: absolute;
  pointer-events: none;
  color: currentColor;
  opacity: .72;
}

.home-card-flourish {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  color: currentColor;
  opacity: .22;
  pointer-events: none;
}

.home-program-card:nth-child(2n) .home-card-flourish {
  transform: rotate(90deg);
}

.home-program-card:nth-child(3n) .home-card-flourish {
  transform: rotate(180deg);
}

.home-program-card:nth-child(4n) .home-card-flourish {
  transform: rotate(270deg);
}

.hero-static-poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(250, 213, 100, .26), transparent 30%),
    radial-gradient(circle at 82% 34%, rgba(142, 189, 157, .22), transparent 36%),
    radial-gradient(circle at 52% 82%, rgba(255, 245, 208, .34), transparent 42%),
    var(--white);
}

.hero-static-poster::before,
.hero-static-poster::after {
  content: none;
}

.hero-cta-row,
.home-book-actions,
.home-final-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.hero-cta-row .primary-btn,
.hero-cta-row .secondary-btn {
  min-height: 47px;
  padding-top: 14.2px;
  padding-bottom: 14.2px;
  border: 2px solid currentColor;
  box-sizing: border-box;
}

.hero-cta-row .primary-btn {
  border-color: var(--maroon);
}

.home-founder-strip {
  position: relative;
  z-index: 3;
  margin-top: -12vh;
  background: var(--barley);
}

.home-founder-grid,
.framework-layout,
.home-book-panel-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.home-founder-tree {
  position: relative;
  min-height: 280px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 36%, rgba(142, 189, 157, .42), transparent 34%),
    radial-gradient(circle at 48% 70%, rgba(250, 213, 100, .36), transparent 34%),
    color-mix(in srgb, var(--neptune) 18%, var(--barley));
  overflow: hidden;
}

.home-founder-tree__trunk,
.home-founder-tree__canopy,
.home-founder-tree__roots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.home-founder-tree__trunk {
  top: 38%;
  width: 18px;
  height: 112px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--maroon) 56%, var(--rhino));
}

.home-founder-tree__canopy {
  top: 17%;
  width: 170px;
  height: 128px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 46%, var(--olive) 0 26%, transparent 27%),
    radial-gradient(circle at 58% 38%, var(--neptune) 0 34%, transparent 35%),
    radial-gradient(circle at 70% 66%, var(--naples) 0 22%, transparent 23%);
  border: 1px solid rgba(27, 71, 93, .14);
}

.home-founder-tree__roots {
  bottom: 18%;
  width: 180px;
  height: 70px;
  border-bottom: 2px solid rgba(95, 20, 44, .4);
  border-radius: 0 0 50% 50%;
}

.five-elements-heading {
  display: grid;
  gap: 18px;
}

.five-elements-heading .body-large {
  max-width: 560px;
  margin: 0;
}

.five-elements-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(34px, 4vw, 52px);
}

.five-element-card {
  --element-bg: var(--white);
  --element-glow: rgba(250, 213, 100, .272);
  --element-ink: var(--rhino);
  --element-muted: var(--rhino-soft);
  --element-border: rgba(27, 71, 93, .12);
  position: relative;
  min-height: 250px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--element-border);
  border-radius: clamp(21px, 2.4vw, 27px);
  background: var(--element-bg);
  color: var(--element-ink);
  box-shadow: 0 22px 58px rgba(27, 71, 93, .08);
  isolation: isolate;
  transition:
    transform .26s ease,
    box-shadow .26s ease,
    border-color .26s ease;
}

.five-element-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at calc(100% - 52px) 56px, var(--element-glow), transparent 30%);
  transition: opacity .32s ease;
}

.five-element-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--element-ink) 30%, var(--element-border));
  box-shadow: 0 30px 70px rgba(27, 71, 93, .12);
}

.five-element-card:hover::before {
  opacity: 1;
}

.five-element-card--earth {
  --element-glow: rgba(180, 189, 98, .336);
}

.five-element-card--water {
  --element-glow: rgba(142, 189, 157, .352);
}

.five-element-card--fire {
  --element-glow: rgba(250, 213, 100, .304);
}

.five-element-card--air {
  --element-glow: rgba(180, 189, 98, .272);
}

.five-element-card--ether {
  --element-glow: rgba(142, 189, 157, .32);
}

.five-element-image {
  position: absolute;
  top: clamp(-8px, -.5vw, 0px);
  right: clamp(-8px, -.5vw, 0px);
  width: min(42vw, 168px);
  aspect-ratio: 1;
  display: block;
  opacity: .92;
  z-index: 0;
  transition:
    transform .35s ease,
    opacity .35s ease;
}

.five-element-card:hover .five-element-image {
  transform: translateY(-7px) scale(1.045);
  opacity: 1;
}

.five-element-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(27, 71, 93, .16));
}

.five-element-copy {
  position: relative;
  z-index: 1;
  max-width: 310px;
}

.five-element-card .five-element-copy,
.five-element-card:not(.five-element-card--feature) .five-element-copy {
  max-width: min(230px, 72%);
}

.five-element-kicker {
  display: inline-flex;
  margin-bottom: 11px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--element-ink) 76%, var(--maroon));
}

.five-element-copy h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 430;
  line-height: .98;
  color: var(--element-ink);
}

.five-element-copy p {
  margin: 14px 0 0;
  max-width: 26ch;
  color: var(--element-muted);
  font-size: clamp(.98rem, 1vw, 1.0625rem);
  line-height: 1.52;
}

.home-poem-section {
  min-height: 220vh;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--white);
  position: relative;
  overflow: clip;
}

.home-poem-stage {
  min-height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: none;
  padding-block: clamp(86px, 10vh, 132px);
  isolation: isolate;
}

.home-poem {
  max-width: min(56vw, 960px);
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-heading);
  color: var(--rhino);
  position: relative;
  z-index: 2;
}

.home-poem h2 {
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  font-weight: 520;
  line-height: 1.06;
  margin: 0 0 clamp(28px, 4vw, 48px);
  color: var(--maroon);
}

.home-poem p {
  margin: clamp(16px, 2.2vw, 24px) 0 0;
  font-size: clamp(1.45rem, 2.4vw, 2.7rem);
  line-height: 1.25;
  font-weight: 440;
  text-wrap: balance;
}

.home-poem-line {
  opacity: var(--poem-opacity, .18);
  transform: translateY(var(--poem-shift, 12px));
  filter: blur(var(--poem-blur, 2.5px));
  transition:
    opacity .36s ease,
    transform .36s ease,
    filter .36s ease;
  will-change: opacity, transform, filter;
}

.home-poem-line.is-poem-active {
  --poem-opacity: 1;
  --poem-shift: 0;
  --poem-blur: 0;
}

.home-poem-line.is-poem-past {
  --poem-opacity: .44;
  --poem-shift: 0;
  --poem-blur: 0;
}

.home-poem-character {
  position: absolute;
  width: clamp(112px, 10vw, 188px);
  aspect-ratio: 1;
  z-index: 1;
  opacity: 0;
  transform: translateY(18px) scale(.94);
  filter: blur(8px);
  transition:
    opacity .48s ease,
    transform .48s ease,
    filter .48s ease;
  pointer-events: none;
}

.home-poem-character.is-poem-character-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.home-poem-character img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 22px 44px rgba(27, 71, 93, .1));
}

.home-poem-character--left {
  left: clamp(18px, 4vw, 96px);
}

.home-poem-character--right {
  right: clamp(18px, 4vw, 96px);
}

.home-poem-character--one { top: 20%; }
.home-poem-character--two { top: 24%; }
.home-poem-character--three { top: 43%; }
.home-poem-character--four { top: 56%; }
.home-poem-character--five { bottom: 9%; }

@keyframes prokriya-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.illustration-float.is-poem-character-active {
  animation: prokriya-float 5s ease-in-out infinite;
}

.illustration-float--delay-1 { animation-delay: -1.2s; }
.illustration-float--delay-2 { animation-delay: -2.6s; }
.illustration-float--delay-3 { animation-delay: -3.8s; }

@media (prefers-reduced-motion: reduce) {
  .home-poem-section {
    min-height: auto;
  }

  .home-poem-stage {
    position: relative;
  }

  .home-poem-line {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .illustration-float,
  .illustration-float--delay-1,
  .illustration-float--delay-2,
  .illustration-float--delay-3 {
    animation: none !important;
  }
}

.framework-section {
  background: var(--white);
  overflow: clip;
}

.framework-intro {
  max-width: 1040px;
}

.framework-intro .body-large {
  max-width: 760px;
}

.framework-journey {
  --framework-line: rgba(27, 71, 93, .2);
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(36px, 5vw, 62px);
}

.framework-journey::before {
  display: none;
}

.framework-journey-step {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 11px;
  padding-top: 62px;
}

.framework-journey-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 60px;
  right: calc(-18px - 60px);
  top: 30px;
  height: 2px;
  background: var(--framework-line);
  z-index: 0;
}

.framework-journey-step span {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(95, 20, 44, .2);
  border-radius: 50%;
  background: var(--white);
  color: var(--maroon);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  box-shadow: 0 18px 44px rgba(27, 71, 93, .08);
  z-index: 2;
}

.framework-journey-step h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.6vw, 2.75rem);
  font-weight: 430;
  line-height: 1;
  color: var(--rhino);
}

.framework-journey-step p {
  margin: 0;
  max-width: 25ch;
  color: var(--rhino-soft);
  font-size: .98rem;
  line-height: 1.55;
}

.framework-layout {
  margin-top: clamp(32px, 4vw, 52px);
  align-items: stretch;
}

.framework-mandala-panel {
  position: relative;
  min-height: 0;
  height: min(680px, calc(100vh - 150px));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: clamp(22px, 2.7vw, 36px);
  border: 1px solid rgba(27, 71, 93, .12);
  border-radius: clamp(26px, 3vw, 38px);
  background:
    radial-gradient(circle at 51% 43%, rgba(250, 213, 100, .22), transparent 30%),
    radial-gradient(circle at 48% 36%, rgba(142, 189, 157, .18), transparent 28%),
    var(--white);
  box-shadow: 0 28px 82px rgba(27, 71, 93, .08);
}

.framework-mandala-panel--image {
  min-height: 0;
  height: auto;
  aspect-ratio: 1048 / 1070;
  display: grid;
  place-items: center;
  padding: clamp(12px, 2vw, 22px);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.framework-mandala-panel--image > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: clamp(18px, 2vw, 28px);
}

.framework-mandala-orbit {
  position: absolute;
  inset: clamp(-18px, -1vw, -6px) clamp(10px, 2vw, 34px) auto;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  opacity: .72;
  transform: translateY(-5%);
}

.framework-mandala-orbit::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 245, 208, .42), rgba(142, 189, 157, .14) 48%, transparent 70%);
  filter: blur(2px);
}

.framework-mandala-orbit img {
  position: relative;
  z-index: 1;
  width: min(74%, 370px);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 30px 52px rgba(27, 71, 93, .1));
}

.framework-mandala-copy {
  position: relative;
  z-index: 2;
  max-width: 460px;
  margin-top: auto;
  padding-top: clamp(24px, 4vw, 54px);
}

.framework-mandala-copy h3 {
  margin: 12px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 2.45vw, 2.55rem);
  font-weight: 430;
  line-height: .98;
  color: var(--rhino);
}

.framework-mandala-copy p {
  margin: 14px 0 0;
  color: var(--rhino-soft);
  font-size: .95rem;
  line-height: 1.55;
}

.framework-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  grid-auto-rows: minmax(0, 1fr);
  height: min(680px, calc(100vh - 150px));
}

.framework-node,
.framework-pillar-card {
  position: relative;
  display: flex;
  min-height: 0;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  width: auto;
  margin: 0;
  padding: clamp(20px, 2.4vw, 28px);
  overflow: hidden;
  border: 1px solid rgba(27, 71, 93, .12);
  border-radius: clamp(22px, 2.4vw, 30px);
  background: var(--white);
  color: var(--rhino);
  text-align: left;
  font-family: var(--font-body);
  cursor: pointer;
  box-shadow: 0 18px 54px rgba(27, 71, 93, .07);
  transition:
    transform .28s ease,
    border-color .28s ease,
    box-shadow .28s ease;
}

.framework-pillar-card::before {
  content: "";
  position: absolute;
  inset: auto -22% -42% 18%;
  height: 62%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 213, 100, .22), transparent 70%);
  opacity: 0;
  transition: opacity .3s ease;
}

.framework-pillar-card:hover,
.framework-pillar-card:focus-visible,
.framework-pillar-card.is-active {
  transform: translateY(-5px);
  border-color: rgba(95, 20, 44, .26);
  box-shadow: 0 28px 74px rgba(27, 71, 93, .12);
}

.framework-pillar-card:hover::before,
.framework-pillar-card:focus-visible::before,
.framework-pillar-card.is-active::before {
  opacity: 1;
}

.framework-pillar-number {
  display: block;
  color: color-mix(in srgb, var(--white) 82%, var(--rhino));
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  line-height: .9;
  letter-spacing: -.02em;
  text-shadow:
    1px 1px 1px rgba(255, 255, 255, .95),
    -1px -1px 1px rgba(27, 71, 93, .16),
    0 10px 22px rgba(27, 71, 93, .05);
}

.framework-pillar-title {
  display: block;
  max-width: 100%;
  margin-top: clamp(42px, 5.6vw, 72px);
  font-family: var(--font-heading);
  font-size: clamp(.9rem, 1.08vw, 1.18rem);
  font-weight: 430;
  line-height: 1.12;
  color: var(--rhino);
  text-wrap: balance;
}

.framework-pillar-copy {
  display: none;
  max-width: 27ch;
  margin-top: auto;
  padding-top: clamp(16px, 2vw, 24px);
  color: var(--rhino-soft);
  font-size: .9rem;
  line-height: 1.52;
}

.framework-pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--maroon);
  font-size: .84rem;
  font-weight: 700;
}

.framework-pillar-link::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  transform-origin: left center;
  transition: transform .22s ease;
}

.framework-pillar-card:hover .framework-pillar-link::after,
.framework-pillar-card:focus-visible .framework-pillar-link::after {
  transform: scaleX(1.35);
}

.framework-modal[hidden],
.framework-modal[aria-hidden="true"] {
  display: none;
}

.framework-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: 22px;
}

.framework-modal.is-open {
  display: grid;
}

.framework-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(10, 22, 30, .34);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
}

.framework-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(255, 245, 208, .72)),
    rgba(255, 255, 255, .76);
  box-shadow: 0 36px 100px rgba(10, 22, 30, .22);
  backdrop-filter: blur(28px) saturate(1.15);
  -webkit-backdrop-filter: blur(28px) saturate(1.15);
}

.framework-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(27, 71, 93, .12);
  border-radius: 50%;
  background: rgba(255, 255, 255, .74);
  color: var(--rhino);
  cursor: pointer;
}

.framework-accordion {
  margin: 0;
}

.framework-accordion h3 {
  margin: 12px 0 0;
  padding-right: 42px;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.6vw, 4.1rem);
  font-weight: 430;
  line-height: .98;
  color: var(--rhino);
}

.framework-accordion p {
  margin: 18px 0 0;
  color: var(--rhino-soft);
  font-size: 1.08rem;
  line-height: 1.65;
}

.framework-accordion ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.framework-accordion li {
  position: relative;
  padding-left: 28px;
  color: var(--rhino);
  font-size: .98rem;
  line-height: 1.5;
}

.framework-accordion li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--naples) 80%, var(--maroon));
  box-shadow: 0 0 0 5px rgba(250, 213, 100, .18);
}

.home-rootcause-band {
  position: relative;
  min-height: clamp(520px, 62vw, 720px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--rhino);
}

.home-rootcause-band .pk-reveal,
.home-rootcause-band .eyebrow,
.home-rootcause-band .section-title,
.home-rootcause-band .body-large {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.home-rootcause-photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(62%, 860px);
  height: 100%;
  margin: 0;
}

.home-rootcause-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-rootcause-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--rhino), rgba(27, 71, 93, .42));
}

.home-rootcause-panel {
  position: relative;
  z-index: 1;
  width: min(690px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 96px);
  padding: clamp(34px, 5vw, 64px);
  background: rgba(27, 71, 93, .88);
  color: var(--barley);
  border-left: 4px solid var(--naples);
}

.home-rootcause-band--founder {
  margin-top: 0;
}

.home-rootcause-band--founder .home-rootcause-photo {
  inset: 0 auto 0 0;
  width: min(46%, 620px);
}

.home-rootcause-band--founder .home-rootcause-photo::after {
  background: linear-gradient(270deg, var(--rhino), rgba(27, 71, 93, .24));
}

.home-rootcause-band--founder .home-rootcause-panel {
  justify-self: end;
  margin-left: 0;
  margin-right: clamp(20px, 7vw, 96px);
  text-align: right;
  border-left: 0;
  border-right: 4px solid var(--naples);
}

.home-rootcause-band--founder .eyebrow {
  color: var(--naples);
}

.home-rootcause-band--founder .section-title {
  color: var(--barley);
  font-size: var(--text-4xl);
  line-height: 1.08;
  text-transform: uppercase;
}

.home-rootcause-band--founder .body-large {
  color: rgba(255, 245, 208, .86);
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-rootcause-panel h2,
.home-final-cta h2 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  line-height: 1.08;
  font-weight: 400;
  margin: 0;
}

.home-rootcause-panel p {
  margin: 24px 0 0;
  color: rgba(255, 245, 208, .86);
  font-size: var(--text-lg);
}

.home-book-panel-v2 {
  position: relative;
  grid-template-columns: minmax(260px, 410px) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
}

.home-book-section {
  background: var(--white);
}

.home-book-panel-v2::before {
  content: "";
  position: absolute;
  inset: -8% auto auto -8%;
  width: min(38vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 213, 100, .3), transparent 68%);
  pointer-events: none;
}

.book-cover-loop-wrap {
  isolation: isolate;
}

.book-cover-frame {
  width: 100%;
  margin: 0;
  border-radius: 10px;
  box-shadow:
    0 34px 84px rgba(27, 71, 93, .16),
    0 10px 28px rgba(95, 20, 44, .08);
}

.book-cover-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .18), transparent 36%);
  pointer-events: none;
}

.book-sales-copy {
  position: relative;
  z-index: 1;
}

.book-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  line-height: 1.7;
  margin: 14px 0 0;
  color: var(--rhino-soft);
}

.book-sales-lead {
  max-width: 780px;
  margin-top: clamp(22px, 3vw, 34px);
}

.book-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(28px, 4vw, 44px);
}

.book-value-card {
  position: relative;
  min-height: 178px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(27, 71, 93, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .62);
  box-shadow: 0 22px 58px rgba(27, 71, 93, .06);
}

.book-value-card span {
  color: color-mix(in srgb, var(--white) 80%, var(--rhino));
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 4.15rem);
  line-height: .8;
  text-shadow:
    1px 1px 1px rgba(255, 255, 255, .95),
    -1px -1px 1px rgba(27, 71, 93, .14);
}

.book-value-card h3 {
  margin: auto 0 0;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 430;
  line-height: 1.08;
  color: var(--rhino);
}

.book-value-card p {
  margin: 12px 0 0;
  color: var(--rhino-soft);
  font-size: 14px;
  line-height: 1.5;
}

.book-sales-note {
  margin: clamp(22px, 3vw, 34px) 0 0;
  color: var(--maroon);
  font-size: 1.02rem;
  line-height: 1.45;
}

.book-about-box {
  margin-top: 30px;
  padding: clamp(24px, 4vw, 34px);
  background: var(--white);
  border: 1px solid rgba(27, 71, 93, .12);
  border-radius: 8px;
}

.book-about-box h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  line-height: 1.15;
  margin: 0;
}

.book-about-box p {
  margin: 18px 0 0;
  color: var(--rhino-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.book-about-box strong {
  color: var(--maroon);
}

.home-section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: end;
  border-top: 1px solid rgba(27, 71, 93, .16);
  padding-top: 28px;
}

.home-section-heading-row p {
  margin: 0;
  color: var(--rhino-soft);
  font-size: 1rem;
  line-height: 1.55;
}

.home-gut-section {
  background: var(--white);
}

.home-gut-section .home-section-heading-row {
  border-top: 0;
  padding-top: 0;
}

.home-gut-grid-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2vw, 24px);
  margin-top: clamp(38px, 5vw, 58px);
}

.home-gut-card-v2 {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
  padding: clamp(10px, 1.25vw, 16px);
  border-radius: clamp(22px, 2.4vw, 30px);
  background:
    radial-gradient(circle at 50% 18%, rgba(250, 213, 100, .12), transparent 42%),
    var(--white);
  color: var(--rhino);
  text-decoration: none;
  border: 1px solid rgba(27, 71, 93, .12);
  box-shadow: 0 24px 62px rgba(27, 71, 93, .08);
  transition:
    transform .26s ease,
    border-color .26s ease,
    box-shadow .26s ease;
}

.home-gut-card-v2:nth-child(4n + 1) { background: var(--white); }
.home-gut-card-v2:nth-child(4n + 2) { background: var(--white); }
.home-gut-card-v2:nth-child(4n + 3) { background: var(--white); }
.home-gut-card-v2:nth-child(4n + 4) { background: var(--white); }

.home-gut-card-v2:hover {
  transform: translateY(-6px);
  border-color: rgba(27, 71, 93, .3);
  box-shadow: 0 30px 70px rgba(27, 71, 93, .12);
}

.gut-axis-image {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: auto;
  width: 100%;
  height: fit-content;
  overflow: visible;
  border-radius: clamp(14px, 1.6vw, 20px);
  background: transparent;
  border: 0;
}

.gut-axis-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 18px 34px rgba(27, 71, 93, .12));
  transform: none;
  transform-origin: center center;
  transition: transform .32s ease;
}

.home-gut-card-v2:hover .gut-axis-image img,
.home-gut-card-v2:focus-visible .gut-axis-image img {
  transform: scale(1.02);
}

.gut-axis-title {
  font-family: var(--font-heading);
  font-size: clamp(1.22rem, 1.55vw, 1.55rem);
  line-height: 1.12;
  padding: 0 clamp(4px, .6vw, 8px);
}

.gut-axis-copy {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--rhino-soft);
  padding: 0 clamp(4px, .6vw, 8px);
}

.gut-axis-link {
  color: var(--maroon);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 0 clamp(4px, .6vw, 8px) clamp(6px, .6vw, 8px);
}

.home-featured-strip {
  background: var(--white);
  padding: 28px clamp(20px, 6vw, 7vw);
  border-top: 1px solid rgba(27, 71, 93, .1);
  border-bottom: 1px solid rgba(27, 71, 93, .1);
}

.home-featured-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 34px;
}

.josh-wordmark {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 650;
  color: var(--rhino);
}

.home-final-cta {
  background: var(--rhino);
  color: var(--barley);
  text-align: center;
}

.home-final-cta .site-container {
  max-width: 940px;
}

.home-final-actions {
  justify-content: center;
}

.home-final-cta .secondary-btn {
  color: var(--barley);
  border-color: var(--naples);
}

.framework-node.is-active {
  border-color: rgba(95, 20, 44, .28);
}

@media (min-width: 768px) {
  .home-founder-grid,
  .framework-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .78fr);
  }

  .framework-layout {
    grid-template-columns: minmax(340px, .78fr) minmax(0, 1fr);
    gap: clamp(24px, 3vw, 42px);
  }

  .five-elements-heading {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
    align-items: end;
  }

  .five-elements-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: minmax(220px, auto);
    gap: 20px;
  }

  .five-element-card {
    min-height: 240px;
  }

  .five-element-card--earth {
    grid-column: span 3;
    grid-row: span 2;
    min-height: 500px;
  }

  .five-element-card--water,
  .five-element-card--fire,
  .five-element-card--air,
  .five-element-card--ether {
    grid-column: span 3;
  }

  .five-element-card--ether {
    grid-column: span 6;
    min-height: 330px;
  }

  .home-section-heading-row {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  }

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

@media (min-width: 1200px) {
  .home-founder-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
  }

  .framework-layout {
    grid-template-columns: minmax(520px, .95fr) minmax(360px, .7fr);
  }

  .five-elements-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: minmax(210px, auto);
  }

  .five-element-card--earth {
    grid-column: 1 / span 5;
    grid-row: 1 / span 2;
    min-height: 520px;
  }

  .five-element-card--water {
    grid-column: 6 / span 4;
    grid-row: 1;
  }

  .five-element-card--fire {
    grid-column: 10 / span 3;
    grid-row: 1;
  }

  .five-element-card--air {
    grid-column: 6 / span 3;
    grid-row: 2;
  }

  .five-element-card--ether {
    grid-column: 9 / span 4;
    grid-row: 2;
    min-height: 250px;
  }

  .home-gut-grid-v2 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .hero-cta-row {
    align-items: stretch;
  }

  .hero-cta-row .primary-btn,
  .hero-cta-row .secondary-btn {
    width: 100%;
  }

  .home-founder-strip {
    margin-top: -6vh;
  }

  .home-rootcause-band--founder {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 0 0 clamp(56px, 12vw, 78px) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    align-items: stretch;
  }

  .home-rootcause-band--founder .home-rootcause-photo {
    position: relative;
    inset: auto;
    order: 1;
    width: 100%;
    height: clamp(260px, 72vw, 390px);
  }

  .home-rootcause-band--founder .home-rootcause-photo::after {
    background: linear-gradient(180deg, rgba(27, 71, 93, .06), var(--rhino));
  }

  .home-rootcause-band--founder .home-rootcause-panel {
    order: 2;
    width: calc(100% - 40px);
    margin: -42px 20px 0;
    padding: 30px 24px;
    text-align: center;
    border-right: 0;
    border-top: 4px solid var(--naples);
  }

  .home-poem-section {
    min-height: 190vh;
  }

  .home-poem-stage {
    padding: 92px 20px;
  }

  .home-poem {
    max-width: 100%;
  }

  .home-poem h2 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .home-poem p {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .home-poem-character {
    display: none;
  }

  .framework-journey {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .framework-journey::before {
    display: block;
    left: 30px;
    right: auto;
    top: 30px;
    bottom: 30px;
    width: 2px;
    height: auto;
    background: var(--framework-line);
    z-index: 0;
  }

  .framework-journey-step::after {
    display: none;
  }

  .framework-journey-step {
    z-index: 1;
    min-height: 86px;
    padding-top: 0;
    padding-left: 82px;
  }

  .framework-journey-step p {
    max-width: none;
  }

  .framework-mandala-panel {
    min-height: 460px;
    height: auto;
    display: grid;
    gap: 34px;
    align-items: start;
    padding: 24px;
  }

  .framework-mandala-panel--image {
    min-height: 0;
    padding: 12px;
  }

  .framework-mandala-orbit {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 340px;
    margin: -8px auto 0;
    transform: none;
  }

  .framework-mandala-orbit img {
    width: min(82%, 300px);
  }

  .framework-mandala-copy {
    padding-top: 0;
  }

  .framework-pillars {
    grid-template-columns: 1fr;
    height: auto;
    grid-auto-rows: auto;
  }

  .framework-node,
  .framework-pillar-card {
    min-height: 230px;
    height: auto;
    padding: 24px;
  }

  .framework-pillar-number {
    font-size: 3.6rem;
  }

  .framework-pillar-title {
    max-width: 100%;
    margin-top: 34px;
    font-size: clamp(1.05rem, 5vw, 1.35rem);
  }

  .framework-modal {
    padding: 14px;
  }

  .framework-modal-dialog {
    max-height: calc(100dvh - 28px);
    overflow-y: auto;
  }

  .home-rootcause-band {
    min-height: 0;
  }

  .home-rootcause-band:not(.home-rootcause-band--founder) {
    display: flex;
    flex-direction: column;
    padding: 0 0 clamp(56px, 12vw, 78px);
    align-items: stretch;
    background: var(--rhino);
  }

  .home-rootcause-band:not(.home-rootcause-band--founder) .home-rootcause-photo {
    position: relative;
    inset: auto;
    order: 1;
    width: 100%;
    max-width: none;
    height: clamp(310px, 78vw, 430px);
    flex: none;
    margin: 0;
  }

  .home-rootcause-band:not(.home-rootcause-band--founder) .home-rootcause-photo::after {
    background:
      linear-gradient(180deg, rgba(27, 71, 93, .04) 0%, rgba(27, 71, 93, .18) 45%, var(--rhino) 100%);
  }

  .home-rootcause-band:not(.home-rootcause-band--founder) .home-rootcause-panel {
    order: 2;
    box-sizing: border-box;
    width: calc(100vw - 40px);
    max-width: none;
    margin: -42px auto 0;
    padding: 30px 24px 36px;
    text-align: center;
    border-left: 0;
    border-top: 4px solid var(--naples);
    background: var(--rhino);
  }

  .home-rootcause-band:not(.home-rootcause-band--founder) .home-rootcause-panel h2 {
    font-size: clamp(2.25rem, 10.2vw, 3.65rem);
    line-height: 1.06;
  }

  .home-rootcause-band:not(.home-rootcause-band--founder) .home-rootcause-panel p {
    max-width: 22ch;
    margin: 28px auto 0;
    font-size: clamp(1.25rem, 5.8vw, 1.9rem);
    line-height: 1.55;
  }

  .home-book-panel-v2 {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .book-cover-loop-wrap {
    width: min(280px, 82vw);
    margin: 0 auto;
  }

  .book-sales-copy {
    text-align: center;
  }

  .book-subtitle {
    font-size: var(--text-base);
    line-height: 1.65;
  }

  .book-sales-lead {
    margin-inline: auto;
  }

  .book-value-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .book-value-card {
    min-height: 0;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 8px 16px;
    padding: 18px;
    text-align: left;
  }

  .book-value-card span {
    grid-row: span 2;
    font-size: 2.8rem;
  }

  .book-value-card h3 {
    margin-top: 0;
    font-size: 16px;
  }

  .book-value-card p {
    margin-top: 6px;
    font-size: 14px;
  }

  .book-sales-note {
    max-width: 28ch;
    margin-inline: auto;
  }

  .home-book-actions {
    justify-content: center;
  }
}

.footer-root-watermark {
  position: absolute;
  z-index: 0;
  right: -120px;
  bottom: -60px;
  width: min(520px, 70vw);
  color: var(--barley);
  opacity: .08;
  pointer-events: none;
}

.page-grain-layer {
  position: fixed;
  inset: 0;
  z-index: 2;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: multiply;
  transition: opacity .35s ease;
}

@keyframes pk-reveal-up {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes pk-reveal-card {
  from {
    opacity: 0;
    transform: translateY(22px) scale(.985);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes pk-image-reveal {
  from {
    opacity: 0;
    transform: translateY(18px) scale(1.025);
    filter: saturate(.85) blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: saturate(1) blur(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .pk-animate-ready .pk-reveal {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    filter: blur(8px);
    transition:
      opacity .82s cubic-bezier(.22, .61, .36, 1),
      transform .82s cubic-bezier(.22, .61, .36, 1),
      filter .82s cubic-bezier(.22, .61, .36, 1),
      box-shadow .24s ease,
      border-color .24s ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
  }

  .pk-animate-ready .pk-reveal-section {
    transform: translate3d(0, 32px, 0);
    filter: blur(10px);
  }

  .pk-animate-ready .pk-reveal-card {
    transform: translate3d(0, 22px, 0) scale(.985);
    filter: blur(7px);
  }

  .pk-animate-ready .pk-reveal-image {
    transform: translate3d(0, 20px, 0) scale(1.025);
    filter: saturate(.85) blur(8px);
  }

  .pk-animate-ready .pk-reveal-cta {
    transform: translate3d(0, 14px, 0) scale(.98);
    filter: blur(5px);
  }

  .pk-animate-ready .pk-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0) saturate(1);
  }

  .pk-animate-ready .article-card.pk-reveal.is-visible:hover {
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pk-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  [data-ambient-loop],
  .pk-animate-disabled [data-ambient-loop] {
    display: none !important;
  }
}

.deckle-placeholder {
  filter: url(#deckle) drop-shadow(0 34px 70px rgba(0, 0, 0, .38));
}

.hand-note {
  display: inline-block;
  font-family: "Allura", cursive;
  font-weight: 400;
  color: var(--maroon);
  letter-spacing: 0;
  line-height: 1;
  transform: rotate(-4deg);
}

.motif-heading-wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}

.motif-heading-wrap .motif {
  color: var(--maroon);
  opacity: .72;
}

.hero-brand-mark,
.hero-scroll-overlay {
  isolation: isolate;
}

.hero-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0;
  margin: 0;
  line-height: 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .08em;
  line-height: 1;
  white-space: nowrap;
}

.brand-life-text {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.38rem, 2.15vw, 2rem);
  line-height: 1;
  color: #003822;
  transform: translateY(.01em);
}

.brand-lockup--footer .brand-life-text {
  color: #003822;
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  text-shadow: 0 0 18px rgba(255, 245, 208, .55);
}

.brand-lockup--sidebar .brand-life-text {
  color: #003822;
  font-size: clamp(1.4rem, 2.2vw, 2.05rem);
}

.site-shell .hero-brand-mark {
  position: fixed !important;
  top: 22px !important;
  left: clamp(20px, 6vw, 86px) !important;
  z-index: 41 !important;
}

button[aria-label="Open menu"] {
  border-radius: 999px !important;
  z-index: 42 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.hero-brand-logo,
.sidebar-brand-logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
  vertical-align: middle;
  flex: 0 0 auto;
}

.hero-brand-logo {
  max-width: clamp(113.85px, 10.725vw, 155.1px);
  max-height: clamp(28.05px, 2.475vw, 34.65px);
  filter: drop-shadow(0 2px 5px rgba(255, 255, 255, .68));
}

.sidebar-brand-logo {
  max-width: min(173.25px, 44.55vw);
  max-height: 44.55px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .18));
}

.brand-lockup--footer .footer-logo {
  width: auto;
  max-width: clamp(123.75px, 13.2vw, 189.75px);
  max-height: clamp(30px, 3.3vw, 47px);
  filter: drop-shadow(0 0 14px rgba(255, 245, 208, .52));
}

.global-connect-section {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 9vw, 120px) clamp(20px, 6vw, 7vw);
  background: var(--rhino);
  color: var(--barley);
  text-align: center;
}

.global-connect-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 245, 208, .12), transparent 42%),
    radial-gradient(circle at 18% 18%, rgba(250, 213, 100, .12), transparent 32%),
    radial-gradient(circle at 86% 12%, rgba(142, 189, 157, .1), transparent 34%);
  animation: page-glow-drift 16s ease-in-out infinite alternate;
}

.global-connect-section .site-container {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 940px;
}

.global-connect-section .eyebrow {
  color: var(--naples);
}

.global-connect-section .section-title,
.global-connect-section h2 {
  color: var(--barley) !important;
  max-width: 940px;
  margin: 0;
}

.global-connect-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.global-connect-section .secondary-btn {
  color: var(--barley);
  border-color: var(--naples);
}

@media (prefers-reduced-motion: reduce) {
  .site-shell::before,
  .global-connect-section::before {
    animation: none;
  }
}

.hero-brand-mark::before,
.hero-text-scrim {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, .82) 0%,
    rgba(250, 213, 100, .14) 42%,
    rgba(255, 255, 255, 0) 76%
  );
  filter: blur(10px);
}

.hero-brand-mark::before {
  inset: -16px -34px -18px -30px;
}

.hero-scroll-overlay {
  will-change: opacity;
}

.hero-stage-video {
  object-fit: cover;
  object-position: center;
  filter: hue-rotate(-10deg) saturate(1.18) contrast(1.04) !important;
}

.hero-overlay-content {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: 100%;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 22px;
  background:
    radial-gradient(circle at 0% 0%, rgba(250, 213, 100, .14), transparent 42%),
    radial-gradient(circle at 100% 0%, rgba(142, 189, 157, .12), transparent 44%),
    rgba(255, 255, 255, .78);
  box-shadow: 0 20px 56px rgba(27, 71, 93, .12);
  backdrop-filter: blur(16px) saturate(1.08);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
}

.hero-scroll-overlay[data-oidx="1"] .hero-overlay-content,
.hero-scroll-overlay[data-oidx="3"] .hero-overlay-content {
  margin-left: auto;
}

.hero-scroll-overlay[data-oidx="3"] .hero-overlay-content {
  margin-right: auto;
}

.hero-text-scrim {
  inset: var(--scrim-inset, -42px -58px);
  transform: var(--scrim-transform, none);
  display: none;
}

.hero-overlay-eyebrow,
.hero-overlay-headline,
.hero-overlay-support {
  will-change: opacity, transform, filter;
}

.hero-overlay-eyebrow {
  font-size: clamp(.9375rem, 1.25vw, 1rem);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--maroon);
  font-weight: 700;
}

.hero-word {
  display: inline-block;
  will-change: opacity, transform, filter;
}

.hero-overlay-spacer {
  display: inline;
}

.hero-video-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
}

.hero-video-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(10, 22, 30, .46);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
}

.hero-video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: clamp(18px, 2.2vw, 28px);
  overflow: hidden;
  background: var(--rhino);
  border: 1px solid rgba(255, 245, 208, .22);
  box-shadow: 0 38px 100px rgba(10, 22, 30, .42);
}

.hero-video-modal-dialog iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.hero-video-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 245, 208, .28);
  border-radius: 50%;
  background: rgba(255, 245, 208, .92);
  color: var(--rhino);
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(10, 22, 30, .24);
}

@media (max-width: 767px) {
  .display-title {
    font-size: clamp(38px, 13vw, 68px);
    line-height: .98;
  }

  .section-title {
    font-size: clamp(28px, 10vw, 46px);
    line-height: 1.06;
  }

  .body-large,
  .blog-article-body p {
    font-size: 1.0625rem;
    line-height: 1.68;
  }

  .blog-article-body {
    max-width: 100%;
  }

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

  .blog-featured-frame,
  .blog-featured-placeholder {
    min-height: 220px !important;
  }

  .blog-cta-card,
  .blog-related-section {
    margin-top: 48px;
  }

  .blog-related-section {
    padding: 24px;
  }

  .faq-accordion-list {
    gap: 12px;
  }

  .faq-accordion-button {
    align-items: flex-start;
    padding: 22px 18px;
  }

  .faq-accordion-icon {
    width: 38px;
    height: 38px;
  }

  .faq-answer {
    padding: 0 18px 22px;
  }

  .faq-support-card {
    min-height: 220px;
  }

  .faq-support-title {
    font-size: var(--text-xl);
  }

  .faq-context-flag {
    padding: 16px;
  }

  .consultation-flow-grid {
    grid-template-columns: 1fr;
  }

  .consultation-flow-card {
    min-height: 210px;
  }

  .consultation-flow-card::after {
    right: auto;
    left: 30px;
    top: auto;
    bottom: -10px;
    width: 2px;
    height: 28px;
  }

  .consultation-flow-card:last-child::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 40px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .gold-btn,
  .dark-btn,
  .ghost-btn,
  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .hero-brand-mark {
    top: 22px !important;
    left: 20px !important;
  }

  .hero-brand-logo {
    max-width: min(31.35vw, 117.15px);
    max-height: 28.875px;
  }

  .brand-life-text {
    font-size: clamp(1.18rem, 5.8vw, 1.55rem);
  }

  .site-topbar-glass {
    height: 88px;
  }

  .hero-stage-video {
    object-position: 50% 42% !important;
    transform: scale(1.24) translateY(3vh) !important;
  }

  .hero-scroll-overlay {
    left: 20px !important;
    right: 20px !important;
    top: auto !important;
    bottom: clamp(96px, 14vh, 124px) !important;
    width: calc(100vw - 40px) !important;
    max-width: calc(100vw - 40px) !important;
    text-align: left !important;
    transform: none !important;
    box-sizing: border-box;
  }

  .hero-scroll-overlay[data-oidx="1"],
  .hero-scroll-overlay[data-oidx="2"],
  .hero-scroll-overlay[data-oidx="3"] {
    left: 20px !important;
    right: 20px !important;
    top: auto !important;
    bottom: clamp(96px, 14vh, 124px) !important;
    width: calc(100vw - 40px) !important;
    max-width: calc(100vw - 40px) !important;
    text-align: left !important;
    transform: none !important;
    box-sizing: border-box;
  }

  .hero-scroll-overlay[data-oidx="1"] .hero-overlay-content,
  .hero-scroll-overlay[data-oidx="3"] .hero-overlay-content {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-overlay-content {
    width: 100%;
    max-width: 100%;
    padding: 20px;
    border-radius: 18px;
    overflow: visible;
  }

  .hero-overlay-headline {
    font-size: clamp(24px, 7.85vw, 38px) !important;
    line-height: 1.02 !important;
  }

  .hero-word {
    display: inline;
  }

  .hero-overlay-eyebrow {
    letter-spacing: .22em !important;
  }

  .hero-overlay-support {
    justify-content: flex-start !important;
    letter-spacing: .1em !important;
    max-width: 100% !important;
    font-size: clamp(1rem, 4.2vw, 1.125rem) !important;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-scroll-overlay[data-oidx="0"] .hero-overlay-support,
  .hero-scroll-overlay[data-oidx="1"] .hero-overlay-support,
  .hero-scroll-overlay[data-oidx="2"] .hero-overlay-support,
  .hero-scroll-overlay[data-oidx="3"] .hero-overlay-support {
    letter-spacing: 0 !important;
  }

  .hero-scroll-overlay[data-oidx="3"] .hero-overlay-support {
    justify-content: flex-start !important;
  }

  .hero-cta-row {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-cta-row .primary-btn,
  .hero-cta-row .secondary-btn {
    min-width: 0;
    padding-inline: 18px;
  }

  .hero-text-scrim {
    inset: var(--scrim-inset-mobile, -34px -36px);
    filter: blur(12px);
  }

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

  .motif-heading-wrap .motif {
    display: none;
  }

  .photo-placeholder::after {
    left: 10px;
    right: 10px;
    bottom: 10px;
    text-align: center;
  }

  .home-card-flourish {
    width: 36px;
    top: 14px;
    right: 14px;
  }
}

@media (min-width: 768px) {
  .topic-grid,
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .consultation-flow-card::after {
    left: auto;
    right: -22px;
    top: 50%;
    bottom: auto;
    width: 52px;
    height: 2px;
  }

  .consultation-flow-card:nth-child(2n)::after {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .hero-scroll-overlay {
    max-width: min(50vw, 560px) !important;
  }

  .hero-overlay-headline {
    font-size: clamp(29px, 4.8vw, 54px) !important;
  }

  .hero-scroll-overlay[data-oidx="1"] {
    max-width: min(44vw, 500px) !important;
  }

  .hero-scroll-overlay[data-oidx="3"] {
    width: min(620px, 76vw) !important;
  }
}

@media (min-width: 1200px) {
  .topic-grid,
  .card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

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

  .consultation-flow-card::after {
    left: auto;
    right: -26px;
    top: 50%;
    bottom: auto;
    width: 68px;
    height: 2px;
  }

  .consultation-flow-card:nth-child(2n)::after {
    display: block;
  }

  .consultation-flow-card:nth-child(3n)::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .two-col,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .learn-article-grid {
    grid-template-columns: 1fr;
  }
}

/* Shared full-screen navigation overlay */
.site-sidebar--enhanced {
  position: fixed !important;
  inset: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  max-width: none !important;
  height: 100dvh !important;
  padding: clamp(24px, 4.2vw, 58px) !important;
  border: 0 !important;
  border-left: 0 !important;
  background:
    radial-gradient(circle at 18% 16%, rgba(250, 213, 100, .36), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(142, 189, 157, .28), transparent 32%),
    linear-gradient(135deg, var(--barley), var(--white) 48%, var(--barley)) !important;
  color: var(--rhino) !important;
  box-shadow: none !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .64fr) !important;
  grid-template-rows: auto minmax(0, 1fr) auto !important;
  gap: clamp(26px, 4vw, 72px) !important;
  overflow-x: hidden !important;
  overflow-y: hidden !important;
  isolation: isolate;
  transition:
    transform .62s cubic-bezier(.22, .61, .36, 1),
    opacity .42s ease !important;
}

.site-sidebar--enhanced::before {
  background:
    linear-gradient(rgba(255, 245, 208, .74), rgba(255, 245, 208, .74)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.62' numOctaves='2' seed='21'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 .106 0 0 0 0 .278 0 0 0 0 .365 0 0 0 .16 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23grain)' opacity='.18'/%3E%3C/svg%3E") !important;
  opacity: .42 !important;
  mix-blend-mode: multiply !important;
}

.site-sidebar--enhanced::after {
  content: "";
  position: absolute;
  inset: auto -8vw -14vw auto;
  width: min(44vw, 620px);
  aspect-ratio: 1;
  background: color-mix(in srgb, var(--neptune) 18%, transparent);
  border-radius: 50%;
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}

.site-sidebar--enhanced > * {
  position: relative;
  z-index: 1;
}

.site-sidebar--enhanced .sidebar-topline {
  grid-column: 1 / -1;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  padding: 0 !important;
  min-height: 58px;
}

.site-sidebar--enhanced .sidebar-topline > button,
.site-sidebar--enhanced button[aria-label="Close menu"] {
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255, 255, 255, .56) !important;
  color: var(--rhino) !important;
  border: 1px solid rgba(27, 71, 93, .18) !important;
  box-shadow: 0 12px 34px rgba(27, 71, 93, .12) !important;
  backdrop-filter: blur(14px);
}

.site-sidebar--enhanced .sidebar-brand {
  color: var(--rhino) !important;
  line-height: 0;
}

.site-sidebar--enhanced .sidebar-brand-logo {
  max-width: clamp(117.15px, 13.2vw, 176.55px);
  max-height: 41.25px;
  filter: drop-shadow(0 5px 16px rgba(27, 71, 93, .12));
}

.site-sidebar--enhanced .sidebar-primary-nav,
.site-sidebar--enhanced nav {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  display: flex !important;
  flex-direction: column !important;
  gap: clamp(7px, .78vw, 12px) !important;
  margin: 0 !important;
  max-width: 760px;
}

.site-sidebar--enhanced nav a {
  position: relative;
  width: fit-content;
  max-width: 100%;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0 !important;
  padding: 4px 0 !important;
  color: var(--rhino) !important;
  border: 0 !important;
  text-decoration: none !important;
  overflow: visible;
  isolation: isolate;
}

.site-sidebar--enhanced nav a[href="#contact"],
.site-sidebar--enhanced nav a[href$="#contact"] {
  display: none !important;
}

.site-sidebar--enhanced nav a::before {
  display: none !important;
}

.site-sidebar--enhanced nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 154px;
  height: 30px;
  background: url("../images/accents/accent-divider-flourish.png") center / contain no-repeat;
  opacity: 0;
  transform: translate(-50%, 4px) scale(.9);
  transition:
    opacity .22s ease,
    transform .22s ease;
  z-index: 0;
  pointer-events: none;
}

.site-sidebar--enhanced nav a:hover::after,
.site-sidebar--enhanced nav a:focus-visible::after {
  opacity: .92;
  transform: translate(-50%, 0) scale(1);
}

.site-sidebar--enhanced nav a > span:first-child {
  display: none !important;
}

.site-sidebar--enhanced nav a > span:last-child,
.site-sidebar--enhanced nav a span {
  font-family: var(--font-body) !important;
  font-size: clamp(1.63rem, 1.92vw, 2.05rem) !important;
  font-weight: 600 !important;
  line-height: 1.1 !important;
  letter-spacing: 0 !important;
  color: var(--rhino) !important;
  text-wrap: balance;
  position: relative;
  z-index: 1;
}

.sidebar-menu-support {
  grid-column: 1;
  grid-row: 3;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.sidebar-connect-btn {
  min-height: 49px;
  padding: 14.4px 25.2px;
}

.sidebar-book-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.site-sidebar--enhanced .sidebar-contact-card {
  display: none !important;
}

.sidebar-feature-card {
  grid-column: 2;
  grid-row: 2 / span 2;
  align-self: center;
  justify-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(27, 71, 93, .13);
  border-radius: 28px;
  background: rgba(255, 255, 255, .52);
  color: var(--rhino);
  text-decoration: none;
  box-shadow: 0 28px 80px rgba(27, 71, 93, .15);
  backdrop-filter: blur(18px);
  max-width: 520px;
}

.sidebar-feature-card:hover .sidebar-feature-link,
.sidebar-feature-card:focus-visible .sidebar-feature-link {
  color: var(--maroon);
}

.sidebar-feature-image {
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  background: color-mix(in srgb, var(--neptune) 18%, var(--barley));
}

.sidebar-feature-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.sidebar-feature-kicker {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--naples);
  color: var(--rhino);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sidebar-feature-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.4vw, 2.6rem);
  line-height: 1.03;
  color: var(--rhino);
}

.sidebar-feature-copy {
  color: var(--rhino-soft);
  font-size: 1rem;
  line-height: 1.55;
}

.sidebar-feature-link {
  color: var(--maroon);
  font-size: 1.0625rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 767px) {
  .site-sidebar--enhanced {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto auto !important;
    gap: 28px !important;
    padding: 22px 20px 34px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  .site-sidebar--enhanced .sidebar-topline {
    min-height: 54px;
  }

  .site-sidebar--enhanced .sidebar-brand-logo {
    max-width: 117.15px;
    max-height: 33px;
  }

  .site-sidebar--enhanced .sidebar-primary-nav,
  .site-sidebar--enhanced nav {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    gap: 9px !important;
  }

  .site-sidebar--enhanced nav a > span:last-child,
  .site-sidebar--enhanced nav a span {
    font-size: clamp(1.57rem, 7vw, 1.79rem) !important;
    line-height: 1.1 !important;
  }

  .site-sidebar--enhanced nav a::after {
    width: 134px;
    height: 27px;
    bottom: -17px;
  }

  .sidebar-feature-card {
    grid-column: 1;
    grid-row: 4;
    max-width: none;
    border-radius: 22px;
    padding: 18px;
  }

  .sidebar-feature-copy {
    font-size: .975rem;
  }

  .sidebar-menu-support {
    grid-column: 1;
    grid-row: 3;
    align-items: stretch;
    flex-direction: column;
  }

  .sidebar-connect-btn,
  .sidebar-book-link {
    width: 100%;
    justify-content: center;
  }

  .site-sidebar--enhanced .sidebar-contact-card {
    display: none;
  }

}

@media (max-width: 767px) {
  .home-site-shell [data-screen-label="Intro / Scroll Reveal"] .hero-scroll-overlay {
    left: 50% !important;
    right: auto !important;
    bottom: clamp(54px, 8vh, 86px) !important;
    width: min(100% - 40px, 360px) !important;
    max-width: min(100% - 40px, 360px) !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    transform: translateX(-50%) !important;
    text-align: left !important;
  }

  .home-site-shell [data-screen-label="Intro / Scroll Reveal"] .hero-overlay-content {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    padding: clamp(18px, 4.6vw, 22px) !important;
  }

  .home-site-shell [data-screen-label="Intro / Scroll Reveal"] .hero-overlay-support {
    max-width: 100% !important;
  }

  .home-site-shell [data-screen-label="Intro / Scroll Reveal"] .hero-cta-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
  }

  .home-site-shell [data-screen-label="Intro / Scroll Reveal"] .hero-cta-row .primary-btn,
  .home-site-shell [data-screen-label="Intro / Scroll Reveal"] .hero-cta-row .secondary-btn {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }
}
