/* ============================================================
   THE LETTING GO METHOD — OCÉANO
   Design System & Landing Page Styles
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500&display=swap');

/* --- CSS Custom Properties — Design System v2 --- */
:root {
  /* Backgrounds */
  --color-bg-deep:    #3C787E;
  --color-bg-mid:     #2e6066;
  --color-bg-card:    rgba(60, 120, 126, 0.85);
  --color-bg-card-alt:rgba(50, 105, 110, 0.9);

  /* Text */
  --color-cream:      #ffffff;
  --color-sand:       #C4A882;

  /* Primary accent — gold/sand (replaces teal throughout) */
  --color-teal:       #C4A882;
  --color-teal-dim:   #A8906A;
  --accent-light:     #D4B896;
  --accent-dark:      #A8906A;

  /* Borders */
  --color-border:       rgba(196, 168, 130, 0.25);
  --color-border-hover: rgba(196, 168, 130, 0.5);
  --color-overlay:      rgba(50, 105, 110, 0.80);

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', system-ui, sans-serif;

  --max-width:     1200px;
  --section-pad:   clamp(80px, 10vw, 140px);
  --gutter:        clamp(20px, 5vw, 60px);
  --card-radius:   16px;

  --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  background-color: var(--color-bg-deep);
  color: #ffffff;
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-teal);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--color-cream);
}

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.teal { color: var(--color-teal); }
.sand { color: var(--color-sand); }

/* ============================================================
   NAVIGATION
   ============================================================ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}

.site-nav.scrolled {
  background: rgba(6, 20, 30, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px var(--gutter);
  border-bottom: 1px solid var(--color-border);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-cream);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--color-cream); }

.nav-links .nav-members {
  color: var(--color-sand);
}

.btn-nav {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--color-teal);
  color: var(--color-teal);
  border-radius: 2px;
  transition: background var(--transition), color var(--transition);
}

.btn-nav:hover {
  background: var(--color-teal);
  color: var(--color-bg-deep);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--color-cream);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: var(--color-bg-deep);
  padding: 100px var(--gutter) 60px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-mobile-menu.open {
  transform: translateX(0);
}

.nav-mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--color-cream);
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition);
}

.nav-mobile-menu a:hover { color: var(--color-teal); }

.nav-mobile-menu .btn-nav-mobile {
  display: inline-block;
  margin-top: 32px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid var(--color-teal);
  color: var(--color-teal);
  border-radius: 2px;
  align-self: flex-start;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 48px;
  background: transparent;
  border: 1px solid var(--color-sand);
  color: var(--color-sand);
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn-primary:hover {
  background: var(--color-sand);
  color: var(--color-bg-deep);
  border-color: var(--color-sand);
}

.btn-teal {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 40px;
  background: transparent;
  border: 1px solid var(--color-teal);
  color: var(--color-teal);
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.btn-teal:hover {
  background: var(--color-teal);
  color: var(--color-bg-deep);
}

/* ============================================================
   SECTION 01 — HERO
   ============================================================ */

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 70%, rgba(10, 50, 80, 0.55) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 30% 30%, rgba(196, 168, 130, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, #06141e 0%, #0a2233 40%, #061822 100%);
}

/* Animated water shimmer */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='800' height='600' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.4;
  animation: shimmer 12s ease-in-out infinite alternate;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to top, var(--color-bg-deep), transparent);
}

@keyframes shimmer {
  0%   { transform: scale(1) translateY(0); opacity: 0.3; }
  100% { transform: scale(1.05) translateY(-10px); opacity: 0.5; }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 var(--gutter);
  max-width: 820px;
  animation: fadeUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  margin-bottom: 28px;
  animation-delay: 0.2s;
}

.hero-headline {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  color: var(--color-cream);
  line-height: 1.05;
  margin-bottom: 48px;
  font-style: italic;
}

.hero-headline em {
  font-style: normal;
  color: var(--color-teal);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.5;
  animation: pulse 3s ease-in-out infinite;
}

.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-teal), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.8; }
}

/* ============================================================
   SECTION 02 — THE MIRROR
   ============================================================ */

.mirror {
  padding: var(--section-pad) var(--gutter);
  background: var(--color-bg-mid);
  position: relative;
  overflow: hidden;
}

.mirror::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, var(--color-bg-deep), transparent);
}

.mirror-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.mirror-question {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--color-cream);
  margin-bottom: 48px;
  line-height: 1.1;
}

.mirror-lines {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mirror-line {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #ffffff;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.mirror-line strong {
  color: var(--color-sand);
  font-weight: 400;
}

/* ============================================================
   SECTION 03 — THE METHOD
   ============================================================ */

.method {
  padding: var(--section-pad) 0;
  background: var(--color-bg-deep);
  overflow: hidden;
}

.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.method-visual {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-card);
  min-height: 480px;
}

.method-visual-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  inset: 0;
}

.method-visual-inner {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(196, 168, 130, 0.08) 0%, transparent 70%),
    linear-gradient(135deg, #06141e 0%, #0d3040 50%, #06141e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Decorative water rings */
.water-rings {
  position: relative;
  width: 280px;
  height: 280px;
}

.water-rings::before,
.water-rings::after,
.water-rings span {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(196, 168, 130, 0.18);
}

.water-rings::before {
  inset: 0;
  animation: ring 4s ease-in-out infinite;
}

.water-rings::after {
  inset: 30px;
  animation: ring 4s ease-in-out 1s infinite;
}

.water-rings span {
  inset: 60px;
  animation: ring 4s ease-in-out 2s infinite;
}

.water-rings .center-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-teal);
  box-shadow: 0 0 20px rgba(196, 168, 130, 0.5);
}

@keyframes ring {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%       { transform: scale(1.04); opacity: 0.9; }
}

.method-content {
  padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.method-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--color-cream);
  margin: 16px 0 24px;
}

.method-body {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.85;
  margin-bottom: 52px;
  max-width: 420px;
}

.method-pillars {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.pillar-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
}

.pillar-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}

.pillar-text h4 {
  font-size: 1rem;
  font-family: var(--font-serif);
  color: var(--color-cream);
  margin-bottom: 4px;
  font-weight: 500;
}

.pillar-text p {
  font-size: 0.82rem;
  color: #ffffff;
  line-height: 1.6;
}

/* ============================================================
   SECTION 04 — THE JOURNEY
   ============================================================ */

.journey {
  padding: var(--section-pad) var(--gutter);
  background: var(--color-bg-mid);
}

.journey-header {
  text-align: center;
  margin-bottom: 64px;
}

.journey-header .eyebrow { margin-bottom: 16px; }

.journey-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.journey-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-teal);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}

.journey-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 168, 130, 0.35);
}

.journey-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(196, 168, 130, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.card-roman {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: #C4A882;
  line-height: 1;
  margin-bottom: 24px;
}

.card-title {
  font-size: 1.4rem;
  color: var(--color-cream);
  margin-bottom: 16px;
  line-height: 1.2;
}

.card-subtitle {
  font-size: 0.85rem;
  color: var(--color-teal);
  letter-spacing: 0.08em;
  font-style: italic;
  font-family: var(--font-serif);
}

.card-desc {
  font-size: 0.83rem;
  color: #ffffff;
  margin-top: 16px;
  line-height: 1.7;
}

/* ============================================================
   SECTION 05 — HOW IT WORKS (TIMELINE)
   ============================================================ */

.how-it-works {
  padding: var(--section-pad) var(--gutter);
  background: var(--color-bg-deep);
}

.how-inner {
  max-width: 720px;
  margin: 0 auto;
}

.how-header {
  text-align: center;
  margin-bottom: 72px;
}

.how-header .eyebrow { margin-bottom: 16px; }

.timeline {
  position: relative;
  padding-left: 48px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--color-teal), rgba(196, 168, 130, 0.1));
}

.timeline-step {
  position: relative;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-step.visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-step:last-child { margin-bottom: 0; }

.step-number {
  position: absolute;
  left: -48px;
  top: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-teal);
  border: 1px solid var(--color-teal);
  border-radius: 50%;
  background: var(--color-bg-deep);
  z-index: 1;
}

.step-title {
  font-size: 1.3rem;
  color: var(--color-cream);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.88rem;
  color: #ffffff;
  line-height: 1.75;
}

/* ============================================================
   SECTION 06 — OCÉANO (FOUNDER)
   ============================================================ */

.oceano {
  padding: var(--section-pad) var(--gutter);
  background: var(--color-bg-mid);
  position: relative;
  overflow: hidden;
}

