/* ============================================================
   FONT DECLARATIONS
   Place font files in /fonts/ folder
   ============================================================ */

@font-face {
  font-family: 'PPEditorialOld';
  src: url('../fonts/PPEditorialOld-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PPEditorialOld';
  src: url('../fonts/PPEditorialOld-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'SuisseBPIntl';
  src: url('../fonts/SuisseBPIntl-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SuisseBPIntl';
  src: url('../fonts/SuisseBPIntl-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SuisseBPIntl';
  src: url('../fonts/SuisseBPIntl-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   CSS VARIABLES / DESIGN TOKENS
   ============================================================ */

:root {
  /* Fonts */
  --font-serif:    'PPEditorialOld', 'Georgia', serif;
  --font-sans:     'SuisseBPIntl', 'Helvetica Neue', Arial, sans-serif;

  /* Colors */
  --color-white:           #ffffff;
  --color-black:           #0a0a0a;
  --color-dark-bg:         #111111;
  --color-nav-bg:          rgba(0, 0, 0, 0.15);
  --color-overlay:         rgba(0, 0, 0, 0.38);
  --color-border-white:    rgba(255, 255, 255, 0.85);
  --color-text-light:      rgba(255, 255, 255, 0.75);

  /* Healing accent — warm amber gold */
  --color-healing:         #B8865C;
  --color-healing-light:   #F5EDE3;
  --color-healing-border:  #C9986F;

  /* Spacing */
  --nav-height: 72px;

  /* Transitions */
  --transition-base: 0.3s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--color-black);
  background-color: var(--color-dark-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ============================================================
   NAVBAR
   ============================================================ */

.site-navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 0;
  background: transparent;
  border-bottom: none;
  transition: background var(--transition-base);
}

/* Sticky scroll state */
.site-navbar.is-scrolled {
  position: fixed;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
}

/* Logo */
.navbar-logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.14em;
  color: var(--color-white);
  line-height: 1.1;
  text-transform: uppercase;
}

.logo-tagline {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  line-height: 1.6;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 8px;
}

/* Nav links */
.navbar-nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item-custom {
  display: flex;
  align-items: center;
}

.nav-item-custom .nav-link-custom {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  text-decoration: none;
  padding: 4px 16px;
  transition: color var(--transition-base);
}

.nav-item-custom .nav-link-custom:hover {
  color: rgba(255, 255, 255, 0.65);
}

.nav-separator {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
  font-size: 14px;
  user-select: none;
}

/* Nav right actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-cart-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--color-white);
  display: flex;
  align-items: center;
  transition: opacity var(--transition-base);
}

.nav-cart-btn:hover {
  opacity: 0.65;
}

.nav-cart-btn svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.nav-account-btn {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: transparent;
  padding: 10px 22px;
  text-decoration: none;
  transition: background var(--transition-base), color var(--transition-base), border-color var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
}

.nav-account-btn:hover {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}

/* Mobile hamburger */
.navbar-toggler-custom {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}

.navbar-toggler-custom span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--color-white);
  transition: all var(--transition-base);
}

/* Mobile menu overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.mobile-nav-overlay.is-open {
  display: flex;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-nav-links a {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-white);
  text-decoration: none;
  transition: color var(--transition-base);
}

.mobile-nav-links a:hover {
  color: rgba(255, 255, 255, 0.55);
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-white);
  font-size: 28px;
  line-height: 1;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 16px;
  max-width: 760px;
  margin: 0 auto;
}

.hero-headline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(40px, 6.5vw, 80px);
  line-height: 1.1;
  color: var(--color-white);
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  background: transparent;
  padding: 15px 36px;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition-base), color var(--transition-base), border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-white);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  z-index: -1;
}

.hero-cta:hover::before {
  transform: translateX(0);
}

.hero-cta:hover {
  color: var(--color-black);
  border-color: var(--color-white);
}

.hero-cta-arrow {
  display: inline-block;
  transition: transform var(--transition-base);
}

.hero-cta:hover .hero-cta-arrow {
  transform: translateX(4px);
}

/* ============================================================
   SECTION 2 — DISCLAIMER / EDITORIAL DESCRIPTION
   ============================================================ */

.disclaimer-section {
  background-color: var(--color-white);
  padding: 96px 0 88px;
}

/* Eyebrow label */
.disclaimer-eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #555555;
  margin-bottom: 28px;
  display: block;
}

/* Large editorial headline */
.disclaimer-headline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-black);
  margin-bottom: 72px;
  max-width: 860px;
}

/* ── Accordion List ──────────────────────────────────────── */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #d8d8d8;
}

.feature-item {
  border-bottom: 1px solid #d8d8d8;
  position: relative;
  transition: background var(--transition-base);
}

/* Active item background wash */
.feature-item.is-open {
  background-color: var(--color-healing-light);
}

/* Accent left border reveal on open */
.feature-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-healing-border);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item.is-open::before {
  transform: scaleY(1);
}

/* ── Accordion Header (the trigger button) ────────────────── */
.feature-item-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 20px 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: padding var(--transition-base);
}

.feature-item.is-open .feature-item-header {
  padding-bottom: 8px;
}

.feature-item-title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-black);
  transition: color 0.3s ease;
  line-height: 1;
}

/* Hover — warm healing gold on the title */
.feature-item-header:hover .feature-item-title {
  color: var(--color-healing);
}

.feature-item.is-open .feature-item-title {
  color: var(--color-healing);
}

/* Plus / Minus icon */
.feature-item-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.35s ease;
}

.feature-item-header:hover .feature-item-icon {
  border-color: var(--color-healing);
  background: var(--color-healing-light);
}

.feature-item.is-open .feature-item-icon {
  border-color: var(--color-healing);
  background: var(--color-healing);
  transform: rotate(45deg);
}

