/* ══════════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════════ */
:root {
  --dark:      #1C3340;
  --mid:       #2A4A58;
  --mint:      #6ECFBF;
  --mint-lt:   #9ADDD2;
  --mint-dk:   #4AAFA0;
  --cream:     #EEF6F4;
  --white:     #F7FBFA;
  --border:    #D5EEEA;
  --ink:       #1A2E35;
  --ink-mid:   #3A5A65;
  --ink-lt:    #5A7A82;
  --r:         12px;
  --rl:        24px;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:   cubic-bezier(0.4, 0, 1, 1);
  --shadow-sm: 0 2px 8px rgba(28,51,64,0.08);
  --shadow-md: 0 8px 32px rgba(28,51,64,0.12);
  --shadow-lg: 0 24px 64px rgba(28,51,64,0.16);
  --shadow-mint: 0 4px 20px rgba(110,207,191,0.3);
}

/* ══════════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
html, body { overflow-x:hidden; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
p { font-size: 1rem; color: var(--ink-lt); line-height: 1.78; }
img { display:block; max-width:100%; }
button { font-family: inherit; cursor: pointer; }

/* ══════════════════════════════════════════════
   SCROLL PROGRESS BAR
══════════════════════════════════════════════ */
.progress-bar {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 1001;
  background: transparent;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--mint-dk), var(--mint), var(--mint-lt));
  width: 0%;
  transition: width 0.1s linear;
}

/* ══════════════════════════════════════════════
   NAV
══════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 4%;
  background: rgba(28, 51, 64, 0.96);
  backdrop-filter: blur(20px) saturate(1.4);
  gap: 1rem;
  transition: padding 0.3s var(--ease), box-shadow 0.3s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  padding: 0.65rem 4%;
  border-bottom-color: rgba(110,207,191,0.1);
  box-shadow: 0 1px 0 rgba(110,207,191,0.06);
}
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 58px; width: auto; transition: transform 0.2s var(--ease); }
.nav-logo:hover img { transform: scale(1.02); }
.nav-links {
  display: flex; gap: 1.6rem; list-style: none;
  justify-content: center; align-items: center; flex: 1;
}
.nav-links button, .nav-links > li > a {
  background: none; border: none;
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem; font-weight: 500;
  cursor: pointer; padding: 0.3rem 0;
  font-family: inherit;
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}
.nav-links button::after, .nav-links > li > a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1.5px;
  background: var(--mint);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.nav-links button:hover, .nav-links > li > a:hover { color: #fff; }
.nav-links button:hover::after, .nav-links > li > a:hover::after,
.nav-links button.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links button.active { color: var(--mint); }
.nav-dropdown { position: relative; }
.nav-caret {
  display: inline-block; font-size: 0.6rem;
  margin-left: 0.2rem; transition: transform 0.2s var(--ease);
}
.nav-dropdown:hover .nav-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--dark); border: 1px solid rgba(110,207,191,0.15);
  border-radius: var(--r); padding: 0.4rem;
  min-width: 170px; list-style: none;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: var(--shadow-md);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu button, .nav-dropdown-menu a {
  display: block; width: 100%; text-align: left;
  padding: 0.55rem 0.7rem; white-space: nowrap;
  border-radius: calc(var(--r) - 4px);
  color: rgba(255,255,255,0.65); text-decoration: none;
  font-size: 0.82rem; font-family: inherit;
}
.nav-dropdown-menu button:hover, .nav-dropdown-menu a:hover { background: rgba(110,207,191,0.1); color: #fff; }
.nav-right {
  display: flex; align-items: center;
  gap: 1.4rem; justify-content: flex-end; flex-shrink: 0;
}
.nav-phone {
  display: inline-flex; align-items: center; gap: 0.45rem;
  color: rgba(255,255,255,0.68); font-size: 0.81rem; font-weight: 500;
  background: none; border: none; font-family: inherit;
  white-space: nowrap; cursor: pointer;
  transition: color 0.2s;
}
.nav-phone:hover { color: #fff; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--mint); color: var(--dark);
  padding: 0.55rem 1.4rem; border-radius: 100px;
  font-weight: 700; font-size: 0.76rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: none; white-space: nowrap;
  box-shadow: var(--shadow-mint);
  transition: background 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
}
.nav-cta:hover {
  background: var(--mint-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(110,207,191,0.45);
}
.nav-burger {
  display: none; flex-direction: column;
  justify-content: center; align-items: center; gap: 5px;
  background: none; border: none; padding: 11px; z-index: 1001;
  width: 44px; height: 44px; box-sizing: border-box;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════
   MOBILE MENU
══════════════════════════════════════════════ */
.mob-menu {
  position: fixed; top: 0; right: -100%;
  width: 80%; max-width: 300px; height: 100vh;
  background: var(--dark); z-index: 1000;
  padding: 90px 2rem 2rem;
  display: flex; flex-direction: column; gap: 0.2rem;
  box-shadow: -4px 0 40px rgba(0,0,0,0.35);
  border-left: 1px solid rgba(110,207,191,0.1);
  transition: right 0.4s var(--ease);
}
.mob-menu.open { right: 0; }
.mob-menu button, .mob-menu-link {
  background: none; border: none;
  color: rgba(255,255,255,0.68);
  font-size: 1rem; font-family: inherit; font-weight: 500;
  cursor: pointer; padding: 0.9rem 0; text-align: left;
  border-bottom: 1px solid rgba(110,207,191,0.07);
  transition: color 0.2s, padding-left 0.2s; width: 100%;
  text-decoration: none; display: block;
}
.mob-menu button:hover, .mob-menu-link:hover { color: var(--mint); padding-left: 0.5rem; }
.mob-menu-cta {
  background: var(--mint) !important; color: var(--dark) !important;
  font-weight: 700 !important; border-radius: 100px !important;
  padding: 0.9rem 1.5rem !important; margin-top: 1.4rem !important;
  text-align: center !important; justify-content: center;
  box-shadow: var(--shadow-mint) !important;
}
.mob-menu-phone {
  color: var(--mint); font-size: 1rem; font-weight: 600;
  text-decoration: none; margin-top: 0.8rem; display: block;
  transition: color 0.2s;
}
.mob-menu-phone:hover { color: var(--mint-lt); }
.mob-dropdown-toggle {
  display: flex !important; align-items: center; justify-content: space-between;
}
.mob-dropdown-toggle .nav-caret { transition: transform 0.25s var(--ease); }
.mob-dropdown-toggle.open .nav-caret { transform: rotate(180deg); }
.mob-submenu {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s var(--ease);
}
.mob-submenu.open { max-height: 220px; }
.mob-submenu .mob-menu-link {
  padding-left: 1rem; font-size: 0.92rem;
  border-bottom: 1px solid rgba(110,207,191,0.05);
}
.mob-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); z-index: 999;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
  backdrop-filter: blur(2px);
}
.mob-overlay.open { opacity: 1; pointer-events: all; }

