/* ============================================
   IMMERSIV — Landing Page Styles (Updated v2)
   Color Palette:
   #a3c1cc — Soft Blue-Grey (PRIMARY BACKGROUND)
   #ffffff — White
   #f5fafc — Off-White / Cream
   #13485c — Deep Teal (ACTIVE/CLICKED STATES ONLY)
   ============================================ */

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

:root {
  --blue-grey: #a3c1cc;
  --blue-grey-light: #f5fafc;
  --blue-grey-xlight: #f5fafc;
  --white: #ffffff;
  --cream: #f5fafc;
  --deep-teal: #13485c;
  --deep-teal-80: rgba(19, 72, 92, 0.8);
  --deep-teal-60: rgba(19, 72, 92, 0.6);
  --deep-teal-20: rgba(19, 72, 92, 0.2);
  --blue-grey-30: rgba(163, 193, 204, 0.3);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', system-ui, sans-serif;
  --font-script: 'Great Vibes', cursive;
  --transition: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.3s ease;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--blue-grey-xlight);
  color: var(--deep-teal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */

.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  transition: background var(--transition), padding var(--transition);
}

.nav.scrolled {
  background: rgba(245, 250, 252, 0.97);
  backdrop-filter: blur(12px);
  padding: 14px 40px;
  box-shadow: 0 1px 0 rgba(163, 193, 204, 0.4);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  height: 52px;
  width: auto;
  transition: opacity var(--transition-fast);
}

.nav-cta {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep-teal);
  border: 1.5px solid var(--deep-teal);
  padding: 10px 24px;
  border-radius: 2px;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-cta:hover,
.nav-cta:active,
.nav-cta:focus {
  background: var(--deep-teal);
  color: var(--white);
}

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

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(19, 72, 92, 0.45) 0%,
    rgba(19, 72, 92, 0.22) 40%,
    rgba(19, 72, 92, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  max-width: 900px;
  animation: heroFadeUp 1.2s ease 0.3s both;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

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

/* Hero Numen Rising Logo — DRAMATICALLY ENLARGED (200x brand dominance) */
.hero-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  width: 100%;
}

/* Original was 90px — increased to ~320px for brand dominance */
.hero-numen-logo {
  height: 320px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  margin-bottom: 12px;
}

.hero-presents {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.hero-title {
  margin-bottom: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title-main {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(6rem, 16vw, 13rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  line-height: 1;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(19, 72, 92, 0.3);
}

/* "Immersive" tagline — reduced by 3pt from original ~1rem base */
.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.62rem, 1.6vw, 0.78rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 32px;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 2px 4px rgba(19, 72, 92, 0.4);
}

.hero-meta-item svg {
  min-width: 20px;
  min-height: 20px;
}

.hero-meta-divider {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.6rem;
  letter-spacing: 0.05em;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

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

.btn-primary {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--blue-grey);
  color: var(--deep-teal);
  padding: 14px 36px;
  border-radius: 2px;
  border: 1.5px solid var(--blue-grey);
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
  cursor: pointer;
}

.btn-primary:hover {
  background: transparent;
  color: var(--blue-grey);
  border-color: var(--blue-grey);
  transform: translateY(-2px);
}

.btn-primary:active,
.btn-primary:focus {
  background: var(--deep-teal);
  color: var(--white);
  border-color: var(--deep-teal);
}

.hero .btn-primary {
  background: var(--white);
  color: var(--deep-teal);
  border-color: var(--white);
}

.hero .btn-primary:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.hero .btn-primary:active,
.hero .btn-primary:focus {
  background: var(--deep-teal);
  color: var(--white);
  border-color: var(--deep-teal);
}

.btn-ghost {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 2px;
  transition: border-color var(--transition-fast), opacity var(--transition-fast);
}

.btn-ghost:hover {
  border-color: var(--white);
  opacity: 0.8;
}

.btn-primary.full-width {
  width: 100%;
  text-align: center;
}

/* ============================================
   INTRO STRIP
   ============================================ */

.intro-strip {
  background: var(--blue-grey);
  padding: 18px 0;
  overflow: hidden;
}

.intro-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--deep-teal);
}