.feature-item-icon::before,
.feature-item-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  color: rgba(0,0,0,0.5);
  transition: background 0.3s ease;
}

.feature-item-icon::before {
  width: 8px;
  height: 1px;
}

.feature-item-icon::after {
  width: 1px;
  height: 8px;
}

.feature-item.is-open .feature-item-icon::before,
.feature-item.is-open .feature-item-icon::after {
  color: var(--color-white);
  background: var(--color-white);
}

/* ── Accordion Body (collapsible panel) ───────────────────── */
.feature-item-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.35s ease;
  opacity: 0;
}

.feature-item.is-open .feature-item-body {
  opacity: 1;
}

.feature-item-desc {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
  color: #555555;
  padding: 0 64px 22px 16px;
  margin: 0;
  max-width: 680px;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.text-serif { font-family: var(--font-serif); }
.text-sans  { font-family: var(--font-sans); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 991px) {
  .navbar-nav-links,
  .navbar-actions .nav-account-btn {
    display: none;
  }

  .navbar-toggler-custom {
    display: flex;
  }

  .hero-headline {
    font-size: clamp(34px, 6vw, 56px);
  }
}

/* Mobile */
@media (max-width: 575px) {
  .site-navbar {
    padding: 16px 0;
  }

  .hero-headline {
    font-size: clamp(30px, 8.5vw, 44px);
    margin-bottom: 30px;
  }

  .hero-cta {
    padding: 13px 28px;
    font-size: 12px;
  }

  /* Section 2 mobile */
  .disclaimer-section {
    padding: 64px 0 56px;
  }

  .disclaimer-headline {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 48px;
  }

  .feature-item-header {
    padding: 16px 0 16px 12px;
  }

  .feature-item-title {
    font-size: 10px;
  }

  .feature-item-desc {
    font-size: 13px;
    padding: 0 24px 18px 12px;
  }
}

/* ============================================================
   SECTION 3 — SESSION TILES GRID
   ============================================================ */

.sessions-section {
  background-color: var(--color-white);
  padding: 96px 0 88px;
  border-top: 1px solid #e8e8e8;
}

/* Section heading */
.sessions-heading {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--color-black);
  text-transform: uppercase;
  margin-bottom: 56px;
}

/* ── Tile Grid ───────────────────────────────────────────── */
.session-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ── Single Tile (copy-paste this entire block) ──────────── */
.session-tile {
  display: flex;
  flex-direction: column;
  gap: 0;
  cursor: pointer;
}

/* Image wrapper */
.session-tile-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #111;
}

.session-tile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.55s ease;
  filter: brightness(0.92) saturate(0.95);
}

.session-tile:hover .session-tile-img {
  transform: scale(1.04);
  filter: brightness(0.78) saturate(1.05);
}

/* Dark overlay on hover */
.session-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.08) 40%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 1;
}

.session-tile:hover .session-tile-overlay {
  opacity: 1;
}

/* Play button */
.session-tile-play {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.session-tile-play:hover,
.session-tile:hover .session-tile-play {
  background: var(--color-white);
  border-color: var(--color-white);
  transform: scale(1.08);
}

.session-tile-play svg {
  width: 14px;
  height: 14px;
  fill: var(--color-white);
  margin-left: 2px;
  transition: fill 0.3s ease;
}

.session-tile:hover .session-tile-play svg,
.session-tile-play:hover svg {
  fill: var(--color-black);
}

/* ── Tile Meta Info ──────────────────────────────────────── */
.session-tile-meta {
  padding: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.session-tile-label {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: #1a1a1a;
  margin: 0;
}

.session-tile-label strong {
  font-weight: 600;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 767px) {
  .session-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .sessions-heading {
    font-size: clamp(32px, 10vw, 56px);
    margin-bottom: 40px;
  }

  .sessions-section {
    padding: 64px 0 56px;
  }
}

/* Desktop — hide toggler */
@media (min-width: 992px) {
  .navbar-toggler-custom {
    display: none;
  }
}

/* ── Sessions CTA ────────────────────────────────────────── */
.sessions-cta-wrap {
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.sessions-cta-sub {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: 17px;
  letter-spacing: 0.01em;
  color: #888888;
  margin: 0;
  line-height: 1.5;
}

.sessions-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-black);
  text-decoration: none;
  border: 1.5px solid var(--color-healing-border);
  background: transparent;
  padding: 22px 60px;
  transition: color 0.42s ease, box-shadow 0.42s ease;
}

/* Gold gradient slide-in fill */
.sessions-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, #B8865C 0%, #D4AA7C 50%, #C9986F 100%);
  transform: translateX(-102%);
  transition: transform 0.48s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.sessions-cta-btn:hover::before {
  transform: translateX(0);
}

.sessions-cta-btn:hover {
  color: var(--color-white);
  box-shadow: 0 8px 40px rgba(184, 134, 92, 0.32);
}

/* Keep text and arrow above the fill layer */
.sessions-cta-label,
.sessions-cta-arrow {
  position: relative;
  z-index: 1;
}

.sessions-cta-arrow {
  display: inline-block;
  font-size: 16px;
  transition: transform 0.35s ease;
}

.sessions-cta-btn:hover .sessions-cta-arrow {
  transform: translateX(6px);
}

/* Mobile */
@media (max-width: 575px) {
  .sessions-cta-wrap {
    margin-top: 52px;
    gap: 20px;
  }

  .sessions-cta-sub {
    font-size: 15px;
  }

  .sessions-cta-btn {
    padding: 18px 36px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }
}

/* ============================================================
   SECTION 4 — CINEMATIC BANNER
   ============================================================ */

.cinematic-banner {
  position: relative;
  width: 100%;
  height: clamp(340px, 52vw, 600px);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Full-cover background image */
.cinematic-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: 0;
  transition: transform 0.8s ease;
}

.cinematic-banner:hover .cinematic-banner-bg {
  transform: scale(1.025);
}

/* Gradient — darkens left side where text sits, fades to transparent right */
.cinematic-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.42) 38%,
    rgba(0, 0, 0, 0.08) 65%,
    transparent 100%
  );
  z-index: 1;
}