.oceano::before {
  content: '';
  position: absolute;
  top: 0;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(196, 168, 130, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.oceano-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.oceano-photo {
  position: relative;
}

.photo-frame {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 420px;
  margin: 0 auto;
  overflow: hidden;
}

.oceano-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.photo-frame-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, #0d3040 0%, #06141e 100%);
  clip-path: ellipse(45% 50% at 50% 50%);
}

.photo-placeholder {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(196, 168, 130, 0.2);
  clip-path: ellipse(42% 48% at 50% 50%);
  background: var(--color-bg-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #C4A882;
}

.photo-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1;
}

.photo-placeholder span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C4A882;
}

/* Corner accent lines */
.photo-frame::before,
.photo-frame::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: var(--color-teal);
  border-style: solid;
  opacity: 0.4;
}

.photo-frame::before {
  top: 8px;
  left: 8px;
  border-width: 1px 0 0 1px;
}

.photo-frame::after {
  bottom: 8px;
  right: 8px;
  border-width: 0 1px 1px 0;
}

.oceano-content .eyebrow { margin-bottom: 16px; }

.oceano-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--color-cream);
  margin-bottom: 28px;
  font-style: italic;
}

.oceano-bio {
  font-size: 0.92rem;
  color: #ffffff;
  line-height: 1.9;
  margin-bottom: 40px;
}

.oceano-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stat-item { text-align: center; flex: 1; }

.stat-value {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--color-teal);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
}

.oceano-locations {
  font-size: 0.8rem;
  color: #ffffff;
  line-height: 2;
  letter-spacing: 0.04em;
}

.oceano-locations span {
  display: inline-block;
  margin-right: 6px;
  color: var(--color-sand);
  opacity: 0.8;
}

/* ============================================================
   SECTION 07 — EXPERIENCES
   ============================================================ */

.experiences {
  padding: var(--section-pad) var(--gutter);
  background: var(--color-bg-deep);
}

.experiences-header {
  text-align: center;
  margin-bottom: 64px;
}

.experiences-header .eyebrow { margin-bottom: 16px; }

.exp-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.exp-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.exp-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-teal), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.exp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 168, 130, 0.3);
}

.exp-card:hover::after {
  transform: scaleX(1);
}

.exp-card-num {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  color: var(--color-teal);
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  opacity: 0.6;
}

.exp-card-title {
  font-size: 1.5rem;
  color: var(--color-cream);
  margin-bottom: 16px;
  line-height: 1.2;
}

.exp-card-desc {
  font-size: 0.83rem;
  color: #ffffff;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
}

.exp-card-price {
  font-size: 0.78rem;
  color: var(--color-sand);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  font-family: var(--font-serif);
  font-style: italic;
  line-height: 1.6;
}

/* ============================================================
   SECTION 08 — BOOKING CTA
   ============================================================ */

.booking-cta {
  padding: var(--section-pad) var(--gutter);
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(10, 50, 80, 0.6) 0%, transparent 70%),
    linear-gradient(180deg, var(--color-bg-mid) 0%, var(--color-bg-deep) 100%);
}

.booking-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.5' numOctaves='3'/%3E%3C/filter%3E%3Crect width='600' height='400' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  opacity: 0.6;
}

.booking-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.booking-cta .eyebrow { margin-bottom: 24px; }

.booking-headline {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--color-cream);
  margin-bottom: 24px;
  line-height: 1.15;
}

.booking-subtext {
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 48px;
  letter-spacing: 0.04em;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--color-bg-card-alt);
  padding: 72px var(--gutter) 40px;
  border-top: 1px solid var(--color-border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto 60px;
}

.footer-brand .nav-logo {
  display: block;
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: border-color var(--transition), color var(--transition);
}

.social-link:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
}

.social-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.footer-col h5 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 24px;
  font-family: var(--font-sans);
  font-weight: 500;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: #ffffff;
  transition: color var(--transition);
  letter-spacing: 0.03em;
}

.footer-col ul li a:hover { color: var(--color-cream); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy, .footer-disclaimer {
  font-size: 0.73rem;
  color: #ffffff;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.footer-disclaimer { max-width: 520px; text-align: right; }

/* ============================================================
   MEMBER PAGES — SHARED
   ============================================================ */

.member-page {
  min-height: 100svh;
  background: var(--color-bg-deep);
  display: flex;
  flex-direction: column;
}

.member-nav {
  padding: 24px var(--gutter);
  border-bottom: 1px solid var(--color-border);
  background: rgba(6, 20, 30, 0.9);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.member-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px var(--gutter);
}

/* Auth Forms */
.auth-card {
  width: 100%;
  max-width: 480px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: clamp(40px, 6vw, 60px);
}

.auth-eyebrow { margin-bottom: 12px; }

.auth-title {
  font-size: 2.2rem;
  color: var(--color-cream);
  margin-bottom: 8px;
}

.auth-subtitle {
  font-size: 0.85rem;
  color: #ffffff;
  margin-bottom: 40px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 10px;
}

.form-group input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-cream);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  border-radius: 2px;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus {
  border-color: var(--color-teal);
  background: rgba(196, 168, 130, 0.04);
}

.form-group input::placeholder {
  color: #ffffff;
}

.form-error {
  background: rgba(255, 80, 80, 0.08);
  border: 1px solid rgba(255, 80, 80, 0.25);
  color: #ff9090;
  padding: 14px 18px;
  font-size: 0.83rem;
  border-radius: 2px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.form-success {
  background: rgba(196, 168, 130, 0.08);
  border: 1px solid rgba(196, 168, 130, 0.25);
  color: var(--color-teal);
  padding: 14px 18px;
  font-size: 0.83rem;
  border-radius: 2px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.btn-form {
  width: 100%;
  padding: 16px;
  background: transparent;
  border: 1px solid var(--color-teal);
  color: var(--color-teal);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background var(--transition), color var(--transition);
  margin-top: 8px;
}

.btn-form:hover {
  background: var(--color-teal);
  color: var(--color-bg-deep);
}

.auth-footer-link {
  text-align: center;
  margin-top: 28px;
  font-size: 0.82rem;
  color: #ffffff;
}

.auth-footer-link a {
  color: var(--color-sand);
  transition: color var(--transition);
}

.auth-footer-link a:hover { color: var(--color-cream); }

/* Dashboard */
.dashboard-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px var(--gutter);
  width: 100%;
}

.dashboard-welcome {
  margin-bottom: 60px;
}

.dashboard-welcome .eyebrow { margin-bottom: 12px; }

.dashboard-welcome h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-cream);
  margin-bottom: 12px;
}

.dashboard-welcome p {
  font-size: 0.9rem;
  color: #ffffff;
}

.membership-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 2px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 16px;
}

.badge-active {
  background: rgba(196, 168, 130, 0.12);
  border: 1px solid rgba(196, 168, 130, 0.35);
  color: var(--color-teal);
}

.badge-pending {
  background: rgba(196, 168, 130, 0.1);
  border: 1px solid rgba(196, 168, 130, 0.3);
  color: var(--color-sand);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.dashboard-section-title {
  font-size: 1.6rem;
  color: var(--color-cream);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.video-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: transform var(--transition);
}

.video-card:hover { transform: translateY(-3px); }

.video-thumb {
  aspect-ratio: 16/9;
  background: var(--color-bg-card-alt);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--color-border);
}

.video-thumb-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(196, 168, 130, 0.06) 0%, transparent 70%);
}

.play-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(196, 168, 130, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
  position: relative;
  z-index: 1;
}

.play-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  margin-left: 2px;
}

.video-info {
  padding: 20px;
}

.video-info h4 {
  font-size: 0.95rem;
  color: var(--color-cream);
  margin-bottom: 8px;
  font-family: var(--font-serif);
}

.video-info p {
  font-size: 0.78rem;
  color: #ffffff;
  line-height: 1.6;
}

.video-duration {
  font-size: 0.7rem;
  color: var(--color-teal);
  letter-spacing: 0.1em;
  margin-top: 8px;
}

/* Admin */
.admin-main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px var(--gutter);
}

.admin-title {
  font-size: 2rem;
  color: var(--color-cream);
  margin-bottom: 8px;
}

.admin-subtitle {
  font-size: 0.85rem;
  color: #ffffff;
  margin-bottom: 48px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.83rem;
}

.data-table th {
  text-align: left;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-teal);
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
  font-weight: 500;
  font-family: var(--font-sans);
}

.data-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(196, 168, 130, 0.07);
  color: #ffffff;
  vertical-align: middle;
}

