:root {
  color-scheme: light;
  --ink: #171513;
  --muted: #665f55;
  --paper: #fbf7ef;
  --porcelain: #ffffff;
  --sage: #6f8a73;
  --teal: #1f5d63;
  --copper: #b97843;
  --clay: #d8b38b;
  --line: rgba(23, 21, 19, 0.14);
  --shadow: 0 22px 70px rgba(24, 20, 16, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 54px);
  color: #fff;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(251, 247, 239, 0.94);
  box-shadow: 0 12px 40px rgba(20, 17, 14, 0.1);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 27px;
  line-height: 1;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.brand small {
  color: currentColor;
  font-size: 0.73rem;
  opacity: 0.78;
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: clamp(12px, 1.7vw, 26px);
  align-items: center;
  font-size: 0.84rem;
}

.main-nav a,
.header-action {
  text-decoration: none;
}

.main-nav a {
  opacity: 0.88;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 720;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.header-action {
  border-color: currentColor;
  font-size: 0.88rem;
}

.button:hover,
.header-action:hover,
.gallery button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--teal);
  color: #fff;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.button.ghost.dark {
  border-color: rgba(23, 21, 19, 0.28);
  color: var(--ink);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 120px clamp(18px, 6vw, 84px) clamp(34px, 7vw, 80px);
  color: #fff;
  overflow: clip;
}

.hero picture,
.hero picture img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 10, 9, 0.78), rgba(11, 10, 9, 0.24) 56%, rgba(11, 10, 9, 0.54)),
    linear-gradient(0deg, rgba(11, 10, 9, 0.82), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.practitioner-hero h1,
.section-heading h2,
.split-copy h2,
.booking-copy h2,
.contact h2,
.foundation-story h2,
.responsible-section h2,
.foundation-cta h2,
.profile-preview h2,
.method-copy h2,
.visual-markers h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(3rem, 7vw, 6.8rem);
}

.hero-content > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.7vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 6vw, 84px);
  bottom: clamp(22px, 5vw, 62px);
  z-index: 2;
  width: min(310px, calc(100% - 36px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(16, 13, 11, 0.5);
  backdrop-filter: blur(14px);
}

.hero-panel span {
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  line-height: 1.16;
}

.hero-panel p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.band,
.resources,
.contact,
.split-section {
  padding: clamp(68px, 9vw, 124px) clamp(18px, 6vw, 84px);
}

.band {
  background: var(--paper);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading h2,
.split-copy h2,
.booking-copy h2,
.contact h2,
.foundation-story h2,
.responsible-section h2,
.foundation-cta h2,
.profile-preview h2,
.method-copy h2,
.visual-markers h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.intro-grid,
.foundation-grid,
.profile-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.intro-grid article,
.foundation-grid article,
.profile-detail-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e6eee4;
  color: var(--teal);
  font-size: 1.5rem;
}

.intro-grid h3,
.foundation-grid h3,
.profile-detail-grid h3,
.resource-list h3 {
  margin: 28px 0 10px;
  font-size: 1.25rem;
}

.intro-grid p,
.foundation-grid p,
.profile-detail-grid p,
.split-copy p,
.booking-copy p,
.contact p,
.resource-list p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  background: #fff;
}

.profile-preview {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(56px, 8vw, 96px) clamp(18px, 6vw, 84px);
  background: #fff;
}

.profile-preview-media {
  width: min(360px, 100%);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.profile-preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-preview-copy p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.05rem;
}

.profile-preview-copy .button {
  margin-top: 16px;
}

.split-media {
  aspect-ratio: 1.08 / 1;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.timeline li {
  padding-left: 24px;
  border-left: 2px solid var(--sage);
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline span {
  margin-top: 6px;
  color: var(--muted);
}

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

.gallery button {
  min-height: 190px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #d9d0c2;
  cursor: zoom-in;
  transition: transform 0.2s ease;
}

.gallery button:nth-child(1),
.gallery button:nth-child(6) {
  grid-column: span 2;
}

.gallery button:nth-child(2),
.gallery button:nth-child(3),
.gallery button:nth-child(4),
.gallery button:nth-child(5) {
  grid-column: span 1;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resources {
  background: #172326;
  color: #fff;
}

.resources .section-heading h2 {
  color: #fff;
}

.resource-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
  gap: 22px;
  align-items: start;
}

.media-feature {
  overflow: hidden;
  border-radius: 8px;
  background: #0b0d0e;
}

.media-feature video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

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

.resource-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.resource-list h3 {
  margin: 0 0 5px;
}

.resource-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.resource-list a {
  display: inline-flex;
  margin-top: 12px;
  color: #f4c18c;
  font-weight: 760;
  text-decoration: none;
}

.resource-list audio {
  width: 100%;
  margin-top: 12px;
}

.resource-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--copper);
  color: #fff;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(330px, 1.15fr);
  gap: clamp(26px, 6vw, 72px);
  align-items: start;
  background: #eef3ec;
}

