/* =============================================================
   LONI'S JOURNEYS — GLOBAL DESIGN SYSTEM
   Theme: Navy #091540 | Gold #FFC72C | Cyan #38bdf8
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --navy:          #091540;
  --navy-mid:      #0d1f5c;
  --navy-light:    #1C377A;
  --gold:          #FFC72C;
  --gold-dark:     #E8A800;
  --cyan:          #38bdf8;
  --cyan-dark:     #0ea5e9;
  --white:         #FFFFFF;
  --off-white:     #F8F6F0;
  --gray-muted:    rgba(255,255,255,0.65);
  --gray-subtle:   rgba(255,255,255,0.12);
  --border:        rgba(255,255,255,0.10);
  --transition:    all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-md:     0 8px 30px rgba(0,0,0,0.25);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.40);
  --radius-sm:     12px;
  --radius-md:     20px;
  --radius-lg:     40px;
  --radius-full:   9999px;
  --section-pad:   7rem 0;
}

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

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body, h1, h2, h3, h4, h5, h6,
p, a, span, button, input, select, textarea {
  font-family: 'Poppins', sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

p { line-height: 1.8; color: var(--gray-muted); }

a { text-decoration: none; color: inherit; transition: var(--transition); }

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

section { width: 100%; position: relative; padding: var(--section-pad); }

/* ── Scroll Progress Bar ───────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  z-index: 999999;
  transition: width 0.1s linear;
}

/* ─────────────────────────────────────────────────────────────
   PRELOADER — Cinematic Curtain
   ───────────────────────────────────────────────────────────── */
#loni-preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1),
              opacity  0.6s ease;
}

#loni-preloader.exit {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
  z-index: 2;
  position: relative;
}

/* Animated Logo Mark */
.preloader-logo-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--gold);
  border-right-color: var(--cyan);
  margin: 0 auto 24px;
  animation: spinRing 1.2s linear infinite;
}

@keyframes spinRing {
  to { transform: rotate(360deg); }
}

.preloader-brand {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--white);
  overflow: hidden;
}

.preloader-brand .word-loni {
  display: inline-block;
  animation: slideUpIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(40px);
}

.preloader-brand .word-journeys {
  display: inline-block;
  color: var(--gold);
  animation: slideUpIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
  opacity: 0;
  transform: translateY(40px);
  margin-left: 10px;
}

@keyframes slideUpIn {
  to { opacity: 1; transform: translateY(0); }
}

.preloader-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-top: 12px;
  animation: fadeIn 0.7s ease 0.5s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Progress bar inside preloader */
.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin: 20px auto 0;
  overflow: hidden;
}

.preloader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  border-radius: 2px;
  animation: barFill 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  width: 0%;
}

@keyframes barFill {
  to { width: 100%; }
}

/* Curtain panels */
.preloader-curtain {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  background: var(--navy-mid);
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1) 0.1s;
}

.preloader-curtain.left  { left: 0; transform-origin: left; }
.preloader-curtain.right { right: 0; transform-origin: right; }

#loni-preloader.exit .preloader-curtain.left  { transform: translateX(-100%); }
#loni-preloader.exit .preloader-curtain.right { transform: translateX(100%); }

/* Old framer preloader - hide if present */
#framer-preloader { display: none !important; }

/* ─────────────────────────────────────────────────────────────
   LAYOUT UTILITIES
   ───────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 100%;
  padding: 0 5%;
  box-sizing: border-box;
}

.container-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.text-center { text-align: center; }
.text-gold   { color: var(--gold) !important; }
.text-cyan   { color: var(--cyan) !important; }

/* ─────────────────────────────────────────────────────────────
   TOP BAR
   ───────────────────────────────────────────────────────────── */
.top-bar {
  width: 100%;
  background: var(--navy-mid);
  color: var(--gray-muted);
  font-size: 0.72rem;
  padding: 0.5rem 0;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
  z-index: 9998;
  position: relative;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left, .top-bar-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.top-bar i { margin-right: 6px; color: var(--gold); }

.top-bar-social a {
  color: var(--gray-muted);
  font-size: 0.8rem;
  margin-left: 10px;
  transition: color 0.3s;
}

.top-bar-social a:hover { color: var(--gold); }

/* ─────────────────────────────────────────────────────────────
   NAVIGATION — Fixed, Full-Width
   ───────────────────────────────────────────────────────────── */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
  background: var(--navy);
  z-index: 99999;
  border-bottom: 1px solid var(--border);
  transition: all 0.35s ease;
}

