/* ============================================================
   PERSONAL DEVELOPMENT — Premium CSS
   ============================================================ */

/* ── Design Tokens ── */
:root {
  --bg:        #FAF6F1;
  --surface:   #F2EAE1;
  --surface-2: #E8DDD3;
  --fg:        #1A1210;
  --fg-muted:  #6B5D57;
  --gold:      #B8976B;
  --gold-light:#D4B896;
  --white:     #FFFFFF;
  --black:     #0D0B0A;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, -apple-system, sans-serif;

  --nav-height: 80px;

  --ease:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.55, 0, 1, 0.45);
  --dur:    0.65s;

  --container: 1280px;
  --gutter:    clamp(1.5rem, 5vw, 4rem);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: auto; object-fit: cover; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.1rem; font-weight: 500; font-family: var(--font-sans); letter-spacing: 0.04em; text-transform: uppercase; }
p  { font-size: clamp(0.95rem, 1.1vw, 1.05rem); line-height: 1.8; }
em { font-style: italic; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow--light { color: var(--gold-light); }

/* ── Layout ── */
.container {
  width: min(var(--container), 100% - var(--gutter) * 2);
  margin-inline: auto;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}
.section-header p { margin-top: 1rem; color: var(--fg-muted); }
.section-lead { color: var(--fg-muted); font-size: 1rem; max-width: 560px; margin: 1rem auto 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.4rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn--dark {
  background: var(--fg);
  color: var(--white);
  border: 1px solid var(--fg);
}
.btn--dark:hover {
  background: transparent;
  color: var(--fg);
}
.btn--light {
  background: var(--white);
  color: var(--fg);
  border: 1px solid var(--white);
}
.btn--light:hover {
  background: transparent;
  color: var(--white);
}
.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.45);
}
.btn--ghost-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}
.btn--outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--fg);
}
.btn--outline:hover {
  background: var(--fg);
  color: var(--white);
}
.btn--full  { width: 100%; }
.btn--large { padding: 1.1rem 3rem; font-size: 0.85rem; }

/* ── Rich Text ── */
.rich-text p + p { margin-top: 1rem; }
.rich-text a     { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-height);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(26,18,16,0.08);
}
.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(var(--container), 100% - var(--gutter) * 2);
  margin-inline: auto;
}
.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color 0.3s;
}
.nav__logo em {
  font-style: italic;
  font-weight: 300;
}
.nav.scrolled .nav__logo { color: var(--fg); }
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.nav__link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.25s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__link:hover::after,
.nav__link.active::after { transform: scaleX(1); }
.nav__link:hover,
.nav__link.active { color: rgba(255,255,255,1); }
.nav.scrolled .nav__link { color: var(--fg-muted); }
.nav.scrolled .nav__link:hover,
.nav.scrolled .nav__link.active { color: var(--fg); }
.nav__link--cta {
  background: var(--white);
  color: var(--fg) !important;
  padding: 0.55rem 1.4rem;
  font-weight: 500;
  border: 1px solid var(--white);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: transparent; color: var(--white) !important; }
