:root {
  /* ── Core palette ── */
  --color-navy: #0A2342;
  --color-teal: #0F766E;
  --color-aqua: #7FD8D8;
  --color-gold: #D4AF37;
  --color-amber: #E88C30;
  --color-ivory: #F8F4EC;
  --color-white: #FEFEFC;
  --color-text: #334155;

  /* ── Derived tones ── */
  --color-navy-deep: #071A31;
  --color-navy-mid: #0C2F52;
  --color-teal-light: #14857C;
  --color-aqua-soft: #9DE4E4;
  --color-ivory-tint: #EFF8F8;
  --color-text-secondary: rgba(51, 65, 85, 0.75);
  --color-text-on-dark: #FEFEFC;
  --color-text-muted-on-dark: rgba(200, 228, 228, 0.82);

  /* ── Alpha tokens ── */
  --color-navy-35: rgba(10, 35, 66, 0.35);
  --color-navy-40: rgba(10, 35, 66, 0.40);
  --color-navy-45: rgba(10, 35, 66, 0.45);
  --color-navy-55: rgba(10, 35, 66, 0.55);
  --color-navy-82: rgba(10, 35, 66, 0.82);
  --color-navy-88: rgba(10, 35, 66, 0.88);
  --color-navy-97: rgba(10, 35, 66, 0.97);
  --color-teal-08: rgba(15, 118, 110, 0.08);
  --color-teal-10: rgba(15, 118, 110, 0.10);
  --color-teal-15: rgba(15, 118, 110, 0.15);
  --color-teal-20: rgba(15, 118, 110, 0.20);
  --color-teal-25: rgba(15, 118, 110, 0.25);
  --color-aqua-10: rgba(127, 216, 216, 0.10);
  --color-aqua-12: rgba(127, 216, 216, 0.12);
  --color-aqua-15: rgba(127, 216, 216, 0.15);
  --color-aqua-18: rgba(127, 216, 216, 0.18);
  --color-aqua-20: rgba(127, 216, 216, 0.20);
  --color-aqua-25: rgba(127, 216, 216, 0.25);
  --color-aqua-35: rgba(127, 216, 216, 0.35);
  --color-gold-12: rgba(212, 175, 55, 0.12);
  --color-gold-20: rgba(212, 175, 55, 0.20);
  --color-gold-22: rgba(212, 175, 55, 0.22);
  --color-gold-28: rgba(212, 175, 55, 0.28);
  --color-gold-32: rgba(212, 175, 55, 0.32);
  --color-amber-20: rgba(232, 140, 48, 0.20);
  --color-white-04: rgba(254, 254, 252, 0.04);
  --color-white-06: rgba(254, 254, 252, 0.06);
  --color-white-15: rgba(254, 254, 252, 0.15);
  --color-white-25: rgba(254, 254, 252, 0.25);
  --color-white-50: rgba(254, 254, 252, 0.50);
  --color-white-72: rgba(254, 254, 252, 0.72);
  --color-placeholder-muted: rgba(200, 228, 228, 0.55);

  /* ── Gradients ── */
  --gradient-hero: linear-gradient(135deg, #0A2342 0%, #0F766E 45%, #7FD8D8 100%);
  --gradient-hero-overlay: linear-gradient(
    145deg,
    rgba(10, 35, 66, 0.90) 0%,
    rgba(15, 118, 110, 0.62) 45%,
    rgba(127, 216, 216, 0.30) 100%
  );
  --gradient-sunrise: radial-gradient(circle at 85% 18%, rgba(212, 175, 55, 0.22), transparent 50%);
  --gradient-ocean-light: radial-gradient(circle at 12% 88%, rgba(127, 216, 216, 0.18), transparent 44%);
  --gradient-section-ivory: linear-gradient(180deg, var(--color-ivory) 0%, var(--color-ivory-tint) 100%);
  --gradient-section-white: linear-gradient(180deg, var(--color-white) 0%, var(--color-ivory) 100%);
  --gradient-dark: linear-gradient(180deg, var(--color-navy-deep) 0%, var(--color-navy) 100%);
  --gradient-gold: linear-gradient(135deg, var(--color-gold) 0%, var(--color-amber) 100%);
  --gradient-teal-aqua: linear-gradient(135deg, var(--color-teal) 0%, var(--color-aqua) 100%);
  --gradient-placeholder: linear-gradient(160deg, var(--color-navy-mid) 0%, var(--color-teal) 50%, var(--color-amber) 100%);
  --gradient-divider: linear-gradient(90deg, transparent, var(--color-aqua-20), var(--color-gold-12), transparent);

  /* ── Shadows ── */
  --shadow-card: 0 20px 60px rgba(10, 35, 66, 0.08);
  --shadow-hover: 0 24px 70px rgba(10, 35, 66, 0.12);
  --shadow-soft: 0 8px 30px rgba(10, 35, 66, 0.06);
  --shadow-btn: 0 12px 32px var(--color-gold-28);
  --shadow-btn-hover: 0 16px 40px var(--color-gold-32);

  /* ── Legacy aliases (used by motion.js / existing rules) ── */
  --navy-deep: var(--color-navy-deep);
  --navy: var(--color-navy);
  --navy-mid: var(--color-navy-mid);
  --teal: var(--color-teal);
  --teal-light: var(--color-teal-light);
  --aqua: var(--color-aqua);
  --aqua-soft: var(--color-aqua-soft);
  --gold: var(--color-gold);
  --amber: var(--color-amber);
  --sand: var(--color-ivory);
  --sand-dark: var(--color-ivory-tint);
  --text: var(--color-text);
  --text-mid: var(--color-text-secondary);
  --text-light: var(--color-text-on-dark);
  --text-soft: var(--color-text-muted-on-dark);
  --shadow: var(--shadow-card);

  --radius: 14px;
  --radius-lg: 22px;
  --max: 1180px;
  --header-h: 72px;
  --page-gutter: 1.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
}

.label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: max(var(--page-gutter), env(safe-area-inset-left, 0px)) max(var(--page-gutter), env(safe-area-inset-right, 0px));
}

