/* ============ TWEAKABLE TOKENS ============ */
:root {
  --terracotta: #4E7F8F;
  --terracotta-deep: #2E5A68;
  --cream: #F4EDE2;
  --cream-soft: #FBF7EF;
  --forest: #2E4A3B;
  --forest-deep: #1B2E24;
  --ink: #1A1713;
  --ink-soft: #3B342C;
  --ochre: #D9A441;
  --clay: #E9D9C2;
  --blush: #E8B8A2;
  --accent-sky: #7FA9B5;
  --radius: 18px;
  --radius-lg: 28px;
  --max: 1360px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', -apple-system, sans-serif;
  background: var(--cream-soft);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Removed background bubbles as requested */

h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Times New Roman', Georgia, serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.serif-italic { font-family: 'Times New Roman', serif; font-style: italic; font-weight: 400; }

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

.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.4s var(--ease);
  padding: 22px 0;
}
.nav.scrolled {
  background: rgba(251,247,239,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(26,23,19,0.06);
  padding: 14px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.logo img { 
  height: 48px !important; 
  width: 48px !important; 
  border-radius: 50%;
  object-fit: cover; 
  display: block;
  border: 1px solid rgba(26,23,19,0.1);
}

.logo-text {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.1;
}
.logo-text span { 
  display: block; 
  font-size: 10px; 
  font-family: 'Manrope',sans-serif; 
  color: var(--ink-soft); 
  letter-spacing: 0.15em; 
  text-transform: uppercase; 
  margin-top: 2px; 
  font-weight: 600; 
}

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a.nav-link {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: all 0.25s var(--ease);
  display: flex; align-items: center; gap: 6px;
}
.nav-links a.nav-link:hover { color: var(--terracotta); background: rgba(198,93,59,0.08); }
.chev { width: 10px; height: 10px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translate(-1px,-1px); opacity: 0.6; }

.submenu {
  position: absolute; top: 100%; left: 0;
  min-width: 260px;
  background: #fff;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 20px 60px rgba(26,23,19,0.12), 0 2px 8px rgba(26,23,19,0.04);
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s var(--ease);
  list-style: none;
  border: 1px solid rgba(26,23,19,0.05);
}
.nav-links li:hover > .submenu { opacity: 1; visibility: visible; transform: translateY(4px); }
.submenu a {
  display: block;
  padding: 10px 14px;
  font-size: 13.5px;
  border-radius: 10px;
  color: var(--ink-soft);
  transition: all 0.2s var(--ease);
}
.submenu a:hover { background: var(--cream); color: var(--terracotta); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: var(--ink);
  color: #fff !important;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.3s var(--ease);
}
/* REMOVED .nav-cta:hover for desktop cleanliness */

/* Hamburger Button */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s var(--ease);
}
.nav-toggle span {
  width: 20px; height: 1.5px;
  background: currentColor;
  transition: all 0.3s var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Overlay Menu */
.nav-overlay {
  position: fixed; inset: 0;
  background: var(--cream-soft);
  z-index: 1000;
  display: flex; flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
  opacity: 0; pointer-events: none;
  transition: all 0.5s var(--ease);
}
.nav-overlay.active { opacity: 1; pointer-events: auto; }
.nav-overlay-links { list-style: none; text-align: center; }
.nav-overlay-links li { margin: 20px 0; transform: translateY(20px); opacity: 0; transition: all 0.5s var(--ease); }
.nav-overlay.active .nav-overlay-links li { transform: translateY(0); opacity: 1; }
.nav-overlay-links a {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}
.nav-overlay-links a:hover { color: var(--terracotta); }

.mobile-submenu-toggle .arr {
  font-size: 18px;
  display: inline-block;
  transition: transform 0.3s var(--ease);
  margin-left: 8px;
  vertical-align: middle;
}
.has-mobile-submenu.submenu-open .mobile-submenu-toggle .arr {
  transform: rotate(180deg);
}
.mobile-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.mobile-submenu li {
  margin: 10px 0;
  transform: translateY(0);
  opacity: 1; 
  transition: none; /* override parent li fade */
}
.mobile-submenu li a {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  color: var(--ink-soft);
}
.mobile-submenu li a:hover {
  color: var(--terracotta);
}

/* ============ HERO SLIDER ============ */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: var(--cream);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  z-index: 1;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1s var(--ease);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  background: var(--cream);
}

.hero-text { height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 100px 64px 100px; position: relative; }
.hero-slide.active { 
  opacity: 1; 
  z-index: 2; 
  visibility: visible;
  pointer-events: auto;
  transition: opacity 1.2s var(--ease), visibility 0s 0s;
}

.hero-text { padding: 140px 64px 80px; position: relative; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 8px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(26,23,19,0.08);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 28px;
  transform: translateY(20px); opacity: 0;
  transition: all 0.8s var(--ease) 0.2s;
}
.active .hero-eyebrow { transform: translateY(0); opacity: 1; }
.hero-eyebrow-dot {
  width: 22px; height: 22px;
  background: var(--terracotta);
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.hero-title {
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  transform: translateY(30px); opacity: 0;
  transition: all 1s var(--ease) 0.35s;
}
.active .hero-title { transform: translateY(0); opacity: 1; }
.hero-title em {
  font-family: 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
}
.hero-title .underline {
  position: relative;
  display: inline-block;
}
.hero-title .underline::after {
  content: '';
  position: absolute;
  bottom: 6px; left: -2px; right: -2px;
  height: 12px;
  background: var(--ochre);
  opacity: 0.35;
  z-index: -1;
  border-radius: 2px;
  transform: skewX(-3deg);
}

.hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 40px;
  transform: translateY(30px); opacity: 0;
  transition: all 1s var(--ease) 0.5s;
}
.active .hero-sub { transform: translateY(0); opacity: 1; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap;
  transform: translateY(30px); opacity: 0;
  transition: all 1s var(--ease) 0.65s;
}
.active .hero-actions { transform: translateY(0); opacity: 1; }

/* Outgoing slide content cleanup */
.hero-slide:not(.active) .hero-eyebrow,
.hero-slide:not(.active) .hero-title,
.hero-slide:not(.active) .hero-sub,
.hero-slide:not(.active) .hero-actions,
.hero-slide:not(.active) .hero-photo {
  opacity: 0 !important;
  transform: translateY(-10px);
  transition: all 0.3s var(--ease);
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--terracotta); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(198,93,59,0.35); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid rgba(26,23,19,0.2); }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.btn-lg { padding: 18px 32px; font-size: 15px; }
.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