.nav.scrolled .nav__link--cta {
  background: var(--fg);
  border-color: var(--fg);
  color: var(--white) !important;
}
.nav.scrolled .nav__link--cta:hover {
  background: transparent;
  color: var(--fg) !important;
}
/* Mobile-first: the menu button is ALWAYS visible unless we're on desktop.
   Fail-safe by design — a stale or partial stylesheet can never hide it. */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.38);
  background: rgba(255,255,255,0.10);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.2s var(--ease);
  z-index: 1000;
}
.nav__hamburger:active { transform: scale(0.94); }
.nav__hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.2s var(--ease), background 0.3s var(--ease);
}
.nav.scrolled .nav__hamburger {
  border-color: rgba(26,18,16,0.20);
  background: rgba(26,18,16,0.045);
}
.nav.scrolled .nav__hamburger span { background: var(--fg); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Desktop: hide the button, show the inline links */
.nav__links { display: none; }
@media (min-width: 769px) {
  .nav__hamburger { display: none; }
  .nav__links { display: flex; }
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 8vh, 7rem);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__image {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 8s var(--ease) forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(10,7,5,0.22) 0%,
    rgba(10,7,5,0.55) 60%,
    rgba(10,7,5,0.72) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  width: min(var(--container), 100% - var(--gutter) * 2);
  margin-inline: auto;
  max-width: 820px;
}
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s var(--ease) forwards;
}
.hero__title {
  color: var(--white);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.0;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.55s var(--ease) forwards;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__subtitle {
  color: rgba(255,255,255,0.8);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 540px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.75s var(--ease) forwards;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.95s var(--ease) forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: var(--gutter);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  opacity: 0;
  animation: fadeUp 1s 1.3s var(--ease) forwards;
  writing-mode: vertical-lr;
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.3);
  animation: scrollLine 1.5s 1.5s var(--ease) infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* ── Split Sections ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(680px, 80vw);
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__media { overflow: hidden; }
.split__image-wrap {
  position: relative;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}
.split__image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.split__image-wrap:hover .split__image { transform: scale(1.03); }
.split__content {
  background: var(--surface);
  padding: clamp(3rem, 7vw, 7rem) clamp(2.5rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.split__content h2 { margin-top: -0.25rem; }
.split__content .btn { align-self: flex-start; margin-top: 0.5rem; }
.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* ── Pillars ── */
.pillars {
  padding: clamp(5rem, 10vw, 10rem) 0;
  background: var(--bg);
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.pillar {
  background: var(--surface);
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease);
}
.pillar:hover { box-shadow: 0 20px 60px rgba(26,18,16,0.12); }
.pillar__image-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.pillar__image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.pillar:hover .pillar__image { transform: scale(1.06); }
.pillar__content {
  padding: 2rem 2rem 2.5rem;
}
.pillar__number {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.pillar__content h3 { margin-bottom: 0.75rem; font-size: 1.45rem; }
.pillar__content p  { color: var(--fg-muted); font-size: 0.95rem; }

/* ── Package Section ── */
.package {
  padding: clamp(5rem, 10vw, 10rem) 0;
  background: var(--fg);
}
.package .eyebrow { color: var(--gold-light); }
.package .section-header { text-align: center; }
.package h2 { color: var(--white); }
.package__grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.feature-list { display: flex; flex-direction: column; gap: 0; }
.feature-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.3s;
}
.feature-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.feature-item__icon {
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
  width: 20px;
}
.feature-item strong {
  display: block;
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.feature-item p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}
.package__cta-card {
  background: var(--surface);
  color: var(--fg);
  padding: 2.5rem;
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}
.package__cta-card .eyebrow { color: var(--gold); }
.package__cta-card h3 {
  font-size: 2rem;
  color: var(--fg);
  margin-bottom: 0.25rem;
}
.package__cta-card > p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.package__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--surface-2);
  border-bottom: 1px solid var(--surface-2);
}
.package__meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.package__meta-item span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg-muted); }
.package__meta-item strong { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400; line-height: 1.3; }
.package__meta-item small { font-size: 0.8rem; color: var(--fg-muted); font-family: var(--font-sans); }
.package__note {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* ── Events ── */
.events {
  padding: clamp(5rem, 10vw, 10rem) 0;
  background: var(--bg);
}
.events__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.event-card {
  background: var(--surface);
  padding: clamp(2rem, 4vw, 3.5rem);
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
  border-left: 3px solid transparent;
}
.event-card:hover {
  background: var(--surface-2);
  border-left-color: var(--gold);
  transform: translateX(4px);
}
.event-card__icon {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  display: block;
}
.event-card h3 { margin-bottom: 0.75rem; font-size: 1.5rem; }
.event-card p  { color: var(--fg-muted); font-size: 0.95rem; }
.events__footer {
  text-align: center;
  margin-top: clamp(3rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.events__footer p { color: var(--fg-muted); font-style: italic; max-width: 480px; }

/* ── Banner (Partner CTA) ── */
.banner {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.banner__media {
  position: absolute;
  inset: 0;
}
.banner__image {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,7,5,0.78) 45%, rgba(10,7,5,0.3) 100%);
}
.banner__content {
  position: relative;
  z-index: 1;
  width: min(var(--container), 100% - var(--gutter) * 2);
  margin-inline: auto;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.banner__content h2 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4rem);
}
.banner__content p  { color: rgba(255,255,255,0.75); max-width: 480px; }

/* ── Tiers ── */
.tiers {
  padding: clamp(5rem, 10vw, 10rem) 0;
  background: var(--surface);
}
.tiers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 3rem;
}
.tier {
  background: var(--bg);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}