/* ══════════════════════════════════════════════
   PAGES - fade in on switch
══════════════════════════════════════════════ */
.page { display: none; padding-top: 74px; }
.page.active { display: block; animation: pageFade 0.4s var(--ease) both; }
/* Referral page - standalone, no nav/footer */
#page-referral { padding-top: 0; }
#page-referral.active ~ footer,
body.referral-mode footer,
body.referral-mode nav { display: none !important; }
body.referral-mode #page-referral { display: block !important; }
@keyframes pageFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2.1rem; border-radius: 100px;
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.04em;
  cursor: pointer; border: none; font-family: inherit;
  position: relative; overflow: hidden;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s, color 0.2s;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.97) !important; }
.btn-mint {
  background: var(--mint); color: var(--dark);
  box-shadow: var(--shadow-mint);
}
.btn-mint:hover {
  background: var(--mint-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(110,207,191,0.45);
}
.btn-ghost {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.65);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid rgba(28,51,64,0.22);
}
.btn-outline:hover {
  background: rgba(28,51,64,0.04);
  border-color: rgba(28,51,64,0.4);
  transform: translateY(-2px);
}
.btn-teal {
  background: transparent; color: var(--mint);
  border: 1.5px solid var(--mint);
}
.btn-teal:hover {
  background: var(--mint); color: var(--dark);
  transform: translateY(-2px);
}
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  background: var(--dark);
  min-height: 92vh; display: flex; align-items: center;
  padding: 5rem 5%; position: relative; overflow: hidden;
}
.hero video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(28,51,64,0.55) 0%,
    rgba(28,51,64,0.45) 50%,
    rgba(28,51,64,0.65) 100%
  );
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 780px; margin: 0 auto; width: 100%;
  display: flex; flex-direction: column; align-items: flex-start;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--mint); margin-bottom: 2rem;
  animation: heroUp 0.8s 0.05s var(--ease) both;
}
.hero-tag::before {
  content: ''; display: block;
  width: 24px; height: 1.5px; background: var(--mint);
}
.hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.5rem); font-weight: 600;
  color: #fff; margin-bottom: 1.5rem;
  animation: heroUp 0.9s 0.18s var(--ease) both;
}
.hero h1 em { font-style: italic; font-weight: 300; color: var(--mint); }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.65);
  max-width: 500px; margin-bottom: 2.5rem; line-height: 1.78;
  animation: heroUp 0.8s 0.32s var(--ease) both;
}
.hero .btn-group {
  animation: heroUp 0.8s 0.44s var(--ease) both;
}
.hero-note {
  font-size: 0.85rem; color: rgba(255,255,255,0.62);
  margin-top: 1.2rem; letter-spacing: 0.02em;
  animation: heroUp 0.6s 0.6s var(--ease) both;
}
.hero-card { display:none; height: 500px; border-radius: var(--rl); overflow: hidden;
  position: relative; border: 1px solid rgba(110,207,191,0.18);
  box-shadow: 0 40px 100px rgba(0,0,0,0.35);
  animation: heroUp 1s 0.25s var(--ease) both;
}
.hero-card .ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.8rem;
  background: linear-gradient(135deg, var(--dark), var(--mid));
}
.hero-card .ph span {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(110,207,191,0.38);
  text-align: center; padding: 0 2.5rem;
}
@keyframes heroUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* ══════════════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════════════ */
.trust { background: var(--mid); padding: 1.5rem 5%; }
.trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; gap: 2rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.65rem;
  color: rgba(255,255,255,0.8); font-size: 0.84rem; font-weight: 500;
  transition: color 0.2s;
}
.trust-item:hover { color: #fff; }

/* ══════════════════════════════════════════════
   LABELS
══════════════════════════════════════════════ */
.lbl {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mint-dk); background: rgba(110,207,191,0.1);
  padding: 0.3rem 0.9rem; border-radius: 4px; margin-bottom: 1.2rem;
}
.lbl.lt { color: var(--mint); background: rgba(110,207,191,0.15); }

/* ══════════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════════ */
section { padding: 6rem 5%; }
.s-inner { max-width: 1200px; margin: 0 auto; }