/* Hero visual */
.hero-visual { position: relative; height: 100%; min-height: 100vh; padding: 100px 64px 40px 0; }
.hero-photo {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 32px 32px 180px 32px;
  overflow: hidden;
  background: var(--clay);
  transform: scale(0.9) translateY(20px); opacity: 0;
  transition: all 1.2s var(--ease) 0.3s;
}
.active .hero-photo { transform: scale(1) translateY(0); opacity: 1; }
.hero-photo .ph-label {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(26,23,19,0.5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
}
.hero-photo.img-1 { background: linear-gradient(135deg, #E9D9C2 0%, #D9A441 60%, #C65D3B 100%); }
.hero-photo.img-2 { background: linear-gradient(135deg, #DCE4DC 0%, #7FA9B5 60%, #2E4A3B 100%); }
.hero-photo.img-3 { background: linear-gradient(135deg, #F4E4D3 0%, #E8B8A2 60%, #9E4428 100%); }

/* Floating sticker on hero photo */
.hero-sticker {
  position: absolute;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  display: grid; place-items: center;
  text-align: center;
  font-family: 'Fraunces', serif;
  font-size: 14px;
  line-height: 1.2;
  padding: 20px;
  animation: spin 20s linear infinite;
  bottom: 40px; left: -40px;
  box-shadow: 0 20px 50px rgba(46,74,59,0.4);
  z-index: 3;
}
.hero-sticker::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(244,237,226,0.4);
  border-radius: 50%;
}
.hero-sticker-inner {
  font-weight: 600;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-badge {
  position: absolute;
  top: 120px; right: 30px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(26,23,19,0.1);
  display: flex; align-items: center; gap: 12px;
  font-size: 12.5px;
  font-weight: 600;
  z-index: 3;
  animation: floaty 4s var(--ease) infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-badge-dot { width: 34px; height: 34px; background: var(--ochre); border-radius: 50%; display: grid; place-items: center; color: var(--forest-deep); font-family: 'Fraunces', serif; font-weight: 600; }

/* Hero dots + nav */
.hero-controls {
  position: absolute; bottom: 40px; left: 64px;
  display: flex; align-items: center; gap: 20px;
  z-index: 10;
}
.hero-dots { display: flex; gap: 8px; }
.hero-dot {
  width: 36px; height: 4px;
  background: rgba(26,23,19,0.15);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.hero-dot.active { background: rgba(26,23,19,0.15); width: 56px; }
.hero-dot.active::after {
  content: ''; position: absolute; inset: 0; background: var(--terracotta);
  animation: dotFill 6s linear;
}
@keyframes dotFill { from { transform: translateX(-100%); } to { transform: translateX(0); } }

.hero-count {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  color: var(--ink-soft);
}
.hero-count b { color: var(--terracotta); font-weight: 500; }

.hero-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  border: none;
  display: grid; place-items: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.hero-arrow:hover { background: var(--terracotta); transform: translateY(-2px); }

.scroll-ind {
  position: absolute; bottom: 30px; right: 40px;
  writing-mode: vertical-rl;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: 14px;
  z-index: 10;
  font-weight: 600;
}
.scroll-ind::after {
  content: '';
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--ink-soft), transparent);
  animation: scrollLine 2s var(--ease) infinite;
}
@keyframes scrollLine { 0% { height: 0; } 70% { height: 60px; } 100% { height: 0; transform: translateY(30px);} }

/* Ticker */
.ticker {
  background: var(--forest);
  color: var(--cream);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 3;
}
.ticker-track {
  display: inline-flex; gap: 60px;
  animation: ticker 40s linear infinite;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 60px; }
.ticker-star { color: var(--ochre); font-size: 26px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ FEATURES GRID (Section 2) ============ */
.features {
  padding: 120px 0;
  background: var(--cream-soft);
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
}
.section-kicker {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--terracotta);
  display: flex; align-items: center; gap: 10px;
}
.section-kicker::before {
  content: ''; width: 30px; height: 1px; background: var(--terracotta);
}
.section-title {
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  max-width: 820px;
}
.section-title em { font-family: 'Times New Roman', serif; font-style: italic; color: var(--terracotta); font-weight: 400; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.feature-card {
  aspect-ratio: 3/4;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: all 0.4s var(--ease);
  border: 1px solid rgba(26,23,19,0.05);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(26,23,19,0.1);
}
.feature-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--accent-color, var(--terracotta));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: 0;
}
.feature-card:hover::before { opacity: 1; }
.feature-card > * { position: relative; z-index: 1; transition: color 0.4s var(--ease); }
.feature-card:hover > * { color: #fff; }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--accent-color, var(--terracotta));
  display: grid; place-items: center;
  color: #fff;
  transition: all 0.4s var(--ease);
}
.feature-card:hover .feature-icon { background: #fff; color: var(--accent-color); }
.feature-name { font-family: 'Fraunces', serif; font-size: 22px; line-height: 1.1; }
.feature-num {
  font-family: 'Fraunces', serif;
  font-size: 12px;
  color: var(--ink-soft);
  opacity: 0.5;
}
.feature-card:hover .feature-num { opacity: 0.7; }

/* ============ ABOUT ============ */
.about {
  padding: 140px 0;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 4/5;
}
.about-photo {
  position: absolute; inset: 0;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}
.about-photo .ph-label {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(26,23,19,0.5);
  letter-spacing: 0.15em;
}

.about-stat {
  position: absolute;
  background: var(--cream);
  color: var(--ink);
  padding: 24px 28px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.about-stat-num { font-family: 'Fraunces', serif; font-size: 48px; line-height: 1; color: var(--terracotta); }
.about-stat-lbl { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-top: 6px; font-weight: 600; }

.about-stat.s1 { top: 30px; right: -40px; }
.about-stat.s2 { bottom: 60px; left: -40px; background: var(--terracotta); color: #fff; }
.about-stat.s2 .about-stat-num { color: #fff; }
.about-stat.s2 .about-stat-lbl { color: rgba(255,255,255,0.8); }

.about-head em { font-family: 'Times New Roman', serif; font-style: italic; color: var(--ochre); font-weight: 400; }
.about-title { font-size: clamp(36px, 4.2vw, 60px); color: var(--cream); margin-bottom: 30px; }
.about-title .h-line { display: block; }
.about-body { font-size: 17px; color: rgba(244,237,226,0.75); margin-bottom: 20px; max-width: 560px; }
.about-body:last-of-type { margin-bottom: 36px; }
.about-signature {
  display: flex; align-items: center; gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(244,237,226,0.15);
}
.sig-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ochre), var(--terracotta));
  display: grid; place-items: center;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--ink);
}
.sig-text .sig-name { font-family: 'Fraunces', serif; font-size: 18px; color: var(--cream); }
.sig-text .sig-role { font-size: 12.5px; color: rgba(244,237,226,0.6); }

/* ============ PSYCHOLOGIST SECTION ============ */
.psych {
  padding: 140px 0;
  background: var(--cream);
  position: relative;
}
.psych-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.psych-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 40px;
  overflow: hidden;
}
.psych-visual .ph-label {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--forest-deep);
  letter-spacing: 0.15em;
  opacity: 0.6;
  text-align: center; padding: 20px;
}
.psych-card {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: var(--ink);
  color: #fff;
  padding: 20px 24px;
  border-radius: 16px;
  display: flex; align-items: center; gap: 14px;
}
.psych-card-dot {
  width: 10px; height: 10px; background: #7CD495; border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(124,212,149,0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(124,212,149,0.2); } 50% { box-shadow: 0 0 0 10px rgba(124,212,149,0); } }
.psych-card-text { font-size: 13px; }
.psych-card-text b { display: block; font-family: 'Fraunces', serif; font-size: 16px; font-weight: 500; margin-bottom: 2px; }

.psych-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 36px;
}
.psych-item {
  padding: 18px 20px;
  background: #fff;
  border-radius: 14px;
  display: flex; align-items: center; gap: 12px;
  border: 1px solid rgba(26,23,19,0.05);
  transition: all 0.3s var(--ease);
  font-size: 14px;
  font-weight: 500;
}
.psych-item:hover { transform: translateX(4px); border-color: var(--terracotta); }
.psych-check {
  width: 28px; height: 28px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}

/* ============ VISION CTA ============ */
.vision {
  padding: 140px 0;
  background: var(--terracotta);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.vision-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: center; }
.vision-stamp {
  width: 260px; height: 260px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 50%;
  display: grid; place-items: center;
  text-align: center;
  padding: 30px;
  position: relative;
  transform: rotate(-8deg);
  box-shadow: 0 30px 70px rgba(0,0,0,0.3);
}
.vision-stamp::before, .vision-stamp::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.vision-stamp::before { inset: 14px; border: 1px dashed rgba(244,237,226,0.3); }
.vision-stamp::after { inset: 22px; border: 2px solid rgba(244,237,226,0.1); }
.vision-stamp-sub {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 6px;
}
.vision-stamp-main {
  font-family: 'Times New Roman', serif;
  font-style: italic;
  font-size: 42px;
  line-height: 1;
  color: var(--ochre);
}
.vision-stamp-foot {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 6px;
}

.vision h2 { color: #fff; font-size: clamp(38px, 4.5vw, 64px); margin-bottom: 28px; }
.vision h2 em { font-family: 'Times New Roman', serif; font-style: italic; color: var(--ochre); font-weight: 400; }
.vision p { font-size: 17.5px; line-height: 1.65; color: rgba(255,255,255,0.85); max-width: 620px; margin-bottom: 32px; }
.vision .btn-primary { background: var(--cream); color: var(--ink); }
.vision .btn-primary:hover { background: var(--ink); color: var(--cream); box-shadow: 0 12px 30px rgba(0,0,0,0.25); }

/* ============ DIFFERENCES / FAQ ============ */
.diff {
  padding: 140px 0;
  background: var(--cream-soft);
  position: relative;
}
.diff-list {
  margin-top: 40px;
  border-top: 1px solid rgba(26,23,19,0.1);
}
.diff-item {
  border-bottom: 1px solid rgba(26,23,19,0.1);
  transition: background 0.3s var(--ease);
}
.diff-item.open { background: rgba(198,93,59,0.04); }
.diff-head {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 32px 24px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.diff-head:hover { padding-left: 32px; }
.diff-num {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--terracotta);
  font-weight: 500;
}
.diff-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}
.diff-item.open .diff-title { color: var(--terracotta); }
.diff-toggle {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(26,23,19,0.2);
  display: grid; place-items: center;
  color: var(--ink);
  transition: all 0.3s var(--ease);
  position: relative;
}
.diff-toggle::before, .diff-toggle::after {
  content: '';
  position: absolute;
  background: currentColor;
}
.diff-toggle::before { width: 14px; height: 1.5px; }
.diff-toggle::after { width: 1.5px; height: 14px; transition: transform 0.3s var(--ease); }
.diff-item.open .diff-toggle { background: var(--ink); color: #fff; border-color: var(--ink); }
.diff-item.open .diff-toggle::after { transform: scaleY(0); }

.diff-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.diff-body-inner {
  padding: 0 24px 40px 114px;
  max-width: 820px;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.diff-body-inner .highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  margin: 6px 4px 6px 0;
}

/* ============ STAFF & GRID UTILITIES ============ */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  margin-top: 50px;
}


.staff-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(26,23,19,0.05);
  transition: all 0.5s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.staff-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(26,23,19,0.1);
}

.staff-photo {
  aspect-ratio: 1 / 1;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.staff-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,23,19,0.4) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.staff-card:hover .staff-photo::after {
  opacity: 1;
}

.staff-label {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--ochre);
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(217,164,65,0.3);
}

.staff-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.staff-name {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 12px;
  font-weight: 600;
}

.staff-role {
  color: var(--terracotta);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  display: block;
}

.staff-bio {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.staff-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.staff-inst {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
}

.staff-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--ink);
}

.staff-card:hover .staff-arrow {
  background: var(--terracotta);
  color: #fff;
  transform: translateX(3px);
}

/* ============ HERO VARIANT ============ */
.compact-hero {
  padding: 120px 0 60px !important;
  min-height: auto !important;
  height: auto !important;
}

.compact-hero .hero-text {
  height: auto !important;
  padding: 40px 32px !important;
}

.compact-hero .hero-title {
  font-size: clamp(40px, 6vw, 84px);
}

.hero-scroll-link {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.3s var(--ease);
}

.hero-scroll-link:hover {
  transform: translateY(5px);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(26,23,19,0.1);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--terracotta);
  animation: scrollLine 2s infinite cubic-bezier(.2,.7,.2,1);
}

