/* ============================================================
   The Healing Centre — Shared stylesheet
   Used by every page in the site so styles stay in sync.
   ============================================================ */

/* ============================================================
   GANJA SACRED EARTH — Design tokens
   ============================================================ */
:root {
  /* Base — earth tones */
  --cream:    #F5EFE2;
  --sand:     #EBE0C8;
  --bone:     #FAF5E9;

  /* Ganja greens — pulled from the logo */
  --leaf:     #5A9A33;
  --leaf-deep: #3F7821;
  --forest:   #1F3A1F;
  --moss:     #7C9460;
  --sage:     #B8C4A0;

  /* Earth accents */
  --clay:     #B8623C;
  --gold:     #D4A857;

  /* Chakra accents */
  --chakra-root:    #C1392B;
  --chakra-sacral:  #E07A2A;
  --chakra-solar:   #D4B330;
  --chakra-heart:   #4A8B3A;
  --chakra-throat:  #3A9DBF;
  --chakra-third:   #6F47B5;
  --chakra-crown:   #C24B91;

  --font-head: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1240px;
  --pad-section: 120px;
  --pad-section-mobile: 72px;
  --radius-card: 12px;
  --radius-btn: 4px;
}

/* ============================================================
   Reset + base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--forest);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--leaf); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--clay); }
p { max-width: 60ch; margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }

/* ============================================================
   Typography
   ============================================================ */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--forest);
  opacity: 0.7;
  margin: 0 0 18px;
  display: inline-block;
}
.eyebrow::before, .eyebrow::after {
  content: "/";
  margin: 0 8px;
  color: var(--leaf);
  font-weight: 600;
}
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 500; line-height: 1.1; margin: 0 0 0.5em; color: var(--forest); letter-spacing: -0.01em; }

.page-h1 {
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1.0;
  margin-bottom: 0.4em;
}
.page-h1 .italic { font-style: italic; font-weight: 400; color: var(--leaf); }

.hero h1 {
  font-size: clamp(56px, 9vw, 116px);
  line-height: 0.98;
  margin-bottom: 0.3em;
  font-weight: 500;
}
.hero h1 .italic { font-style: italic; font-weight: 400; color: var(--leaf); }
/* THC colour nod — green / yellow / red */
.hero h1 .word-the     { color: var(--leaf); }
.hero h1 .word-healing { color: var(--chakra-solar); font-style: italic; font-weight: 500; }
.hero h1 .word-centre  { color: var(--chakra-root); }

h2 { font-size: clamp(34px, 5vw, 56px); line-height: 1.05; }
h2 .italic { font-style: italic; font-weight: 400; }
h2 .accent { color: var(--leaf); font-style: italic; font-weight: 500; }

h3 { font-size: clamp(22px, 2.6vw, 30px); }

.section-subtitle {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--forest);
  opacity: 0.75;
  margin: 0 0 28px;
  max-width: 50ch;
}

/* ============================================================
   Layout
   ============================================================ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; position: relative; }
section { padding: var(--pad-section) 0; position: relative; overflow: hidden; }
section.bg-bone { background: var(--bone); }
section.bg-sand { background: var(--sand); }
section.bg-moss { background: var(--moss); color: var(--cream); }
section.bg-forest { background: var(--forest); color: var(--cream); }
section.bg-moss h2, section.bg-moss h3, section.bg-moss .eyebrow,
section.bg-forest h2, section.bg-forest h3, section.bg-forest .eyebrow { color: var(--cream); }
section.bg-moss .eyebrow, section.bg-forest .eyebrow { opacity: 0.85; }
section.bg-moss .section-subtitle, section.bg-forest .section-subtitle { color: var(--cream); opacity: 0.85; }
section.bg-forest .eyebrow::before, section.bg-forest .eyebrow::after,
section.bg-moss .eyebrow::before, section.bg-moss .eyebrow::after { color: var(--gold); }

/* ============================================================
   Watermark
   ============================================================ */