.data-table tr:hover td { background: rgba(196, 168, 130, 0.03); }

.data-table .badge-active,
.data-table .badge-pending {
  padding: 4px 10px;
  font-size: 0.65rem;
}

.action-btn {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 500;
  background: transparent;
  transition: background var(--transition), color var(--transition);
}

.btn-activate {
  border-color: rgba(196, 168, 130, 0.4);
  color: var(--color-teal);
}

.btn-activate:hover {
  background: rgba(196, 168, 130, 0.1);
}

.btn-deactivate {
  border-color: rgba(196, 168, 130, 0.3);
  color: var(--color-sand);
}

.btn-deactivate:hover {
  background: rgba(196, 168, 130, 0.08);
}

/* Payment pages */
.payment-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px var(--gutter);
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(10, 50, 80, 0.5) 0%, transparent 70%),
    var(--color-bg-deep);
}

.payment-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(196, 168, 130, 0.1);
  border: 1px solid rgba(196, 168, 130, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.payment-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-teal);
  fill: none;
  stroke-width: 1.5;
}

.payment-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-cream);
  margin-bottom: 16px;
}

.payment-subtitle {
  font-size: 0.95rem;
  color: #ffffff;
  max-width: 400px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

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

@media (max-width: 1024px) {
  .exp-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .method-visual {
    min-height: 320px;
  }

  .method-visual-inner {
    position: relative;
    height: 320px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }

  .nav-hamburger { display: flex; }

  .nav-mobile-menu { display: flex; }

  .journey-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .oceano-grid {
    grid-template-columns: 1fr;
  }

  .oceano-photo { order: -1; }

  .photo-frame { max-width: 300px; }

  .oceano-stats { gap: 20px; }

  .exp-cards { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand { grid-column: auto; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-disclaimer { text-align: center; }

  .dashboard-main { padding: 40px var(--gutter); }

  .video-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: clamp(2.4rem, 11vw, 3.5rem); }

  .oceano-stats { flex-direction: column; gap: 24px; }

  .auth-card { padding: 32px 24px; }
}

/* ============================================================
   EXTENDED STYLES — v2
   Dropdown nav · Inner page heroes · New section patterns
   Video modal · Dashboard sections · FAQ · Pricing
   ============================================================ */

/* ── Nav Dropdown ─────────────────────────────────────────── */

.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  transition: color var(--transition);
}

.nav-dropdown-btn:hover,
.nav-dropdown.open .nav-dropdown-btn {
  color: var(--color-cream);
}

.dropdown-arrow {
  font-size: 0.6rem;
  transition: transform var(--transition);
  display: inline-block;
}

.nav-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 220px;
  background: rgba(8, 24, 38, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 10px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: rgba(8, 24, 38, 0.97);
  border-left: 1px solid var(--color-border);
  border-top: 1px solid var(--color-border);
}

.nav-dropdown-menu li a {
  display: block;
  padding: 11px 22px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: #ffffff;
  transition: color var(--transition), background var(--transition);
  text-transform: uppercase;
}

.nav-dropdown-menu li a:hover {
  color: var(--color-cream);
  background: rgba(196, 168, 130, 0.06);
}

.nav-dropdown-menu li + li {
  border-top: 1px solid rgba(196, 168, 130, 0.07);
}

/* Mobile sessions group in mobile menu */
.mobile-nav-group {
  display: flex;
  flex-direction: column;
}

.mobile-nav-sub {
  padding-left: 24px;
  display: flex;
  flex-direction: column;
}

.mobile-nav-sub a {
  font-family: var(--font-sans) !important;
  font-size: 1rem !important;
  color: #ffffff !important;
  padding: 10px 0 !important;
  border-bottom: none !important;
  letter-spacing: 0.08em;
}

.mobile-nav-sub a:hover { color: var(--color-teal) !important; }

.mobile-nav-label {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--color-cream);
  padding: 16px 0 8px;
  border-bottom: 1px solid var(--color-border);
  cursor: default;
}

/* ── Inner-page Hero (shorter than full-screen) ────────────── */

.page-hero {
  position: relative;
  min-height: 70svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(64px, 8vw, 100px);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 80%, rgba(10, 50, 80, 0.6) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 20%, rgba(196, 168, 130, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, #06141e 0%, #0a2233 50%, #061822 100%);
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to top, var(--color-bg-deep), transparent);
}

/* Teal left accent line */
.page-hero::before {
  content: '';
  position: absolute;
  left: var(--gutter);
  top: 35%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--color-teal), transparent);
  opacity: 0.3;
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.page-hero-content .eyebrow {
  margin-bottom: 20px;
}

.page-hero-headline {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--color-cream);
  line-height: 1.08;
  max-width: 760px;
  margin-bottom: 24px;
}

.page-hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #ffffff;
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ── Section intro text block ──────────────────────────────── */

.section-intro {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.section-intro .eyebrow { margin-bottom: 16px; }
.section-intro .section-title { margin-bottom: 20px; }

.section-intro p {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.85;
}

/* ── For-who grid ──────────────────────────────────────────── */

.for-who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.for-who-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-left: 2px solid var(--color-teal);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: background var(--transition);
}

.for-who-item:hover {
  background: rgba(13, 42, 61, 0.9);
}

.for-who-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-teal);
  margin-top: 7px;
}

.for-who-text {
  font-size: 0.85rem;
  color: #ffffff;
  line-height: 1.5;
}

/* ── 3-phase "How it works" horizontal ────────────────────── */

.phase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
  max-width: var(--max-width);
  margin: 0 auto;
}

.phase-block {
  background: var(--color-bg-card);
  padding: 48px 40px;
  position: relative;
}

.phase-block::before {
  content: attr(data-num);
  position: absolute;
  top: 32px;
  right: 32px;
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: #C4A882;
  line-height: 1;
}

.phase-num {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 16px;
}

.phase-title {
  font-size: 1.5rem;
  color: var(--color-cream);
  margin-bottom: 16px;
}

.phase-desc {
  font-size: 0.85rem;
  color: #ffffff;
  line-height: 1.8;
}

/* ── Session ritual deep-dive ──────────────────────────────── */

.ritual-section {
  padding: var(--section-pad) var(--gutter);
  background: var(--color-bg-mid);
}

.ritual-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 80px);
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}

.ritual-sticky {
  position: sticky;
  top: 100px;
}

.ritual-sticky .section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 20px;
}

.ritual-sticky p {
  font-size: 0.88rem;
  color: #ffffff;
  line-height: 1.9;
}

.ritual-phases {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ritual-phase {
  border-left: 1px solid var(--color-border);
  padding: 0 0 48px 32px;
  position: relative;
}

.ritual-phase:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.ritual-phase::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-teal);
  border: 2px solid var(--color-bg-mid);
}

.ritual-phase-num {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 10px;
}

.ritual-phase-title {
  font-size: 1.3rem;
  color: var(--color-cream);
  margin-bottom: 14px;
}

.ritual-phase-body {
  font-size: 0.85rem;
  color: #ffffff;
  line-height: 1.85;
  margin-bottom: 16px;
}

.ritual-sub-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ritual-sub-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.82rem;
  color: #ffffff;
}

.ritual-sub-item::before {
  content: '—';
  color: var(--color-teal);
  flex-shrink: 0;
}

/* ── Journey cards variant (3 sessions) ───────────────────── */

.sessions-journey {
  padding: var(--section-pad) var(--gutter);
  background: var(--color-bg-deep);
}

/* ── What to bring / Preparation ──────────────────────────── */

.two-col-info {
  padding: var(--section-pad) var(--gutter);
  background: var(--color-bg-mid);
}

.two-col-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.info-col h3 {
  font-size: 1.5rem;
  color: var(--color-cream);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-list-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 0.87rem;
  color: #ffffff;
  line-height: 1.6;
}

.info-list-item .item-marker {
  flex-shrink: 0;
  color: var(--color-teal);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 2px;
}

/* ── Benefits grid ─────────────────────────────────────────── */

.benefits {
  padding: var(--section-pad) var(--gutter);
  background: var(--color-bg-deep);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.benefit-card {
  padding: 36px 32px;
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.benefit-card:hover {
  border-color: rgba(196, 168, 130, 0.35);
  transform: translateY(-3px);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--color-teal);
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
}

.benefit-title {
  font-size: 1.1rem;
  color: var(--color-cream);
  margin-bottom: 10px;
}

.benefit-desc {
  font-size: 0.82rem;
  color: #ffffff;
  line-height: 1.75;
}

/* ── Pricing block ─────────────────────────────────────────── */

.pricing-section {
  padding: var(--section-pad) var(--gutter);
  background: var(--color-bg-mid);
  text-align: center;
}

.pricing-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-teal);
  padding: 48px 40px;
  flex: 1;
  min-width: 260px;
  max-width: 340px;
  text-align: center;
  transition: transform var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card-featured {
  border-top-color: var(--color-sand);
  background: rgba(13, 42, 61, 0.95);
}