/* Text block — left aligned, vertically centered */
.cinematic-banner-content {
  position: relative;
  z-index: 2;
  padding: 0 5vw;
  max-width: 520px;
}

.cinematic-banner-headline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--color-white);
  margin: 0 0 20px;
}

.cinematic-banner-body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(12px, 1.1vw, 15px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  letter-spacing: 0.01em;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 767px) {
  .cinematic-banner {
    height: clamp(300px, 80vw, 460px);
    align-items: flex-end;
  }

  .cinematic-banner-overlay {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.35) 55%,
      transparent 100%
    );
  }

  .cinematic-banner-content {
    padding: 0 24px 36px;
    max-width: 100%;
  }

  .cinematic-banner-body br {
    display: none;
  }
}


/* ============================================================
   GLOBAL SIDE PADDING FIX
   Increases horizontal padding across all sections
   ============================================================ */

.disclaimer-section .container-fluid,
.sessions-section .container-fluid,
.skills-section .container-fluid {
  padding-left:  clamp(28px, 8vw, 110px) !important;
  padding-right: clamp(28px, 8vw, 110px) !important;
}

/* ============================================================
   SECTION 5 — THE HEALING ARTS
   ============================================================ */

.skills-section {
  background-color: var(--color-white);
  padding: 100px 0 0;
  border-top: 1px solid #e8e8e8;
}

.skills-heading {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--color-black);
  text-transform: uppercase;
  margin-bottom: 64px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 72px 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.skill-tile {
  display: flex;
  flex-direction: column;
  cursor: default;
}

.skill-tile-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #111;
}

.skill-tile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.94) saturate(0.96);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.6s ease;
}

.skill-tile:hover .skill-tile-img {
  transform: scale(1.038);
  filter: brightness(0.85) saturate(1.04);
}

.skill-tile-content {
  padding: 22px 0 0;
}

.skill-tile-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--color-black);
  margin: 0 0 10px;
}

.skill-tile-desc {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.7;
  color: #555555;
  margin: 0;
  max-width: 400px;
}

/* GRAND FINALE (07) */
.skills-finale {
  position: relative;
  width: 100%;
  height: clamp(500px, 70vw, 780px);
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: 80px;
}

.skills-finale-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
  transition: transform 1s ease;
}

.skills-finale:hover .skills-finale-bg {
  transform: scale(1.03);
}

.skills-finale-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.48) 40%,
    rgba(0,0,0,0.12) 68%,
    transparent 100%
  );
  z-index: 1;
}

.skills-finale-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(28px, 8vw, 110px);
  max-width: 680px;
}

.skills-finale-number {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: block;
  margin-bottom: 16px;
}

.skills-finale-headline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(38px, 5.5vw, 76px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-white);
  margin: 0 0 28px;
}

.skills-finale-body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  margin: 0;
  max-width: 500px;
}

@media (max-width: 767px) {
  .skills-section { padding: 72px 0 0; }
  .skills-heading { font-size: clamp(36px, 11vw, 60px); margin-bottom: 44px; }
  .skills-grid { grid-template-columns: 1fr; gap: 44px; }
  .skill-tile-desc { max-width: 100%; }
  .skills-finale { height: clamp(420px, 110vw, 620px); align-items: flex-end; margin-top: 60px; }
  .skills-finale-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.4) 55%, transparent 100%);
  }
  .skills-finale-content { padding: 0 28px 44px; max-width: 100%; }
}

/* ── Section 5d: Finale now inside padded container ─────── */
/* Override margin-top when inside container */
.skills-section .container-fluid .skills-finale {
  margin-top: 72px;
  border-radius: 2px; /* very slight — keeps sharp editorial look */
}

/* The text overlay padding inside the padded finale */
.skills-finale-content {
  padding-left: clamp(20px, 4vw, 64px);
}

/* ── Section 5e: Large editorial paragraph ───────────────── */
.skills-summary-wrap {
  padding: 72px 0 100px;
}

.skills-summary-text {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(20px, 2.6vw, 36px);
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--color-black);
  margin: 0;
  max-width: 900px;
}

@media (max-width: 767px) {
  .skills-section .container-fluid .skills-finale {
    margin-top: 48px;
  }

  .skills-summary-wrap {
    padding: 48px 0 72px;
  }

  .skills-summary-text {
    font-size: clamp(18px, 5.5vw, 26px);
  }
}

/* ============================================================
   SECTION 6 — THE PATHWAY / BLUEPRINT + EPISODE LIST
   ============================================================ */

.blueprint-section {
  background-color: var(--color-white);
  padding: 100px 0 96px;
  border-top: 1px solid #e8e8e8;
}

/* ── Part A: Header ──────────────────────────────────────── */
.blueprint-eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999999;
  display: block;
  margin-bottom: 24px;
}

.blueprint-level-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.blueprint-level-label {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--color-black);
  line-height: 1;
}

.blueprint-level-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 18px;
  color: var(--color-black);
  flex-shrink: 0;
  line-height: 1;
}

.blueprint-level-sep {
  width: 1px;
  height: 38px;
  background: #cccccc;
  flex-shrink: 0;
}

.blueprint-level-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-black);
  margin: 0;
}

.blueprint-included {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999999;
  display: block;
  margin-bottom: 40px;
}

/* ── Part B: Episode List ────────────────────────────────── */
.episode-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Single Episode Row (copy-paste this block for more) ─── */
.episode-row {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Panoramic image container — very wide, thin */
.episode-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 21 / 5;
  background: #111;
}