.navbar-custom.scrolled {
  z-index: 99999;
  background: rgba(9, 21, 64, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.navbar-custom > .nav-inner {
  width: 100%;
  height: 75px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

/* Brand */
.nav-brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  flex-shrink: 0;
  transition: color 0.3s;
}

.nav-brand-link:hover { color: var(--gold); }

.nav-brand-link i {
  color: var(--gold);
  font-size: 1.4rem;
  animation: pulse-slow 3s ease-in-out infinite;
}

@keyframes pulse-slow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.15); opacity: 0.85; }
}

/* Desktop Menu */
.nav-desktop-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex: 1;
  justify-content: center;
}

.nav-desktop-menu a {
  color: rgba(255,255,255,0.80);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
}

.nav-desktop-menu a:hover,
.nav-desktop-menu a.active { color: var(--gold); }

/* Nav Right / CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-cta i { color: var(--gold); font-size: 1rem; }

.nav-cta-text { font-size: 0.68rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1.5px; display: block; line-height: 1; margin-bottom: 3px; }

/* Mobile Toggle */
.nav-mobile-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 6px;
  transition: color 0.3s;
}

.nav-mobile-btn:hover { color: var(--white); }

/* Mobile Dropdown — Rich Stylish Version */
.nav-mobile-dropdown {
  display: none;
  width: 100%;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-top: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
}

.nav-mobile-dropdown.open {
  display: block;
  max-height: 100vh;
  opacity: 1;
}

.mobile-menu-inner {
  padding: 1rem 5% 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  text-decoration: none;
  color: var(--white);
  transition: all 0.25s ease;
  border-radius: 8px;
}

.mobile-nav-item:last-child {
  border-bottom: none;
}

.mobile-nav-item:hover,
.mobile-nav-item:focus {
  background: rgba(255,199,44,0.07);
  transform: translateX(4px);
}

.mobile-nav-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,199,44,0.10);
  border: 1px solid rgba(255,199,44,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.mobile-nav-item:hover .mobile-nav-icon {
  background: rgba(255,199,44,0.20);
  border-color: var(--gold);
}

.mobile-nav-icon i {
  color: var(--gold);
  font-size: 0.9rem;
}

.mobile-nav-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-nav-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  line-height: 1.2;
}

.mobile-nav-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.3;
  font-style: italic;
}

.mobile-menu-footer {
  padding: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.mobile-menu-social {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.mobile-menu-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-muted);
  font-size: 0.85rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.mobile-menu-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255,199,44,0.08);
}

/* ─────────────────────────────────────────────────────────────
   HERO HEADER SPACING
   ───────────────────────────────────────────────────────────── */
body.has-topbar header.hero,
body.has-topbar header#home {
  padding-top: calc(75px + 35px + 2rem);
}

header.hero,
header#home,
header.hero-full {
  padding-top: calc(75px + 2rem);
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

header.hero .container,
header#home .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ─────────────────────────────────────────────────────────────
   SCROLL INDICATOR (Home Hero)
   ───────────────────────────────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  animation: fadeInUp 1s ease 1.5s both;
}

.scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy);
}

.scroll-indicator-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounceDown 2s ease-in-out infinite;
}

.scroll-indicator-arrow i { color: var(--gold); font-size: 0.9rem; }

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ─────────────────────────────────────────────────────────────
   BUTTONS — Rounded Gold (Global)
   ───────────────────────────────────────────────────────────── */
.btn,
.btn-primary,
button[type="submit"],
input[type="submit"],
a.btn,
a.btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 0.85rem 2rem !important;
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  border-radius: var(--radius-full) !important;
  border: 2px solid var(--gold) !important;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 6px 20px rgba(255, 199, 44, 0.25) !important;
  white-space: nowrap;
}

.btn:hover,
.btn-primary:hover,
button[type="submit"]:hover,
input[type="submit"]:hover,
a.btn:hover,
a.btn-primary:hover {
  background: var(--white) !important;
  color: var(--navy) !important;
  border-color: var(--white) !important;
  transform: translateY(-3px) scale(1.03) !important;
  box-shadow: 0 12px 30px rgba(255,255,255,0.2) !important;
}

.btn:active,
.btn-primary:active {
  transform: translateY(-1px) scale(0.98) !important;
}

.btn-outline {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 0.85rem 2rem !important;
  background: transparent !important;
  color: var(--gold) !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  border-radius: var(--radius-full) !important;
  border: 2px solid var(--gold) !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.btn-outline:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
  transform: translateY(-3px) !important;
}

/* Watch Video / Secondary */
.btn-secondary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 0.75rem 1.8rem !important;
  background: transparent !important;
  color: var(--navy) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  border-radius: var(--radius-full) !important;
  border: 2px solid rgba(255,255,255,0.35) !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: var(--cyan) !important;
  color: var(--cyan) !important;
  transform: translateY(-2px) !important;
}