/* ══════════════════════════════════════════════
   WHO WE HELP
══════════════════════════════════════════════ */
.who-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.pill-wrap { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.5rem; }
.pill {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 100px; padding: 0.45rem 1rem;
  font-size: 0.83rem; color: var(--ink); font-weight: 500;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.15s var(--ease);
}
.pill:hover {
  border-color: var(--mint); color: var(--dark);
  background: rgba(110,207,191,0.06);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════
   SERVICE TILES (homepage)
══════════════════════════════════════════════ */
.stiles {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--rl); overflow: hidden; margin-top: 3rem;
}
.stile {
  background: #fff; padding: 2.2rem 2rem;
  display: flex; flex-direction: column; gap: 0.7rem;
  cursor: pointer; position: relative;
  transition: background 0.3s var(--ease);
}
.stile::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--mint);
  transition: width 0.35s var(--ease);
}
.stile:hover { background: var(--dark); }
.stile:hover::after { width: 100%; }
.stile:hover h3 { color: #fff; }
.stile:hover p { color: rgba(255,255,255,0.58); }
.stile:hover .sarr { color: var(--mint); transform: translateX(5px); }
.stile-icon { font-size: 1.8rem; line-height: 1; transition: transform 0.2s var(--ease); }
.stile:hover .stile-icon { transform: scale(1.1); }
.stile h3 {
  font-family: 'Fraunces', serif; font-size: 1.2rem;
  font-weight: 600; color: var(--ink);
  transition: color 0.3s;
}
.stile p {
  font-size: 0.86rem; color: var(--ink-lt);
  transition: color 0.3s; flex: 1;
}
.sarr {
  color: var(--border); font-size: 1.1rem;
  margin-top: auto;
  transition: color 0.25s, transform 0.25s var(--ease);
}
.stile.no-hover:hover { background: rgba(238,246,244,0.8); }
.stile.no-hover::after { display: none; }
.stile.no-hover:hover h3 { color: var(--mint-dk); }
.stile.no-hover:hover p { color: var(--ink-lt); }
.stile.no-hover:hover .sarr { transform: translateX(5px); }

/* ══════════════════════════════════════════════
   SERVICE CARDS (services page)
══════════════════════════════════════════════ */
.svc-cards {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 2.5rem;
}
.svc-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--rl); padding: 2rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--mint-dk), var(--mint));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--mint-lt);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  font-size: 2rem; line-height: 1;
  transition: transform 0.2s var(--ease);
}
.svc-card:hover .svc-icon { transform: scale(1.1); }
.svc-card h3 {
  font-family: 'Fraunces', serif; font-size: 1.2rem;
  font-weight: 600; color: var(--ink);
}
.svc-card p {
  font-size: 0.88rem; color: var(--ink-lt);
  line-height: 1.72; flex: 1;
}
.svc-cta { cursor: pointer; background: var(--cream); }
.svc-cta:hover { background: var(--dark); border-color: var(--dark); }
.svc-cta:hover h3 { color: #fff; }
.svc-cta:hover p { color: rgba(255,255,255,0.62); }
.svc-cta:hover .svc-link { color: var(--mint); }
.svc-cta h3 { color: var(--mint-dk); }
.svc-link {
  font-size: 0.82rem; font-weight: 700;
  color: var(--mint-dk); margin-top: auto;
  transition: color 0.2s;
}

/* ══════════════════════════════════════════════
   FUNDING CARDS
══════════════════════════════════════════════ */
.funding-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.2rem; margin-top: 2.5rem;
}
.funding-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--rl); padding: 1.8rem;
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 0.6rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.funding-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--mint-lt);
}
.funding-icon {
  font-size: 1.8rem;
  transition: transform 0.2s var(--ease);
}
.funding-card:hover .funding-icon { transform: scale(1.12); }
.funding-name {
  font-family: 'Fraunces', serif; font-size: 1rem;
  font-weight: 600; color: var(--ink);
}
.funding-desc { font-size: 0.8rem; color: var(--ink-lt); line-height: 1.55; }

/* ══════════════════════════════════════════════
   ABOUT SPLIT
══════════════════════════════════════════════ */
.asplit { background: var(--dark); padding: 6rem 5%; }
.asplit-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.asplit p { color: rgba(255,255,255,0.65); margin-bottom: 1rem; }
.badges { display: flex; flex-direction: column; gap: 0.5rem; margin: 1.8rem 0; }
.badge {
  display: inline-block;
  background: rgba(110,207,191,0.07);
  border: 1px solid rgba(110,207,191,0.18);
  border-radius: 6px; padding: 0.4rem 0.9rem;
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--mint); width: fit-content;
  transition: background 0.2s, border-color 0.2s;
}
.badge:hover {
  background: rgba(110,207,191,0.14);
  border-color: rgba(110,207,191,0.35);
}
.aphotos {
  height: 600px; border-radius: var(--rl);
  overflow: hidden; position: relative; background: var(--mid);
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
  border: 1px solid rgba(110,207,191,0.12);
}
.aphotos .ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.8rem;
  background: linear-gradient(135deg, var(--dark), var(--mid));
}
.aphotos .ph span {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(110,207,191,0.35);
  text-align: center; padding: 0 2rem;
}
.aphoto-cap {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem;
  background: linear-gradient(to top, rgba(28,51,64,0.82), transparent);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--mint);
}

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.testi-card {
  background: #fff; border-radius: var(--rl);
  padding: 2rem; border: 1.5px solid var(--border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.testi-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--mint-dk), var(--mint));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testi-card:hover::before { transform: scaleX(1); }
.stars {
  color: var(--mint); font-size: 0.82rem;
  letter-spacing: 0.08em; margin-bottom: 1rem;
}
.testi-card p {
  font-size: 0.9rem; color: var(--ink);
  font-style: italic; line-height: 1.75;
  margin-bottom: 1.2rem;
}
.testi-author {
  font-size: 0.76rem; font-weight: 700;
  color: var(--ink-lt); text-transform: uppercase;
  letter-spacing: 0.1em;
}
.home-actions {
  display: flex; flex-wrap: wrap; gap: 0.8rem;
  margin-top: 2rem;
}
.faq-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1rem; margin-top: 2.5rem;
}
.faq-item {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 0;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--mint-lt); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  font-family: inherit; text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.4rem;
}
.faq-q h3 {
  font-size: 1rem; color: var(--ink); margin: 0;
}
.faq-toggle {
  flex-shrink: 0; font-size: 1.2rem; line-height: 1;
  color: var(--mint-dk); transition: transform 0.25s var(--ease);
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.3s var(--ease), opacity 0.25s var(--ease);
}
.faq-item.open .faq-a { max-height: 240px; opacity: 1; }
.faq-a p {
  font-size: 0.9rem; color: var(--ink-lt);
  line-height: 1.65; padding: 0 1.4rem 1.4rem;
}