@keyframes scrollLine {
  0% { transform: translateY(0); }
  100% { transform: translateY(200%); }
}




/* ============ ACTIVITIES ============ */
.activities {
  padding: 120px 0;
  background: var(--forest);
  color: var(--cream);
  overflow: hidden;
  position: relative;
}
.activities .section-kicker { color: var(--ochre); }
.activities .section-kicker::before { background: var(--ochre); }
.activities .section-title { color: var(--cream); }
.activities .section-title em { color: var(--ochre); }

.activities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 60px;
}
.activities-grid.horizontal-mobile::-webkit-scrollbar {
  height: 8px;
}
.activities-grid.horizontal-mobile::-webkit-scrollbar-track {
  background: rgba(244,237,226,0.05);
  border-radius: 4px;
}
.activities-grid.horizontal-mobile::-webkit-scrollbar-thumb {
  background: rgba(244,237,226,0.2);
  border-radius: 4px;
}
.activities-grid.horizontal-mobile::-webkit-scrollbar-thumb:hover {
  background: var(--terracotta);
}

.activity-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(244,237,226,0.05);
  border: 1px solid rgba(244,237,226,0.1);
}

.activity-media {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}

.activity-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,23,19,0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: #fff;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: 2;
}

.activity-card:hover .activity-media { transform: scale(1.05); }
.activity-card:hover .activity-overlay { opacity: 1; }