/* —— Header —— */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  padding-top: env(safe-area-inset-top, 0);
  background: var(--color-navy-82);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--color-aqua-15);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-on-dark);
}

.brand-tag {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-aqua-soft);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--color-text-muted-on-dark);
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--color-aqua);
}

.nav-cta {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: var(--color-gold);
  color: var(--color-navy) !important;
  font-weight: 700;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.nav-cta:hover {
  background: var(--color-amber);
  box-shadow: var(--shadow-btn);
}

.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--color-teal);
  color: var(--color-text-on-dark);
  border-radius: 8px;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
}

/* —— Hero —— */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  padding-top: var(--header-h);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background:
    var(--gradient-hero-overlay),
    var(--gradient-sunrise),
    var(--gradient-ocean-light),
    var(--gradient-hero);
  color: var(--color-text-on-dark);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: max(0px, calc((100vw - var(--max)) / 2));
  padding-block: 4rem;
  padding-inline: max(var(--page-gutter), env(safe-area-inset-left, 0px)) max(var(--page-gutter), env(safe-area-inset-right, 0px));
  max-width: 640px;
}

.hero-eyebrow {
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  margin-bottom: 1.2rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--color-gold);
}

.hero-lead {
  font-size: 1.08rem;
  color: var(--color-text-muted-on-dark);
  margin-bottom: 2rem;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.3s ease, box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-navy);
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  background: var(--color-amber);
  box-shadow: var(--shadow-btn-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text-on-dark);
  border: 2px solid var(--color-aqua);
}

.btn-secondary:hover {
  background: var(--color-aqua-12);
  border-color: var(--color-aqua-soft);
  box-shadow: 0 8px 24px var(--color-aqua-10);
}

.section-dark .btn-secondary,
.hero .btn-secondary {
  color: var(--color-text-on-dark);
  border-color: var(--color-aqua);
}

#coaching .btn-secondary,
#courses .btn-secondary,
.pillar-card .btn-secondary {
  color: var(--color-teal);
  border-color: var(--color-teal);
}

#coaching .btn-secondary:hover,
#courses .btn-secondary:hover {
  background: var(--color-aqua-12);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-block: 2rem 0;
  padding-inline: max(var(--page-gutter), env(safe-area-inset-left, 0px)) max(var(--page-gutter), env(safe-area-inset-right, 0px));
}

.hero-image-wrap {
  width: min(100%, 520px);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-aqua-20);
}