/* ─────────────────────────────────────────────────────────────
   SUBTITLE LABEL
   ───────────────────────────────────────────────────────────── */
.subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.subtitle::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--white);
}

/* ─────────────────────────────────────────────────────────────
   REVEAL ANIMATIONS
   ───────────────────────────────────────────────────────────── */
.rvl-reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
  will-change: opacity, transform;
}

.rvl-reveal.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.rvl-scale {
  opacity: 0;
  transform: scale(0.93);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}

.rvl-scale.is-visible {
  opacity: 1 !important;
  transform: scale(1) !important;
}

.rvl-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}

.rvl-left.is-visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.rvl-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}

.rvl-right.is-visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* Stagger delays */
.rvl-d1 { transition-delay: 0.1s !important; }
.rvl-d2 { transition-delay: 0.2s !important; }
.rvl-d3 { transition-delay: 0.3s !important; }
.rvl-d4 { transition-delay: 0.4s !important; }
.rvl-d5 { transition-delay: 0.5s !important; }
.rvl-d6 { transition-delay: 0.6s !important; }

/* ─────────────────────────────────────────────────────────────
   HERO ANIMATIONS (Index)
   ───────────────────────────────────────────────────────────── */
@keyframes zoom-in-spring {
  0%   { opacity: 0; transform: scale(0.7); }
  70%  { opacity: 1; transform: scale(1.04); }
  100% { opacity: 1; transform: scale(1); }
}

.animate-zoom-in-spring {
  animation: zoom-in-spring 1s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up { animation: fade-in-up 0.8s ease both; }

@keyframes fade-in-up-short {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up-short { animation: fade-in-up-short 0.6s ease both; }

.btn-hover-scale:hover { transform: scale(1.06) !important; }

/* ─────────────────────────────────────────────────────────────
   DARK SECTION / CONTENT BLOCKS
   ───────────────────────────────────────────────────────────── */
.dark-section {
  background: var(--navy);
  background-size: cover;
  background-position: center;
  position: relative;
}

.dark-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(9,21,64,0.75), rgba(9,21,64,0.85));
  z-index: 0;
}

.dark-section .container { position: relative; z-index: 1; }

.content-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.content-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(56,189,248,0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.content-block:hover {
  border-color: rgba(56, 189, 248, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.content-block:hover::before { opacity: 1; }

.icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(56, 189, 248, 0.12);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.content-block:hover .icon-wrapper {
  background: var(--cyan);
  color: var(--navy);
}

/* ─────────────────────────────────────────────────────────────
   ADVENTURE BLOCKS (Alternating Layout)
   ───────────────────────────────────────────────────────────── */
.adventure-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 8rem;
}

.adv-content h2,
.adv-content h3 { color: var(--white); }

.adv-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.adv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.adv-image:hover img { transform: scale(1.05); }

/* Pill Image Containers */
.pill-img-container {
  position: relative;
  width: 100%;
  padding-bottom: 125%;
  border-radius: 200px;
  overflow: hidden;
}

.pill-img-container img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pill-img-container:hover img { transform: scale(1.07); }

.horizontal-pill { padding-bottom: 65%; border-radius: 200px; }

/* ─────────────────────────────────────────────────────────────
   GALLERY SLIDER
   ───────────────────────────────────────────────────────────── */
.gallery-slider-container {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gallery-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}

.gallery-slider-item {
  flex: 0 0 100%;
  position: relative;
  overflow: hidden;
}

.gallery-slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.gallery-slider-item.active img { transform: scale(1.06); }

.gallery-slider-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 3rem 2rem;
  background: linear-gradient(to top, rgba(9,21,64,0.95) 0%, transparent 100%);
}

.gallery-slider-caption h3 {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.gallery-slider-caption p {
  font-size: 0.9rem;
  color: var(--gray-muted);
  max-width: 600px;
}

.gallery-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(9,21,64,0.7);
  border: 1px solid var(--border);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.gallery-slider-arrow:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.gallery-slider-arrow.prev { left: 1.5rem; }
.gallery-slider-arrow.next { right: 1.5rem; }

.gallery-slider-dots {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.gallery-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.3s;
}

.gallery-slider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ─────────────────────────────────────────────────────────────
   ADVENTURE CARDS (Homepage Grid)
   ───────────────────────────────────────────────────────────── */
.adventure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.adventure-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.adventure-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.adventure-card-img { position: relative; }

.adventure-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.adventure-card:hover .adventure-card-img img { transform: scale(1.06); }

.adventure-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 12px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

.adventure-card-content { padding: 1.5rem; }

.adventure-card-content h3 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.adventure-card-content p {
  color: rgba(9, 21, 64, 0.75);
  font-size: 0.85rem;
  line-height: 1.6;
}

.adventure-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: gap 0.3s;
}

.adventure-card-link:hover { gap: 10px; color: var(--navy-mid); }

/* ─────────────────────────────────────────────────────────────
   STEP INDICATOR (Side)
   ───────────────────────────────────────────────────────────── */
.step-indicator {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 100;
}

.step-item {
  font-size: 0.7rem;
  font-weight: 800;
  color: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-item::after {
  content: '';
  width: 16px;
  height: 1px;
  background: currentColor;
  border-radius: 2px;
  transition: width 0.3s;
}

.step-item.active { color: var(--gold); }
.step-item.active::after { width: 28px; }

/* ─────────────────────────────────────────────────────────────
   TIMELINE (Methodology)
   ───────────────────────────────────────────────────────────── */
.timeline-path {
  position: relative;
  padding: 3rem 0;
}

.timeline-path::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--cyan), transparent);
  transform: translateX(-50%);
}