.instagram-placeholder {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  opacity: 0.8;
}

.insta-icon {
  font-style: normal; font-weight: 800; font-family: 'Manrope', sans-serif;
  font-size: 12px; margin-right: 8px; background: rgba(0,0,0,0.3);
  padding: 3px 6px; border-radius: 4px;
}

/* ============ VIRTUAL TOUR ============ */
.tour {
  padding: 140px 0;
  background: var(--cream);
  position: relative;
}
.tour-head { text-align: center; margin-bottom: 60px; }
.tour-head .section-kicker { justify-content: center; }
.tour-head .section-kicker::before { display: none; }
.tour-head .section-kicker::after { content: ''; width: 30px; height: 1px; background: var(--terracotta); margin-left: 10px; }
.tour-head .section-title { margin: 20px auto 20px; }
.tour-head p { color: var(--ink-soft); font-size: 17px; max-width: 560px; margin: 0 auto; }

.tour-frame {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #E9D9C2 0%, #D9A441 50%, #C65D3B 100%);
  box-shadow: 0 40px 100px rgba(26,23,19,0.25);
}
.tour-label {
  position: absolute; top: 24px; left: 24px;
  background: rgba(26,23,19,0.8);
  backdrop-filter: blur(10px);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
  z-index: 3;
}
.tour-label .rec-dot { width: 8px; height: 8px; background: #E74C3C; border-radius: 50%; animation: pulse 1.5s ease-in-out infinite; }
.tour-caption {
  position: absolute; bottom: 28px; left: 28px; right: 28px;
  color: #fff;
  z-index: 3;
  display: flex; justify-content: space-between; align-items: end;
}
.tour-caption-title {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 500;
}
.tour-caption-meta {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
  font-weight: 600;
}

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--cream);
  border: none;
  display: grid; place-items: center;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  z-index: 4;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.play-btn::before {
  content: '';
  position: absolute; inset: -12px;
  border: 1.5px solid rgba(244,237,226,0.5);
  border-radius: 50%;
  animation: ripple 2s ease-out infinite;
}
@keyframes ripple { 0% { transform: scale(0.9); opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }
.play-btn:hover { transform: translate(-50%, -50%) scale(1.1); background: var(--terracotta); }
.play-btn:hover svg { fill: #fff; }
.play-icon { width: 0; height: 0; border-style: solid; border-width: 18px 0 18px 28px; border-color: transparent transparent transparent var(--ink); margin-left: 6px; transition: border-color 0.3s ease; }
.play-btn:hover .play-icon { border-color: transparent transparent transparent #fff; }

.tour-ph-center {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(26,23,19,0.4);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 40px;
  background: var(--cream);
  border-bottom-left-radius: 50% 40px;
  border-bottom-right-radius: 50% 40px;
}
.footer-cta {
  background: var(--terracotta);
  border-radius: 32px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.footer-cta h3 { font-size: clamp(28px, 3.5vw, 46px); line-height: 1; color: #fff; margin-bottom: 12px; }
.footer-cta h3 em { font-family: 'Times New Roman', serif; font-style: italic; color: var(--ochre); font-weight: 400; }
.footer-cta p { color: rgba(255,255,255,0.8); font-size: 16px; }
.footer-cta .btn-primary { background: var(--cream); color: var(--ink); white-space: nowrap; }
.footer-cta .btn-primary:hover { background: var(--ink); color: var(--cream); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(244,237,226,0.15);
}
.footer-brand .logo-text, .footer-brand .logo-text span { color: var(--cream); }
.footer-brand .logo-text span { color: rgba(244,237,226,0.6); }
.footer-tagline {
  font-family: 'Times New Roman', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.3;
  margin: 24px 0;
  max-width: 320px;
  color: rgba(244,237,226,0.85);
}
.footer-phone {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'Fraunces', serif;
  font-size: 26px;
  color: var(--ochre);
  margin-bottom: 24px;
}
.footer-phone-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(217,164,65,0.5);
  display: grid; place-items: center;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(244,237,226,0.15);
  display: grid; place-items: center;
  color: var(--cream);
  transition: all 0.3s var(--ease);
}
.footer-social:hover { background: var(--terracotta); border-color: var(--terracotta); transform: translateY(-3px); }

.footer-col h4 { font-family: 'Fraunces', serif; font-size: 18px; color: var(--cream); margin-bottom: 22px; font-weight: 500; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 14px; }
.footer-col a { font-size: 14px; color: rgba(244,237,226,0.65); transition: all 0.25s var(--ease); display: inline-block; white-space: nowrap; }
.footer-col a:hover { color: var(--ochre); transform: translateX(4px); }
.footer-col p { font-size: 13.5px; color: rgba(244,237,226,0.6); line-height: 1.65; margin-bottom: 14px; }
.footer-col p b { color: var(--cream); font-weight: 600; display: block; font-family: 'Fraunces', serif; font-size: 15px; margin-bottom: 2px; }

.footer-bottom {
  padding-top: 30px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
  font-size: 12.5px;
  color: rgba(244,237,226,0.5);
  border-top: 1px solid rgba(244,237,226,0.1);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--cream); }

.designed-by {
  font-size: 13px;
  color: rgba(244,237,226,0.6);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ms-brand, .mb-brand {
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  text-transform: none;
}

.ms-brand {
  color: #fff;
  background: rgba(217,164,65,0.2);
  border: 1px solid rgba(217,164,65,0.4);
  font-size: 14.5px;
  font-weight: 800;
}

.mb-brand {
  color: rgba(244,237,226,0.85);
  background: rgba(244,237,226,0.08);
  border: 1px solid rgba(244,237,226,0.2);
  font-size: 13.5px;
}

.ms-brand:hover {
  background: var(--ochre);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(217,164,65,0.2);
}

.mb-brand:hover {
  background: rgba(244,237,226,0.15);
  color: #fff;
  transform: translateY(-1px);
}

.footer-mark {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(100px, 18vw, 290px);
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: rgba(244,237,226,0.04);
  -webkit-text-stroke: 1px rgba(244,237,226,0.06);
  text-align: center;
  margin: 60px 0;
  pointer-events: none;
  user-select: none;
}

/* Modal CSS */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(26,23,19,0.4);
  backdrop-filter: blur(4px); z-index: 9999;
  display: flex; justify-content: center; align-items: center;
  opacity: 0; pointer-events: none; transition: all 0.3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-card {
  background: var(--cream); padding: 40px; border-radius: 24px;
  max-width: 400px; text-align: center; position: relative;
  transform: translateY(20px); transition: all 0.3s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2); margin: 20px;
}
.modal-overlay.active .modal-card { transform: translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px; width: 32px; height: 32px;
  border-radius: 50%; border: none; background: rgba(26,23,19,0.05); color: var(--ink);
  font-size: 20px; cursor: pointer; display: grid; place-items: center;
  transition: all 0.2s;
}
.modal-close:hover { background: rgba(26,23,19,0.1); }

/* Welcome Modal Specifics */
.welcome-card {
  max-width: 500px;
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.2);
}
.welcome-logo {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin-bottom: 24px;
  border: 2px solid var(--ochre);
  padding: 4px;
  background: #fff;
}
.welcome-title {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--terracotta);
}
.welcome-divider {
  width: 50px; height: 3px;
  background: var(--ochre);
  margin: 0 auto 24px;
  border-radius: 99px;
}
.welcome-text {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.welcome-btn {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 18px;
}

/* ============ WHATSAPP FAB ============ */
.fab {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 200;
  display: flex; align-items: center; gap: 12px;
  flex-direction: row-reverse;
}
.fab-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  border: none;
  display: grid; place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  transition: all 0.3s var(--ease);
  position: relative;
}
.fab-btn::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.3);
  animation: ripple 2s ease-out infinite;
}
.fab-btn:hover { transform: scale(1.08); }
.fab-bubble {
  background: #fff;
  padding: 14px 18px 14px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(26,23,19,0.15);
  max-width: 260px;
  position: relative;
  animation: bubbleIn 0.4s var(--ease) 1.5s backwards;
}
@keyframes bubbleIn { from { transform: translateX(20px); opacity: 0; } }
.fab-bubble::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: #fff;
}
.fab-bubble-name { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terracotta); font-weight: 700; margin-bottom: 2px; }
.fab-bubble-text { font-size: 13.5px; color: var(--ink); font-weight: 500; }
.fab-bubble-close {
  position: absolute;
  top: -6px; left: -6px;
  width: 22px; height: 22px;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 14px;
  display: grid; place-items: center;
  line-height: 1;
}