.notice {
  margin-top: 26px;
  padding: 18px;
  border-left: 4px solid var(--teal);
  background: rgba(255, 255, 255, 0.7);
  color: #35413d;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--porcelain);
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: #302b25;
  font-size: 0.88rem;
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(23, 21, 19, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 11px 12px;
}

textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.booking-output {
  display: none;
  padding: 16px;
  border-radius: 8px;
  background: #f4eee5;
  color: #3d332b;
  white-space: pre-wrap;
}

.booking-output.is-visible {
  display: block;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: #fff;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(18px, 6vw, 84px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.foundation-page {
  background: var(--paper);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  min-height: 720px;
  padding: 130px clamp(18px, 6vw, 84px) clamp(58px, 8vw, 96px);
  background:
    radial-gradient(circle at 10% 18%, rgba(216, 179, 139, 0.36), transparent 31%),
    linear-gradient(135deg, #fbf7ef 0%, #eef3ec 52%, #fff 100%);
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 6vw, 6.2rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.page-hero-media {
  position: relative;
  aspect-ratio: 1.16 / 1;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(23, 21, 19, 0.1), transparent 48%);
  pointer-events: none;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.foundation-story {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  padding: clamp(68px, 9vw, 124px) clamp(18px, 6vw, 84px);
  background: #fff;
}

.foundation-story-copy {
  position: sticky;
  top: 110px;
}

.foundation-story p,
.responsible-copy p,
.foundation-cta p,
.reading-card p {
  color: var(--muted);
}

.foundation-story-copy p:not(.eyebrow) {
  font-size: 1.04rem;
}

.foundation-infographic {
  margin: 0;
}

.foundation-infographic img {
  width: 100%;
  border: 1px solid rgba(23, 21, 19, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.foundation-infographic figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.reading-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.reading-card {
  min-height: 260px;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}

.reading-card h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
}

.responsible-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 6vw, 76px);
  padding: clamp(68px, 9vw, 124px) clamp(18px, 6vw, 84px);
  background: #172326;
  color: #fff;
}

.responsible-section .eyebrow {
  color: #f4c18c;
}

.responsible-section h2 {
  color: #fff;
}

.responsible-copy {
  display: grid;
  gap: 16px;
}

.responsible-copy p {
  margin: 0;
  padding: 22px;
  border-left: 4px solid var(--copper);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
}

.foundation-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.foundation-cta p {
  max-width: 720px;
}

.visual-markers {
  padding: clamp(68px, 9vw, 124px) clamp(18px, 6vw, 84px);
  background: #fff;
}

.visual-markers .section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.visual-markers-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.visual-marker-card {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.visual-marker-card img {
  width: 100%;
  border-radius: 6px;
}

.visual-marker-card figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.visual-marker-copy {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px 24px;
  align-items: start;
  padding: clamp(22px, 4vw, 36px);
  border-radius: 8px;
  background: #eef3ec;
}

.visual-marker-copy img {
  grid-row: span 3;
  width: 100%;
  min-height: 220px;
  border-radius: 8px;
  object-fit: cover;
}

.visual-marker-copy h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
}

.visual-marker-copy p {
  margin: 0;
  color: var(--muted);
}

.profile-page {
  background: var(--paper);
}

.practitioner-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  min-height: 720px;
  padding: 130px clamp(18px, 6vw, 84px) clamp(58px, 8vw, 96px);
  background:
    radial-gradient(circle at 82% 18%, rgba(111, 138, 115, 0.24), transparent 30%),
    linear-gradient(135deg, #fbf7ef 0%, #ffffff 48%, #eef3ec 100%);
}

.practitioner-photo {
  position: relative;
  width: min(470px, 100%);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.practitioner-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(23, 21, 19, 0.12);
  pointer-events: none;
}

.practitioner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.practitioner-hero h1 {
  font-size: clamp(3.4rem, 7vw, 7rem);
}

.practitioner-role {
  margin: 12px 0 0;
  color: var(--teal);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 780;
}

.practitioner-copy > p:not(.eyebrow):not(.practitioner-role) {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.practitioner-method {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  padding: clamp(68px, 9vw, 124px) clamp(18px, 6vw, 84px);
  background: #fff;
}

.method-copy p {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 8px;
  background: #172326;
  color: #fff;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.contact-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-card a:not(.button) {
  color: #f4c18c;
  text-decoration: none;
}

.contact-card .button {
  margin-top: 10px;
}

.values-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.values-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #302b25;
  font-weight: 760;
}

.profile-cta {
  background: #eef3ec;
}

.video-page,
.products-page {
  background: var(--paper);
}

.video-player-section,
.products-section {
  padding: clamp(68px, 9vw, 124px) clamp(18px, 6vw, 84px);
  background: #fff;
}

.video-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: start;
}

.video-stage {
  display: grid;
  gap: 22px;
}

.video-stage video,
.youtube-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
  background: #0b0d0e;
  box-shadow: var(--shadow);
}