.intro-strip-inner .dot {
  color: rgba(19, 72, 92, 0.4);
  font-size: 0.6rem;
  letter-spacing: 0.05em;
}

/* ============================================
   SECTION LABELS & HEADINGS
   ============================================ */

.section-label {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-grey);
  margin-bottom: 16px;
  display: block;
}

.section-label.light {
  color: rgba(163, 193, 204, 0.85);
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.2vw, 4.4rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--deep-teal);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.section-heading.light {
  color: var(--white);
}

.body-text {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--deep-teal);
  margin-bottom: 18px;
}

.body-text.emphasis {
  font-style: italic;
  color: var(--deep-teal);
  font-weight: 400;
}

/* ============================================
   TRUTH SECTION — Page 2: Typography-only
   ============================================ */

.truth-section {
  padding: 120px 0;
  background: var(--cream);
}

/* Full-width text layout (no image) */
.truth-text-only {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* "The Honest Truth" — increased section label size */
.truth-section-label {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-grey);
  margin-bottom: 32px;
  display: block;
}

/* "Nobody talks about..." — reduced to ~50% of section-heading size */
.truth-headline-small {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.4vw, 1.92rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--deep-teal);
  margin-bottom: 40px;
  letter-spacing: -0.01em;
  font-style: italic;
}

.truth-body-block {
  text-align: left;
  max-width: 680px;
  margin: 0 auto;
}

/* ============================================
   WHAT IS IMMERSIV SECTION — Page 3
   ============================================ */

.what-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.what-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.what-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.what-overlay {
  position: absolute;
  inset: 0;
  background: rgba(19, 72, 92, 0.78);
}

.what-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* "What is Immersive" — increased header size */
.what-label-large {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(163, 193, 204, 0.85);
  margin-bottom: 20px;
  display: block;
}

/* Sub-text: reduced to half size */
.what-subtext-small {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.4vw, 1.92rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

/* Distinction grid — equal sizing for both cards */
.distinction-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
  margin: 48px 0;
}

/* Both cards equal size */
.distinction-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(163, 193, 204, 0.3);
  border-radius: 4px;
  padding: 36px 28px;
  text-align: center;
  transition: background var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.distinction-card.featured {
  background: rgba(163, 193, 204, 0.18);
  border-color: rgba(163, 193, 204, 0.5);
}

/* Equal sizing override — both cards identical dimensions */
.distinction-equal {
  min-height: 220px;
}

.distinction-card:active,
.distinction-card:focus-within {
  background: rgba(19, 72, 92, 0.4);
  border-color: var(--blue-grey);
}