/* ══════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════ */
.cta-band {
  background: var(--mid); padding: 6.5rem 5%;
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(110,207,191,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band h2 {
  font-size: clamp(2.4rem, 5vw, 4rem); color: #fff; margin-bottom: 1rem;
}
.cta-band h2 em { font-style: italic; font-weight: 300; color: var(--mint); }
.cta-band p { color: rgba(255,255,255,0.6); max-width: 480px; margin: 0 auto 2.5rem; }
.cta-micro { color: rgba(255,255,255,0.28); font-size: 0.76rem; margin-top: 1.2rem; }

/* ══════════════════════════════════════════════
   PAGE HEROES
══════════════════════════════════════════════ */
.phero { background: var(--dark); padding: 7rem 5% 5rem; }
.phero-inner { max-width: 1200px; margin: 0 auto; }
.phero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  color: #fff; margin-top: 0.6rem;
}
.phero h1 em { font-style: italic; font-weight: 300; color: var(--mint); }
.phero p {
  color: rgba(255,255,255,0.56);
  max-width: 560px; margin-top: 1.5rem; font-size: 1.05rem;
}

/* ══════════════════════════════════════════════
   TEAM CARDS
══════════════════════════════════════════════ */
.tcards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-top: 3.5rem;
}
.tcard {
  border-radius: var(--rl); overflow: hidden;
  background: #fff; border: 1.5px solid var(--border);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.tcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 80px rgba(28,51,64,0.16);
}
.tcard-photo {
  position: relative; height: 560px;
  overflow: hidden; background: var(--dark);
}
.tcard-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.7s var(--ease);
}
.tcard-photo img.team-photo-zak {
  object-position: center;
}
.tcard-photo img.team-photo-izzy {
  object-position: 50% 62%;
  transform: scale(1.08);
}
.tcard:hover .tcard-photo img { transform: scale(1.05); }
.tcard:hover .tcard-photo img.team-photo-izzy { transform: scale(1.12); }
.tcard-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(28,51,64,0.9) 0%,
    rgba(28,51,64,0.15) 45%,
    transparent 70%
  );
}
.tcard-meta {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem; z-index: 2;
}
.tcard-name {
  font-family: 'Fraunces', serif; font-size: 2rem;
  font-weight: 600; color: #fff; display: block;
}
.tcard-role {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--mint); display: block; margin-top: 0.35rem;
}
.tcard-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  padding: 1.5rem 2rem 0;
}
.tcard-tag {
  background: rgba(110,207,191,0.1);
  border: 1px solid rgba(110,207,191,0.2);
  border-radius: 4px; padding: 0.3rem 0.8rem;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--mint-dk);
  transition: background 0.2s, border-color 0.2s;
}
.tcard-tag:hover {
  background: rgba(110,207,191,0.18);
  border-color: rgba(110,207,191,0.4);
}
.tcard-body { padding: 1.5rem 2rem 2.5rem; }
.tcard-body p {
  font-size: 0.92rem; color: var(--ink-lt);
  line-height: 1.78; margin-bottom: 0.8rem;
}
.tcard-quote {
  margin-top: 1.2rem; padding: 1.2rem 1.5rem;
  background: var(--cream); border-radius: var(--r);
  border-left: 3px solid var(--mint);
}
.tcard-quote p {
  font-family: 'Fraunces', serif; font-style: italic;
  font-weight: 300; font-size: 0.98rem;
  color: var(--ink); margin: 0; line-height: 1.6;
}