.timeline-point {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 6rem;
}

.timeline-dot {
  width: 18px;
  height: 18px;
  background: var(--cyan);
  border-radius: 50%;
  justify-self: center;
  box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.4);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 20px rgba(56, 189, 248, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }
}

.timeline-content-left { text-align: right; }
.timeline-content-right { text-align: left; }

.timeline-image-left img,
.timeline-image-right img {
  width: 100%;
  border-radius: var(--radius-md);
  max-height: 280px;
  object-fit: cover;
}

/* ─────────────────────────────────────────────────────────────
   BLOG CARDS
   ───────────────────────────────────────────────────────────── */
.blog-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,199,44,0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255,199,44,0.08);
}

.blog-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img { transform: scale(1.06); }

.blog-content { padding: 1.8rem; }

.blog-category {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.blog-title {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  font-weight: 700;
}

.blog-excerpt {
  font-size: 0.88rem;
  color: var(--gray-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.blog-read-more {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
}

.blog-read-more:hover { gap: 10px; color: var(--white); }

.blog-meta {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

/* ─────────────────────────────────────────────────────────────
   CONTACT FORM
   ───────────────────────────────────────────────────────────── */
.contact-section { padding: 4rem; border: 1px solid var(--border); border-radius: var(--radius-md); background: rgba(255,255,255,0.03); }

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--gray-muted); margin-bottom: 0.5rem; letter-spacing: 0.5px; text-transform: uppercase; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,199,44,0.05);
}

.form-group select { cursor: pointer; }
.form-group select option { background: var(--navy); color: var(--white); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Contact list */
.contact-list { list-style: none; padding: 0; }
.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 0.9rem;
}
.contact-list li i { color: var(--gold); width: 18px; flex-shrink: 0; }
.contact-list li a { color: var(--gray-muted); transition: color 0.3s; }
.contact-list li a:hover { color: var(--gold); }

/* Light Contact Theme (Yellow bg) */
.contact-light h2, .contact-light .subtitle, .contact-light p { color: var(--navy) !important; }
.contact-light .subtitle::before { background: var(--navy) !important; }
.contact-light .subtitle { color: var(--navy) !important; }
.contact-light .contact-list li, .contact-light .contact-list li a { color: var(--navy) !important; font-weight: 500; }
.contact-light .contact-list li i { color: var(--navy) !important; }
.contact-light label { color: var(--navy) !important; font-weight: 700; }
.contact-light input, .contact-light select, .contact-light textarea { background: rgba(255,255,255,0.6) !important; color: var(--navy) !important; border-color: rgba(9,21,64,0.15) !important; font-weight: 500; }
.contact-light input:focus, .contact-light select:focus, .contact-light textarea:focus { border-color: var(--navy) !important; background: rgba(255,255,255,0.95) !important; }
.contact-light .btn { background: var(--navy) !important; color: var(--white) !important; border-color: var(--navy) !important; }
.contact-light .btn:hover { background: var(--white) !important; color: var(--navy) !important; border-color: var(--white) !important; box-shadow: 0 10px 25px rgba(9,21,64,0.2) !important; }

/* ─────────────────────────────────────────────────────────────
   YOUTUBE MODAL
   ───────────────────────────────────────────────────────────── */
.yt-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 21, 64, 0.93);
  backdrop-filter: blur(10px);
  z-index: 999990;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

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

.yt-modal-box {
  position: relative;
  width: 100%;
  max-width: 900px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  background: #000;
}