.tier--featured {
  background: var(--fg);
  transform: scaleY(1.02);
  z-index: 1;
}
.tier__badge {
  position: absolute;
  top: -1px; right: -1px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
}
.tier__level {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--fg);
}
.tier--featured .tier__level { color: var(--white); }
.tier ul { display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.tier li {
  font-size: 0.92rem;
  color: var(--fg-muted);
  padding-left: 1rem;
  position: relative;
}
.tier li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}
.tier--featured li { color: rgba(255,255,255,0.65); }
.tiers__note {
  text-align: center;
  color: var(--fg-muted);
  font-size: 0.95rem;
}
.tiers__note a { color: var(--fg); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }

/* ── FAQ ── */
.faq {
  padding: clamp(5rem, 10vw, 10rem) 0;
  background: var(--bg);
}
.faq__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}
.faq__header { position: sticky; top: calc(var(--nav-height) + 3rem); }
.faq__header h2 { margin-bottom: 1rem; }
.faq__header p  { color: var(--fg-muted); font-size: 0.95rem; }
.faq__list { display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid var(--surface-2); }
.faq__item:first-child { border-top: 1px solid var(--surface-2); }
.faq__question {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.2s;
}
.faq__question:hover { color: var(--gold); }
.faq__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: background 0.25s, color 0.25s;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.faq__icon::before { width: 10px; height: 1px; }
.faq__icon::after  { width: 1px; height: 10px; }
.faq__question[aria-expanded="true"] .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__question[aria-expanded="true"] .faq__icon {
  background: var(--fg);
  color: var(--white);
  border-color: var(--fg);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}
.faq__answer.open { padding-bottom: 1.5rem; }
.faq__answer p    { color: var(--fg-muted); }
.faq__answer a    { color: var(--fg); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }

/* ── Final CTA ── */
.cta-final {
  padding: clamp(5rem, 10vw, 10rem) 0;
  background: var(--surface);
}
.cta-final__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.cta-final__inner h2 { font-size: clamp(2rem, 4vw, 3rem); }
.cta-final__inner p  { color: var(--fg-muted); }