/* ══════════════════════════════════════════════
   VALUES
══════════════════════════════════════════════ */
.vgrid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.vcard {
  background: #fff; border-radius: var(--rl);
  padding: 2rem; border: 1.5px solid var(--border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.vcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.vnum {
  font-family: 'Fraunces', serif; font-size: 3rem;
  font-weight: 300; color: var(--border);
  line-height: 1; margin-bottom: 0.6rem;
  transition: color 0.3s;
}
.vcard:hover .vnum { color: var(--mint-lt); }
.vcard h3 {
  font-family: 'Fraunces', serif; font-size: 1.15rem;
  color: var(--ink); margin-bottom: 0.45rem;
}

/* ══════════════════════════════════════════════
   FACILITY
══════════════════════════════════════════════ */
.fac-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.fac-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(110,207,191,0.14);
  border-radius: var(--rl); padding: 2rem;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.fac-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(110,207,191,0.3);
  transform: translateY(-4px);
}
.fac-head {
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 0.5rem;
}
.fac-icon {
  font-size: 1.8rem;
  transition: transform 0.2s var(--ease);
}
.fac-card:hover .fac-icon { transform: scale(1.1); }
.fac-card h3 {
  font-family: 'Fraunces', serif; font-size: 1.1rem;
  color: #fff; margin: 0;
}
.fac-card p { color: rgba(255,255,255,0.52); font-size: 0.88rem; line-height: 1.72; }

/* ══════════════════════════════════════════════
   STEPS
══════════════════════════════════════════════ */
.steps-wrap { max-width: 800px; margin: 3.5rem auto 0; }
.step {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 2rem; margin-bottom: 3rem;
}
.step-left { display: flex; flex-direction: column; align-items: center; }
.step-num {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--dark); border: 2px solid var(--mint);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 1.25rem;
  color: var(--mint); font-weight: 600; flex-shrink: 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.step.visible .step-num {
  background: rgba(110,207,191,0.08);
  box-shadow: 0 0 0 6px rgba(110,207,191,0.08);
}
.step-line {
  width: 2px; flex: 1;
  background: linear-gradient(to bottom, var(--mint), var(--border));
  min-height: 40px; margin-top: 6px; opacity: 0.4;
}
.step:last-child .step-line { display: none; }
.step-time {
  font-size: 0.68rem; font-weight: 700; color: var(--mint-dk);
  background: rgba(110,207,191,0.1); padding: 0.25rem 0.75rem;
  border-radius: 100px; display: inline-block;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.5rem;
}
.step h3 {
  font-family: 'Fraunces', serif; font-size: 1.3rem;
  color: var(--ink); margin-bottom: 0.5rem;
}

/* ══════════════════════════════════════════════
   FIND US
══════════════════════════════════════════════ */
.find-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; align-items: start;
}
.find-locations {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem; align-items: start;
}
.find-card {
  background: #fff; border-radius: var(--rl);
  padding: 1.5rem 1.8rem; border: 1.5px solid var(--border);
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.find-card:hover {
  border-color: var(--mint-lt);
  box-shadow: var(--shadow-sm);
}
.find-icon { font-size: 1.4rem; flex-shrink: 0; }
.find-label {
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--mint-dk); margin-bottom: 0.3rem;
}
.find-val { font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.find-sub { color: var(--ink-lt); font-size: 0.84rem; }
.map-wrap {
  border-radius: var(--rl); overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s;
}
.map-wrap:hover { box-shadow: var(--shadow-lg); }

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.cgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; }
label {
  display: block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 0.4rem; color: var(--ink);
}
input, select, textarea {
  width: 100%; padding: 0.8rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--r);
  font-family: inherit; font-size: 0.93rem;
  color: var(--ink); background: #fff; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(110,207,191,0.15);
}
textarea { height: 120px; resize: vertical; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fgrp { margin-bottom: 1.2rem; }
.info-item {
  display: flex; gap: 1rem;
  align-items: flex-start; margin-bottom: 1.5rem;
}
.info-icon {
  width: 44px; height: 44px; border-radius: var(--r);
  background: rgba(110,207,191,0.1);
  display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
  transition: background 0.2s;
}
.info-item:hover .info-icon { background: rgba(110,207,191,0.18); }
.info-label {
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--mint-dk); margin-bottom: 0.2rem;
}
.info-val { color: var(--ink); font-weight: 600; font-size: 0.95rem; }
.reassure {
  background: var(--cream); border-radius: var(--rl);
  padding: 2rem; margin-top: 1.5rem; border: 1.5px solid var(--border);
}
.reassure h3 {
  font-family: 'Fraunces', serif; color: var(--ink);
  margin-bottom: 1rem; font-size: 1.2rem;
}
.reassure p { font-size: 0.88rem; margin-bottom: 0.65rem; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer { background: var(--dark); padding: 0; }
.foot-logo img { height: 56px; width: auto; }
.foot-mid { padding: 3.5rem 5%; border-bottom: 1px solid rgba(110,207,191,0.07); }
.foot-mid-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem; align-items: start;
}
.foot-tagline {
  font-size: 0.85rem; color: rgba(255,255,255,0.38);
  line-height: 1.72; max-width: 280px; margin-top: 1.2rem;
}
.foot-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.foot-badge {
  background: rgba(110,207,191,0.07);
  border: 1px solid rgba(110,207,191,0.14);
  border-radius: 4px; padding: 0.3rem 0.8rem;
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--mint);
  transition: background 0.2s;
}
.foot-badge:hover { background: rgba(110,207,191,0.14); }
.foot-col h4 {
  font-size: 0.66rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--mint); margin-bottom: 1.2rem;
}
.foot-col ul { list-style: none; }
.foot-col ul li { margin-bottom: 0.45rem; }
.foot-col ul li button {
  background: none; border: none;
  color: rgba(255,255,255,0.45); font-size: 0.85rem;
  font-family: inherit; cursor: pointer; padding: 0;
  transition: color 0.2s; text-align: left;
}
.foot-col ul li button:hover { color: #fff; }
.foot-col p { color: rgba(255,255,255,0.45); font-size: 0.85rem; line-height: 1.65; margin-bottom: 0.35rem; }
.foot-col a {
  color: rgba(255,255,255,0.45); font-size: 0.85rem;
  text-decoration: none; transition: color 0.2s;
  display: block; margin-bottom: 0.35rem;
}
.foot-col a:hover { color: var(--mint); }
.foot-bottom { padding: 1.2rem 5%; }
.foot-bottom-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 0.8rem;
}
.foot-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.4); }

/* ══════════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal-left {
  opacity: 0; transform: translateX(-32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-right {
  opacity: 0; transform: translateX(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: none;
}
.stagger > * {
  opacity: 0; transform: translateY(22px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}
.stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay: 0.07s; }
.stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay: 0.14s; }
.stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay: 0.21s; }
.stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay: 0.28s; }
.stagger.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay: 0.35s; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media(max-width:900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-right { display: none; }
  section { padding: 4.5rem 5%; }
  .phero { padding: 5.5rem 5% 3.5rem; }
  .hero { padding: 5rem 5% 3.5rem; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .who-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .asplit-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .aphotos { display: block; height: 480px; }
  .stiles { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .svc-cards { grid-template-columns: 1fr 1fr; }
  .funding-grid { grid-template-columns: 1fr 1fr; }
  .tcards { grid-template-columns: 1fr; }
  .tcard-photo { height: 380px; }
  .cgrid { grid-template-columns: 1fr; gap: 3.5rem; }
  .vgrid { grid-template-columns: 1fr 1fr; }
  .fac-grid { grid-template-columns: 1fr 1fr; }
  .find-grid { grid-template-columns: 1fr; }
  .find-locations { grid-template-columns: 1fr; }
  .foot-mid-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media(max-width:600px) {
  nav { padding: 0.65rem 5%; }
  .nav-logo img { height: 36px; }
  .page { padding-top: 58px; }
  .hero { padding: 4.5rem 5% 3rem; }
  .hero h1 { font-size: 2.5rem !important; }
  .hero-sub { font-size: 0.93rem; }
  .hero .btn-group { flex-direction: column; align-items: stretch; }
  .hero .btn-group .btn { width: 100%; justify-content: center; }
  .phero h1 { font-size: 2rem !important; }
  section { padding: 3rem 5%; }
  .trust-inner { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
  .stiles, .svc-cards, .funding-grid, .vgrid, .fac-grid { grid-template-columns: 1fr !important; }
  .frow { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { width: 100%; justify-content: center; }
  .tcard-photo { height: 300px; }
  .cta-band h2 { font-size: 2rem !important; }
  .foot-bottom-inner { flex-direction: column; gap: 0.3rem; }
  .step { grid-template-columns: 44px 1fr; gap: 1rem; }
  .step-num { width: 42px; height: 42px; font-size: 1rem; }
  .foot-mid-inner { grid-template-columns: 1fr; }
  .foot-cta-wrap { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════════
   HERO AMBIENT ORBS
══════════════════════════════════════════════ */
.hero-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 1;
  filter: blur(80px); opacity: 0;
  animation: orbFloat 6s var(--ease) forwards;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(110,207,191,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation-delay: 0.3s; animation-duration: 8s;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(110,207,191,0.08) 0%, transparent 70%);
  bottom: 0; left: 10%;
  animation-delay: 0.8s; animation-duration: 10s;
}
@keyframes orbFloat {
  0%   { opacity: 0; transform: scale(0.8) translateY(30px); }
  30%  { opacity: 1; }
  100% { opacity: 0.7; transform: scale(1) translateY(0); }
}