.distinction-icon {
  color: var(--blue-grey);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.distinction-card h3 {
  font-family: var(--font-serif);
  font-size: 1.68rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.distinction-card p {
  font-family: var(--font-sans);
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.distinction-card strong {
  color: var(--blue-grey);
  font-weight: 500;
}

.distinction-arrow {
  font-size: 1.5rem;
  color: rgba(163, 193, 204, 0.5);
  font-weight: 200;
  align-self: center;
}

/* Nervous system block — Page 4 hierarchy */
.what-nervous-block {
  margin-top: 20px;
  text-align: center;
}

.what-description-nervous {
  font-family: var(--font-serif);
  font-size: clamp(1.32rem, 2.4vw, 1.62rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  max-width: 700px;
  margin: 0 auto 24px;
}

/* "begins to move" stays on one line */
.no-break {
  white-space: nowrap;
}

/* Line 1: "This is not relaxation, this is release." */
.nervous-line1 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

/* Line 2: "That is the distinction." */
.nervous-line2 {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

/* Final line: "IMMERSIV" */
.nervous-line3 {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 6.5vw, 5.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--blue-grey);
  letter-spacing: 0.1em;
}

/* ============================================
   INCLUDES SECTION — Footer
   ============================================ */

.includes-section {
  padding: 120px 0;
  background: var(--white);
}

/* "Your Experience Includes" — increased header size */
.includes-label-large {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-grey);
  margin-bottom: 16px;
  display: block;
  text-align: center;
}

/* "Everything you need to arrive and nothing you don't" — INCREASED for legibility, one line */
.includes-detail-line {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.05em;
  color: rgba(19, 72, 92, 0.65);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 60px;
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 0;
}

.include-card {
  padding: 36px 28px;
  border: 1.5px solid rgba(163, 193, 204, 0.4);
  border-radius: 4px;
  background: var(--blue-grey-xlight);
  transition: border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.include-card:hover {
  border-color: var(--blue-grey);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(163, 193, 204, 0.25);
  background: var(--white);
}

.include-card:active {
  background: var(--deep-teal);
  border-color: var(--deep-teal);
}

.include-card:active h4,
.include-card:active p {
  color: var(--white);
}

.include-card:active .include-icon {
  color: var(--blue-grey-light);
}

.include-icon {
  color: var(--blue-grey);
  margin-bottom: 20px;
}

.include-card h4 {
  font-family: var(--font-serif);
  font-size: 1.44rem;
  font-weight: 600;
  color: var(--deep-teal);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.include-card p {
  font-family: var(--font-sans);
  font-size: 1.04rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(19, 72, 92, 0.88);
}

/* ============================================
   FACILITATOR SECTIONS
   ============================================ */

.facilitator-section {
  padding: 120px 0;
  background: var(--blue-grey-xlight);
}

.curator-section {
  padding: 120px 0;
  background: var(--white);
}

.facilitator-grid,
.curator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.facilitator-image {
  position: relative;
}

.facilitator-image {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
}

.facilitator-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.95) brightness(1.05);
}

.facilitator-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--blue-grey);
  color: var(--deep-teal);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 2px;
}

.facilitator-name {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.2vw, 4.2rem);
  font-weight: 500;
  color: var(--deep-teal);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.facilitator-title {
  font-family: var(--font-sans);
  font-size: 0.94rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--blue-grey);
  margin-bottom: 28px;
  line-height: 1.7;
}

.facilitator-quote {
  border-left: 3px solid var(--blue-grey);
  padding-left: 24px;
  margin: 28px 0;
  font-family: var(--font-serif);
  font-size: 1.68rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.8;
  color: var(--deep-teal);
}

/* ============================================
   SCHEDULE SECTION
   ============================================ */

.schedule-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.schedule-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.schedule-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.schedule-overlay {
  position: absolute;
  inset: 0;
  background: rgba(19, 72, 92, 0.84);
}

.schedule-section .container {
  position: relative;
  z-index: 2;
}

.schedule-section .section-label,
.schedule-section .section-heading {
  text-align: center;
}

.schedule-intro {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.schedule-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(163, 193, 204, 0.25);
  border-radius: 4px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.schedule-card:hover {
  background: rgba(163, 193, 204, 0.15);
  border-color: rgba(163, 193, 204, 0.6);
  transform: translateY(-4px);
}

.schedule-card:active {
  background: rgba(19, 72, 92, 0.6);
  border-color: var(--blue-grey);
}

.schedule-date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.date-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--blue-grey);
}

.date-month {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(163, 193, 204, 0.7);
  margin-top: 4px;
}

.schedule-hotel {
  font-family: var(--font-serif);
  font-size: 1.56rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}

.schedule-city {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-grey);
  margin-bottom: 12px;
}

.schedule-desc {
  font-family: var(--font-serif);
  font-size: 1.14rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.schedule-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(163, 193, 204, 0.8);
  margin-top: auto;
}

.schedule-cta {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-grey);
  border: 1px solid rgba(163, 193, 204, 0.45);
  padding: 10px 20px;
  border-radius: 2px;
  text-align: center;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.schedule-cta:hover {
  background: var(--blue-grey);
  color: var(--deep-teal);
  border-color: var(--blue-grey);
}

.schedule-cta:active,
.schedule-cta:focus {
  background: var(--deep-teal);
  color: var(--white);
  border-color: var(--deep-teal);
}

.schedule-more {
  text-align: center;
  margin-top: 40px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(163, 193, 204, 0.65);
}

/* ============================================
   INTENTION SECTION
   ============================================ */