.yt-modal-box iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  display: block;
}

.yt-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.3s, background 0.3s;
}

.yt-modal-close:hover { color: var(--gold); background: rgba(255,255,255,0.1); }

/* ─────────────────────────────────────────────────────────────
   VISUAL EVIDENCE GRID (Adventure)
   ───────────────────────────────────────────────────────────── */
.visual-evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 300px 300px;
  gap: 1rem;
  margin-top: 3rem;
}

.grid-item-featured {
  grid-column: span 2;
  grid-row: span 2;
  border-radius: var(--radius-md);
  overflow: hidden;
  padding-bottom: 0 !important;
}

.grid-item-wide {
  grid-column: span 2;
  border-radius: var(--radius-md);
  overflow: hidden;
  padding-bottom: 0 !important;
}

.grid-item-square {
  border-radius: var(--radius-md);
  overflow: hidden;
  padding-bottom: 0 !important;
}

.grid-item-full {
  grid-column: span 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  padding-bottom: 0 !important;
  height: 220px;
}

.visual-evidence-grid .pill-img-container img {
  position: static !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* ─────────────────────────────────────────────────────────────
   BLOCKQUOTE
   ───────────────────────────────────────────────────────────── */
blockquote {
  font-size: 1.3rem;
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  border-left: 4px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────
   FOOTER — Standardized Navy
   ───────────────────────────────────────────────────────────── */
.site-footer {
  width: 100%;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
  overflow: hidden;
  box-sizing: border-box;
}

.site-footer .container { max-width: 100%; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-brand i { color: var(--gold); }

.footer-col p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }

.footer-col ul li { margin-bottom: 0.65rem; }

.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover { color: var(--gold); }
.footer-col ul li a i { width: 16px; color: var(--gold); font-size: 0.75rem; }

.footer-social { display: flex; gap: 0.75rem; margin-top: 0.5rem; flex-wrap: wrap; }

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gold);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
}

.footer-bottom-links a:hover { color: var(--gold); }

/* ─────────────────────────────────────────────────────────────
   BOOK PAGE — Themes Grid
   ───────────────────────────────────────────────────────────── */
.theme-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.theme-card:hover {
  border-color: rgba(255,199,44,0.3);
  transform: translateY(-5px);
  background: rgba(255,199,44,0.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255,199,44,0.08);
}