/* Cursor trailing dot */
.cursor-dot {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--terracotta);
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 9999;
  transition: transform 0.12s var(--ease), opacity 0.3s ease;
  transform: translate(-50%, -50%);
  opacity: 0;
}
@media (hover: hover) { .cursor-dot { opacity: 0.6; } }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: all 0.7s var(--ease); }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }

/* ============ TWEAKS PANEL ============ */
.tweaks {
  position: fixed;
  bottom: 28px; left: 28px;
  z-index: 300;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(26,23,19,0.2);
  padding: 20px;
  width: 280px;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--ease);
  border: 1px solid rgba(26,23,19,0.08);
  display: none; /* Hidden by default for production */
}
.tweaks.show { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.tweaks h4 { font-family: 'Fraunces', serif; font-size: 16px; margin-bottom: 14px; display: flex; align-items: center; justify-content: space-between; }
.tweaks h4 small { font-family: 'Manrope', sans-serif; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.tweak-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-top: 1px solid rgba(26,23,19,0.05); font-size: 13px; }
.tweak-row:first-of-type { border-top: none; }
.tweak-row label { font-weight: 500; color: var(--ink-soft); }
.swatch-row { display: flex; gap: 6px; }
.swatch { width: 22px; height: 22px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; transition: all 0.2s; }
.swatch.active { border-color: var(--ink); transform: scale(1.1); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-slide { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid, .psych-grid, .vision-grid { grid-template-columns: 1fr; gap: 60px; }
  .activities-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-cta { grid-template-columns: 1fr; text-align: left; }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero-text { padding: 80px 24px 60px; text-align: left; }
  .hero-controls { left: 0; padding: 20px 24px 40px; gap: 12px; }
  .hero-actions { gap: 10px; margin-top: 20px; }
  .hero-title { font-size: 40px; margin-bottom: 20px; }
  .hero-sub { font-size: 16px; margin-bottom: 30px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .activities-grid { 
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .activities-grid.horizontal-mobile {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    margin-right: -20px;
    padding-right: 20px;
    grid-template-columns: none;
    -webkit-overflow-scrolling: touch;
  }
  .activities-grid.horizontal-mobile .activity-card {
    min-width: 75vw;
    scroll-snap-align: center;
    flex-shrink: 0;
  }
  .psych-services { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; }
  .diff-head { grid-template-columns: 40px 1fr auto; gap: 16px; padding: 24px 0; }
  .diff-body-inner { padding-left: 56px; }
  .fab-bubble { display: none; }
  .tweaks { left: 14px; right: 14px; width: auto; bottom: 100px; }
  .nav-toggle { display: flex; }
}

/* ============ VERTICAL RESPONSIVENESS ============ */
@media (max-height: 800px) {
  .hero-text { padding-top: 80px; padding-bottom: 80px; }
  .hero-title { font-size: clamp(32px, 10vh, 68px) !important; margin-bottom: 15px !important; }
  .hero-sub { font-size: 16px !important; margin-bottom: 20px !important; }
  .hero-actions { margin-top: 5px !important; }
  .hero-controls { bottom: 24px; scale: 0.9; }
}

@media (max-height: 650px) {
  .hero-text { padding-top: 60px; padding-bottom: 60px; }
  .hero-title { font-size: clamp(28px, 11vh, 52px) !important; }
  .hero-sub { display: none !important; } /* Hide subtext to avoid overlapping with buttons/controls */
  .hero-actions { margin-top: 15px !important; }
  .hero-controls { bottom: 15px; scale: 0.8; }
}

/* Staff page specific height fixes */
.staff-hero { padding-top: 100px; padding-bottom: 20px; min-height: auto; height: auto; }
.staff-hero .hero-text { text-align: center; margin: 0 auto; padding-top: 40px; height: auto; display: block; }
.staff-grid { margin-top: 40px; }

@media (max-width: 640px) {
  .staff-hero { padding-top: 80px; }
  .staff-hero .hero-text { text-align: center; padding: 40px 20px; }
}
/* ============ CURRICULUM MODALS ============ */
.muf-modal-overlay {
  position: fixed; inset: 0; 
  background: rgba(26,23,19,0.5);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex; justify-content: center; align-items: center;
  opacity: 0; pointer-events: none;
  transition: all 0.4s var(--ease);
  padding: 20px;
}
.muf-modal-overlay.active { opacity: 1; pointer-events: auto; }

.muf-modal-card {
  background: var(--cream-soft);
  width: 100%; max-width: 720px;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.3);
  transform: translateY(30px) scale(0.98);
  transition: all 0.5s var(--ease);
  display: flex; flex-direction: column;
}
.muf-modal-overlay.active .muf-modal-card { transform: translateY(0) scale(1); }

.muf-modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%; border: none;
  background: rgba(26,23,19,0.05);
  color: var(--ink);
  font-size: 24px; cursor: pointer;
  display: grid; place-items: center;
  transition: all 0.3s;
  z-index: 10;
}
.muf-modal-close:hover { background: var(--terracotta); color: #fff; transform: rotate(90deg); }

.muf-modal-scroll {
  padding: 60px 40px;
  overflow-y: auto;
  flex-grow: 1;
}

.muf-modal-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.muf-modal-title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
  line-height: 1.1;
}
.muf-modal-title em { font-family: 'Times New Roman', serif; font-style: italic; color: var(--terracotta); font-weight: 400; }

.muf-modal-lead {
  font-size: 18px; color: var(--ink-soft);
  line-height: 1.6; margin-bottom: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(26,23,19,0.1);
}

.muf-modal-section { margin-bottom: 40px; }
.muf-modal-label {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--terracotta); margin-bottom: 20px;
  display: flex; align-items: center; gap: 15px;
}
.muf-modal-label::after { content: ''; flex-grow: 1; height: 1px; background: rgba(26,23,19,0.1); }

.muf-modal-quote {
  font-family: 'Times New Roman', serif; font-style: italic;
  font-size: 24px; color: var(--ink);
  line-height: 1.4; padding-left: 30px;
  border-left: 4px solid var(--ochre);
  margin: 30px 0;
}

.muf-modal-block {
  background: #fff; padding: 24px;
  border-radius: 20px; margin-bottom: 16px;
  border: 1px solid rgba(26,23,19,0.05);
  transition: all 0.3s;
}
.muf-modal-block:hover { border-color: var(--terracotta); transform: translateX(5px); }
.muf-modal-block h4 { font-family: 'Fraunces', serif; font-size: 19px; margin-bottom: 8px; color: var(--ink); }
.muf-modal-block p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; }