.intention-section {
  padding: 120px 0;
  background: var(--blue-grey-xlight);
}

.intention-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intention-image img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  border-radius: 2px;
}

/* ============================================
   CLOSING QUOTE
   ============================================ */

.closing-quote-section {
  padding: 120px 0;
  background: var(--deep-teal);
  text-align: center;
}

.closing-quote {
  max-width: 600px;
  margin: 0 auto;
}

.quote-line {
  font-family: var(--font-serif);
  font-size: clamp(1.68rem, 3.6vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  margin-bottom: 8px;
}

.quote-divider {
  width: 40px;
  height: 1px;
  background: rgba(163, 193, 204, 0.5);
  margin: 32px auto;
}

.quote-tagline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--blue-grey);
}

/* ============================================
   RESERVE SECTION
   ============================================ */

.reserve-section {
  padding: 120px 0;
  background: var(--white);
}

.reserve-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.reserve-contact {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--deep-teal);
  transition: color var(--transition-fast);
}

.contact-link svg {
  min-width: 20px;
  min-height: 20px;
}

.contact-link:hover {
  color: var(--blue-grey);
}

/* FORM */
.reserve-form {
  background: var(--blue-grey-xlight);
  border: 1.5px solid rgba(163, 193, 204, 0.4);
  border-radius: 4px;
  padding: 48px 40px;
  box-shadow: 0 4px 20px rgba(163, 193, 204, 0.1);
}

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

.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--deep-teal);
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--deep-teal);
  background: var(--white);
  border: 1.5px solid rgba(163, 193, 204, 0.5);
  border-radius: 2px;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(19, 72, 92, 0.45);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-grey);
}

.form-group input:active,
.form-group select:active,
.form-group textarea:active {
  border-color: var(--deep-teal);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2313485c' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: var(--white);
  padding-right: 40px;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-note {
  text-align: center;
  margin-top: 16px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(19, 72, 92, 0.6);
  letter-spacing: 0.05em;
}

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

.footer {
  background: var(--deep-teal);
  padding: 60px 40px 40px;
  text-align: center;
}

.footer-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
}

.footer-logo {
  height: 70px;
  width: auto;
  opacity: 0.95;
  filter: brightness(0) invert(1);
}

.footer-contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.footer-link {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.footer-link:hover {
  color: var(--blue-grey-light);
}

.footer-divider {
  font-size: 0.8rem;
  color: rgba(163, 193, 204, 0.7);
  letter-spacing: 0.05em;
}

.footer-tagline p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(163, 193, 204, 0.95);
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(163, 193, 204, 0.85);
}

.footer-links a {
  color: rgba(163, 193, 204, 0.92);
  transition: color var(--transition-fast);
  font-size: 0.92rem;
  font-weight: 400;
}

.footer-links a:hover {
  color: var(--blue-grey);
}

.footer-links span {
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  color: rgba(163, 193, 204, 0.6);
}

.footer-hosted p {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(163, 193, 204, 0.75);
}

.footer-copy {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(163, 193, 204, 0.65);
  letter-spacing: 0.08em;
}

/* ============================================
   PARALLAX EFFECT
   ============================================ */