.theme-card .num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.theme-card h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.theme-card p {
  font-size: 0.85rem;
  color: var(--gray-muted);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────
   CORPORATE / PRESS
   ───────────────────────────────────────────────────────────── */
.press-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.press-card:hover {
  border-color: rgba(56,189,248,0.35);
  transform: translateY(-6px);
  background: rgba(56,189,248,0.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(56,189,248,0.08);
}

.press-card i {
  font-size: 2.5rem;
  color: var(--cyan);
  margin-bottom: 1.25rem;
  display: block;
}

.press-card h3 { color: var(--white); margin-bottom: 0.75rem; font-size: 1.1rem; }
.press-card p  { font-size: 0.88rem; color: var(--gray-muted); }

/* ─────────────────────────────────────────────────────────────
   CAREGIVER / LIFE-PLANNING / MENTORSHIP PAGES
   ───────────────────────────────────────────────────────────── */
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  transition: var(--transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.service-card:hover {
  border-color: rgba(255,199,44,0.3);
  transform: translateY(-5px);
  background: rgba(255,199,44,0.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255,199,44,0.08);
}

/* ─────────────────────────────────────────────────────────────
   SECTION BACKGROUNDS
   ───────────────────────────────────────────────────────────── */
.bg-navy      { background: var(--navy) !important; }
.bg-navy-mid  { background: var(--navy-mid) !important; }
.bg-navy-light { background: var(--navy-light) !important; }
.bg-white     { background: var(--white) !important; color: var(--navy) !important; }
.bg-white p   { color: rgba(9, 21, 64, 0.75) !important; }
.bg-white .lead,
.contact-light .lead {
  color: var(--navy) !important;
}
.bg-white blockquote,
.contact-light blockquote {
  color: var(--navy) !important;
}
.bg-subtle    { background: rgba(255,255,255,0.03) !important; }

/* ─────────────────────────────────────────────────────────────
   NEWSLETTER / EMAIL CTA
   ───────────────────────────────────────────────────────────── */
.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.9rem 1.4rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.88rem;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-form input[type="email"]:focus { border-color: var(--gold); }
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.4); }

/* ─────────────────────────────────────────────────────────────
   MOBILE NAV DROPDOWN — Smooth Animation
   ───────────────────────────────────────────────────────────── */
.nav-mobile-dropdown {
  display: none;
  width: 100%;
  background: rgba(9, 21, 64, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 1.5rem 5%;
  position: absolute;
  top: 75px;
  left: 0;
  z-index: 99998;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  animation: slideDown 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-mobile-dropdown.open { display: block; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-mobile-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-mobile-dropdown ul li a {
  display: block;
  padding: 0.85rem 1rem;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all 0.3s;
  text-align: left;
  border-left: 3px solid transparent;
}

.nav-mobile-dropdown ul li a:hover,
.nav-mobile-dropdown ul li a.active {
  color: var(--gold);
  background: rgba(255,199,44,0.08);
  border-left-color: var(--gold);
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — Tablet & Mobile
   ───────────────────────────────────────────────────────────── */

/* ── 1200px ── */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ── 992px (Tablet) ── */
@media (max-width: 992px) {
  :root { --section-pad: 5rem 0; }

  /* Nav: show hamburger, hide desktop menu */
  .nav-desktop-menu { display: none !important; }
  .nav-cta          { display: none !important; }
  .nav-mobile-btn   { display: flex !important; }

  .navbar-custom { top: 0 !important; }

  /* Hero adjustments */
  header.hero,
  header#home {
    padding-top: 85px;
    min-height: 80vh;
  }

  /* Stack all grids to 1 or 2 columns */
  .grid-2         { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-3         { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .adventure-grid { grid-template-columns: repeat(2, 1fr); }
  .adventure-block { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 4rem; }

  /* Timeline: stack to single column */
  .timeline-point  { grid-template-columns: 1fr; gap: 1.5rem; }
  .timeline-path::before { display: none; }
  .timeline-content-left  { text-align: left; }
  .timeline-dot { display: none; }
  .timeline-image-left,
  .timeline-image-right { order: -1; }
  .timeline-image-left img,
  .timeline-image-right img { max-height: 200px; width: 100%; }

  .step-indicator { display: none; }

  /* Visual evidence grid */
  .visual-evidence-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .grid-item-featured,
  .grid-item-wide,
  .grid-item-full { grid-column: span 2; height: 260px; }
  .grid-item-square { height: 260px; }

  /* Form grid stack */
  .form-grid { grid-template-columns: 1fr; }

  /* Gallery slider smaller */
  .gallery-slider-container { height: 55vh; min-height: 350px; }

  /* Contact section padding */
  .contact-section { padding: 2.5rem; }

  /* Footer col adjustments */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ── 768px (Small Tablet) ── */
@media (max-width: 768px) {
  :root { --section-pad: 4rem 0; }

  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom   { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; }

  /* Reduce heading sizes */
  h1 { font-size: clamp(2rem, 8vw, 3rem) !important; }
  h2 { font-size: clamp(1.6rem, 6vw, 2.5rem) !important; }
  h3 { font-size: clamp(1.1rem, 3.5vw, 1.6rem) !important; }

  /* Hero section mobile — always full screen */
  header.hero,
  header#home,
  header.hero-full {
    padding-top: 80px;
    min-height: 100vh !important;
    min-height: 100svh !important;
    padding-bottom: 3rem;
  }

  /* Disable sticky on images on mobile - they should stack at top */
  .rvl-left[style*="sticky"],
  .rvl-right[style*="sticky"],
  div[style*="position:sticky"] {
    position: relative !important;
    top: auto !important;
  }

  /* Navbar height */
  .navbar-custom { height: 65px; }
  .navbar-custom > .nav-inner { height: 65px; }
  .nav-mobile-dropdown { top: 65px; }

  /* Make buttons stack on mobile */
  header#home [style*="display:flex"][style*="gap"] {
    flex-direction: column;
    align-items: center;
  }

  /* Inline style overrides for hero text */
  header#home h1 {
    font-size: clamp(2.5rem, 12vw, 4.5rem) !important;
    letter-spacing: -1px !important;
  }

  /* Gallery slider mobile */
  .gallery-slider-container { height: 45vh; min-height: 280px; }
  .gallery-slider-caption { padding: 1.5rem 1.5rem 1rem; }
  .gallery-slider-caption h3 { font-size: 1rem; }
  .gallery-slider-caption p { font-size: 0.8rem; }
  .gallery-slider-arrow { width: 40px; height: 40px; font-size: 0.8rem; }
  .gallery-slider-arrow.prev { left: 0.75rem; }
  .gallery-slider-arrow.next { right: 0.75rem; }

  /* Adventure cards */
  .adventure-card-img img { height: 180px; }

  /* Blog cards */
  .blog-image { height: 180px; }

  /* Contact form */
  .contact-section { padding: 1.5rem; }
  .contact-light { padding: 2rem !important; }

  /* Theme cards */
  .theme-card { padding: 1.5rem; }
  .press-card { padding: 1.5rem; }
  .service-card { padding: 1.5rem; }

  /* Content blocks */
  .content-block { padding: 1.5rem; }

  /* Grid-2 images: full width on mobile */
  .grid-2 img { width: 100% !important; }

  /* Absolute positioned images in about section */
  .grid-2 [style*="position:absolute"] {
    position: relative !important;
    width: 60% !important;
    margin-top: -2rem;
    margin-left: auto;
  }

  /* Top bar hide on mobile */
  .top-bar { display: none; }

  /* Scroll indicator smaller */
  .scroll-indicator { bottom: 1.5rem; }
}

/* ── 600px (Large Phone) ── */
@media (max-width: 600px) {
  :root { --section-pad: 3rem 0; }
  .container { padding: 0 4%; }

  /* Stack all grids to 1 column */
  .grid-3         { grid-template-columns: 1fr; }
  .grid-4         { grid-template-columns: 1fr; }
  .adventure-grid { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .footer-social  { justify-content: flex-start; }

  /* Visual evidence grid 1 col */
  .visual-evidence-grid { grid-template-columns: 1fr; }
  .grid-item-featured,
  .grid-item-wide,
  .grid-item-full { grid-column: span 1; height: 200px; }
  .grid-item-square { height: 200px; }

  /* Blockquote smaller */
  blockquote { font-size: 1.05rem; padding-left: 1rem; }

  /* Form grid stack */
  .form-grid { grid-template-columns: 1fr; }

  /* Pill images */
  .pill-img-container { border-radius: var(--radius-md); padding-bottom: 80%; }
  .horizontal-pill { padding-bottom: 55%; border-radius: var(--radius-md); }

  /* Lead text */
  .lead { font-size: 1rem; }

  /* Subtitle */
  .subtitle { font-size: 0.62rem; letter-spacing: 3px; }
  .subtitle::before { width: 25px; }

  /* Gallery slider very small */
  .gallery-slider-container { height: 40vh; min-height: 250px; }
  .gallery-slider-dots { bottom: 0.75rem; right: 1rem; }

  /* Nav brand smaller */
  .nav-brand-link { font-size: 0.9rem; letter-spacing: 1.5px; }
  .nav-brand-link i { font-size: 1.2rem; }

  /* Mobile dropdown: more compact inner padding */
  .mobile-menu-inner { padding: 0.75rem 4% 0; }
  .mobile-nav-item { padding: 0.75rem 0.4rem; }
  .mobile-nav-icon { width: 34px; height: 34px; }

  /* Footer bottom */
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.75rem; }
  .footer-bottom-links { justify-content: center; }

  /* Preloader smaller */
  .preloader-brand { font-size: clamp(1.5rem, 6vw, 2.5rem) !important; }
  .preloader-logo-ring { width: 60px; height: 60px; }
}

/* ── 480px (Phone) ── */
@media (max-width: 480px) {
  /* Hero: keep full-screen on small phones */
  header.hero,
  header#home,
  header.hero-full {
    padding-top: 70px;
    min-height: 100vh !important;
    min-height: 100svh !important;
    padding-bottom: 3rem;
  }

  header#home h1 {
    font-size: clamp(2rem, 11vw, 3.5rem) !important;
    line-height: 0.92 !important;
    margin-bottom: 1.5rem !important;
  }

  /* Hero paragraph */
  header#home p {
    font-size: 0.9rem !important;
    margin-bottom: 1.5rem !important;
  }

  /* Buttons inline on small screens */
  .btn, .btn-primary, a.btn, a.btn-primary {
    padding: 0.75rem 1.4rem !important;
    font-size: 0.7rem !important;
    letter-spacing: 1.5px !important;
  }

  .btn-outline {
    padding: 0.75rem 1.4rem !important;
    font-size: 0.7rem !important;
    letter-spacing: 1.5px !important;
  }

  .btn-secondary {
    padding: 0.65rem 1.2rem !important;
    font-size: 0.7rem !important;
  }

  /* Navbar compact */
  .navbar-custom { height: 60px; }
  .navbar-custom > .nav-inner { height: 60px; padding: 0 4%; }
  .nav-mobile-dropdown { top: 60px; }

  /* Gallery even smaller */
  .gallery-slider-container { height: 35vh; min-height: 220px; }
  .gallery-slider-caption h3 { font-size: 0.85rem; letter-spacing: 1px; }
  .gallery-slider-caption p { font-size: 0.75rem; display: none; }
  .gallery-slider-arrow { width: 34px; height: 34px; }

  /* Adventure card images */
  .adventure-card-img img { height: 160px; }
  .adventure-card-content { padding: 1rem; }
  .adventure-card-content h3 { font-size: 0.9rem; }
  .adventure-card-content p { font-size: 0.8rem; }

  /* Footer */
  .site-footer { padding: 3rem 0 1.5rem; }
  .footer-col p { font-size: 0.82rem; }
  .footer-col h5 { font-size: 0.68rem; margin-bottom: 1rem; }
  .footer-col ul li a { font-size: 0.8rem; }
  .footer-brand { font-size: 0.95rem; }

  /* Section heading spacing */
  h2 { margin-bottom: 0.5rem; }

  /* Contact section compact */
  .contact-section { padding: 1.25rem; }
  .contact-light { padding: 1.25rem !important; }
}

/* ── 360px (Very Small Phone) ── */
@media (max-width: 360px) {
  .container { padding: 0 3.5%; }

  header#home h1 {
    font-size: clamp(1.8rem, 10vw, 2.8rem) !important;
  }

  .nav-brand-link { font-size: 0.8rem; gap: 6px; }
  .nav-brand-link i { font-size: 1rem; }

  .btn, .btn-primary, a.btn, a.btn-primary {
    padding: 0.7rem 1.2rem !important;
    font-size: 0.65rem !important;
  }

  .gallery-slider-container { height: 30vh; min-height: 180px; }
  .gallery-slider-arrow { display: none; }
}

/* =============================================================
   MOBILE-FIRST STORYTELLING POLISH
   Client vision: Less marketing, more storytelling, minimal homepage
   ============================================================= */

/* Hero eyebrow label animation */
.hero-eyebrow {
  animation: fadeInDown 0.8s ease 0.3s both;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero title animation */
header.hero-full h1,
header#home h1 {
  animation: fadeInUp 0.9s ease 0.5s both;
}

/* Hero paragraph animation */
header.hero-full .lead,
header#home .lead {
  animation: fadeInUp 0.9s ease 0.7s both;
}

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

/* About section: always stack image FIRST on mobile (before text) */
@media (max-width: 992px) {
  #about .grid-2 .rvl-left {
    order: -1;
  }

  #about .grid-2 .rvl-right {
    order: 1;
  }

  /* Caregiver section: image first */
  #caregiver-support .grid-2 .rvl-left {
    order: -1;
  }

  /* Life planning: image below content on mobile */
  #life-planning .grid-2 .rvl-right {
    order: 2;
  }
}