.watermark {
  position: absolute;
  background-image: url('images/Leaf%20no%20background.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}
.watermark-hero {
  right: -8%; top: 6%;
  width: 78vh; height: 78vh;
  opacity: 0.07;
}
.watermark-section {
  right: -6%; top: 50%;
  transform: translateY(-50%);
  width: 540px; height: 540px;
  opacity: 0.06;
}
.watermark-left {
  left: -6%; top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  opacity: 0.06;
}
section.bg-forest .watermark,
section.bg-moss .watermark {
  filter: invert(1);
  opacity: 0.11;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
}
.btn-primary { background: var(--leaf); color: var(--cream); border-color: var(--leaf); }
.btn-primary:hover { background: var(--forest); color: var(--cream); border-color: var(--forest); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--cream); transform: translateY(-2px); }
.btn-clay { background: var(--clay); color: var(--cream); border-color: var(--clay); }
.btn-clay:hover { background: var(--forest); color: var(--cream); border-color: var(--forest); transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: var(--cream); border-color: rgba(245, 239, 226, 0.5); }
.btn-ghost-light:hover { background: var(--cream); color: var(--forest); border-color: var(--cream); }

/* ============================================================
   Image wrap + placeholder
   ============================================================ */
.img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--sand);
}
.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-card);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.img-wrap:hover img { transform: scale(1.03); }
.img-wrap.warm::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(245, 239, 226, 0.08);
  pointer-events: none; border-radius: var(--radius-card);
}
.img-wrap[data-placeholder]::before {
  content: attr(data-placeholder);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; text-align: center;
  font-family: var(--font-body);
  font-size: 12px; letter-spacing: 0.04em;
  color: var(--forest);
  background: var(--sand);
  border: 1.5px dashed var(--forest);
  border-radius: var(--radius-card);
  opacity: 0.85; z-index: 0;
}
.img-wrap img { position: relative; z-index: 1; }
.img-wrap img.broken { display: none; }

/* Poster-fit — show the whole image (no cropping) with a blurred copy filling the gaps */
.img-wrap.poster-fit { background: var(--forest); }
.img-wrap.poster-fit .poster-bg {
  position: absolute;
  inset: -30px;
  background-size: cover;
  background-position: center;
  filter: blur(28px) brightness(0.5) saturate(1.1);
  z-index: 0;
  pointer-events: none;
}
.img-wrap.poster-fit img {
  position: relative;
  z-index: 1;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,0.35));
}

/* ============================================================
   Promo bar
   ============================================================ */
.promo-bar {
  background: var(--forest);
  color: var(--cream);
  font-size: 12.5px;
  padding: 10px 0;
  text-align: center;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 101;
}
.promo-bar a { color: var(--gold); font-weight: 500; }
.promo-bar a:hover { color: var(--cream); }
.promo-bar .sep { opacity: 0.4; margin: 0 12px; }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky; top: 0;
  background: rgba(245, 239, 226, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 0.5px solid rgba(31, 58, 31, 0.1);
  z-index: 100;
  transition: background 0.3s ease;
}
.nav.scrolled { background: rgba(245, 239, 226, 0.98); }
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-head); font-size: 24px; color: var(--forest);
  font-weight: 500; letter-spacing: -0.01em;
}
.nav-logo img { width: 48px; height: 48px; object-fit: contain; border-radius: 50%; }
.nav-logo .italic { font-style: italic; font-weight: 400; color: var(--leaf); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a, .nav-links .dropdown-trigger {
  color: var(--forest);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  background: none; border: none; padding: 0; cursor: pointer;
  font-family: inherit;
}
.nav-links a::after, .nav-links .dropdown-trigger::after {
  content: ""; position: absolute;
  left: 50%; bottom: -6px;
  width: 0; height: 1.5px; background: var(--leaf);
  transition: width 0.3s ease, left 0.3s ease;
}
.nav-links a.is-active::after { width: 100%; left: 0; }
.nav-links a:hover, .nav-links .dropdown-trigger:hover { color: var(--leaf); }
.nav-links a:hover::after, .nav-links .dropdown-trigger:hover::after { width: 100%; left: 0; }
.nav-cta { padding: 10px 22px; font-size: 12px; }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 32px;
  flex-direction: column; justify-content: center; gap: 6px;
  padding: 0;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px; background: var(--forest);
  transition: transform 0.3s ease;
}

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 99;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 32px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--forest);
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 500;
}
.mobile-menu a.is-active { color: var(--leaf); }

/* ============================================================
   Page-banner — used on every page below the nav (not home)
   ============================================================ */