/* ── Footer ── */
.footer {
  background: var(--fg);
  color: rgba(255,255,255,0.6);
  padding: clamp(4rem, 8vw, 7rem) 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  margin-bottom: 4rem;
}
.footer__logo {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer__brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 1.25rem;
}
.footer__contact a {
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer__contact a:hover { color: var(--white); }
.footer__nav h4 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer__nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__nav li a {
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer__nav li a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.78rem;
}

/* ── Inner page hero (non-fullscreen) ── */
.page-hero {
  padding-top: var(--nav-height);
  background: var(--surface);
  text-align: center;
  padding-bottom: clamp(4rem, 8vw, 7rem);
  padding-top: calc(var(--nav-height) + clamp(3rem, 6vw, 6rem));
}
.page-hero .eyebrow { display: block; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.page-hero p  { color: var(--fg-muted); max-width: 580px; margin: 1rem auto 0; }

/* ── About Page ── */
.about-intro {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--bg);
}
.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}
.about-intro__text .eyebrow { display: block; }
.about-intro__text h2 { margin-bottom: 1.5rem; }
.about-intro__text p + p { margin-top: 1rem; }
.about-intro__text p { color: var(--fg-muted); }
.about-intro__image {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.about-intro__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.about-intro__image:hover img { transform: scale(1.04); }

.values {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--surface);
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.value-card {
  background: var(--bg);
  padding: clamp(2rem, 4vw, 3rem);
  border-top: 3px solid var(--gold);
}
.value-card h3 { margin-bottom: 0.75rem; font-size: 1.45rem; }
.value-card p  { color: var(--fg-muted); font-size: 0.95rem; }

/* ── Contact Page ── */
.contact-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}
.contact-form-wrap h2 { margin-bottom: 0.5rem; }
.contact-form-wrap p  { color: var(--fg-muted); margin-bottom: 2.5rem; }
.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form__row  { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form__group { display: flex; flex-direction: column; gap: 0.4rem; }
.form__group label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.form__group input,
.form__group textarea,
.form__group select {
  background: var(--surface);
  border: 1px solid transparent;
  border-bottom: 1px solid var(--surface-2);
  padding: 0.9rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--fg);
  transition: border-color 0.25s, background 0.25s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form__group textarea { min-height: 140px; resize: vertical; }
.form__group select { cursor: pointer; }
.form__submit { align-self: flex-start; }
.contact-info {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}
.contact-info h3 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--surface-2);
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--surface-2);
}
.contact-detail span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg-muted);
}
.contact-detail a,
.contact-detail strong {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--fg);
  transition: color 0.2s;
}
.contact-detail a:hover { color: var(--gold); }

/* ── Gallery ── */
.gallery-section {
  padding: clamp(3rem, 6vw, 6rem) 0;
  background: var(--bg);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.gallery-item {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
}
.gallery-item.landscape { aspect-ratio: 16/9; grid-column: span 2; }
.gallery-item.square { aspect-ratio: 1/1; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }

/* ── Yoga Page ── */
.yoga-hero {
  position: relative;
  height: min(85vh, 700px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 6vw, 6rem);
}
.yoga-hero__image {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.yoga-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(175deg, rgba(10,7,5,0.1) 0%, rgba(10,7,5,0.65) 100%);
}
.yoga-hero__content {
  position: relative;
  z-index: 1;
  width: min(var(--container), 100% - var(--gutter) * 2);
  margin-inline: auto;
  color: var(--white);
}
.yoga-hero__content .eyebrow { color: var(--gold-light); }
.yoga-hero__content h1 { color: var(--white); }

.yoga-info {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--bg);
}
.yoga-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}
.includes-list { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.include-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--surface);
  transition: background 0.25s;
}
.include-item:hover { background: var(--surface-2); }
.include-item__icon { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
.include-item strong { display: block; font-size: 0.9rem; margin-bottom: 0.2rem; }
.include-item p { font-size: 0.85rem; color: var(--fg-muted); }

.yoga-booking {
  background: var(--surface);
  padding: clamp(2.5rem, 5vw, 4rem);
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}
.yoga-booking h3 { font-size: 1.8rem; margin-bottom: 0.25rem; }
.yoga-booking p   { color: var(--fg-muted); margin-bottom: 2rem; }
.yoga-booking .location-tag { display: flex; margin-bottom: 1.5rem; }
.booking-detail {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--surface-2);
  font-size: 0.9rem;
}
.booking-detail:first-of-type { border-top: 1px solid var(--surface-2); }
.booking-detail span  { color: var(--fg-muted); }
.booking-detail strong { font-weight: 500; }
.booking-detail .included { color: var(--gold); font-size: 0.8rem; font-weight: 500; }

/* ── Mobile Menu Overlay ── */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: var(--fg);
  z-index: 800;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.nav__overlay.open { opacity: 1; pointer-events: all; }