.episode-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.75) saturate(0.95);
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.65s ease;
}

.episode-row:hover .episode-img {
  transform: scale(1.03);
  filter: brightness(0.65) saturate(1.05);
}

/* Title overlay — left side of image */
.episode-overlay-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 clamp(16px, 3vw, 40px);
  z-index: 1;
}

.episode-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(16px, 1.8vw, 24px);
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--color-white);
  margin: 0;
  max-width: 60%;
}

/* Meta row below the image */
.episode-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}

.episode-label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #777777;
  text-transform: uppercase;
}

.episode-duration {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #777777;
}

/* gap between episodes */
.episode-list > .episode-row + .episode-row {
  margin-top: 36px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 767px) {
  .blueprint-section {
    padding: 72px 0 72px;
  }

  .blueprint-level-row {
    gap: 12px;
  }

  .blueprint-level-circle {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .blueprint-level-sep {
    display: none;
  }

  .blueprint-level-title {
    width: 100%;
  }

  .episode-media {
    aspect-ratio: 16 / 6;
  }

  .episode-title {
    max-width: 85%;
    font-size: clamp(14px, 4vw, 18px);
  }

  .episode-list > .episode-row + .episode-row {
    margin-top: 24px;
  }
}

/* ============================================================
   SECTION 7 — LEVEL 2 / TEXT-ONLY EPISODE CARDS
   ============================================================ */

/* Reuses .blueprint-section, .blueprint-level-row, etc. from Section 6 */
/* Only the episode card style is new below */

/* ── Text Episode List ───────────────────────────────────── */
.text-ep-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Single Text Episode Card (copy-paste this block) ─────── */
.text-ep-card {
  border: 1px solid #d4d4d4;
  padding: 28px 32px 22px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  cursor: default;
}

.text-ep-card:hover {
  border-color: var(--color-healing-border);
  background-color: #fdf9f6;
}

.text-ep-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(17px, 1.9vw, 26px);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--color-black);
  margin: 0 0 22px;
}

/* Meta row: EP-label — line — duration */
.text-ep-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.text-ep-label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888888;
  flex-shrink: 0;
}

.text-ep-line {
  flex: 1;
  height: 1px;
  background: #d4d4d4;
  transition: background 0.3s ease;
}

.text-ep-card:hover .text-ep-line {
  background: #c9956a;
}

.text-ep-duration {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #888888;
  flex-shrink: 0;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 767px) {
  .text-ep-card {
    padding: 22px 20px 18px;
  }
}

/* ============================================================
   SECTION 8 — FULL-VIEWPORT IMAGE WITH OVERLAY CTA
   ============================================================ */

.update-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.update-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: 0;
}

/* Gradient: dark top-left (text) fading to visible image right */
.update-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.15) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.28) 0%, transparent 40%,    rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

/* Content wrapper — full height, space-between pushes top/bottom */
.update-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  padding: clamp(40px, 6vw, 80px) clamp(28px, 8vw, 110px);
}

/* ── Top block — big heading + eyebrow ───────────────────── */
.update-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.update-heading {
  font-family: var(--font-serif);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(68px, 15vw, 200px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: var(--color-white);
  text-transform: uppercase;
  margin: 0;
}

.update-eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  display: block;
}

/* ── Bottom block — Level row + feature list ─────────────── */
.update-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.update-level-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.update-level-label {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 30px);
  color: var(--color-white);
  line-height: 1;
}

.update-level-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 18px;
  color: var(--color-white);
  flex-shrink: 0;
}

.update-level-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.update-level-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-white);
  margin: 0;
}

/* Feature pills */
.update-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.update-feature {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  display: flex;
  align-items: center;
  gap: 10px;
}

.update-feature::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 767px) {
  .update-content {
    padding: 48px 28px 52px;
  }

  .update-heading {
    font-size: clamp(52px, 18vw, 100px);
  }

  .update-level-sep {
    display: none;
  }

  .update-level-title {
    width: 100%;
  }
}

/* ============================================================
   SECTION 9 — MENTOR (9a: Portrait + 9b: Tools Card)
   ============================================================ */

.mentor-section {
  background-color: var(--color-white);
  padding: 100px 0 0;
  border-top: 1px solid #e8e8e8;
}

.mentor-eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999999;
  display: block;
  margin-bottom: 18px;
}

/* Heading — reuses skills-heading weight/style */
.mentor-heading {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--color-black);
  text-transform: uppercase;
  margin: 0 0 40px;
}

/* Portrait — NO play button, clean image */
.mentor-portrait-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}

.mentor-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: brightness(0.96) saturate(0.92);
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mentor-portrait-wrap:hover .mentor-portrait-img {
  transform: scale(1.025);
}

/* ── 9b: Tools Card ──────────────────────────────────────── */
.tools-card {
  border: 1px solid #d4d4d4;
  margin-top: 40px;
  display: flex;
  align-items: stretch;
}

.tools-col {
  flex: 1;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tools-col + .tools-col {
  border-left: 1px solid #d4d4d4;
}

.tools-category {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  color: #666666;
  margin: 0;
}

/* Logo tile — the styled brand block */
.tools-logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px;
  min-height: 68px;
  border-radius: 4px;
  flex: 1;
}

/* Variant: dark */
.tools-logo-dark {
  background-color: #131313;
}

/* Variant: light */
.tools-logo-light {
  background-color: #f4f4f2;
}

/* Variant: warm */
.tools-logo-warm {
  background-color: #191414;
}