/* —— Image placeholders —— */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  text-align: center;
  padding: 1.5rem;
  background: var(--gradient-placeholder);
  color: var(--color-text-on-dark);
}

.img-placeholder svg {
  width: 42px;
  height: 42px;
  opacity: 0.75;
}

.img-placeholder span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.img-placeholder small {
  font-size: 0.72rem;
  opacity: 0.6;
  max-width: 24ch;
}

/* —— Sections —— */
section {
  padding: 5.5rem 0;
  position: relative;
}

#about {
  background: var(--color-ivory);
}

#coaching {
  background: var(--color-white);
}

#video {
  background: var(--color-ivory);
}

section:has(.gallery-grid) {
  background: var(--color-white);
}

.section-header {
  margin-bottom: 2.5rem;
  max-width: 720px;
}

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin: 0.5rem 0 0.85rem;
  color: var(--color-navy);
}

.section-header p {
  color: var(--color-text-secondary);
  font-size: 1.02rem;
}

.section-dark {
  background: var(--gradient-dark);
  color: var(--color-text-on-dark);
}

.section-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, var(--color-ivory-tint) 0%, transparent 100%);
  opacity: 0.04;
  pointer-events: none;
}

.section-dark .section-header p {
  color: var(--color-text-muted-on-dark);
}

.section-dark .section-header h2 {
  color: var(--color-text-on-dark);
}

.section-gradient {
  background: var(--gradient-section-ivory);
}

.section-gradient::before,
#about::after,
#coaching::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  height: 1px;
  pointer-events: none;
}

.section-gradient::before {
  top: 0;
  background: var(--gradient-divider);
}

#about::after,
#coaching::after {
  bottom: 0;
  background: var(--gradient-divider);
}

/* —— Philosophy —— */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.philosophy-text p + p {
  margin-top: 1rem;
  color: var(--color-text-secondary);
}

.philosophy-highlight {
  margin-top: 1.5rem;
  padding: 1.25rem 1.4rem;
  border-left: 3px solid var(--color-teal);
  background: var(--color-teal-08);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--color-navy);
}

.philosophy-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 5 / 4;
}

/* —— Funnel —— */
.funnel-card {
  background: var(--color-white-04);
  border: 1px solid var(--color-aqua-18);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-card);
}

.funnel-progress {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.funnel-dot {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: var(--color-aqua-20);
  transition: background 0.3s;
}

.funnel-dot.active {
  background: var(--gradient-teal-aqua);
}

.funnel-step {
  display: none;
}

.funnel-step.active {
  display: block;
}

.funnel-step h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.5rem;
  color: var(--color-text-on-dark);
}

.funnel-step > p {
  color: var(--color-text-muted-on-dark);
  margin-bottom: 1.5rem;
}

.funnel-options {
  display: grid;
  gap: 0.85rem;
}

.funnel-option {
  text-align: left;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-aqua-20);
  background: var(--color-navy-35);
  color: var(--color-text-on-dark);
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.funnel-option:hover {
  border-color: var(--color-aqua);
  background: var(--color-teal-20);
  transform: translateX(4px);
}

.funnel-option strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--color-aqua-soft);
}

.funnel-option span {
  font-size: 0.9rem;
  color: var(--color-text-muted-on-dark);
}

.funnel-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.funnel-result {
  display: none;
}

.funnel-result.visible {
  display: block;
}

.result-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--gradient-teal-aqua);
  color: var(--color-navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.result-card {
  padding: 1.2rem;
  border-radius: var(--radius);
  background: var(--color-white-06);
  border: 1px solid var(--color-aqua-15);
}

.result-card h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--color-aqua-soft);
}

.result-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted-on-dark);
}

/* —— Pillars —— */
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-teal-10);
  border-top: 4px solid var(--color-teal);
}

.pillar-card.inspiration {
  border-top-color: var(--color-amber);
}

.pillar-card h3 {
  font-size: 1.6rem;
  margin: 0.5rem 0 0.75rem;
  color: var(--color-teal);
}

.pillar-card p {
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

.pillar-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.pillar-list li {
  padding-left: 1.2rem;
  position: relative;
  font-size: 0.92rem;
  color: var(--color-text-secondary);
}

.pillar-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-teal);
}

.pillar-card.inspiration .pillar-list li::before {
  background: var(--color-gold);
}