.page-banner {
  padding: 100px 0 80px;
  position: relative;
  background: var(--bone);
  overflow: hidden;
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner-breadcrumb {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  opacity: 0.6;
  margin-bottom: 18px;
}
.page-banner-breadcrumb a { color: var(--leaf); }

/* ============================================================
   HERO (homepage)
   ============================================================ */
.hero {
  padding: 80px 0 100px;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-text { position: relative; }
.hero-text p { font-size: 17px; max-width: 48ch; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-ctas .meta {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 16px;
  color: var(--forest);
  opacity: 0.7;
  padding-left: 8px;
}
.hero-imgs {
  position: relative;
  height: 620px;
}
.hero-imgs .img-wrap {
  position: absolute;
  box-shadow: 0 30px 80px -30px rgba(31, 58, 31, 0.25);
}
.hero-imgs .img-main {
  top: 0; right: 0;
  width: 78%; height: 88%;
  transform: rotate(1.5deg);
}
.hero-imgs .img-overlay {
  bottom: 0; left: 0;
  width: 44%; height: 36%;
  transform: rotate(-3deg);
  border: 8px solid var(--cream);
}

/* Hero icon row */
.hero-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 0.5px solid rgba(31, 58, 31, 0.18);
  position: relative; z-index: 2;
}
.hero-icon { text-align: left; }
.hero-icon .icon {
  width: 32px; height: 32px;
  margin-bottom: 12px;
  color: var(--leaf);
}
.hero-icon h4 {
  font-family: var(--font-head);
  font-size: 22px;
  margin: 0 0 4px;
}
.hero-icon p {
  font-size: 13px;
  color: var(--forest);
  opacity: 0.75;
  margin: 0; max-width: none;
}

/* ============================================================
   Three feature blocks (home)
   ============================================================ */
.tri-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}
.tri-block {
  background: var(--cream);
  border: 0.5px solid rgba(31, 58, 31, 0.1);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tri-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -20px rgba(31, 58, 31, 0.2);
}
.tri-block .img-wrap { aspect-ratio: 5 / 4; border-radius: 0; }
.tri-block .img-wrap img { border-radius: 0; }
.tri-block-body {
  padding: 28px;
  flex: 1;
  display: flex; flex-direction: column;
}
.tri-block .eyebrow { margin-bottom: 12px; }
.tri-block h3 { font-size: 28px; margin-bottom: 12px; }
.tri-block p { flex: 1; font-size: 15px; color: var(--forest); opacity: 0.85; }
.tri-block-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--leaf);
}
.tri-block-link:hover { color: var(--clay); gap: 12px; }

/* ============================================================
   Welcome strip
   ============================================================ */
.welcome { padding: 88px 0; text-align: center; position: relative; }
.welcome-inner { max-width: 760px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
.welcome p { margin: 0 auto 0; font-size: 18px; max-width: 56ch; opacity: 0.92; }

/* ============================================================
   Feature row (alternating editorial)
   ============================================================ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-imgs { order: 2; }
.feature-row.reverse .feature-text { order: 1; }
.feature-imgs {
  position: relative;
  height: 500px;
}
.feature-imgs .img-wrap {
  position: absolute;
  box-shadow: 0 20px 50px -20px rgba(31, 58, 31, 0.25);
}
.feature-imgs .img-primary {
  top: 0; left: 0;
  width: 78%; height: 78%;
}
.feature-imgs .img-secondary {
  bottom: 0; right: 0;
  width: 50%; height: 40%;
  border: 6px solid var(--cream);
}
.feature-row.reverse .feature-imgs .img-primary { left: auto; right: 0; }
.feature-row.reverse .feature-imgs .img-secondary { right: auto; left: 0; }

.feature-text { padding: 16px 0; }
.feature-num {
  font-family: var(--font-head);
  font-size: 80px;
  font-style: italic;
  font-weight: 400;
  color: var(--leaf);
  line-height: 0.8;
  margin-bottom: 12px;
  opacity: 0.85;
}
.feature-text h2 { margin-bottom: 16px; }
.feature-meta {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 500;
  margin-bottom: 20px;
}
.feature-text p { font-size: 16.5px; margin-bottom: 28px; max-width: 50ch; }

/* ============================================================
   Team grid
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative; z-index: 2;
}
.team-card {
  position: relative;
  display: flex; flex-direction: column;
}
.team-card .img-wrap { aspect-ratio: 3 / 4; margin-bottom: 20px; }
.team-card h3 { font-size: 26px; margin-bottom: 4px; }
.team-card .role {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 500;
  margin-bottom: 12px;
}
.team-card p { font-size: 14.5px; margin-bottom: 16px; }
.team-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--leaf);
}

/* ============================================================
   Instagram feed
   ============================================================ */
.insta-block { position: relative; z-index: 2; }
.insta-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px;
}
.insta-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--sand);
  border: 2px solid var(--leaf);
}
.insta-handle {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--forest);
  margin: 0;
}
.insta-handle small {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  opacity: 0.65;
  font-weight: 400;
  margin-top: 2px;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.insta-grid .img-wrap {
  aspect-ratio: 1 / 1;
  border-radius: 4px;
}
.insta-grid .img-wrap img { border-radius: 4px; }
.insta-cta {
  margin-top: 24px;
  text-align: center;
}
.insta-cta a {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--leaf);
}