.tools-logo-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(14px, 1.6vw, 20px);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.tools-logo-name--white { color: #ffffff; }
.tools-logo-name--dark  { color: #1a1a1a; }
.tools-logo-name--green { color: #1DB954; }

.tools-logo-symbol {
  margin-right: 8px;
  opacity: 0.85;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 767px) {
  .mentor-section { padding: 72px 0 0; }
  .mentor-portrait-wrap { aspect-ratio: 4 / 3; }
  .tools-card { flex-direction: column; }
  .tools-col + .tools-col { border-left: none; border-top: 1px solid #d4d4d4; }
}

@media (max-width: 480px) {
  .tools-logo-name { font-size: 14px; }
}

/* ============================================================
   SECTION 9c — MENTOR PHILOSOPHY QUOTE
   ============================================================ */

.philosophy-section {
  background-color: var(--color-white);
  padding: 96px 0 108px;
  /* border-top removed — no line between tools card and quote */
}

.philosophy-eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999999;
  display: block;
  margin-bottom: 28px;
}

.philosophy-quote {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(34px, 5.5vw, 76px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--color-black);
  margin: 0 0 48px;
}

.philosophy-attribution {
  text-align: right;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888888;
  margin: 0;
}

@media (max-width: 767px) {
  .philosophy-section { padding: 72px 0 80px; }
  .philosophy-quote { font-size: clamp(28px, 8vw, 48px); }
  .philosophy-attribution { text-align: left; }
}

/* ============================================================
   PADDING EXTENSION — applies Section 3/4 side padding to
   all remaining section container-fluids
   ============================================================ */
.blueprint-section .container-fluid,
.mentor-section .container-fluid,
.philosophy-section .container-fluid {
  padding-left:  clamp(28px, 8vw, 110px) !important;
  padding-right: clamp(28px, 8vw, 110px) !important;
}

/* ============================================================
   SECTION 10 — CONTACT / BOOKING (Landscape + Form)
   ============================================================ */

.contact-section {
  position: relative;
  width: 100%;
  min-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: clamp(72px, 10vw, 120px) 0;
}

.contact-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: 0;
  transition: transform 12s ease;
}

.contact-section:hover .contact-bg {
  transform: scale(1.04);
}

/* Gradient: darker left (text legible) → slightly lighter right (glass shines) */
.contact-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(6, 4, 2, 0.80) 0%,
      rgba(6, 4, 2, 0.72) 40%,
      rgba(6, 4, 2, 0.40) 70%,
      rgba(6, 4, 2, 0.28) 100%
    );
  z-index: 1;
}

/* 2-col inner grid */
.contact-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 clamp(28px, 8vw, 110px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

/* ── LEFT: Converting message ────────────────────────────── */
.contact-message {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  display: block;
  margin-bottom: 20px;
}

.contact-headline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--color-white);
  margin: 0 0 24px;
}

.contact-body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 36px;
  max-width: 380px;
}

/* Small trust badge */
.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.40);
}

.contact-badge::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(184, 134, 92, 0.6);
}

/* ── RIGHT: Glass Form Card ──────────────────────────────── */
.contact-form-card {
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: clamp(28px, 4vw, 48px);
}

.contact-form-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 24px);
  letter-spacing: -0.005em;
  color: var(--color-white);
  margin: 0 0 32px;
}

/* Form field row */
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 12px;
  transition: border-color 0.3s ease;
}

.contact-field:focus-within {
  border-bottom-color: rgba(184, 134, 92, 0.75);
}

.contact-field-label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s ease;
}

.contact-field:focus-within .contact-field-label {
  color: rgba(184, 134, 92, 0.9);
}

.contact-field-input,
.contact-field-textarea {
  background: transparent;
  border: none;
  outline: none;
  color: var(--color-white);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  padding: 4px 0;
  width: 100%;
  caret-color: var(--color-healing-amber);
}

.contact-field-input::placeholder,
.contact-field-textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.contact-field-textarea {
  resize: none;
  height: 68px;
}

/* 2-col grid for Name + Email */
.contact-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Submit button */
.contact-submit {
  width: 100%;
  margin-top: 8px;
  padding: 17px 32px;
  background: linear-gradient(135deg, var(--color-healing-amber) 0%, #c8955a 100%);
  border: none;
  color: var(--color-white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  position: relative;
  overflow: hidden;
}

.contact-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.25s ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(184, 134, 92, 0.45);
  opacity: 0.92;
}

.contact-submit:active {
  transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-body {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .contact-section {
    min-height: auto;
    padding: 72px 0;
  }

  .contact-fields-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-card {
    padding: 28px 24px;
  }
}

/* ── Form text visibility boost ─────────────────────────── */
.contact-field-label {
  color: rgba(255, 255, 255, 0.82);
}

.contact-field-input::placeholder,
.contact-field-textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.contact-field {
  border-bottom-color: rgba(255, 255, 255, 0.35);
}

.contact-form-title {
  color: #ffffff;
}

/* ── Contact submit button — more popped out ─────────────── */
.contact-submit {
  background: linear-gradient(135deg, #d4984a 0%, #e8a855 50%, #c07830 100%);
  font-size: 11px;
  font-weight: 700;
  padding: 20px 32px;
  letter-spacing: 0.24em;
  box-shadow:
    0 4px 20px rgba(184, 134, 92, 0.55),
    0 1px 0 rgba(255, 255, 255, 0.12) inset;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-submit:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 36px rgba(184, 134, 92, 0.65),
    0 1px 0 rgba(255, 255, 255, 0.18) inset;
  opacity: 1;
}

/* ============================================================
   SECTION 11 — FAQ ACCORDION
   ============================================================ */

.faq-section {
  background-color: var(--color-white);
  padding: 100px 0 108px;
  border-top: 1px solid #e8e8e8;
}

/* Large bold heading — same weight as skills-heading */
.faq-heading {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(44px, 7.5vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--color-black);
  text-transform: uppercase;
  margin: 0 0 64px;
}

/* ── FAQ List ────────────────────────────────────────────── */
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-item {
  border-top: 1px solid #e0e0e0;
  transition: background-color 0.25s ease;
}

.faq-item:last-child {
  border-bottom: 1px solid #e0e0e0;
}

/* ── Toggle button row ───────────────────────────────────── */
.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  gap: 24px;
  text-align: left;
}

.faq-question {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(10px, 1.1vw, 12px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-black);
  margin: 0;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.faq-item:hover .faq-question,
.faq-item.is-open .faq-question {
  color: var(--color-healing-amber);
}

/* + icon: circle that rotates to × when open */
.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  color: #aaa;
  transition:
    transform    0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background   0.3s ease,
    border-color 0.3s ease,
    color        0.3s ease;
}

.faq-item:hover .faq-icon {
  border-color: var(--color-healing-amber);
  color: var(--color-healing-amber);
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--color-healing-amber);
  border-color: var(--color-healing-amber);
  color: #fff;
}

/* ── Answer body (collapsible) ───────────────────────────── */
.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(15px, 1.5vw, 20px);
  line-height: 1.65;
  color: #555555;
  padding: 4px 0 32px;
  max-width: 760px;
  margin: 0;
}