.pricing-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 16px;
}

.pricing-card-featured .pricing-label {
  color: var(--color-sand);
}

.pricing-amount {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--color-cream);
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-period {
  font-size: 0.78rem;
  color: #ffffff;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

.pricing-divider {
  height: 1px;
  background: var(--color-border);
  margin-bottom: 28px;
}

.pricing-includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin-bottom: 36px;
}

.pricing-includes li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.83rem;
  color: #ffffff;
  line-height: 1.5;
}

.pricing-includes li::before {
  content: '✓';
  color: var(--color-teal);
  flex-shrink: 0;
  font-size: 0.75rem;
}

/* Single large pricing card */
.pricing-single {
  max-width: 480px;
  margin: 0 auto;
}

/* ── Disclaimer ────────────────────────────────────────────── */

.disclaimer-block {
  text-align: center;
  padding: 32px var(--gutter);
  border-top: 1px solid var(--color-border);
  font-size: 0.75rem;
  color: #ffffff;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* ── Circle concept section ────────────────────────────────── */

.concept-section {
  padding: var(--section-pad) var(--gutter);
  background: var(--color-bg-deep);
  position: relative;
  overflow: hidden;
}

.concept-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(196, 168, 130, 0.06);
  pointer-events: none;
}

.concept-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(196, 168, 130, 0.04);
  pointer-events: none;
}

.concept-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.concept-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-style: italic;
  font-weight: 300;
  color: var(--color-cream);
  line-height: 1.35;
  margin-bottom: 28px;
}

.concept-body {
  font-size: 0.92rem;
  color: #ffffff;
  line-height: 1.9;
}

/* ── Practices grid (group ceremonies) ─────────────────────── */

.practices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--color-border);
  max-width: var(--max-width);
  margin: 0 auto;
}

.practice-block {
  background: var(--color-bg-card);
  padding: 48px 40px;
  position: relative;
}

.practice-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: #C4A882;
  line-height: 1;
  margin-bottom: 20px;
}

.practice-title {
  font-size: 1.4rem;
  color: var(--color-cream);
  margin-bottom: 14px;
}

.practice-desc {
  font-size: 0.85rem;
  color: #ffffff;
  line-height: 1.85;
}

.practice-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-teal);
  border: 1px solid rgba(196, 168, 130, 0.25);
  padding: 5px 12px;
  border-radius: 2px;
}

/* ── Elements / closing ritual ─────────────────────────────── */

.elements-row {
  display: flex;
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  border: 1px solid var(--color-border);
}

.element-item {
  flex: 1;
  text-align: center;
  padding: 36px 20px;
  border-right: 1px solid var(--color-border);
  transition: background var(--transition);
}

.element-item:last-child { border-right: none; }

.element-item:hover {
  background: rgba(196, 168, 130, 0.04);
}

.element-symbol {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-teal);
  margin-bottom: 10px;
  display: block;
  opacity: 0.7;
}

.element-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-cream);
  margin-bottom: 6px;
}

.element-desc {
  font-size: 0.72rem;
  color: #ffffff;
  letter-spacing: 0.06em;
}

/* ── Shift boxes (corporate) ───────────────────────────────── */

.shift-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.shift-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.shift-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--color-teal);
}

.shift-from {
  font-size: 0.78rem;
  color: #ffffff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.shift-arrow {
  font-size: 1.5rem;
  color: #C4A882;
  margin: 8px 0;
}

.shift-to {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--color-cream);
}

/* ── Corporate experience steps ────────────────────────────── */

.experience-steps {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.exp-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--color-border);
  padding: 40px 0;
  transition: background var(--transition);
}

.exp-step:last-child { border-bottom: none; }

.exp-step:hover {
  background: rgba(196, 168, 130, 0.02);
}

.exp-step-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: #C4A882;
  line-height: 1;
  padding-top: 4px;
}

.exp-step-content {}

.exp-step-title {
  font-size: 1.2rem;
  color: var(--color-cream);
  margin-bottom: 10px;
}

.exp-step-desc {
  font-size: 0.85rem;
  color: #ffffff;
  line-height: 1.8;
}

/* ── Format & logistics pills ──────────────────────────────── */

.logistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.logistics-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 28px 24px;
  text-align: center;
}

.logistics-icon {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-teal);
  opacity: 0.7;
  margin-bottom: 10px;
  display: block;
}

.logistics-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 6px;
}

.logistics-value {
  font-size: 0.9rem;
  color: var(--color-cream);
  line-height: 1.4;
}

/* ── Contact form ──────────────────────────────────────────── */

.contact-form-section {
  padding: var(--section-pad) var(--gutter);
  background: var(--color-bg-mid);
}

.contact-form-inner {
  max-width: 620px;
  margin: 0 auto;
}

.contact-form-inner .section-intro {
  text-align: left;
  margin: 0 0 48px;
}

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

.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-cream);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  border-radius: 2px;
  resize: vertical;
  min-height: 120px;
  transition: border-color var(--transition);
  outline: none;
}

.form-group textarea:focus {
  border-color: var(--color-teal);
  background: rgba(196, 168, 130, 0.04);
}

.form-group textarea::placeholder {
  color: #ffffff;
}

.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  border-radius: 2px;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.form-group select:focus {
  border-color: var(--color-teal);
}

.form-group select option {
  background: var(--color-bg-card);
  color: var(--color-cream);
}

/* ── Membership "What's inside" ────────────────────────────── */

.inside-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.inside-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 36px 28px;
  transition: transform var(--transition), border-color var(--transition);
}

.inside-card:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 168, 130, 0.3);
}

.inside-card-icon {
  width: 36px;
  height: 36px;
  color: var(--color-teal);
  margin-bottom: 18px;
}

.inside-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}

.inside-card-title {
  font-size: 1.05rem;
  color: var(--color-cream);
  margin-bottom: 10px;
  font-family: var(--font-serif);
}

.inside-card-desc {
  font-size: 0.82rem;
  color: #ffffff;
  line-height: 1.75;
}

/* ── FAQ ───────────────────────────────────────────────────── */

.faq-section {
  padding: var(--section-pad) var(--gutter);
  background: var(--color-bg-mid);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-cream);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--color-teal);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(196, 168, 130, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
  transition: transform var(--transition), background var(--transition);
}

.faq-icon svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform var(--transition);
}

.faq-item.open .faq-icon svg {
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 0.88rem;
  color: #ffffff;
  line-height: 1.85;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding-bottom: 0;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 24px;
}

/* ── Video Modal ────────────────────────────────────────────── */

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(6, 20, 30, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal.open {
  opacity: 1;
  pointer-events: all;
}

.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #000;
  border: 1px solid var(--color-border);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-modal.open .video-modal-inner {
  transform: scale(1);
}

.video-modal-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #ffffff;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color var(--transition);
}

.video-modal-close:hover { color: var(--color-cream); }

.video-modal-close svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* ── Dashboard library sections ────────────────────────────── */

.library-section {
  margin-bottom: 60px;
}

.library-section-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.library-section-title {
  font-size: 1.4rem;
  color: var(--color-cream);
}

.library-section-count {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-teal);
  opacity: 0.7;
}

/* ── Active nav link for current page ──────────────────────── */

.nav-current {
  color: var(--color-cream) !important;
}

/* ── Responsive updates ─────────────────────────────────────── */

@media (max-width: 1024px) {
  .phase-grid { grid-template-columns: 1fr; }
  .phase-block { padding: 36px 28px; }
  .practices-grid { grid-template-columns: 1fr; }
  .shift-grid { grid-template-columns: 1fr; gap: 12px; }
  .ritual-grid { grid-template-columns: 1fr; }
  .ritual-sticky { position: static; }
}

@media (max-width: 768px) {
  .two-col-info-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .elements-row { flex-direction: column; }
  .element-item { border-right: none; border-bottom: 1px solid var(--color-border); }
  .element-item:last-child { border-bottom: none; }
  .pricing-cards { flex-direction: column; align-items: center; }
  .page-hero::before { display: none; }
  .exp-step { grid-template-columns: 50px 1fr; }
}