.muf-modal-steps { list-style: none; counter-reset: muf-steps; }
.muf-modal-steps li {
  position: relative; padding-left: 60px; margin-bottom: 30px;
}
.muf-modal-steps li::before {
  content: counter(muf-steps);
  counter-increment: muf-steps;
  position: absolute; left: 0; top: 0;
  width: 40px; height: 40px;
  background: var(--terracotta); color: #fff;
  border-radius: 50%; display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-weight: 600;
}
.muf-modal-steps li strong { display: block; font-size: 18px; margin-bottom: 6px; font-family: 'Fraunces', serif; }
.muf-modal-steps li p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; }

.muf-modal-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.muf-modal-pill {
  padding: 8px 16px; background: rgba(26,23,19,0.04);
  border-radius: 100px; font-size: 13px; font-weight: 600;
  color: var(--ink-soft); border: 1px solid rgba(26,23,19,0.05);
}

@media (max-width: 640px) {
  .muf-modal-card { max-height: 100vh; border-radius: 0; }
  .muf-modal-scroll { padding: 80px 24px 40px; }
  .muf-modal-steps li { padding-left: 50px; }
  .muf-modal-steps li::before { width: 34px; height: 34px; font-size: 14px; }
}

/* ============ MODAL FOOTER & NAVIGATION ============ */
.muf-modal-footer {
  margin-top: 40px;
  padding: 30px 40px;
  background: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(26, 23, 19, 0.08);
  display: flex;
  justify-content: flex-end;
  position: sticky;
  bottom: 0;
  backdrop-filter: blur(15px);
  z-index: 5;
}