/* ══════════════════════════════════════════════
   SECTION PARALLAX BACKGROUNDS
══════════════════════════════════════════════ */
.parallax-section {
  position: relative; overflow: hidden;
}
.parallax-bg {
  position: absolute; inset: -20%; z-index: 0;
  pointer-events: none; will-change: transform;
}

/* ══════════════════════════════════════════════
   SCROLL DOWN INDICATOR
══════════════════════════════════════════════ */
.scroll-down {
  position: absolute; bottom: 2.5rem; right: 5%;
  z-index: 3; display: flex; flex-direction: column;
  align-items: center; gap: 0.4rem;
  animation: heroUp 0.8s 1s var(--ease) both;
  cursor: pointer;
}
.scroll-down span {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
}
.scroll-down-arrow {
  width: 20px; height: 32px; border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 10px; position: relative;
}
.scroll-down-arrow::after {
  content: ''; position: absolute;
  top: 5px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 8px;
  background: rgba(255,255,255,0.5); border-radius: 2px;
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot {
  0%   { top: 5px; opacity: 1; }
  80%  { top: 14px; opacity: 0; }
  100% { top: 5px; opacity: 0; }
}

/* ══════════════════════════════════════════════
   MAGNETIC BUTTON EFFECT (JS-driven)
══════════════════════════════════════════════ */
.btn-magnetic {
  transition: transform 0.15s var(--ease), box-shadow 0.15s, background 0.2s !important;
}

/* ══════════════════════════════════════════════
   SECTION HEADER UNDERLINE ANIMATE
══════════════════════════════════════════════ */
.animated-heading {
  position: relative; display: inline-block;
}
.animated-heading::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--mint-dk), var(--mint));
  transition: width 0.8s var(--ease);
}
.animated-heading.visible::after { width: 100%; }

/* ══════════════════════════════════════════════
   CARD SHIMMER EFFECT
══════════════════════════════════════════════ */
.shimmer {
  position: relative; overflow: hidden;
}
.shimmer::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255,255,255,0.06) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0s;
}
.shimmer:hover::after {
  transform: translateX(100%);
  transition: transform 0.6s ease;
}