/* ============================================================
   DESIGN SYSTEM V2 — Complete visual overhaul
   Gold/sand accent · Warm dark backgrounds · Rounded cards
   Glass morphism · Refined typography
   ============================================================ */

/* ── Body background with warm grain ───────────────────────── */
body {
  background-color: var(--color-bg-deep);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -10%, rgba(196, 168, 130, 0.04) 0%, transparent 60%);
}

/* ── Eyebrow — v2: tighter tracking, gold color ────────────── */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px !important;
  font-weight: 400;
  letter-spacing: 4px !important;
  text-transform: uppercase;
  color: var(--color-sand) !important;
}

/* ── Section title — v2: larger, lighter weight ────────────── */
.section-title {
  font-size: clamp(2.4rem, 5vw, 3.5rem) !important;
  font-weight: 300 !important;
  color: var(--color-cream);
}

/* ── Body text — airy ───────────────────────────────────────── */
body, p {
  line-height: 1.8;
}

/* ── NAVIGATION v2 ───────────────────────────────────────────
   Nearly invisible glass bar floating over content           */

.site-nav {
  background: rgba(50, 105, 110, 0.15) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: none;
  padding: 20px var(--gutter);
}

.site-nav.scrolled {
  background: rgba(50, 105, 110, 0.88) !important;
  border-bottom: 1px solid var(--color-border) !important;
  padding: 14px var(--gutter) !important;
}

/* Nav links v2 */
.nav-links a {
  color: #ffffff;
  letter-spacing: 0.12em;
}

.nav-links a:hover,
.nav-links a.nav-current {
  color: var(--color-sand) !important;
}

/* Dropdown trigger button */
.nav-dropdown-btn {
  color: #ffffff !important;
}

.nav-dropdown-btn:hover,
.nav-dropdown.open .nav-dropdown-btn {
  color: var(--color-sand) !important;
}

/* Dropdown menu v2 */
.nav-dropdown-menu {
  background: rgba(50, 105, 110, 0.97) !important;
  border-color: var(--color-border) !important;
  border-radius: 8px;
}

.nav-dropdown-menu::before {
  background: rgba(50, 105, 110, 0.97) !important;
  border-color: var(--color-border) !important;
}

.nav-dropdown-menu li a:hover {
  color: var(--color-sand) !important;
  background: rgba(196, 168, 130, 0.06) !important;
}

/* ── Logo v2 — stacked "LETTING GO / METHOD" ─────────────── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--color-cream);
  text-decoration: none;
}

.logo-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  opacity: 0.85;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-sand);
  fill: none;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}

.logo-primary {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-cream);
}

.logo-subtitle-row {
  display: flex;
  align-items: center;
  gap: 7px;
}

.logo-line {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--color-sand);
  opacity: 0.6;
}

.logo-method {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-sand);
  opacity: 0.8;
}

/* ── Book a call button — gold solid ─────────────────────── */
.btn-nav {
  background: var(--color-sand) !important;
  color: #3C787E !important;
  border-color: var(--color-sand) !important;
  border-radius: 3px !important;
  font-size: 11px !important;
  letter-spacing: 2px !important;
  padding: 11px 22px !important;
  font-weight: 500 !important;
}

.btn-nav:hover {
  background: var(--accent-light) !important;
  color: #3C787E !important;
}

/* ── HERO v2 ──────────────────────────────────────────────── */
.hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 50% 70%, rgba(40, 30, 20, 0.5) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 30% 30%, rgba(196, 168, 130, 0.04) 0%, transparent 60%),
    linear-gradient(180deg, #3C787E 0%, #2e6066 50%, #285d63 100%) !important;
}

.hero-bg::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='800' height='600' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E") !important;
}

.hero-eyebrow {
  letter-spacing: 4px !important;
  color: #ffffff !important;
  font-size: 10px !important;
}

.hero-headline {
  font-size: clamp(3rem, 7vw, 5.5rem) !important;
  font-weight: 300 !important;
}

/* Hero scroll indicator */
.scroll-line {
  background: linear-gradient(to bottom, var(--color-sand), transparent) !important;
}

.hero-scroll-hint {
  color: #C4A882;
}

/* Page hero v2 */
.page-hero-bg {
  background:
    radial-gradient(ellipse 90% 70% at 50% 80%, rgba(40, 28, 15, 0.5) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 20%, rgba(196, 168, 130, 0.04) 0%, transparent 60%),
    linear-gradient(180deg, #3C787E 0%, #2e6066 50%, #285d63 100%) !important;
}

.page-hero::before {
  background: linear-gradient(to bottom, transparent, var(--color-sand), transparent) !important;
  opacity: 0.2;
}

/* ── BUTTONS v2 — gold solid + outline ───────────────────── */

/* Primary: gold solid */
.btn-primary {
  background: var(--color-sand) !important;
  color: #3C787E !important;
  border-color: var(--color-sand) !important;
  border-radius: 3px !important;
  padding: 16px 40px !important;
  font-size: 12px !important;
  letter-spacing: 2px !important;
  font-weight: 500 !important;
}

.btn-primary:hover {
  background: var(--accent-light) !important;
  border-color: var(--accent-light) !important;
  color: #3C787E !important;
}

/* Teal/secondary: outline gold */
.btn-teal {
  background: transparent !important;
  border: 1px solid rgba(196, 168, 130, 0.5) !important;
  color: var(--color-sand) !important;
  border-radius: 3px !important;
  padding: 14px 36px !important;
  font-size: 12px !important;
  letter-spacing: 2px !important;
  font-weight: 400 !important;
}

.btn-teal:hover {
  background: var(--color-sand) !important;
  color: #3C787E !important;
  border-color: var(--color-sand) !important;
}

/* Form button — full width gold */
.btn-form {
  background: var(--color-sand) !important;
  border: 1px solid var(--color-sand) !important;
  color: #3C787E !important;
  border-radius: 3px !important;
  font-size: 12px !important;
  letter-spacing: 2px !important;
  font-weight: 500 !important;
  padding: 18px !important;
}

.btn-form:hover {
  background: var(--accent-light) !important;
  border-color: var(--accent-light) !important;
  color: #3C787E !important;
}

/* ── CARDS v2 — rounded glass morphism ───────────────────── */

/* All card variants */
.exp-card,
.journey-card,
.benefit-card,
.inside-card,
.practice-block,
.pricing-card,
.phase-block,
.for-who-item,
.shift-card,
.ritual-phase,
.video-card {
  background: rgba(60, 120, 126, 0.75) !important;
  border: 1px solid rgba(196, 168, 130, 0.3) !important;
  border-radius: var(--card-radius) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

/* Remove old top-border accent on journey cards */
.journey-card {
  border-top: 1px solid rgba(196, 168, 130, 0.3) !important;
}

/* Remove old after underline on exp-card, use rounded hover */
.exp-card::after { display: none !important; }

.exp-card:hover,
.journey-card:hover,
.benefit-card:hover,
.inside-card:hover,
.pricing-card:hover {
  border-color: rgba(196, 168, 130, 0.55) !important;
  background: rgba(20, 26, 28, 0.85) !important;
}

/* Featured pricing card */
.pricing-card-featured {
  border-color: rgba(196, 168, 130, 0.5) !important;
  background: rgba(18, 24, 26, 0.9) !important;
}

/* Card title typography v2 */
.exp-card-title,
.journey-card .card-title,
.practice-title,
.benefit-title,
.inside-card-title,
.phase-title,
.exp-step-title,
.ritual-phase-title {
  font-family: var(--font-serif) !important;
  font-size: clamp(1.3rem, 2.5vw, 2rem) !important;
  font-weight: 400 !important;
  letter-spacing: 0.03em !important;
  color: var(--color-cream) !important;
}

/* Exp-card (session cards) titles slightly larger */
.exp-card-title {
  font-size: 1.9rem !important;
}

/* Card numbers (01, 02…) */
.exp-card-num {
  font-family: var(--font-sans) !important;
  font-size: 10px !important;
  letter-spacing: 3px !important;
  color: var(--color-sand) !important;
  opacity: 1 !important;
}

/* Card divider — decorative gold line */
.card-divider {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-sand);
  margin: 14px auto;
  opacity: 0.6;
}

/* Card price text */
.exp-card-price {
  font-family: var(--font-sans) !important;
  font-size: 11px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: var(--color-sand) !important;
  font-style: normal !important;
  font-weight: 400 !important;
}

/* Card CTA button — full width gold solid inside cards */
.exp-card .btn-teal,
.exp-card .btn-primary {
  display: block !important;
  text-align: center !important;
  width: 100% !important;
  background: var(--color-sand) !important;
  color: #0d2b30 !important;
  border: none !important;
  border-radius: 4px !important;
  padding: 16px 32px !important;
  font-size: 12px !important;
  letter-spacing: 2px !important;
  font-weight: 500 !important;
  margin-top: auto !important;
}

.exp-card .btn-teal:hover,
.exp-card .btn-primary:hover {
  background: var(--accent-light) !important;
  color: #0d2b30 !important;
}

/* ── ICON CIRCLES v2 — 80px gold ring ───────────────────── */

.pillar-icon {
  width: 80px !important;
  height: 80px !important;
  border: 1px solid rgba(196, 168, 130, 0.5) !important;
  border-radius: 50% !important;
  background: rgba(196, 168, 130, 0.05) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  color: var(--color-sand) !important;
}

.pillar-icon svg {
  width: 28px !important;
  height: 28px !important;
}

.benefit-icon,
.inside-card-icon {
  width: 80px !important;
  height: 80px !important;
  border: 1px solid rgba(196, 168, 130, 0.5) !important;
  border-radius: 50% !important;
  background: rgba(196, 168, 130, 0.05) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 24px !important;
}

.benefit-icon svg,
.inside-card-icon svg {
  width: 26px !important;
  height: 26px !important;
  stroke: var(--color-sand) !important;
}

/* ── HERO CTA v2 ─────────────────────────────────────────── */

/* Handled by .btn-primary override above */

/* ── MIRROR section v2 ────────────────────────────────────── */
.mirror {
  background: #2e6066 !important;
}

.mirror::before {
  background: linear-gradient(to bottom, #3C787E, transparent) !important;
}

/* ── METHOD section v2 ────────────────────────────────────── */
.method-visual-inner {
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(196, 168, 130, 0.05) 0%, transparent 70%),
    linear-gradient(135deg, #3C787E 0%, #2e6066 50%, #3C787E 100%) !important;
}

.water-rings::before,
.water-rings::after,
.water-rings span {
  border-color: rgba(196, 168, 130, 0.18) !important;
}

.water-rings .center-dot {
  background: var(--color-sand) !important;
  box-shadow: 0 0 20px rgba(196, 168, 130, 0.5) !important;
}

/* ── JOURNEY section v2 ───────────────────────────────────── */
.journey {
  background: var(--color-bg-mid) !important;
}

.card-roman {
  color: #C4A882 !important;
}

.card-subtitle {
  color: var(--color-sand) !important;
}

/* ── TIMELINE v2 ──────────────────────────────────────────── */
.timeline::before {
  background: linear-gradient(to bottom, var(--color-sand), rgba(196, 168, 130, 0.1)) !important;
}

.step-number {
  border-color: var(--color-sand) !important;
  color: var(--color-sand) !important;
  background: var(--color-bg-deep) !important;
}

/* ── OCEANO section v2 ────────────────────────────────────── */
.oceano {
  background: var(--color-bg-mid) !important;
}

.oceano::before {
  background: radial-gradient(ellipse, rgba(196, 168, 130, 0.04) 0%, transparent 70%) !important;
}

.stat-value {
  color: var(--color-sand) !important;
}

/* ── BOOKING CTA v2 ───────────────────────────────────────── */
.booking-cta {
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(40, 30, 15, 0.5) 0%, transparent 70%),
    linear-gradient(180deg, var(--color-bg-mid) 0%, var(--color-bg-deep) 100%) !important;
}

/* ── FOOTER v2 ────────────────────────────────────────────── */
.site-footer {
  background: rgba(50, 105, 110, 0.95) !important;
  border-top-color: var(--color-border) !important;
}

/* ── MEMBER NAV v2 ────────────────────────────────────────── */
.member-nav {
  background: rgba(50, 105, 110, 0.92) !important;
  backdrop-filter: blur(16px) !important;
  border-bottom-color: var(--color-border) !important;
}

/* ── AUTH CARDS v2 ────────────────────────────────────────── */
.auth-card {
  background: rgba(60, 120, 126, 0.85) !important;
  border-color: rgba(196, 168, 130, 0.3) !important;
  border-radius: var(--card-radius) !important;
  backdrop-filter: blur(10px) !important;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255, 255, 255, 0.03) !important;
  border-color: rgba(196, 168, 130, 0.15) !important;
  border-radius: 6px !important;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-sand) !important;
  background: rgba(196, 168, 130, 0.04) !important;
}