.parallax-section {
  background-attachment: fixed;
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */

@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  .facilitator-grid,
  .curator-grid,
  .intention-grid,
  .reserve-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .facilitator-image img,
  .intention-image img {
    max-height: 420px;
  }

  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .includes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .distinction-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .distinction-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .hero-numen-logo {
    height: 240px;
  }

  .hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .includes-detail-line {
    white-space: normal;
    text-align: center;
  }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */

@media (max-width: 768px) {
  :root {
    font-size: 15px;
  }

  .container {
    padding: 0 20px;
  }

  .nav {
    padding: 14px 20px;
  }

  .nav.scrolled {
    padding: 10px 20px;
  }

  .nav-inner {
    flex-direction: column;
    gap: 12px;
  }

  .nav-logo {
    height: 36px;
  }

  .nav-cta {
    font-size: 0.78rem;
    padding: 8px 16px;
    width: 100%;
    text-align: center;
  }

  .hero {
    min-height: 600px;
    height: 100vh;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-content {
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  /* Hero logo — scaled proportionally for mobile */
  .hero-numen-logo {
    height: 180px;
  }

  .hero-title-main {
    font-size: clamp(3rem, 14.4vw, 4.8rem);
    letter-spacing: 0.12em;
  }

  .hero-subtitle {
    font-size: 0.6rem;
    margin-bottom: 12px;
    font-weight: 400;
  }

  .hero-tagline {
    font-size: 1.14rem;
    margin-bottom: 24px;
  }

  .hero-meta {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
  }

  .hero-meta-item {
    font-size: 0.95rem;
    font-weight: 400;
  }

  .hero-meta-divider {
    display: none;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .hero-ctas a {
    width: 100%;
    text-align: center;
  }

  .btn-primary,
  .btn-ghost {
    font-size: 0.7rem;
    padding: 12px 20px;
  }

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

  .intro-strip-inner {
    font-size: 0.8rem;
    gap: 12px;
  }

  .truth-section,
  .what-section,
  .includes-section,
  .facilitator-section,
  .curator-section,
  .schedule-section,
  .intention-section,
  .closing-quote-section,
  .reserve-section {
    padding: 60px 0;
  }

  .facilitator-grid,
  .curator-grid,
  .intention-grid,
  .reserve-inner {
    gap: 40px;
  }

  .facilitator-image img,
  .intention-image img {
    max-height: 300px;
  }

  .section-heading {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.25;
  }

  .section-label {
    font-size: 0.78rem;
    margin-bottom: 12px;
    font-weight: 500;
  }

  .body-text {
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 14px;
  }

  .truth-section-label {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .truth-headline-small {
    font-size: clamp(1rem, 3vw, 1.4rem);
    margin-bottom: 28px;
  }

  .what-label-large {
    font-size: 1.1rem;
    margin-bottom: 14px;
  }

  .what-subtext-small {
    font-size: clamp(1rem, 3vw, 1.4rem);
    margin-bottom: 20px;
  }

  .includes-label-large {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .includes-detail-line {
    font-size: 0.72rem;
    white-space: normal;
    margin-bottom: 36px;
  }

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

  .schedule-card {
    padding: 24px 20px;
    gap: 16px;
  }

  .date-num {
    font-size: 3rem;
  }

  .schedule-hotel {
    font-size: 1.32rem;
    font-weight: 500;
  }

  .includes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .include-card {
    padding: 24px 20px;
  }

  .include-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .include-card p {
    font-size: 1.02rem;
    line-height: 1.65;
  }

  .facilitator-name {
    font-size: clamp(1.92rem, 3vw, 2.4rem);
    margin-bottom: 6px;
    font-weight: 500;
  }

  .facilitator-title {
    font-size: 0.82rem;
    margin-bottom: 20px;
    font-weight: 400;
  }

  .facilitator-quote {
    font-size: 1.14rem;
    padding-left: 16px;
    margin: 20px 0;
    font-weight: 400;
  }

  .distinction-grid {
    gap: 16px;
    margin: 32px 0;
  }

  .distinction-card {
    padding: 24px 18px;
  }

  .distinction-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .distinction-card p {
    font-size: 0.82rem;
    line-height: 1.6;
  }

  .nervous-line1 {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
  }

  .nervous-line2 {
    font-size: 0.78rem;
  }

  .nervous-line3 {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }

  .quote-line {
    font-size: clamp(1.2rem, 3vw, 1.68rem);
    margin-bottom: 6px;
    font-weight: 400;
  }

  .quote-tagline {
    font-size: clamp(1.68rem, 4.2vw, 2.4rem);
    font-weight: 500;
  }

  .reserve-form {
    padding: 28px 20px;
  }

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

  .form-group label {
    font-size: 0.65rem;
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.9rem;
    padding: 10px 12px;
  }

  .form-group textarea {
    min-height: 80px;
  }

  .reserve-contact {
    margin-top: 24px;
    gap: 10px;
  }

  .contact-link {
    font-size: 0.95rem;
    gap: 8px;
    font-weight: 400;
  }

  .footer {
    padding: 40px 20px 28px;
  }

  .footer-logo {
    width: 72px;
    height: 72px;
    padding: 10px;
  }

  .footer-logo img {
    height: 46px;
  }

  .footer-tagline p {
    font-size: 0.85rem;
  }

  .footer-links {
    font-size: 0.75rem;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-hosted p {
    font-size: 0.65rem;
  }

  .footer-copy {
    font-size: 0.65rem;
  }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (< 480px)
   ============================================ */

@media (max-width: 480px) {
  :root {
    font-size: 14px;
  }

  .container {
    padding: 0 16px;
  }

  .nav {
    padding: 12px 16px;
  }

  .nav-inner {
    gap: 10px;
  }

  .nav-logo {
    height: 32px;
  }

  .nav-cta {
    font-size: 0.6rem;
    padding: 6px 12px;
  }

  .hero {
    min-height: 500px;
    padding: 60px 0 50px;
  }

  .hero-content {
    padding: 0 12px;
  }

  .hero-numen-logo {
    height: 140px;
  }

  .hero-presents {
    font-size: 0.75rem;
    font-weight: 400;
  }

  .hero-title-main {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
    letter-spacing: 0.08em;
  }

  .hero-subtitle {
    font-size: 0.55rem;
    margin-bottom: 10px;
    font-weight: 400;
  }

  .hero-tagline {
    font-size: 1.02rem;
    margin-bottom: 18px;
  }

  .hero-meta {
    gap: 6px;
    margin-bottom: 18px;
  }

  .hero-meta-item {
    font-size: 0.78rem;
    font-weight: 400;
  }

  .hero-ctas {
    gap: 10px;
  }

  .btn-primary,
  .btn-ghost {
    font-size: 0.65rem;
    padding: 10px 16px;
  }

  .intro-strip-inner {
    font-size: 0.7rem;
    gap: 10px;
  }

  .truth-section,
  .what-section,
  .includes-section,
  .facilitator-section,
  .curator-section,
  .schedule-section,
  .intention-section,
  .closing-quote-section,
  .reserve-section {
    padding: 50px 0;
  }

  .facilitator-grid,
  .curator-grid,
  .intention-grid,
  .reserve-inner {
    gap: 30px;
  }

  .facilitator-image img,
  .intention-image img {
    max-height: 250px;
  }

  .section-heading {
    font-size: clamp(1.6rem, 7vw, 2rem);
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 1.25;
  }

  .section-label {
    font-size: 0.72rem;
    margin-bottom: 10px;
    font-weight: 500;
  }

  .body-text {
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 12px;
  }

  .facilitator-quote {
    font-size: 1.02rem;
    padding-left: 14px;
    margin: 16px 0;
  }

  .reserve-form {
    padding: 20px 16px;
  }

  .footer {
    padding: 32px 16px 24px;
  }
}

.includes-grid-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 0;
}

.includes-grid-center .include-card {
  max-width: 400px;
  width: 100%;
}

.footer-copyright {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(163, 193, 204, 0.75);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(163, 193, 204, 0.2);
}

/* Mobile footer adjustments */
@media (max-width: 768px) {
  .footer-contact-info {
    gap: 8px;
    font-size: 0.85rem;
  }
  
  .footer-link {
    font-size: 0.88rem;
  }
  
  .includes-grid-center .include-card {
    max-width: 90vw;
  }
}

/* Professional Responsive Design */
@media (max-width: 1024px) {
  .curator-grid,
  .facilitator-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 60px 0;
  }

  .facilitator-image {
    max-width: 320px;
    margin: 0 auto;
  }

  .facilitator-name {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .curator-grid,
  .facilitator-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin: 48px 0;
  }

  .facilitator-image {
    max-width: 280px;
    margin: 0 auto;
  }

  .facilitator-name {
    font-size: 1.6rem;
  }

  .facilitator-title {
    font-size: 0.75rem;
  }

  .facilitator-quote {
    font-size: 0.95rem;
    padding: 16px 0;
  }

  .facilitator-badge {
    font-size: 0.65rem;
    padding: 8px 12px;
    bottom: 16px;
    left: 16px;
  }
}