/* Highlight key words */
.faq-answer strong {
  font-style: normal;
  font-weight: 600;
  color: var(--color-black);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 767px) {
  .faq-section { padding: 72px 0 80px; }
  .faq-heading  { margin-bottom: 44px; }
  .faq-toggle   { padding: 20px 0; }
}

.faq-section .container-fluid {
  padding-left:  clamp(28px, 8vw, 110px) !important;
  padding-right: clamp(28px, 8vw, 110px) !important;
}

/* ============================================================
   FOOTER — 4-COLUMN EDITORIAL FOOTER
   ============================================================ */

.site-footer {
  background-color: var(--color-white);
  border-top: 1px solid #e0e0e0;
}

/* ── Main footer grid ────────────────────────────────────── */
.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
  align-items: start;
  padding: clamp(48px, 6vw, 80px) clamp(28px, 8vw, 110px) clamp(40px, 5vw, 64px);
}

.footer-col {
  padding: 0 clamp(20px, 3vw, 40px);
}

.footer-col:first-child {
  padding-left: 0;
}

.footer-col:last-child {
  padding-right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

/* Thin vertical dividers between cols */
.footer-col + .footer-col {
  border-left: 1px solid #e0e0e0;
}

/* ── Logo ────────────────────────────────────────────────── */
.footer-logo-wrap {
  margin-bottom: 28px;
}

.footer-logo-text {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: var(--color-black);
  text-decoration: none;
  display: inline-block;
  line-height: 1;
}

.footer-logo-text span {
  font-weight: 300;
  letter-spacing: 0.08em;
  font-size: 9px;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
  color: #888;
  letter-spacing: 0.22em;
}

/* ── Nav/Link lists ──────────────────────────────────────── */
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-nav-link {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  color: #3a3a3a;
  text-decoration: none;
  transition: color 0.25s ease;
  display: inline-block;
}

.footer-nav-link:hover {
  color: var(--color-healing-amber);
}

/* ── WhatsApp CTA button ─────────────────────────────────── */
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #1a1a1a;
  color: var(--color-white);
  padding: 18px 22px;
  text-decoration: none;
  border-radius: 2px;
  transition: background-color 0.3s ease, transform 0.25s ease;
  max-width: 260px;
  width: 100%;
}

.footer-wa-btn:hover {
  background-color: #25D366;
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer-wa-help {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  display: block;
  line-height: 1;
  margin-bottom: 3px;
}

.footer-wa-label {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-white);
  display: block;
  line-height: 1;
}

.footer-wa-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}

/* ── Bottom bar ──────────────────────────────────────────── */
.footer-bottom {
  border-top: 1px solid #e0e0e0;
  padding: 20px clamp(28px, 8vw, 110px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-company,
.footer-copyright {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #aaaaaa;
  margin: 0;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .footer-col {
    padding: 24px clamp(16px, 3vw, 32px);
    border-left: none !important;
    border-top: 1px solid #e0e0e0;
  }

  .footer-col:first-child {
    border-top: none;
    padding-left: 0;
    grid-column: 1 / -1;
  }

  .footer-col:last-child {
    justify-content: flex-start;
    padding-left: clamp(16px, 3vw, 32px);
  }
}

@media (max-width: 575px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

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

/* ============================================================
   BOOKING MODAL — Premium 2-Panel Dark/Light Split
   ============================================================ */

/* ── Backdrop ────────────────────────────────────────────── */
.booking-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.booking-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

/* ── Modal box ───────────────────────────────────────────── */
.booking-modal {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  width: 100%;
  max-width: 940px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(32px) scale(0.96);
  opacity: 0;
  transition:
    transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity   0.42s ease;
  scrollbar-width: none;
}

.booking-modal::-webkit-scrollbar { display: none; }

.booking-modal-backdrop.is-open .booking-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* ── LEFT: Dark brand panel ──────────────────────────────── */
.bm-left {
  background: #0c0c0c;
  padding: clamp(36px, 5vw, 60px) clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

.bm-eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-healing-amber);
  display: block;
  margin-bottom: 20px;
}

.bm-headline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 20px;
}

.bm-body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

/* Feature list */
.bm-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bm-feature {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 12px;
}

.bm-feature::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--color-healing-amber);
  opacity: 0.7;
  flex-shrink: 0;
}

/* ── RIGHT: Cream form panel ─────────────────────────────── */
.bm-right {
  background: #f9f7f5;
  padding: clamp(36px, 5vw, 60px) clamp(28px, 4vw, 52px);
  position: relative;
}

/* Close button — outlined circle with × */
.bm-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #cccccc;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
  z-index: 1;
}

.bm-close:hover {
  background: #0c0c0c;
  border-color: #0c0c0c;
}