.nav__overlay .nav__link {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
  transition: color 0.25s;
}
.nav__overlay .nav__link:hover { color: var(--white); }
.nav__overlay .nav__link::after { display: none; }
.nav__overlay .nav__link--cta {
  background: none;
  border: none;
  padding: 0;
  color: var(--gold) !important;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-family: var(--font-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 1rem;
}

/* ── Form success state ── */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--surface);
}
.form-success.visible { display: block; }
.form-success h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.form-success p  { color: var(--fg-muted); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .faq__inner { grid-template-columns: 1fr; }
  .faq__header { position: static; }
  .package__grid { grid-template-columns: 1fr; }
  .package__cta { order: -1; }
  .package__cta-card { position: static; }
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; min-height: unset; }
  .split--reverse { direction: ltr; }
  .split__image-wrap { min-height: 380px; }
  .pillars__grid { grid-template-columns: 1fr; }
  .events__grid { grid-template-columns: 1fr; }
  .tiers__grid { grid-template-columns: 1fr; }
  .tier--featured { transform: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .about-intro__grid { grid-template-columns: 1fr; }
  .yoga-info__grid { grid-template-columns: 1fr; }
  .yoga-booking { position: static; }
  .values__grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.landscape { grid-column: span 1; aspect-ratio: 4/5; }
}
@media (max-width: 768px) {
  :root { --nav-height: 68px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .form__row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.9rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.landscape { aspect-ratio: 4/5; grid-column: span 1; }
}

/* ── Yoga location dark section responsive ── */
@media (max-width: 900px) {
  .yoga-location-grid { grid-template-columns: 1fr !important; }
}

/* ── Utility ── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   PREMIUM POLISH LAYER
   ============================================================ */

/* ── Typography refinements ── */
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
::selection { background: var(--gold); color: var(--white); }

/* ── Accessibility: visible focus for keyboard users only ── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.nav__overlay :focus-visible,
.footer :focus-visible,
.package :focus-visible { outline-color: var(--gold-light); }

.skip-link {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -120%);
  z-index: 1200;
  background: var(--fg);
  color: var(--white);
  padding: 0.85rem 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

/* ── Scroll progress indicator ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 1100;
  pointer-events: none;
  transition: transform 0.1s linear, opacity 0.3s;
}

/* ── Mobile navigation: always legible ── */
@media (max-width: 768px) {
  .nav {
    background: rgba(250, 246, 241, 0.94);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    backdrop-filter: blur(18px) saturate(1.4);
    box-shadow: 0 1px 0 rgba(26,18,16,0.07);
  }
  .nav .nav__logo { color: var(--fg); font-size: 1.05rem; }
  .nav .nav__hamburger {
    border-color: rgba(26,18,16,0.22);
    background: rgba(26,18,16,0.05);
  }
  .nav .nav__hamburger:not(.open) span { background: var(--fg); }
  .hero__scroll { display: none; }
}

/* ── Mobile menu overlay: staggered, premium ── */
.nav__overlay {
  padding: calc(var(--nav-height) + 2rem) var(--gutter) 2rem;
  justify-content: center;
  gap: 1.25rem;
  background:
    radial-gradient(120% 80% at 80% 0%, rgba(184,151,107,0.16) 0%, transparent 60%),
    var(--fg);
  overflow-y: auto;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
  visibility: hidden;
}
.nav__overlay.open { visibility: visible; }
.nav__overlay .nav__link {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.25s;
  color: rgba(255,255,255,0.84);
}
.nav__overlay.open .nav__link { opacity: 1; transform: none; }
.nav__overlay.open .nav__link:nth-child(1) { transition-delay: 0.10s; }
.nav__overlay.open .nav__link:nth-child(2) { transition-delay: 0.16s; }
.nav__overlay.open .nav__link:nth-child(3) { transition-delay: 0.22s; }
.nav__overlay.open .nav__link:nth-child(4) { transition-delay: 0.28s; }
.nav__overlay.open .nav__link:nth-child(5) { transition-delay: 0.34s; }
.nav__overlay .nav__link[aria-current="page"] { color: var(--gold-light); }
.nav__overlay .nav__link--cta {
  border: 1px solid rgba(212,184,150,0.5) !important;
  padding: 0.9rem 2rem !important;
  color: var(--gold-light) !important;
  margin-top: 1.5rem;
}
.nav__overlay .nav__link--cta:hover {
  background: var(--gold-light) !important;
  color: var(--fg) !important;
}

/* Contact block injected at the bottom of the mobile menu */
.nav__overlay-contact {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s 0.42s var(--ease), transform 0.5s 0.42s var(--ease);
  width: 100%;
  max-width: 320px;
}
.nav__overlay.open .nav__overlay-contact { opacity: 1; transform: none; }
.nav__overlay-contact a {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav__overlay-contact a:hover { color: var(--white); }
.nav__overlay-contact span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Lock background scroll without layout shift */
body.menu-open { overflow: hidden; }

/* ── Button micro-interactions ── */
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--large { letter-spacing: 0.16em; }

/* ── Card polish ── */
.service-card { transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease); }
.service-card:hover { transform: translateY(-4px); }

/* ── Sticky mobile action bar (conversion) ── */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 880;
  display: none;
  gap: 1px;
  background: rgba(26,18,16,0.10);
  transform: translateY(110%);
  transition: transform 0.45s var(--ease), opacity 0.3s var(--ease);
  padding-bottom: env(safe-area-inset-bottom);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.mobile-cta.visible { transform: none; }
.mobile-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1.05rem 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mobile-cta a:first-child {
  background: rgba(250,246,241,0.97);
  color: var(--fg);
}
.mobile-cta a:last-child {
  background: var(--fg);
  color: var(--white);
}
.mobile-cta svg { flex-shrink: 0; }
@media (max-width: 768px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 0; }
  .footer { padding-bottom: 5.5rem; }
}