/* ============================================================
   YouTube embed
   ============================================================ */
.yt-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--forest);
  box-shadow: 0 30px 70px -25px rgba(31, 58, 31, 0.3);
}
.yt-embed iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ============================================================
   Retreat poster row
   ============================================================ */
.retreat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative; z-index: 2;
}
.retreat-poster {
  position: relative;
  height: 600px;
}
.retreat-poster .img-wrap {
  position: absolute; inset: 0;
  box-shadow: 0 30px 70px -25px rgba(31, 58, 31, 0.3);
}
.retreat-poster-tag {
  position: absolute;
  top: -16px; left: -16px;
  background: var(--gold);
  color: var(--forest);
  padding: 12px 20px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 18px;
  z-index: 5;
  box-shadow: 0 10px 25px -10px rgba(31, 58, 31, 0.4);
}
.retreat-text h2 { margin-bottom: 12px; }
.retreat-text p { font-size: 17px; max-width: 50ch; }
.retreat-meta {
  display: grid;
  gap: 14px;
  margin: 28px 0;
  padding: 18px 0;
  border-top: 0.5px solid rgba(31, 58, 31, 0.18);
  border-bottom: 0.5px solid rgba(31, 58, 31, 0.18);
}
.retreat-meta-row {
  display: flex; justify-content: space-between;
  font-family: var(--font-body);
  font-size: 14px;
}
.retreat-meta-row .label {
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11.5px;
  color: var(--forest);
  opacity: 0.7;
}

/* ============================================================
   Menu (services menu list)
   ============================================================ */
.menu-categories { display: grid; gap: 56px; position: relative; z-index: 2; }
.menu-cat {
  position: relative;
  padding-left: 28px;
}
.menu-cat::before {
  content: ""; position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 3px;
  background: var(--cat-color, var(--leaf));
  border-radius: 2px;
}
.menu-cat[data-chakra="root"]    { --cat-color: var(--chakra-root); }
.menu-cat[data-chakra="sacral"]  { --cat-color: var(--chakra-sacral); }
.menu-cat[data-chakra="solar"]   { --cat-color: var(--chakra-solar); }
.menu-cat[data-chakra="heart"]   { --cat-color: var(--chakra-heart); }
.menu-cat[data-chakra="throat"]  { --cat-color: var(--chakra-throat); }
.menu-cat[data-chakra="third"]   { --cat-color: var(--chakra-third); }
.menu-cat[data-chakra="crown"]   { --cat-color: var(--chakra-crown); }
.menu-cat-header {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 0.5px solid rgba(31, 58, 31, 0.2);
}
.menu-cat-header h3 {
  font-family: var(--font-head);
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 500;
  margin: 0;
}
.menu-cat-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cat-color, var(--leaf));
}
.menu-row {
  display: grid;
  grid-template-columns: 2fr 0.9fr 0.7fr auto;
  gap: 20px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 0.5px solid rgba(31, 58, 31, 0.1);
  transition: padding-left 0.3s ease;
}
.menu-row:hover { padding-left: 8px; }
.menu-row:last-child { border-bottom: none; }
.menu-row-name {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--forest);
  font-weight: 500;
}
.menu-row-note {
  display: block;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
  opacity: 0.65;
  margin-top: 4px;
}
.menu-row-duration {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--forest);
  opacity: 0.7;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.menu-row-price {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 500;
  color: var(--forest);
}
.menu-row-cta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--leaf);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.menu-row-cta:hover { color: var(--clay); }
.menu-cta-banner {
  margin-top: 72px;
  background: var(--forest);
  color: var(--cream);
  padding: 40px 48px;
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  transition: background 0.3s ease;
  position: relative; z-index: 2;
}
.menu-cta-banner:hover { background: var(--leaf); }
.menu-cta-banner h3 {
  font-family: var(--font-head);
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--cream);
  margin: 0;
}
.menu-cta-banner h3 .italic { font-style: italic; color: var(--gold); }
.menu-cta-banner-arrow {
  font-family: var(--font-head);
  font-size: 32px;
  color: var(--gold);
}