.bm-close-bar {
  position: absolute;
  width: 14px;
  height: 1.5px;
  background: #555;
  transition: background 0.25s ease;
}

.bm-close:hover .bm-close-bar {
  background: #ffffff;
}

.bm-close-bar:nth-child(1) { transform: rotate(45deg);  }
.bm-close-bar:nth-child(2) { transform: rotate(-45deg); }

/* Form heading */
.bm-form-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(17px, 1.8vw, 22px);
  letter-spacing: -0.005em;
  color: var(--color-black);
  margin: 0 0 32px;
  padding-right: 48px; /* clear close btn */
}

/* ── Form fields ─────────────────────────────────────────── */
.bm-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.bm-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-bottom: 1px solid #d4d4d4;
  padding-bottom: 10px;
  margin-bottom: 22px;
  transition: border-color 0.3s ease;
}

.bm-field:focus-within {
  border-bottom-color: var(--color-healing-amber);
}

.bm-label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999999;
  transition: color 0.3s ease;
}

.bm-field:focus-within .bm-label {
  color: var(--color-healing-amber);
}

.bm-input,
.bm-textarea {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-black);
  padding: 4px 0;
  width: 100%;
  caret-color: var(--color-healing-amber);
}

.bm-input::placeholder,
.bm-textarea::placeholder {
  color: #bbbbbb;
}

.bm-textarea {
  resize: none;
  height: 64px;
}

/* Submit button */
.bm-submit {
  width: 100%;
  padding: 18px 32px;
  margin-top: 4px;
  background: linear-gradient(135deg, #d4984a 0%, #e8a855 50%, #c07830 100%);
  border: none;
  color: #ffffff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(184, 134, 92, 0.4);
}

.bm-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(184, 134, 92, 0.55);
}

.bm-submit:active {
  transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 767px) {
  .booking-modal {
    grid-template-columns: 1fr;
    max-height: 96vh;
  }

  .bm-left {
    gap: 24px;
    padding: 36px 28px 32px;
  }

  .bm-headline {
    font-size: clamp(30px, 9vw, 42px);
  }

  .bm-fields-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .bm-right {
    padding: 36px 28px 40px;
  }
}

/* ============================================================
   INNER PAGES — Shared layout styles
   ============================================================ */

/* Push content below fixed navbar */


.page-hero {
  padding: 148px 0 72px;
  background: var(--color-white);
  border-bottom: 1px solid #e8e8e8;
}

.page-eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-healing-amber);
  display: block;
  margin-bottom: 18px;
}

.page-heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(44px, 7vw, 90px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--color-black);
  margin: 0 0 24px;
}

.page-sub {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.75;
  color: #666666;
  max-width: 560px;
  margin: 0;
}

/* Section inside a page */
.page-section {
  padding: 88px 0;
  background: var(--color-white);
}

.page-section--alt {
  background: #f9f7f5;
}

.page-section + .page-section {
  border-top: 1px solid #ebebeb;
}

/* Editorial body text */
.page-body-text {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.85;
  color: #444444;
}

.page-body-text p + p {
  margin-top: 18px;
}

/* Section label — uppercase micro */
.page-section-label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #aaaaaa;
  display: block;
  margin-bottom: 14px;
}

/* Section serif heading inside page */
.page-section-heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-black);
  margin: 0 0 28px;
}

/* Legal page specifics */
.legal-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 96px;
}

.legal-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-nav-link {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #888;
  text-decoration: none;
  transition: color 0.25s ease;
  padding: 3px 0;
  border-bottom: 1px solid transparent;
}

.legal-nav-link:hover {
  color: var(--color-healing-amber);
}

.legal-content h2 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-black);
  margin: 48px 0 16px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 14px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

/* Workshop cards */
.workshop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.workshop-card {
  border: 1px solid #e0e0e0;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.workshop-card:hover {
  border-color: var(--color-healing-amber);
  box-shadow: 0 4px 24px rgba(184, 134, 92, 0.12);
}

.workshop-date {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-healing-amber);
}

.workshop-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  color: var(--color-black);
  margin: 0;
}

.workshop-meta {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #888;
}

.workshop-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-black);
  text-decoration: none;
  margin-top: auto;
  transition: color 0.25s ease, gap 0.25s ease;
}

.workshop-cta:hover {
  color: var(--color-healing-amber);
  gap: 14px;
}

/* Steps (for Distance Healing / process) */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 28px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid #e8e8e8;
}

.step-row:first-child {
  border-top: 1px solid #e8e8e8;
}

.step-num {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: 36px;
  color: #d4d4d4;
  line-height: 1;
}

.step-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-black);
  margin: 0 0 8px;
}

.step-body {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.75;
  color: #666;
  margin: 0;
}

/* Tool cards (Healing Tools page) */
.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tool-card {
  background: #f9f7f5;
  border: 1px solid #e8e8e8;
  padding: 32px 28px;
  transition: border-color 0.3s ease;
}

.tool-card:hover {
  border-color: var(--color-healing-amber);
}

.tool-cat {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 10px;
}

.tool-name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 22px;
  color: var(--color-black);
  margin: 0 0 10px;
}

.tool-desc {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* Contact page form (standalone, not glassmorphism) */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}



.contact-page-detail {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.contact-page-item-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 4px;
}

.contact-page-item-val {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-black);
  margin: 0;
  text-decoration: none;
}

/* Light form (contact page) */


.light-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-bottom: 1px solid #d4d4d4;
  padding-bottom: 10px;
  margin-bottom: 24px;
  transition: border-color 0.3s ease;
}

.light-field:focus-within {
  border-color: var(--color-healing-amber);
}

.light-label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999;
  transition: color 0.3s ease;
}

.light-field:focus-within .light-label {
  color: var(--color-healing-amber);
}

.light-input,
.light-textarea {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-black);
  padding: 4px 0;
  width: 100%;
  caret-color: var(--color-healing-amber);
}