/* ── DASHBOARD v2 ─────────────────────────────────────────── */
.membership-badge.badge-active {
  background: rgba(196, 168, 130, 0.1) !important;
  border-color: rgba(196, 168, 130, 0.35) !important;
  color: var(--color-sand) !important;
}

.video-card {
  background: rgba(60, 120, 126, 0.75) !important;
  border-color: rgba(196, 168, 130, 0.3) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
}

.video-thumb-bg {
  background: radial-gradient(ellipse at center, rgba(196, 168, 130, 0.06) 0%, transparent 70%) !important;
}

.play-btn {
  border-color: rgba(196, 168, 130, 0.4) !important;
  color: var(--color-sand) !important;
}

/* ── PHASE BLOCKS & PRACTICE BLOCKS v2 ──────────────────── */
.phase-grid {
  background: rgba(196, 168, 130, 0.15) !important; /* gap color */
  gap: 2px !important;
}

.practices-grid {
  background: rgba(196, 168, 130, 0.15) !important;
}

.practice-block {
  padding: 48px 40px !important;
}

.practice-num {
  color: #C4A882 !important;
}

.practice-tag {
  border-color: rgba(196, 168, 130, 0.25) !important;
  color: var(--color-sand) !important;
}

/* ── ELEMENTS ROW v2 ─────────────────────────────────────── */
.elements-row {
  border-color: rgba(196, 168, 130, 0.2) !important;
  border-radius: var(--card-radius) !important;
  overflow: hidden !important;
  background: rgba(60, 120, 126, 0.75) !important;
  backdrop-filter: blur(10px) !important;
}

.element-item {
  border-right-color: rgba(196, 168, 130, 0.15) !important;
}

.element-symbol {
  color: var(--color-sand) !important;
}

/* ── SHIFT CARDS v2 ──────────────────────────────────────── */
.shift-card::before {
  background: var(--color-sand) !important;
}

/* ── EXP STEPS v2 ────────────────────────────────────────── */
.exp-step {
  border-bottom-color: rgba(196, 168, 130, 0.15) !important;
}

.exp-step-num {
  color: #C4A882 !important;
}

/* ── FOR-WHO ITEMS v2 ────────────────────────────────────── */
.for-who-item {
  border-left-color: var(--color-sand) !important;
  border-radius: 8px !important;
  background: rgba(60, 120, 126, 0.75) !important;
}

.for-who-dot {
  background: var(--color-sand) !important;
}

/* ── INFO LIST v2 ────────────────────────────────────────── */
.item-marker {
  color: var(--color-sand) !important;
}

/* ── LOGISTICS items v2 ──────────────────────────────────── */
.logistics-item {
  border-radius: 10px !important;
  background: rgba(60, 120, 126, 0.75) !important;
  backdrop-filter: blur(10px) !important;
}

.logistics-icon {
  color: var(--color-sand) !important;
}

/* ── FAQ v2 ──────────────────────────────────────────────── */
.faq-item {
  border-bottom-color: rgba(196, 168, 130, 0.15) !important;
}

.faq-question:hover {
  color: var(--color-sand) !important;
}

.faq-icon {
  border-color: rgba(196, 168, 130, 0.3) !important;
  color: var(--color-sand) !important;
}

/* ── RITUAL PHASES v2 ────────────────────────────────────── */
.ritual-phase {
  border-left-color: rgba(196, 168, 130, 0.2) !important;
  background: transparent !important;
  border-radius: 0 !important;
}

.ritual-phase::before {
  background: var(--color-sand) !important;
}

.ritual-phase-num {
  color: var(--color-sand) !important;
}

/* ── VIDEO MODAL v2 ──────────────────────────────────────── */
.video-modal {
  background: rgba(50, 105, 110, 0.97) !important;
}

.video-modal-inner {
  border-color: var(--color-border) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
}

/* ── PRICING v2 ──────────────────────────────────────────── */
.pricing-label {
  color: var(--color-sand) !important;
  letter-spacing: 3px !important;
  font-size: 10px !important;
}

.pricing-divider {
  background: rgba(196, 168, 130, 0.2) !important;
}

.pricing-includes li::before {
  color: var(--color-sand) !important;
}