.video-stage h2,
.playlist h2,
.product-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.video-stage h2 {
  font-size: clamp(2rem, 3.6vw, 3.5rem);
}

.video-stage p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
}

.playlist {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.playlist h2 {
  font-size: 1.55rem;
}

.playlist-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 84px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.playlist-item.is-active {
  border-color: var(--teal);
  background: #eef3ec;
}

.playlist-item.is-disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.playlist-item img {
  width: 96px;
  height: 64px;
  border-radius: 6px;
  object-fit: cover;
}

.playlist-item strong,
.playlist-item small {
  display: block;
}

.playlist-item small {
  color: var(--muted);
}

.product-hero-pack {
  background: #fff;
}

.product-hero-pack img {
  object-fit: contain;
  padding: clamp(16px, 4vw, 42px);
}

.products-section .section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.products-grid {
  display: grid;
  gap: 18px;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.46fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 46px);
  align-items: stretch;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 38px rgba(24, 20, 16, 0.08);
}

.product-media {
  min-height: 390px;
  overflow: hidden;
  border-radius: 8px;
  background: #f4eee5;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 14px;
}

.product-kicker {
  margin: 0;
  color: var(--copper);
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-copy h3 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.product-copy p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
}

.product-copy ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.product-warning {
  margin-top: 0;
}

.contact-widgets {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  gap: 10px;
  justify-items: end;
  pointer-events: none;
}

.whatsapp-float,
.chatbot {
  pointer-events: auto;
}

.whatsapp-float,
.chatbot-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(20, 17, 14, 0.22);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.whatsapp-float {
  padding: 0 18px;
  background: #1f8f5f;
  color: #fff;
}

.chatbot {
  position: relative;
}

.chatbot-toggle {
  padding: 0 18px;
  background: var(--teal);
  color: #fff;
  font: inherit;
}

.chatbot-panel {
  position: absolute;
  right: 0;
  bottom: 58px;
  display: none;
  width: min(360px, calc(100vw - 36px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.chatbot.is-open .chatbot-panel {
  display: block;
}

.chatbot-head {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: #172326;
  color: #fff;
}

.chatbot-head button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
}

.chatbot-messages {
  display: grid;
  gap: 10px;
  max-height: 270px;
  overflow: auto;
  padding: 14px;
}

.bot-message,
.user-message {
  max-width: 92%;
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  white-space: pre-line;
}

.bot-message {
  background: #eef3ec;
  color: #26302d;
}

.user-message {
  justify-self: end;
  background: var(--teal);
  color: #fff;
}

.chatbot-link {
  justify-self: start;
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

.chatbot-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 14px 14px;
}

.chatbot-choices button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 760;
  cursor: pointer;
}

.lightbox {
  width: min(1120px, calc(100vw - 28px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(8, 8, 8, 0.76);
}

.lightbox img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox button {
  position: absolute;
  top: -18px;
  right: -12px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 1.6rem;
  cursor: pointer;
}

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

  .nav-toggle {
    justify-self: end;
    display: grid;
    gap: 6px;
    width: 46px;
    height: 46px;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    color: currentColor;
    place-content: center;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .main-nav,
  .header-action {
    display: none;
  }

  .site-header.is-open .main-nav {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    gap: 0;
    padding-top: 8px;
  }

  .site-header.is-open .main-nav a {
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 34px;
  }

  .intro-grid,
  .foundation-grid,
  .profile-detail-grid,
  .page-hero,
  .foundation-story,
  .reading-layout,
  .responsible-section,
  .foundation-cta,
  .visual-markers-grid,
  .profile-preview,
  .practitioner-hero,
  .practitioner-method,
  .video-shell,
  .product-card,
  .split-section,
  .resource-layout,
  .booking,
  .contact {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: auto;
  }

  .practitioner-hero {
    min-height: auto;
  }

  .foundation-story-copy {
    position: static;
  }

  .visual-marker-copy {
    grid-template-columns: 1fr;
  }

  .visual-marker-copy img {
    grid-row: auto;
    max-height: 280px;
  }

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

  .gallery button:nth-child(n) {
    grid-column: span 1;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .product-media {
    min-height: 320px;
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .header-action {
    width: 100%;
  }

  .intro-grid article,
  .foundation-grid article,
  .profile-detail-grid article,
  .reading-card {
    min-height: auto;
  }

  .form-row,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery button {
    min-height: 230px;
  }

  .playlist-item {
    grid-template-columns: 82px 1fr;
  }

  .playlist-item img {
    width: 82px;
    height: 56px;
  }

  .contact-widgets {
    right: 12px;
    bottom: 12px;
  }

  .whatsapp-float span,
  .chatbot-toggle span {
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .chatbot-panel {
    right: -4px;
  }
}