.light-input::placeholder,
.light-textarea::placeholder { color: #ccc; }

.light-textarea { resize: none; height: 80px; }

.light-submit {
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, #d4984a 0%, #e8a855 50%, #c07830 100%);
  border: none;
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(184, 134, 92, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.light-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(184, 134, 92, 0.5);
}

/* Light fields row */
.light-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Responsive inner pages */
@media (max-width: 991px) {
  .legal-grid { grid-template-columns: 1fr; gap: 40px; }
  .legal-nav { position: static; }
  .workshop-grid { grid-template-columns: 1fr; }
  .tool-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-page-grid { grid-template-columns: 1fr; gap: 52px; }
}

@media (max-width: 767px) {
  .page-hero { padding: 120px 0 52px; }
  .page-section { padding: 56px 0; }
  .tool-grid { grid-template-columns: 1fr; }
  .light-fields-row { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================================
   INNER PAGE NAVBAR — always fixed + dark (no hero behind it)
   ============================================================ */
body.inner-page .site-navbar {
  position: fixed;
  background: rgba(10, 10, 10, 0.97) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 14px 0;
}

/* ── Navbar CTA button — always white text on dark navbar ── */
/* (sessions-cta-btn overrides color:black; force white in navbar context) */
.site-navbar .sessions-cta-btn,
.site-navbar .nav-account-btn {
  color: var(--color-white) !important;
  border-color: rgba(255, 255, 255, 0.72) !important;
  padding: 10px 22px;
  font-size: 11px;
}

.site-navbar .sessions-cta-btn:hover,
.site-navbar .nav-account-btn:hover {
  background: var(--color-white);
  color: var(--color-black) !important;
  border-color: var(--color-white) !important;
}

/* Prevent the gold slide-fill from interferting in navbar */
.site-navbar .sessions-cta-btn::before {
  display: none;
}

/* ============================================================
   INNER PAGE LAYOUT CLASSES (replaces inline styles)
   ============================================================ */

/* About page — story 2-col grid */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}

/* About page — portrait image wrapper */
.about-portrait-wrap {
  background: #f9f7f5;
  border: 1px solid #e8e8e8;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

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

/* About page — 3-col offers grid */
.about-offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

/* Distance Healing — 2-col what-it-is grid */
.dh-what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ============================================================
   INNER PAGES — TABLET (≤991px)
   ============================================================ */
@media (max-width: 991px) {

  /* About page grids */
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-portrait-wrap {
    aspect-ratio: 16 / 9;
    max-height: 420px;
  }

  .about-offers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Distance Healing grid */
  .dh-what-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Legal pages sidebar nav */
  .legal-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .legal-nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 20px;
  }

  /* Workshop grid */
  .workshop-grid {
    grid-template-columns: 1fr;
  }

  /* Tool grid */
  .tool-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact page grid */
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Light form fields row */
  .light-fields-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Footer 4-col → 2-col */
  .footer-main {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 40px 24px;
  }
}

/* ============================================================
   INNER PAGES — MOBILE (≤767px)
   ============================================================ */
@media (max-width: 767px) {

  /* Hero */
  .page-hero {
    padding: 110px 0 48px;
  }

  .page-heading {
    font-size: clamp(36px, 11vw, 58px);
    margin-bottom: 16px;
  }

  .page-sub {
    font-size: 14px;
  }

  /* Sections */
  .page-section {
    padding: 52px 0;
  }

  .page-section-heading {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 20px;
  }

  /* About page */
  .about-story-grid {
    gap: 32px;
  }

  .about-portrait-wrap {
    aspect-ratio: 4 / 3;
  }

  .about-offers-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Distance Healing quote box */
  .dh-what-grid {
    gap: 28px;
  }

  /* Tool grid — single col */
  .tool-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Workshop cards */
  .workshop-card {
    padding: 28px 22px 24px;
  }

  /* Steps */
  .step-row {
    grid-template-columns: 44px 1fr;
    gap: 18px;
    padding: 24px 0;
  }

  .step-num {
    font-size: 28px;
  }

  /* Sessions CTA button — full width on mobile */
  .sessions-cta-btn {
    padding: 18px 36px;
    font-size: 10px;
    letter-spacing: 0.18em;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px 20px;
  }

  .footer-wa-btn {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px;
  }
}

/* ============================================================
   INNER PAGES — SMALL MOBILE (≤575px)
   ============================================================ */
@media (max-width: 575px) {

  /* Hero */
  .page-hero {
    padding: 96px 0 40px;
  }

  /* Sections */
  .page-section {
    padding: 40px 0;
  }

  /* About portrait — portrait ratio on small screens */
  .about-portrait-wrap {
    aspect-ratio: 3 / 2;
    max-height: 260px;
  }

  /* Footer — single column */
  .footer-main {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 6px;
    text-align: center;
  }

  /* Booking modal — full screen on small phones */
  .booking-modal {
    flex-direction: column;
    height: 100dvh;
    border-radius: 0;
    max-width: 100%;
    width: 100%;
    overflow-y: auto;
  }

  .bm-left {
    padding: 32px 24px 24px;
  }

  .bm-right {
    padding: 24px;
    flex: 1;
  }

  .bm-headline {
    font-size: clamp(28px, 9vw, 48px) !important;
    margin-bottom: 16px;
  }

  .bm-features {
    display: none; /* hide feature list on tiny screens to save space */
  }

  .bm-fields-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Workshop cards */
  .workshop-card {
    padding: 24px 18px 20px;
    gap: 12px;
  }

  .workshop-title {
    font-size: 20px;
  }

  /* Legal nav links wrap nicely */
  .legal-nav-list {
    flex-direction: column;
    gap: 6px;
  }

  .legal-content h2 {
    margin-top: 36px;
  }
}