/* ============================================================
   About (split image stack)
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 96px;
  align-items: center;
  position: relative; z-index: 2;
}
.about-imgs { position: relative; height: 640px; }
.about-imgs .img-wrap {
  position: absolute;
  box-shadow: 0 20px 50px -20px rgba(31, 58, 31, 0.25);
}
.about-imgs .img-1 { top: 0; left: 0; width: 70%; height: 60%; transform: rotate(-2deg); }
.about-imgs .img-2 { bottom: 0; right: 0; width: 64%; height: 52%; transform: rotate(2deg); border: 6px solid var(--cream); }
.about-tag {
  position: absolute;
  bottom: 12%; left: 8%;
  background: var(--clay);
  color: var(--cream);
  padding: 14px 20px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 16px;
  font-style: italic;
  z-index: 5;
  box-shadow: 0 10px 30px -10px rgba(31, 58, 31, 0.4);
}
.about-text p { font-size: 17px; }
.credentials {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 32px 0 0;
}
.credential {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid var(--leaf);
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--forest);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ============================================================
   Space masonry
   ============================================================ */
.space-hero {
  position: relative;
  height: 420px;
  margin-top: 32px;
  margin-bottom: 24px;
  z-index: 2;
}
.space-hero .img-wrap { position: absolute; inset: 0; box-shadow: 0 30px 60px -25px rgba(31, 58, 31, 0.3); }
.space-hero-label {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--cream);
  color: var(--forest);
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 18px;
  z-index: 5;
  box-shadow: 0 10px 25px -10px rgba(31, 58, 31, 0.4);
}
.space-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
  position: relative; z-index: 2;
}
.space-grid .img-wrap { height: 100%; }
.space-1 { grid-column: span 6; grid-row: span 2; }
.space-2 { grid-column: span 6; grid-row: span 2; }
.space-3 { grid-column: span 4; grid-row: span 2; }
.space-4 { grid-column: span 4; grid-row: span 2; }
.space-5 { grid-column: span 4; grid-row: span 2; }

/* ============================================================
   Community scroller
   ============================================================ */
.community-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 320px;
  gap: 24px;
  overflow-x: auto;
  padding: 40px 32px 20px;
  margin: 0 -32px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  position: relative; z-index: 2;
}
.community-scroller::-webkit-scrollbar { height: 6px; }
.community-scroller::-webkit-scrollbar-track { background: transparent; }
.community-scroller::-webkit-scrollbar-thumb { background: rgba(31, 58, 31, 0.2); border-radius: 3px; }
.community-card {
  scroll-snap-align: start;
  display: flex; flex-direction: column;
  gap: 14px;
}
.community-card .img-wrap {
  aspect-ratio: 4 / 5;
  box-shadow: 0 18px 40px -20px rgba(31, 58, 31, 0.3);
}
.community-card-caption {
  font-family: var(--font-head);
  font-size: 18px;
  font-style: italic;
  color: var(--forest);
}
.community-card:nth-child(even) .img-wrap { transform: translateY(20px); }

/* ============================================================
   Training stats
   ============================================================ */
.training-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative; z-index: 2;
}
.training-text h2 { color: var(--cream); }
.training-text .section-subtitle { color: var(--cream); opacity: 0.8; }
.training-text p { color: var(--cream); opacity: 0.9; max-width: 540px; }
.training-price-chip {
  display: inline-block;
  background: var(--clay);
  color: var(--cream);
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 12px 0 28px;
}
.training-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 36px 0;
  padding: 24px 0;
  border-top: 0.5px solid rgba(245, 239, 226, 0.2);
  border-bottom: 0.5px solid rgba(245, 239, 226, 0.2);
}
.training-stat .stat-num {
  font-family: var(--font-head);
  font-size: 40px;
  font-style: italic;
  color: var(--gold);
  line-height: 1; margin-bottom: 4px;
}
.training-stat .stat-label {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: var(--cream);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.training-img {
  position: relative;
  height: 540px;
}
.training-img .img-wrap {
  position: absolute; inset: 0;
  border: 6px solid rgba(245, 239, 226, 0.1);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.5);
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative; z-index: 2;
}
.testimonial {
  background: var(--cream);
  border: 0.5px solid rgba(31, 58, 31, 0.1);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(31, 58, 31, 0.18);
}
.testimonial-mark {
  font-family: var(--font-head);
  font-size: 80px;
  color: var(--leaf);
  line-height: 0.6;
  margin-bottom: 12px;
  font-style: italic;
  opacity: 0.4;
}
.stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; margin-bottom: 14px; }
.testimonial-quote {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--forest);
  margin: 0 0 20px;
}
.testimonial-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.testimonial-loc {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--forest);
  opacity: 0.6;
  margin-top: 2px;
  letter-spacing: 0.02em;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  margin-top: 24px;
  max-width: 880px;
  position: relative; z-index: 2;
}
.faq details {
  border-bottom: 0.5px solid rgba(31, 58, 31, 0.18);
  padding: 24px 0;
}
.faq details:first-of-type { border-top: 0.5px solid rgba(31, 58, 31, 0.18); }
.faq summary {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 500;
  color: var(--forest);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.25s ease;
}
.faq summary:hover { color: var(--leaf); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 32px;
  color: var(--leaf);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin-top: 16px;
  font-size: 16.5px;
  color: var(--forest);
  opacity: 0.85;
}