/* ══════════════════════════════════════════════
   STEP NUMBER GLOW ANIMATION
══════════════════════════════════════════════ */
.step.visible .step-num {
  animation: stepGlow 0.6s var(--ease) forwards;
}
@keyframes stepGlow {
  0%  { box-shadow: 0 0 0 0 rgba(110,207,191,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(110,207,191,0.1); }
  100%{ box-shadow: 0 0 0 6px rgba(110,207,191,0.07); }
}

/* ══════════════════════════════════════════════
   TEXT REVEAL (word by word)
══════════════════════════════════════════════ */
.word-reveal .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.word-reveal.visible .word {
  opacity: 1; transform: none;
}

/* ══════════════════════════════════════════════
   TESTI CARD QUOTE MARK
══════════════════════════════════════════════ */
.testi-card::after {
  content: '"';
  position: absolute; top: 1rem; right: 1.5rem;
  font-family: 'Fraunces', serif; font-size: 4rem;
  font-weight: 600; color: var(--border);
  line-height: 1; pointer-events: none;
  transition: color 0.3s;
}
.testi-card:hover::after { color: rgba(110,207,191,0.2); }

/* ══════════════════════════════════════════════
   NAV LINK HOVER PILL
══════════════════════════════════════════════ */
.nav-links button:hover {
  color: #fff;
}

/* ══════════════════════════════════════════════
   MOBILE RESPONSIVE ADDITIONS
══════════════════════════════════════════════ */
@media(max-width:900px) {
  .stats-inner { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
  .scroll-down { display: none; }
}
@media(max-width:600px) {
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stats-strip { padding: 2rem 5%; }
}


/* ══════════════════════════════════════════════
   PAGE ENTRANCE ANIMATIONS
══════════════════════════════════════════════ */
/* When a page becomes active, children with .page-anim cascade in */
.page.active .page-anim-1 { animation: pageIn 0.7s 0.05s var(--ease) both; }
.page.active .page-anim-2 { animation: pageIn 0.7s 0.15s var(--ease) both; }
.page.active .page-anim-3 { animation: pageIn 0.7s 0.25s var(--ease) both; }
.page.active .page-anim-4 { animation: pageIn 0.7s 0.35s var(--ease) both; }
.page.active .page-anim-5 { animation: pageIn 0.7s 0.45s var(--ease) both; }

/* Hero section child stagger */
.page.active .phero-anim-1 { animation: heroUp 0.8s 0.05s var(--ease) both; }
.page.active .phero-anim-2 { animation: heroUp 0.8s 0.18s var(--ease) both; }
.page.active .phero-anim-3 { animation: heroUp 0.8s 0.30s var(--ease) both; }
.page.active .phero-anim-4 { animation: heroUp 0.8s 0.42s var(--ease) both; }

@keyframes pageIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}


/* ── FORM VALIDATION ── */
.fgrp input.error, .fgrp select.error, .fgrp textarea.error {
  border-color: #e05555;
  box-shadow: 0 0 0 3px rgba(224,85,85,0.15);
}
.field-error {
  font-size: 0.75rem;
  color: #e05555;
  margin-top: 0.35rem;
  display: none;
  font-weight: 500;
}
.field-error.show { display: block; }
.form-error-banner {
  background: rgba(224,85,85,0.1);
  border: 1.5px solid rgba(224,85,85,0.3);
  border-radius: var(--r);
  padding: 0.9rem 1.2rem;
  font-size: 0.88rem;
  color: #c03030;
  margin-bottom: 1.2rem;
  display: none;
  font-weight: 500;
}
.form-error-banner.show { display: block; }


/* ══════════════════════════════════════════════
   STICKY DISCOVERY CALL BAR
══════════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--dark);
  border-top: 1px solid rgba(110,207,191,0.15);
  padding: 0.9rem 5% calc(0.9rem + env(safe-area-inset-bottom));
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.25);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-text {
  display: flex; flex-direction: column; gap: 0.15rem;
}
.sticky-cta-title {
  font-family: 'Fraunces', serif;
  font-size: 1rem; font-weight: 600; color: #fff;
  line-height: 1.2;
}
.sticky-cta-sub {
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
}
.sticky-cta-actions {
  display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0;
}
.sticky-cta-dismiss {
  background: none; border: none;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.2s; line-height: 1;
}
.sticky-cta-dismiss:hover { color: rgba(255,255,255,0.7); }
.sticky-cta .btn-mint {
  white-space: nowrap;
  padding: 0.7rem 1.6rem;
  font-size: 0.82rem;
}
@media(max-width:600px) {
  .sticky-cta { flex-direction: column; align-items: flex-start; padding: 1rem 5% calc(1rem + env(safe-area-inset-bottom)); }
  .sticky-cta-actions { width: 100%; }
  .sticky-cta-actions .btn-mint { flex: 1; justify-content: center; }
}

/* ══════════════════════════════════════════════
   DISCOVERY CALL MODAL
══════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white); border-radius: var(--rl);
  padding: 2.5rem; width: 100%; max-width: 520px;
  max-height: calc(100vh - 3rem); overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.25);
}
.modal-overlay.open .modal { transform: none; }
.modal-close {
  position: absolute; top: 0.6rem; right: 0.6rem;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none;
  font-size: 1.4rem; color: var(--ink-lt);
  cursor: pointer; line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--ink); }
.modal-lbl {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--mint-dk);
  background: rgba(110,207,191,0.1);
  padding: 0.3rem 0.8rem; border-radius: 4px;
  display: inline-block; margin-bottom: 1rem;
}
.modal h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.9rem; font-weight: 600;
  color: var(--ink); letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.modal h2 em { font-style: italic; font-weight: 300; color: var(--mint-dk); }
.modal-desc {
  font-size: 0.9rem; color: var(--ink-lt);
  line-height: 1.72; margin-bottom: 1.8rem;
}
.modal-points {
  list-style: none; margin-bottom: 1.8rem;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.modal-points li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.88rem; color: var(--ink); line-height: 1.5;
}
.modal-points li::before {
  content: '✓';
  color: var(--mint-dk); font-weight: 700;
  flex-shrink: 0; margin-top: 0.05rem;
}
.modal-form { display: flex; flex-direction: column; gap: 0.9rem; }
.modal-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.modal-form input, .modal-form select {
  width: 100%; padding: 0.8rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--r);
  font-family: inherit; font-size: 0.9rem; color: var(--ink);
  background: #fff; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.modal-form input:focus, .modal-form select:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(110,207,191,0.15);
}
.modal-submit {
  width: 100%; padding: 1rem;
  background: var(--mint); color: var(--dark);
  border: none; border-radius: 100px;
  font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.04em; cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 16px rgba(110,207,191,0.3);
  transition: background 0.2s, transform 0.2s;
}
.modal-submit:hover { background: var(--mint-lt); transform: translateY(-1px); }
.modal-micro {
  font-size: 0.72rem; color: var(--ink-lt);
  text-align: center; margin-top: 0.4rem;
}
.booking-options {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 0.7rem;
}
.booking-option {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 1rem 1.1rem;
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.booking-option:hover {
  border-color: var(--mint);
  box-shadow: 0 10px 30px rgba(110,207,191,0.16);
  transform: translateY(-1px);
}
.booking-option strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.booking-option span {
  color: var(--ink-lt);
  font-size: 0.8rem;
  line-height: 1.4;
}
.booking-option-arrow {
  color: var(--mint-dk);
  font-weight: 700;
  flex-shrink: 0;
}
.fac-book {
  margin-top: 1.1rem;
  background: rgba(110,207,191,0.12);
  border: 1px solid rgba(110,207,191,0.22);
  color: var(--mint);
  border-radius: 999px;
  padding: 0.62rem 0.9rem;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.fac-book:hover {
  background: var(--mint);
  color: var(--dark);
  transform: translateY(-1px);
}
.fac-more {
  margin-top: 1.1rem; margin-left: 0.6rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem; font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color 0.2s, border-color 0.2s;
}
.fac-more:hover { color: #fff; border-color: rgba(255,255,255,0.5); }
@media(max-width:500px) {
  .modal { padding: 1.5rem 1.25rem; }
}
@media(max-width:600px) {
  .modal-overlay { padding: 0.75rem; }
  .modal { max-height: calc(100vh - 1.5rem); }
  .modal-lbl { margin-bottom: 0.6rem; }
  .modal h2 { font-size: 1.5rem; margin-bottom: 0.4rem; }
  .modal-desc { margin-bottom: 1rem; line-height: 1.55; }
  .modal-points { margin-bottom: 1rem; gap: 0.4rem; }
  .modal-points li { font-size: 0.82rem; line-height: 1.35; }
  .modal-form { gap: 0.6rem; }
  .modal-form-row { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .modal-form input, .modal-form select { padding: 0.65rem 0.8rem; font-size: 0.85rem; }
  .modal-submit { padding: 0.8rem; }
  .modal-micro { margin-top: 0.2rem; }
}



/* ── Our Story: full-screen zigzag scrollytelling journey ───────── */
.epic-timeline {
  position: relative;
  background: var(--white);
  height: 380vh;
}
.epic-start-tile {
  position: absolute; top: -64px; left: 50%; z-index: 3;
  transform: translateX(-50%);
  width: 88%; max-width: 560px;
  background: var(--white); border-radius: var(--rl);
  box-shadow: 0 30px 60px rgba(28,51,64,0.22);
  padding: 3.2rem 2.5rem 2rem; text-align: center;
}
.epic-start-tile .epic-dot { top: 0; }
.epic-start-tile p {
  color: var(--ink-lt); font-size: 1.05rem; line-height: 1.75; margin: 0.5rem 0 0;
}
.epic-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.epic-path-bg {
  fill: none; stroke: rgba(28,51,64,0.08);
  stroke-width: 3; stroke-linecap: round; stroke-linejoin: round;
}
.epic-path-fill {
  fill: none; stroke: var(--mint);
  stroke-width: 3; stroke-linecap: round; stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(110,207,191,0.55));
}
.epic-point {
  position: absolute; left: 0; width: 100%; height: 95vh;
  display: flex; align-items: center;
}
.epic-point-1 { top: 0; }
.epic-point-2 { top: 95vh; }
.epic-point-3 { top: 190vh; }
.epic-point-4 { top: 285vh; }
.epic-dot {
  position: absolute; top: 50%; width: 20px; height: 20px;
  border-radius: 50%; background: var(--white);
  border: 3px solid rgba(28,51,64,0.15);
  transform: translate(-50%,-50%) scale(1); z-index: 2;
  /* No transition here on purpose: JS sets background/transform/box-shadow
     directly on every scroll frame for a continuously scrubbed effect.
     A CSS transition would just add lag chasing the JS-driven value. */
}
.epic-point-right .epic-dot { left: 88%; }
.epic-point-left .epic-dot { left: 12%; }
.epic-point-center .epic-dot { left: 50%; }
.epic-content {
  position: relative; z-index: 1;
  max-width: 400px; padding: 1.5rem 0;
  will-change: transform, opacity;
}
.epic-point-right .epic-content { margin-left: auto; margin-right: 22%; text-align: right; }
.epic-point-left .epic-content { margin-left: 22%; text-align: left; }
.epic-point-center .epic-content { margin: 0 auto; text-align: center; }
.epic-num {
  display: block; font-family: 'Fraunces', serif; font-size: 3.6rem; font-weight: 600;
  color: rgba(28,51,64,0.09); line-height: 1; margin-bottom: 0.5rem;
}
.timeline-label {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mint-dk); margin-bottom: 0.8rem;
}
.epic-content p {
  color: var(--ink-lt); font-size: 1.05rem; line-height: 1.8;
}
.epic-content-final { max-width: 560px; }
.timeline-card {
  background: linear-gradient(135deg, rgba(110,207,191,0.12), rgba(74,175,160,0.06));
  border: 1px solid rgba(110,207,191,0.25);
  border-radius: var(--rl);
  padding: 2rem 2.2rem;
  box-shadow: 0 30px 70px rgba(28,51,64,0.12);
}
.story-quote {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: 1.35rem; color: var(--ink); line-height: 1.5;
  margin: 1.2rem 0 0; padding-right: 1.2rem;
  border-right: 3px solid var(--mint);
}
.epic-point-left .story-quote { padding-left: 1.2rem; padding-right: 0; border-right: none; border-left: 3px solid var(--mint); }
.story-final {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: 1.45rem; color: var(--ink); line-height: 1.55;
}
@media(max-width:900px) {
  .epic-timeline { height: 260vh; }
  .epic-point { height: 65vh; }
  .epic-point-1 { top: 0; }
  .epic-point-2 { top: 65vh; }
  .epic-point-3 { top: 130vh; }
  .epic-point-4 { top: 195vh; }
  .epic-point-right .epic-dot, .epic-point-left .epic-dot { left: 10%; }
  .epic-content { max-width: 82%; padding: 1.2rem; }
  .epic-point-right .epic-content, .epic-point-left .epic-content {
    margin-left: 20%; margin-right: 0; text-align: left;
  }
  .epic-num { font-size: 2.6rem; }
  .story-quote, .epic-point-left .story-quote {
    padding-left: 1rem; padding-right: 0; border-left: 3px solid var(--mint); border-right: none;
  }
  .timeline-card { padding: 1.5rem; }
  .epic-start-tile { top: -40px; width: 90%; padding: 1.8rem 1.6rem 1.4rem; }
}