/* ── DATA TABLE (admin) v2 ───────────────────────────────── */
.data-table th {
  color: var(--color-sand) !important;
}

.data-table tr:hover td {
  background: rgba(196, 168, 130, 0.03) !important;
}

.btn-activate {
  border-color: rgba(196, 168, 130, 0.4) !important;
  color: var(--color-sand) !important;
}

.btn-activate:hover {
  background: rgba(196, 168, 130, 0.1) !important;
}

/* ── MEMBERSHIP BADGE v2 ──────────────────────────────────── */
.badge-pending {
  background: rgba(196, 168, 130, 0.08) !important;
  border-color: rgba(196, 168, 130, 0.25) !important;
  color: var(--color-sand) !important;
}

/* ── SOCIAL LINKS v2 ─────────────────────────────────────── */
.social-link {
  border-color: rgba(196, 168, 130, 0.2) !important;
}

.social-link:hover {
  border-color: var(--color-sand) !important;
  color: var(--color-sand) !important;
}

/* ── DROPDOWN NAV ARROW v2 ───────────────────────────────── */
.nav-dropdown-menu li + li {
  border-top-color: rgba(196, 168, 130, 0.08) !important;
}

/* ── Mobile menu v2 ──────────────────────────────────────── */
.nav-mobile-menu {
  background: #3C787E !important;
}

.nav-mobile-menu a {
  border-bottom-color: rgba(196, 168, 130, 0.1) !important;
}

.mobile-nav-label {
  border-bottom-color: rgba(196, 168, 130, 0.1) !important;
  color: #ffffff !important;
  font-size: 0.85rem !important;
  font-family: var(--font-sans) !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  padding: 14px 0 !important;
}

/* ── Concept section rings v2 ────────────────────────────── */
.concept-section::before {
  border-color: rgba(196, 168, 130, 0.06) !important;
}

.concept-section::after {
  border-color: rgba(196, 168, 130, 0.04) !important;
}

/* ── Payment pages v2 ────────────────────────────────────── */
.payment-page {
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(40, 30, 15, 0.4) 0%, transparent 70%),
    var(--color-bg-deep) !important;
}

.payment-icon {
  background: rgba(196, 168, 130, 0.08) !important;
  border-color: rgba(196, 168, 130, 0.3) !important;
}

.payment-icon svg {
  stroke: var(--color-sand) !important;
}

/* ── Library section v2 ──────────────────────────────────── */
.library-section-title {
  color: var(--color-cream) !important;
}

.library-section-count {
  color: var(--color-sand) !important;
}

/* ── Nav mobile menu button ──────────────────────────────── */
.btn-nav-mobile {
  border-color: rgba(196, 168, 130, 0.4) !important;
  color: var(--color-sand) !important;
  border-radius: 3px !important;
}

/* ── Smooth section separators ────────────────────────────── */
.mirror::before,
.booking-cta::before {
  display: none !important; /* clean up old noise filter artifacts */
}

/* ── Inside cards (membership) ───────────────────────────── */
.inside-card {
  padding: 36px 28px 36px !important;
}

.inside-card-title {
  letter-spacing: 0.5px !important;
  font-size: 1.2rem !important;
}

/* ── Section intro ────────────────────────────────────────── */
.section-intro p {
  color: #ffffff !important;
  font-size: 0.95rem !important;
  line-height: 1.85 !important;
}

/* ── Two-col info ─────────────────────────────────────────── */
.two-col-info {
  background: var(--color-bg-mid) !important;
}

.info-col h3 {
  border-bottom-color: rgba(196, 168, 130, 0.15) !important;
}

/* ── Benefits section ─────────────────────────────────────── */
.benefit-card {
  padding: 36px 32px !important;
}

/* ── Ritual section ───────────────────────────────────────── */
.ritual-section {
  background: var(--color-bg-mid) !important;
}

/* ── Responsive adjustments for v2 ───────────────────────── */
@media (max-width: 768px) {
  .logo-primary { font-size: 0.95rem; }
  .logo-method { font-size: 0.52rem; letter-spacing: 0.25em; }
  .logo-icon { width: 28px; height: 28px; }
}

/* ── Responsive 2-col helper ──────────────────────────────── */
.responsive-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

@media (max-width: 768px) {
  .responsive-2col {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   HERO BACKGROUND IMAGE
   Applied to .hero (index) and .page-hero (all other pages)
   Same image across all hero sections for visual consistency
   ============================================================ */

/* ── Full-screen hero (index.html) ──────────────────────── */

.hero {
  background-image: url('../images/hf_20260522_093154_67d4d264-3b9a-4f4f-9c37-f7ef5c3b0862.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* Remove the old CSS-only gradient background div */
.hero-bg {
  display: none !important;
}

/* Very light veil — photo shows naturally, just barely darkened for legibility */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(50, 105, 110, 0.05) 0%,
    rgba(50, 105, 110, 0.08) 60%,
    transparent 100%
  );
  z-index: 1;
}

/* Bottom fade into the site background */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 280px;
  background: linear-gradient(to top, var(--color-bg-deep) 0%, rgba(60, 120, 126, 0.6) 60%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* All hero content above both overlays */
.hero-content {
  position: relative !important;
  z-index: 2 !important;
}

.hero-scroll-hint {
  position: absolute !important;
  z-index: 2 !important;
}

/* ── Inner-page hero (.page-hero) ───────────────────────── */
/* sessions-individual, sessions-group, sessions-corporate,
   membership — all share the same atmospheric image        */

.page-hero {
  background-image: url('../images/hf_20260522_093154_67d4d264-3b9a-4f4f-9c37-f7ef5c3b0862.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* Hide the old CSS-gradient div */
.page-hero-bg {
  display: none !important;
}

/* Dark overlay — heavier than index hero for inner pages
   (less sky visible, more text) */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(50, 105, 110, 0.25) 0%,
    rgba(50, 105, 110, 0.50) 50%,
    rgba(50, 105, 110, 0.75) 100%
  );
  z-index: 1;
}

/* Bottom fade */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to top, var(--color-bg-deep), transparent);
  z-index: 1;
  pointer-events: none;
}

/* All page-hero content above both overlays */
.page-hero-content {
  position: relative !important;
  z-index: 2 !important;
}

/* ── 1:1 Sessions hero image ─────────────────────────────── */
.page-hero--individual {
  background-image: url('../images/hf_20260527_110506_17cf8b9f-58f6-4ad5-a20d-b3cc864f1056.png') !important;
}

/* ── Group Sessions hero image ───────────────────────────── */
.page-hero--group {
  background-image: url('../images/hf_20260525_102243_ae01685a-0568-4dd4-8d57-8930c01fbaaa (1).png') !important;
  align-items: flex-end;
  padding-top: 160px;
}

/* ── CTA button text — dark blue ────────────────────────── */
.btn-primary,
.btn-teal,
.btn-nav,
.btn-nav-mobile,
.btn-form {
  color: #0e2830 !important;
}
.btn-primary:hover,
.btn-teal:hover,
.btn-nav:hover,
.btn-form:hover {
  color: #0e2830 !important;
}

/* ── Corporate Sessions hero image ──────────────────────── */
.page-hero--corporate {
  background-image: url('../images/hf_20260525_111255_604c59ce-2ccc-41c9-ab6f-cb69833f464c.png') !important;
}

/* ── The Letting Go Map ──────────────────────────────────── */
.tlg-map-section {
  padding: var(--section-pad) 0 0;
}

.tlg-map-header {
  text-align: center;
  padding: 0 var(--gutter);
  margin-bottom: 48px;
}

.tlg-map-sub {
  font-size: 1rem;
  color: #ffffff;
  margin-top: 12px;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.04em;
}

#tlg-map {
  width: 100%;
  height: 520px;
  background: #1a2e32;
}

/* Override Leaflet internals to match site style */
.leaflet-container {
  background: #1a2e32 !important;
  font-family: var(--font-sans) !important;
}

/* Custom marker */
.tlg-marker {
  background: transparent;
  border: none;
}

.tlg-pulse {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-sand);
  box-shadow: 0 0 0 0 rgba(196, 168, 130, 0.6);
  animation: tlg-pulse 2.4s ease-out infinite;
}

@keyframes tlg-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(196, 168, 130, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(196, 168, 130, 0); }
  100% { box-shadow: 0 0 0 0 rgba(196, 168, 130, 0); }
}