/* ============================================================
   Visit
   ============================================================ */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: center;
  position: relative; z-index: 2;
}
.visit-img-wrap { position: relative; height: 540px; }
.visit-img-wrap .img-wrap {
  position: absolute; inset: 0;
  box-shadow: 0 30px 60px -25px rgba(31, 58, 31, 0.3);
}
.visit-pin {
  position: absolute;
  top: -18px; right: -18px;
  background: var(--clay);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 16px;
  z-index: 5;
  box-shadow: 0 10px 25px -10px rgba(31, 58, 31, 0.4);
}
.visit-address {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 500;
  color: var(--forest);
  margin: 16px 0 32px;
  line-height: 1.3;
}
.hours {
  display: grid;
  gap: 0;
  margin-bottom: 32px;
  padding: 8px 0;
  border-top: 0.5px solid rgba(31, 58, 31, 0.18);
  border-bottom: 0.5px solid rgba(31, 58, 31, 0.18);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14.5px;
  border-bottom: 0.5px dotted rgba(31, 58, 31, 0.1);
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child {
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12.5px;
}
.contact-line {
  font-size: 15px;
  margin-bottom: 24px;
  color: var(--forest);
  opacity: 0.85;
}
.contact-line strong { font-weight: 500; }

/* ============================================================
   Steps (first visit)
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  position: relative; z-index: 2;
}
.step {
  position: relative;
  padding-top: 24px;
  border-top: 2px solid var(--leaf);
}
.step-num {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 400;
  font-size: 80px;
  color: var(--leaf);
  line-height: 0.9;
  margin-bottom: 12px;
}
.step h3 { font-size: 26px; margin-bottom: 12px; }
.step p { font-size: 16px; }

/* ============================================================
   Generic community cta band
   ============================================================ */
.community-cta {
  margin-top: 48px;
  background: var(--cream);
  border: 2px solid var(--leaf);
  padding: 32px 40px;
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  position: relative; z-index: 2;
  transition: background 0.3s ease;
}
.community-cta:hover { background: var(--sand); }
.community-cta-text {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--forest);
}
.community-cta-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--forest);
  opacity: 0.65;
  margin-top: 4px;
  letter-spacing: 0.04em;
  font-style: normal;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--forest);
  color: var(--cream);
  padding: 88px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer .watermark {
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  opacity: 0.05;
  filter: invert(1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.8fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 0.5px solid rgba(245, 239, 226, 0.15);
  position: relative; z-index: 2;
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin: 0 0 18px;
}
.footer a { color: var(--cream); display: block; padding: 5px 0; font-size: 14px; opacity: 0.85; }
.footer a:hover { color: var(--gold); opacity: 1; }
.footer-tag {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 22px;
  color: rgba(245, 239, 226, 0.92);
  margin: 0 0 16px;
  max-width: 28ch;
}
.footer-brand {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--cream);
}
.footer-brand .italic { font-style: italic; color: var(--gold); }
.socials { display: flex; gap: 10px; margin-top: 10px; }
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  padding: 0;
  border: 1px solid rgba(245, 239, 226, 0.3);
  border-radius: 50%;
  transition: all 0.25s ease;
  opacity: 1;
}
.socials a:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--forest);
}
.socials svg { width: 15px; height: 15px; fill: currentColor; }
.footer-bottom {
  padding-top: 32px;
  font-size: 12px;
  color: rgba(245, 239, 226, 0.5);
  text-align: center;
  letter-spacing: 0.04em;
  position: relative; z-index: 2;
}

/* ============================================================
   Fade-up animation
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .img-wrap:hover img { transform: none; }
}

/* ============================================================
   Responsive — tablet
   ============================================================ */