/* Mobile hero: make paragraphs slightly smaller for cleaner reading */
@media (max-width: 600px) {
  header.hero-full .hero-content-wrap p,
  header#home p {
    font-size: 0.95rem !important;
    line-height: 1.75 !important;
  }

  header.hero-full .lead,
  header#home .lead {
    font-size: 1.05rem !important;
  }

  header.hero-full h1,
  header#home h1 {
    font-size: clamp(2.5rem, 11vw, 4rem) !important;
    letter-spacing: -1px !important;
    margin-bottom: 1.75rem !important;
  }

  /* Hero eyebrow smaller */
  .hero-eyebrow span:nth-child(2) {
    font-size: 0.65rem !important;
    letter-spacing: 3px !important;
  }

  /* Mobile nav menu: reduce font sizes slightly */
  .mobile-nav-title { font-size: 0.75rem !important; letter-spacing: 1px !important; }
  .mobile-nav-sub { font-size: 0.65rem !important; }
  .mobile-nav-icon { width: 32px !important; height: 32px !important; }
  .mobile-nav-item { padding: 0.7rem 0.4rem !important; gap: 0.75rem !important; }
}

/* About section vertical storytelling: stronger divider lines between eras */
#about .grid-2 .rvl-right div[style*="display:flex"] > div {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

#about .grid-2 .rvl-right div[style*="display:flex"] > div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Scroll indicator: hide on very small phones to reduce clutter */
@media (max-width: 400px) {
  .scroll-indicator { display: none; }
}

/* Section transition improvement: add subtle top border for visual flow */
section#about,
section#book,
section#adventure,
section#caregiver-support,
section#life-planning,
section#mentorship {
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* Responsive Two-Column Grid List */
.two-col-grid-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

@media (max-width: 600px) {
  .two-col-grid-list {
    grid-template-columns: 1fr;
  }
}

/* Centered last item in 3-column layout on desktop, auto elsewhere */
@media (min-width: 993px) {
  .theme-card-last {
    grid-column: 2;
  }
}