.muf-modal-next-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--ink);
  color: #fff;
  padding: 16px 28px;
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(26, 23, 19, 0.12);
}

.muf-modal-next-btn:hover {
  background: var(--terracotta);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(127, 169, 181, 0.25);
  color: #fff;
}

.muf-modal-next-btn .arr {
  font-size: 18px;
  transition: transform 0.4s var(--ease);
}

.muf-modal-next-btn:hover .arr {
  transform: translateX(6px);
}

.muf-modal-next-btn.muf-close-btn {
  background: var(--cream-soft);
  color: var(--ink);
  border: 1px solid rgba(26, 23, 19, 0.1);
  box-shadow: none;
}

.muf-modal-next-btn.muf-close-btn:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

@media (max-width: 640px) {
  .muf-modal-footer {
    padding: 20px;
    justify-content: center;
  }
  .muf-modal-next-btn {
    width: 100%;
    justify-content: center;
  }
}
/* ============ CURRICULUM SECTION ============ */
.muf-section {
  padding: 120px 0;
  background: #fff;
}
.muf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.muf-card {
  background: var(--cream-soft);
  border: 1px solid rgba(26,23,19,0.05);
  border-radius: 24px;
  padding: 40px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}
.muf-card:hover {
  transform: translateY(-10px);
  border-color: var(--terracotta);
  box-shadow: 0 20px 40px rgba(26,23,19,0.08);
}
.muf-card-num {
  font-size: 12px; font-weight: 800;
  color: var(--terracotta); opacity: 0.5;
  margin-bottom: 20px;
}
.muf-card-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 24px;
  transition: all 0.3s;
}
.muf-card:hover .muf-card-icon { transform: scale(1.1); }
.muf-card-icon svg { width: 24px; height: 24px; }

.muf-card-title {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--ink);
}
.muf-card-desc {
  font-size: 15px;
  color: var(--ink-soft);
  opacity: 0.8;
  line-height: 1.5;
}
.muf-card-arrow {
  margin-top: 30px;
  font-size: 20px;
  color: var(--terracotta);
  transition: transform 0.3s;
}
.muf-card:hover .muf-card-arrow { transform: translateX(5px); }

@media (max-width: 1024px) {
  .muf-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .muf-grid { grid-template-columns: 1fr; }
  .muf-card { min-height: auto; padding: 30px; }
}