@media (max-width: 1024px) {
  :root { --pad-section: 88px; }
  .nav-links { gap: 18px; }
  .hero-grid { gap: 40px; }
  .hero-icons { grid-template-columns: repeat(2, 1fr); gap: 24px 32px; }
  .tri-blocks { grid-template-columns: 1fr; gap: 20px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: span 3; padding-top: 24px; border-top: 0.5px solid rgba(245,239,226,0.15); }
  .feature-row { gap: 56px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   Responsive — mobile
   ============================================================ */
@media (max-width: 768px) {
  :root { --pad-section: 64px; }
  section { padding: var(--pad-section-mobile) 0; }
  .container { padding: 0 24px; }
  body { font-size: 16px; }
  .promo-bar { font-size: 11px; padding: 8px 16px; }
  .promo-bar .sep { display: none; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 56px 0 64px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-imgs { height: 480px; order: 2; }
  .hero-text { order: 1; }
  .hero-imgs .img-main { width: 80%; height: 82%; }
  .hero-imgs .img-overlay { width: 50%; height: 38%; }
  .hero-icons { grid-template-columns: repeat(2, 1fr); gap: 24px 24px; margin-top: 48px; padding-top: 32px; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; margin-bottom: 64px; }
  .feature-row.reverse .feature-imgs { order: 0; }
  .feature-row.reverse .feature-text { order: 0; }
  .feature-imgs { height: 420px; }
  .feature-num { font-size: 56px; }
  .menu-row { grid-template-columns: 1fr; gap: 4px; padding: 18px 0; }
  .menu-row-duration, .menu-row-price, .menu-row-cta { font-size: 13px; }
  .menu-row-price { font-size: 20px; }
  .menu-cta-banner { padding: 28px; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-imgs { height: 480px; }
  .space-hero { height: 260px; }
  .space-hero-label { font-size: 14px; padding: 10px 16px; bottom: 14px; left: 14px; }
  .space-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .space-1, .space-2, .space-5 { grid-column: span 2; grid-row: span 1; }
  .space-3, .space-4 { grid-column: span 1; grid-row: span 1; }
  .training-grid { grid-template-columns: 1fr; gap: 48px; }
  .training-img { height: 420px; }
  .training-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .training-stat .stat-num { font-size: 32px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .team-grid { grid-template-columns: 1fr; gap: 32px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .retreat-row { grid-template-columns: 1fr; gap: 48px; }
  .retreat-poster { height: 480px; }
  .visit-grid { grid-template-columns: 1fr; gap: 48px; }
  .visit-img-wrap { height: 420px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > div:first-child { grid-column: span 2; }
  .footer-grid > div:last-child { grid-column: span 2; padding-top: 0; border: none; }
  .community-cta { padding: 24px; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-text p { font-size: 15px; }
  .menu-cta-banner { padding: 24px; }
  .page-h1 { font-size: 48px; }
}

/* ============================================================
   MOBILE SAFETY NET — flatten all overlapping image stacks on
   small screens so nothing spills off, no rotated overflow,
   no secondary cards crowding the primary.
   ============================================================ */
@media (max-width: 768px) {
  /* Every section is guaranteed to clip overflow */
  section, header, footer, main { overflow-x: hidden; }
  html, body { max-width: 100%; overflow-x: hidden; }

  /* Watermarks — small and contained on mobile */
  .watermark-hero { width: 360px; height: 360px; right: -10%; top: 10%; opacity: 0.05; }
  .watermark-section { width: 320px; height: 320px; right: -12%; opacity: 0.05; }
  .watermark-left { width: 320px; height: 320px; left: -12%; opacity: 0.05; }
  .footer .watermark { width: 300px; height: 300px; opacity: 0.04; }

  /* Universal flatten: any 2-image overlapping stack becomes a single image */
  .hero-imgs,
  .feature-imgs,
  .about-imgs,
  .featured-practitioner .imgs,
  .bio-imgs,
  .story-imgs,
  .gr-hero .imgs,
  .k-hero .imgs,
  .s-hero .imgs,
  .split .imgs,
  .visit-img-wrap,
  .retreat-poster,
  .training-img {
    height: auto !important;
    aspect-ratio: 4 / 5;
    max-height: 480px;
    position: relative !important;
  }

  /* Primary image: fills the container, no rotation, no absolute positioning */
  .hero-imgs .img-main,
  .hero-imgs .img-wrap,
  .feature-imgs .img-primary,
  .about-imgs .img-1,
  .featured-practitioner .imgs .img-main,
  .bio-imgs .img-portrait,
  .story-imgs .img-1,
  .gr-hero .imgs .img-1,
  .k-hero .imgs .img-1,
  .s-hero .imgs .img-1,
  .split .imgs .img-1,
  .visit-img-wrap .img-wrap,
  .retreat-poster .img-wrap,
  .training-img .img-wrap {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
    border: 0 !important;
    box-shadow: 0 20px 40px -20px rgba(31, 58, 31, 0.2) !important;
  }

  /* Hide all secondary/overlap images on mobile — they're decoration */
  .hero-imgs .img-overlay,
  .feature-imgs .img-secondary,
  .about-imgs .img-2,
  .featured-practitioner .imgs .img-overlay,
  .bio-imgs .img-detail,
  .story-imgs .img-2,
  .gr-hero .imgs .img-2,
  .k-hero .imgs .img-2,
  .s-hero .imgs .img-2,
  .split .imgs .img-2 {
    display: none !important;
  }

  /* Floating chip tags (about-tag, retreat-poster-tag, visit-pin, space-hero-label,
     featured-tag, bio-tag, story-tag) — bring them inside the parent */
  .about-tag, .story-tag, .bio-tag, .featured-tag,
  .retreat-poster-tag, .visit-pin, .space-hero-label {
    font-size: 13px !important;
    padding: 8px 14px !important;
    top: 12px !important;
    right: 12px !important;
    left: auto !important;
    bottom: auto !important;
  }
  .space-hero-label { top: auto !important; bottom: 12px !important; left: 12px !important; right: auto !important; }
  .visit-pin { top: -10px !important; right: 12px !important; }

  /* Sticky stuff: disable on mobile */
  .bio-imgs, .story-imgs { position: relative !important; top: 0 !important; }

  /* Newsletter form: stack vertically on tiny screens */
  .newsletter-form { flex-direction: column; }
  .newsletter-form input[type="email"] { min-width: 0; width: 100%; }
  .newsletter-form button { width: 100%; }

  /* Hero icon row: cards always stack readably */
  .hero-icons { gap: 20px !important; }
  .hero-icon h4 { font-size: 18px; }
  .hero-icon p { font-size: 12px; }

  /* Menu rows: never let prices/durations break to new lines awkwardly */
  .menu-row { padding: 16px 0; }
  .menu-row-name { font-size: 18px; }
  .menu-row-price { font-size: 18px; display: inline-block; margin-right: 12px; }
  .menu-row-duration { display: inline-block; }
  .menu-row-cta { display: inline-block; margin-top: 6px; }

  /* Training stats: tighter */
  .training-stats { gap: 12px; padding: 16px 0; }
  .training-stat .stat-num { font-size: 24px; }
  .training-stat .stat-label { font-size: 10px; }

  /* CTA buttons: never let them push the page wider */
  .btn { padding: 12px 22px; font-size: 12.5px; }

  /* Tri-blocks, team-card, social-card etc — fit content cleanly */
  .tri-block-body, .team-card { padding: 24px; }

  /* Page banner: smaller padding */
  .page-banner { padding: 64px 0 48px; }
  .page-h1 { font-size: 44px; }

  /* Contact form on visit page */
  .contact-channels { gap: 16px; }

  /* Bio meta: don't let the labels and values squeeze together */
  .bio-meta-row, .retreat-meta-row { flex-direction: column; gap: 4px; }
  .bio-meta-row .label, .retreat-meta-row .label { margin-bottom: 0; }

  /* Footer socials and links: don't overflow */
  .socials { flex-wrap: wrap; }

  /* Make the Aroma menu board readable */
  .menu-board { padding: 24px; }

  /* Step-vertical cards on kambo: cleaner stack */
  .step-v { padding: 20px; }
  .step-v .num { font-size: 36px; }

  /* Event cards on community: smaller */
  .event-card { padding: 20px; gap: 16px; }
  .event-date { padding: 10px 14px; min-width: 72px; }
  .event-date .day { font-size: 26px; }

  /* Featured practitioner on team: never two columns on mobile */
  .featured-practitioner { grid-template-columns: 1fr !important; gap: 40px; }
  .featured-name { font-size: 40px; }

  /* Founders strip on home */
  .founder { grid-template-columns: 1fr !important; gap: 16px; }
  .founder .img-wrap { max-height: 320px; aspect-ratio: 4/5; }

  /* Generic image cards always behave inside their container */
  .img-wrap { max-width: 100%; }
  .img-wrap img { max-width: 100%; }
}