/* ══════════════════════════════════════════════
   LOCATION PAGES (gallery + facts)
══════════════════════════════════════════════ */
.loc-gallery {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 2.5rem 0 0.5rem;
}
.loc-gallery img {
  width: 100%; height: 280px; object-fit: cover;
  border-radius: var(--rl); border: 1px solid rgba(110,207,191,0.12);
  box-shadow: 0 10px 24px rgba(28,51,64,0.12);
  display: block;
}
@media(max-width:700px) {
  .loc-gallery { grid-template-columns: 1fr 1fr; }
  .loc-gallery img { height: 200px; }
}
@media(max-width:480px) {
  .loc-gallery { grid-template-columns: 1fr; }
}
.loc-back {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--mint); font-size: 0.8rem; font-weight: 600;
  text-decoration: none; margin-bottom: 1rem;
}
.loc-back:hover { color: #fff; }

.loc-hero-split { background: var(--dark); padding: 6.5rem 5% 4rem; }
.loc-hero-split-inner {
  max-width: 1200px; margin: 0 auto;
  background: linear-gradient(135deg, var(--dark) 0%, var(--mid) 55%, var(--mint-dk) 160%);
  border-radius: 28px;
  display: grid; grid-template-columns: 1.1fr 1fr;
  align-items: center; gap: 2.5rem;
  padding: 3rem; overflow: hidden; position: relative;
}
.loc-hero-split-text h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  color: #fff; margin-top: 0.6rem; line-height: 1.1;
}
.loc-hero-split-text p {
  color: rgba(255,255,255,0.65);
  max-width: 460px; margin-top: 1.2rem; font-size: 1.02rem;
}
.loc-hero-split-photo {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
  height: 420px;
}
.loc-hero-split-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media(max-width:900px) {
  .loc-hero-split-inner { grid-template-columns: 1fr; padding: 2rem; }
  .loc-hero-split-photo { height: 300px; order: -1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