/* Tooltip */
.tlg-tooltip {
  background: rgba(15, 22, 24, 0.92) !important;
  border: 1px solid rgba(196, 168, 130, 0.3) !important;
  border-radius: 4px !important;
  color: var(--color-cream) !important;
  font-family: var(--font-sans) !important;
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 5px 10px !important;
  box-shadow: none !important;
  white-space: nowrap;
}

.tlg-tooltip::before {
  display: none !important;
}

/* Hide Leaflet attribution branding */
.leaflet-control-attribution {
  display: none !important;
}

/* ── Legal Pages ─────────────────────────────────────────── */

.legal-hero {
  padding: clamp(140px, 18vw, 200px) var(--gutter) clamp(60px, 8vw, 100px);
  background: var(--color-bg-deep);
  border-bottom: 1px solid var(--color-border);
}

.legal-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--color-cream);
  margin: 12px 0 16px;
  line-height: 1.1;
}

.legal-hero-sub {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: #ffffff;
  font-family: var(--font-sans);
  text-transform: uppercase;
}

.legal-section {
  padding: clamp(60px, 8vw, 100px) var(--gutter);
  background: var(--color-bg-deep);
}

.legal-container {
  max-width: 760px;
  margin: 0 auto;
}

.legal-block {
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--color-border);
}

.legal-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.legal-block h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 400;
  color: var(--color-cream);
  margin-bottom: 20px;
}

.legal-block h3 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-sand);
  margin: 32px 0 14px;
}

.legal-block p {
  font-size: 0.92rem;
  line-height: 1.9;
  color: #ffffff;
  margin-bottom: 16px;
}

.legal-block ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-block ul li {
  font-size: 0.92rem;
  line-height: 1.9;
  color: #ffffff;
  margin-bottom: 8px;
}

.legal-block a {
  color: var(--color-sand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-block a:hover {
  color: var(--color-cream);
}

.legal-block strong {
  color: var(--color-cream);
  font-weight: 600;
}

/* Cookie table */
.cookie-table-wrap {
  overflow-x: auto;
  margin: 16px 0 24px;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  font-family: var(--font-sans);
}

.cookie-table th {
  text-align: left;
  padding: 10px 16px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-sand);
  border-bottom: 1px solid var(--color-border);
}

.cookie-table td {
  padding: 12px 16px;
  color: #ffffff;
  border-bottom: 1px solid rgba(196, 168, 130, 0.08);
  vertical-align: top;
  line-height: 1.6;
}

.cookie-table a {
  color: var(--color-sand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

/* ============================================================
   MOBILE OPTIMISATION — comprehensive fixes
   ============================================================ */

@media (max-width: 768px) {

  /* ── Global spacing ───────────────────────────────────────── */
  :root {
    --section-pad: clamp(56px, 12vw, 80px);
    --gutter: 20px;
  }

  /* ── Nav ──────────────────────────────────────────────────── */
  .site-nav {
    padding: 16px 20px;
  }

  /* ── Hero (index) ─────────────────────────────────────────── */
  .hero-content {
    padding: 0 20px;
    text-align: center;
  }

  .hero-headline {
    font-size: clamp(2.2rem, 10vw, 3rem) !important;
  }

  .hero-sub {
    font-size: 0.9rem !important;
  }

  .hero-scroll-hint {
    display: none;
  }

  /* ── Page heroes ──────────────────────────────────────────── */
  .page-hero {
    min-height: 60svh;
    padding-bottom: 48px;
  }

  .page-hero-content {
    padding: 0 20px !important;
    text-align: center;
  }

  .page-hero-headline {
    font-size: clamp(1.9rem, 8vw, 2.8rem) !important;
  }

  .page-hero-sub {
    font-size: 0.88rem !important;
  }

  .page-hero--group {
    padding-top: 120px;
  }

  /* ── Method section ───────────────────────────────────────── */
  .method-grid {
    grid-template-columns: 1fr !important;
  }

  .method-visual {
    min-height: unset !important;
    height: auto !important;
    aspect-ratio: unset !important;
  }

  .method-visual-photo {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover !important;
    aspect-ratio: 4/3 !important;
  }

  .method-content {
    padding: 0 20px;
  }

  /* ── Decorative large numbers ─────────────────────────────── */
  .card-roman {
    font-size: 2rem !important;
  }

  .exp-step-num {
    font-size: 1.6rem !important;
  }

  /* ── Journey / experience cards ───────────────────────────── */
  .journey-card {
    padding: 32px 24px !important;
  }

  .exp-card {
    padding: 32px 24px !important;
  }

  /* ── For-who grid ─────────────────────────────────────────── */
  .for-who-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  /* ── Phase grid ───────────────────────────────────────────── */
  .phase-grid {
    grid-template-columns: 1fr !important;
  }

  /* ── Ritual grid ──────────────────────────────────────────── */
  .ritual-grid {
    grid-template-columns: 1fr !important;
  }

  .ritual-sticky {
    position: static !important;
  }

  /* ── Shift grid (corporate) ───────────────────────────────── */
  .shift-grid {
    grid-template-columns: 1fr !important;
  }

  /* ── Exp steps (corporate) ────────────────────────────────── */
  .exp-step {
    grid-template-columns: 44px 1fr !important;
    gap: 16px !important;
  }

  /* ── Logistics grid ───────────────────────────────────────── */
  .logistics-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  /* ── Inside grid (membership) ─────────────────────────────── */
  .inside-grid {
    grid-template-columns: 1fr !important;
  }

  .inside-card {
    padding: 28px 24px !important;
  }

  /* ── Responsive 2-col (corporate inline grids) ────────────── */
  .responsive-2col {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* ── Pricing cards ────────────────────────────────────────── */
  .pricing-cards {
    flex-direction: column !important;
    align-items: center !important;
  }

  .pricing-card {
    width: 100% !important;
    max-width: 400px !important;
  }

  /* ── Map ──────────────────────────────────────────────────── */
  #tlg-map {
    height: 340px !important;
  }

  .tlg-map-header {
    padding: 0 20px !important;
    margin-bottom: 32px !important;
  }

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

  .footer-brand {
    grid-column: 1 / -1 !important;
  }

  .footer-bottom {
    padding: 24px 20px !important;
    gap: 12px !important;
  }

  /* ── Legal pages ──────────────────────────────────────────── */
  .legal-hero {
    padding: 120px 20px 48px !important;
  }

  .legal-section {
    padding: 48px 20px !important;
  }

  .legal-block {
    margin-bottom: 40px !important;
    padding-bottom: 40px !important;
  }

  /* ── Section titles ───────────────────────────────────────── */
  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem) !important;
  }

  /* ── Buttons ──────────────────────────────────────────────── */
  .btn-primary,
  .btn-teal {
    padding: 16px 32px !important;
    font-size: 0.7rem !important;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}

/* Extra small screens */
@media (max-width: 420px) {

  .for-who-grid {
    grid-template-columns: 1fr !important;
  }

  .logistics-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-top {
    grid-template-columns: 1fr !important;
  }

  .hero-headline {
    font-size: clamp(1.9rem, 9vw, 2.4rem) !important;
  }

  .page-hero-headline {
    font-size: clamp(1.7rem, 8vw, 2.2rem) !important;
  }

  .tlg-map-sub {
    font-size: 0.85rem !important;
  }

  .btn-primary,
  .btn-teal {
    padding: 14px 24px !important;
  }
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */

.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  width: 56px;
  height: 56px;
  background: #0d2b30;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(0,0,0,0.45);
}

.wa-fab svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

/* ============================================================
   CONTACT MODAL (WhatsApp + Email)
   ============================================================ */

.contact-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  z-index: 9100;
  align-items: center;
  justify-content: center;
}

.contact-modal-overlay.open {
  display: flex;
}

.contact-modal {
  background: #0d2b30;
  border: 1px solid rgba(196,168,130,0.3);
  border-radius: 12px;
  padding: 40px 36px;
  max-width: 380px;
  width: calc(100% - 48px);
  text-align: center;
  position: relative;
}

.contact-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0.6;
  line-height: 1;
  padding: 4px;
}

.contact-modal-close:hover { opacity: 1; }

.contact-modal h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 8px;
}

.contact-modal p {
  font-size: 0.8rem;
  color: #C4A882;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.contact-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-modal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
  border: none;
}

.contact-modal-btn:hover { opacity: 0.88; }

.contact-modal-btn--wa {
  background: #0d2b30;
  color: #ffffff;
  border: 1px solid rgba(196,168,130,0.4);
}

.contact-modal-btn--email {
  background: #C4A882;
  color: #0d2b30;
}

.contact-modal-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .wa-fab { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .wa-fab svg { width: 24px; height: 24px; }
}