/* —— Coaching —— */
.coaching-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.coaching-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-teal-10);
  display: flex;
  flex-direction: column;
}

.coaching-card-image {
  aspect-ratio: 16 / 9;
}

.coaching-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.coaching-card h3 {
  font-size: 1.45rem;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.coaching-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-teal);
  margin: 0.75rem 0;
}

.coaching-card p {
  color: var(--color-text-secondary);
  flex: 1;
}

.coaching-card .btn {
  margin-top: 1.25rem;
  align-self: flex-start;
}

/* —— Calendar —— */
.calendar-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.calendar-filters {
  display: flex;
  gap: 0.5rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--color-aqua-25);
  background: var(--color-white-04);
  color: var(--color-text-muted-on-dark);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.filter-btn.active {
  background: var(--gradient-teal-aqua);
  color: var(--color-navy);
  border-color: transparent;
}

.calendar-updated {
  font-size: 0.8rem;
  color: var(--color-text-muted-on-dark);
}

.calendar-grid {
  display: grid;
  gap: 1rem;
}

.class-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  background: var(--color-white-04);
  border: 1px solid var(--color-aqua-15);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.class-card:hover {
  border-color: var(--color-aqua-35);
  box-shadow: var(--shadow-soft);
}

.class-date {
  text-align: center;
  min-width: 64px;
}

.class-date .day {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-gold);
}

.class-date .month {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted-on-dark);
}

.class-info h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.class-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: var(--color-text-muted-on-dark);
}

.class-badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.class-badge.live {
  background: var(--color-gold-20);
  color: var(--color-amber);
}

.class-badge.online {
  background: var(--color-aqua-20);
  color: var(--color-aqua);
}

.class-action .btn {
  padding: 0.6rem 1.1rem;
  font-size: 0.82rem;
}

.calendar-empty,
.calendar-loading {
  text-align: center;
  padding: 2.5rem;
  color: var(--color-text-muted-on-dark);
}

/* —— Courses —— */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.course-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-teal-10);
}

.course-card-image {
  aspect-ratio: 16 / 10;
}

.course-card-body {
  padding: 1.75rem;
}

.course-card h3 {
  font-size: 1.4rem;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.course-card p {
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

.course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.course-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--color-teal-10);
  color: var(--color-teal);
}

/* —— Video —— */
.video-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-aqua-20);
}

.video-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--color-text-on-dark);
  cursor: pointer;
}

.video-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-white-15);
  border: 2px solid var(--color-white-50);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.video-placeholder:hover .video-play {
  transform: scale(1.05);
  background: var(--color-white-25);
}

.video-play svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

/* —— Yoga of Death + Substack —— */
.connect-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.connect-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-teal-10);
}

.connect-card h3 {
  font-size: 1.35rem;
  color: var(--color-teal);
  margin: 0.5rem 0 0.75rem;
}

.connect-card p {
  color: var(--color-text-secondary);
  margin-bottom: 1.25rem;
}

.connect-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--color-teal);
  transition: color 0.3s ease;
}

.connect-link:hover {
  color: var(--color-gold);
}

/* —— Gallery placeholders —— */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-soft);
}

/* —— Booking —— */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.booking-types {
  display: grid;
  gap: 0.85rem;
}

.booking-type {
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  background: var(--color-white-06);
  border: 1px solid var(--color-aqua-15);
}

.booking-type h4 {
  color: var(--color-aqua-soft);
  margin-bottom: 0.25rem;
}

.booking-type p {
  font-size: 0.88rem;
  color: var(--color-text-muted-on-dark);
}

.booking-form {
  display: grid;
  gap: 0.85rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.booking-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted-on-dark);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--color-teal-15);
  background: var(--color-ivory);
  color: var(--color-text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: var(--color-placeholder-muted);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px var(--color-teal-10);
}

.booking-form textarea {
  min-height: 110px;
  resize: vertical;
}

.form-note {
  font-size: 0.78rem;
  color: var(--color-text-muted-on-dark);
}

/* —— Footer —— */
.site-footer {
  background: var(--color-navy-deep);
  color: var(--color-text-muted-on-dark);
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--color-teal-15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .brand-name {
  font-size: 1.3rem;
}

.footer-brand p {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  max-width: 36ch;
}

.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 0.85rem;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.45rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-teal-15);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8rem;
}