/* ── Back to top ── */
.to-top {
  position: fixed;
  right: var(--gutter);
  bottom: 2rem;
  z-index: 870;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(26,18,16,0.88);
  color: var(--white);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), background 0.25s;
}
.to-top.visible { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: var(--gold); }
@media (max-width: 768px) {
  .to-top { bottom: 4.75rem; right: 1rem; width: 42px; height: 42px; }
}

/* ── Form polish ── */
.form__group input:hover,
.form__group textarea:hover,
.form__group select:hover { background: var(--surface-2); }
.form__group input:invalid:not(:placeholder-shown),
.form__group textarea:invalid:not(:placeholder-shown) { border-bottom-color: #c0392b; }
.form__error {
  font-size: 0.78rem;
  color: #c0392b;
  margin-top: 0.3rem;
  display: none;
}
.form__error.visible { display: block; }

/* ── Image rendering safety ── */
img { background: var(--surface); }

/* ── Respect reduced-motion preferences ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__eyebrow, .hero__title, .hero__subtitle, .hero__actions { opacity: 1 !important; }
  .nav__overlay .nav__link { opacity: 1 !important; transform: none !important; }
}

/* ── Open-menu state ──
   The nav bar sits above the overlay sheet, so it must dissolve into it:
   transparent background with white logo and white close icon. */
body.menu-open .nav {
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
body.menu-open .nav .nav__logo { color: var(--white); }
body.menu-open .nav .nav__hamburger {
  border-color: rgba(255,255,255,0.42);
  background: rgba(255,255,255,0.10);
}
body.menu-open .nav .nav__hamburger span { background: var(--white); }
body.menu-open .scroll-progress { opacity: 0; }
body.menu-open .mobile-cta,
body.menu-open .to-top { opacity: 0; pointer-events: none; }

/* ── Small phones ── */
@media (max-width: 400px) {
  .nav .nav__logo { font-size: 0.95rem; }
  .mobile-cta a { font-size: 0.68rem; letter-spacing: 0.1em; }
}
