/* ═══════════════════════════════════════════════════════
   CUMULUS WEALTH — styles.css
   Fonts: Cormorant Garamond + Jost
═══════════════════════════════════════════════════════ */

@font-face {
  font-family: 'Moulin Regular';
  src: url('./Fonts/Moulin_Family/Moulin-Regular-Trial.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ===== QUICKSAND LOCAL ===== */

@font-face {
 font-family: 'Quicksand-light';
 src: url('Fonts/Quicksand/Quicksand-Light.ttf') format('truetype');
 font-weight: 300;
 font-style: normal;
 font-display: swap;
}

@font-face {
  font-family: 'Quicksand';
  src: url('Fonts/Quicksand/Quicksand-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Quicksand-medium';
  src: url('Fonts/Quicksand/Quicksand-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
 font-family: 'Quicksand-semi-bold';
 src: url('Fonts/Quicksand/Quicksand-SemiBold.ttf') format('truetype');
 font-weight: 600;
 font-style: normal;
 font-display: swap;
}

@font-face {
  font-family: 'Okta-Neue';
  src: url('Fonts/Okta-Neue/Groteskly.otf') format('opentype');
  font-weight: 200;
}

/* ─── TOKENS ─────────────────────────────────── */
:root {
  --navy:       #0e1c2e;
  --navy-mid:   #112150;
  --navy-foot:  #0c1828;
  --navy-bar:   #081220;
  --teal:       #2d6e82;
  --teal-light: #4fc3e8;
  --white:      #ffffff;
  --slate:      #8caabb;
  --slate-lt:   #b8cdd9;
  --sky:        #c8d9e8;
  --light-navy: #01395E;
  --mild-navy:  #10385B;


  --ff-display: 'Moulin Regular';
  --ff-ui: 'Quicksand';
  --ff-ui-light: 'Quicksand-light';
  --ff-ui-med: 'Quicksand-medium';
  --ff-ui-sb: 'Quicksand-semi-bold';
  --ff-oof: 'Okta-Neue';

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --dur:        0.55s;
}

/* ─── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-ui);
  font-weight: 300;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Moulin Regular', serif;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
p {
  font-family: var(--ff-ui-med);
  font-weight: 500
}

/* ═══════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════ */
.c-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  transition: background 0.4s, padding 0.4s;
}

.c-nav.is-scrolled {
  background: #A3AFBE33;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 40px;
  opacity: 0.7;
}

/* Logo */
.c-nav__logo { display: flex; align-items: center; z-index: 1100; }

.c-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.c-logo-cloud-svg { width: 38px; flex-shrink: 0; }

.c-logo-labels {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.c-logo-name {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--white);
}

.c-logo-sub {
  font-family: var(--ff-ui);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--slate-lt);
  margin-top: 2px;
}

/* Swap to image logo: */
.c-nav__logo-img { height: 45px; width: auto; }

/* Menu button */
.c-nav__btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  z-index: 1100;
  position: relative;
  width: 48px;
  height: 24px;
}

.c-nav__btn-label,
.c-nav__btn-close {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--white);
  white-space: nowrap;
  transition: opacity 0.3s, transform 0.3s;
}

.c-nav__btn-close {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
  font-size: 14px;
  letter-spacing: 0;
}

.c-nav.menu-open .c-nav__btn-label {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
}
.c-nav.menu-open .c-nav__btn-close {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ═══════════════════════════════════════════════
   OVERLAY MENU
═══════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════
   OVERLAY MENU (FADE VERSION)
═══════════════════════════════════════════════ */
.c-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out), visibility 0s linear 0.5s;
}

/* LEFT PANEL */
.c-overlay__left {
  width: 55%;
  background: #89A0C0;
  display: flex;
  align-items: center;
  padding: 0 80px;

  opacity: 0;
  transform: scale(1.02); /* subtle zoom */
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

/* RIGHT PANEL */
.c-overlay__right {
  width: 45%;
  background: url('images/skymenu-bg.png') center/cover no-repeat;
  position: relative;
  overflow: hidden;

  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.5s var(--ease-out) 0.05s,
              transform 0.5s var(--ease-out) 0.05s;
}

/* OPEN STATE */
.c-overlay.is-open {
  pointer-events: all;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.5s var(--ease-out);
}

.c-overlay.is-open .c-overlay__left,
.c-overlay.is-open .c-overlay__right {
  opacity: 1;
  transform: scale(1);
}

/* Nav list */
.c-onav { width: 100%; }

.c-onav__item {
  display: flex;
  align-items: center;
  padding: 17px 0;
  border-bottom: 2px solid rgba(14, 28, 46, 0.14);
  cursor: pointer;
}
/* .c-onav__item:first-child { border-top: 1px solid rgba(14, 28, 46, 0.14); } */
.c-onav__item:last-child { border-bottom: none; }

.c-onav__arrow {
  font-size: 30px; /* match .c-onav__link */
  line-height: 1;  /* remove vertical offset */
  
  display: inline-flex;
  align-items: center; /* vertical alignment */
  justify-content: center;

  margin-right: 10px; /* spacing from text */
  margin-bottom: 10px;
  color: var(--mild-navy);

  width: 0;
  overflow: hidden;
  opacity: 0;
  transition: width 0.3s var(--ease-out), opacity 0.25s;
}

.c-sub__arrow {
  font-size: 18px;
  line-height: 1;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-right: 10px;
  color: var(--mild-navy);

  width: 0;
  overflow: hidden;
  opacity: 0;

  transition: width 0.3s var(--ease-out), opacity 0.25s;
}

.c-sub__links a:hover .c-sub__arrow {
  width: 20px;
  opacity: 1;
}

.c-onav__item.is-open .c-onav__sub {
  position: relative;
  left: 0;
  top: 100%;
  width: 100%;

  opacity: 1;
  pointer-events: none;
  transform: translateY(10px);

  transition: all 0.3s ease;
}

/* SHOW submenu */
.c-onav__item.is-active .c-onav__sub {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.c-onav__item.is-active .c-onav__arrow,
.c-onav__item:hover    .c-onav__arrow {
  width: 26px;
  opacity: 1;
}

.c-onav__link {
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  text-transform: uppercase;
  transition: letter-spacing 0.3s;
}
.c-onav__item:hover .c-onav__link { letter-spacing: 0.09em; color: var(--mild-navy) }
.c-onav__item.is-active .c-onav__link { letter-spacing: 0.09em; color: var(--mild-navy) }

/* .c-onav__item:hover .c-onav__sub,
.c-onav__sub:hover {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
} */

/* Stagger on open */
.c-overlay.is-open .c-onav__item {
  animation: oNavIn 0.5s var(--ease-out) both;
}
.c-overlay.is-open .c-onav__item:nth-child(1) { animation-delay: 0.18s; }
.c-overlay.is-open .c-onav__item:nth-child(2) { animation-delay: 0.23s; }
.c-overlay.is-open .c-onav__item:nth-child(3) { animation-delay: 0.28s; }
.c-overlay.is-open .c-onav__item:nth-child(4) { animation-delay: 0.33s; }
.c-overlay.is-open .c-onav__item:nth-child(5) { animation-delay: 0.38s; }

@keyframes oNavIn {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Submenu panels */
.c-sub {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0; /* JS will override */

  padding: 0 52px;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(10px);
}

.c-sub.is-active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}



.c-sub__links { display: flex; flex-direction: column; margin-bottom: 28px; }

.c-sub__links a {
  font-family: var(--ff-ui);
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 13px 0;
  border-bottom: 1px solid rgba(14, 28, 46, 0.14);
  transition: letter-spacing 0.3s, padding-left 0.3s;
}
/* .c-sub__links a:first-child { border-top: 1px solid rgba(14, 28, 46, 0.14); } */
.c-sub__links a:last-child { border-bottom: none; }
.c-sub__links a:hover { letter-spacing: 0.2em; padding-left: 8px; color: var(--mild-navy); }

.c-sub__img { flex: 1; overflow: hidden; max-height: 200px; }
.c-sub__img img { width: 100%; height: 100%; object-fit: cover; }

.c-sub__placeholder {
  width: 100%;
  height: 100%;
  min-height: 150px;
  background: linear-gradient(150deg, #7a9db5 0%, #5a88a2 50%, #3d6e8c 100%);
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.c-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background */
.c-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* When real image is used: background-image: url('images/hero-bg.jpg'); */
  background:
    radial-gradient(ellipse 80% 60% at 25% 35%, rgba(55,95,130,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 72% 25%, rgba(40,75,110,0.45) 0%, transparent 55%),
    radial-gradient(ellipse 70% 70% at 50% 65%, rgba(28,55,88,0.35) 0%, transparent 65%),
    linear-gradient(175deg, #1a2f46 0%, #243d56 25%, #1e3449 55%, #16293e 80%, #0e1c2e 100%);
  background-size: cover;
  background-position: center;
}

/* Real BG image — uncomment when you have the file */
/* .c-hero__bg { background-image: url('images/hero-bg.jpg'); background-size: cover; background-position: center center; } */

/* Waves SVG container */
.c-hero__waves {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.c-waves-svg {
  width: 100%;
  height: 100%;
}

/* Wave path animations */
.wv { animation: wvDrift 16s ease-in-out infinite; }

.wv:nth-child(2) { animation-duration: 18s; animation-delay: -2s; }
.wv:nth-child(3) { animation-duration: 20s; animation-delay: -5s; }
.wv:nth-child(4) { animation-duration: 15s; animation-delay: -8s; }
.wv:nth-child(5) { animation-duration: 22s; animation-delay: -3s; }
.wv:nth-child(6) { animation-duration: 17s; animation-delay: -11s; }
.wv:nth-child(7) { animation-duration: 19s; animation-delay: -6s; }
.wv:nth-child(8) { animation-duration: 14s; animation-delay: -9s; }

@keyframes wvDrift {
  0%, 100% { transform: translate(0, 0); }
  30%       { transform: translate(-10px, 4px); }
  65%       { transform: translate(7px, -3px); }
}

/* Hero text */
.c-hero__body {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  animation: heroIn 1.2s var(--ease-out) 0.25s both;
}

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

.c-hero__heading {
  font-family: var(--ff-display);
  font-weight: 400;

  font-size: 60px;
  line-height: 70px;

  letter-spacing: 0.02em;
  text-align: center;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-bottom: 20px;
}
.c-hero__heading em { font-style: italic; font-weight: 300; }

/* CTA Buttons */
.c-hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  animation: heroIn 1.2s var(--ease-out) 0.5s both;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  font-family: var(--ff-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s;
}

.c-btn--outlined {
  color: var(--white);
  border-color: var(--teal);
  background: transparent;
}
.c-btn--outlined:hover {
  background: var(--teal);
  color: var(--white);
}

.c-btn--filled {
  font-size: 12px;
  color: var(--white);
  background: var(--navy-mid);
  border-color: var(--navy-mid);
}
.c-btn--filled:hover {
  background: transparent;
  border-color: var(--white);
}

/* ═══════════════════════════════════════════════
   FOOTER — CLEAN FINAL (ALIGNED TO FIGMA)
═══════════════════════════════════════════════ */

.c-footer {
  position: relative;
  background: url('images/footer-bg.jpg') center/cover no-repeat;
}

/* Overlay */
/* .c-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 25, 45, 0.75) 0%,
    rgba(5, 15, 28, 0.95) 100%
  );
} */

.c-footer > * {
  position: relative;
  z-index: 1;
}

.no-paddings {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ── Main body ── */
.c-footer__body {
  padding: 15px 0 15px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.margin-top-20{
  margin-top: 20px;
}

/* Layout (FIXED) */
.c-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── Logo ── */
.c-footer__col--logo {
  display: flex;
  align-items: center;
}

.c-footer__logo-img {
  height: 75px;
  width: auto;
}

/* ── Quick Links (CENTERED LIKE FIGMA) ── */
.c-footer__col--links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: right;
}

.c-footer__ql-heading {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
}

.c-footer__ql {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-left: 0;
}

.c-footer__ql a {
  font-family: var(--ff-ui);
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: underline;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #ffffff;
  padding: 4px 0;
  transition: all 0.25s ease;
}

.c-footer__ql a:hover {
  transform: translateX(4px);
}

/* ── Right nav ── */
.c-footer__col--nav {
  display: flex;
  align-items: center;
}

.c-footer__nav {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-end;
}
.c-footer__bar span {
  font-size: 12px;
}

.c-footer__nav a {
  font-family: var(--ff-ui);
  font-size: 12px;
  letter-spacing: 0.10em;
  color: #ffffff;
}

.c-footer__pipe {
  color: rgba(200,220,235,0.3);
}

/* ── Bottom bar ── */
.c-footer__bar {
  background: rgba(5, 10, 18, 0.9);
  padding: 18px 60px;
}

.c-footer__bar-inner {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.c-footer__bar-inner span,
.c-footer__bar-link {
  font-family: var(--ff-ui);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-transform: uppercase;
}

.c-footer__bar-link:hover {
  color: rgba(180,205,225,0.75);
}

/* ═══════════════════════════════════════════════
   MOBILE
═══════════════════════════════════════════════ */

@media (max-width: 768px) {

  .c-onav {
    padding-left: 0;
  }


  .no-paddings {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
  .no-paddings-mob {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .c-footer__body {
    padding: 60px 24px;
  }
  .c-footer__logo-img {
    width: auto;
  }

  .c-footer__bar {
    padding: 16px 24px;
  }

  .c-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  /* remove absolute centering on mobile */
  .c-footer__col--links {
    position: static;
    transform: none;
    text-align: left;
  }

  .c-footer__ql {
    align-items: flex-start;
  }

  .c-footer__nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .c-footer__bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
/* ═══════════════════════════════════════════════
   GLOBAL RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .c-nav { padding: 18px 20px; }
  .c-nav.is-scrolled { padding: 12px 20px; }

  .c-overlay__left  { width: 100%; }
  .c-overlay__right { display: none; }

  .c-hero__heading { font-size: clamp(28px, 9vw, 52px); line-height: normal; }
  .c-hero__ctas    { flex-direction: row; align-items: center; }
}

@media (max-width: 480px) {
  .c-onav__link    { font-size: 26px; }
  .c-overlay__left { padding: 0 36px; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    #1c2e44 0%,
    #243a52 20%,
    #2d4a64 45%,
    #1e3449 70%,
    #162535 100%
  );
  /* Replace with: background-image: url('assets/hero-bg.jpg'); background-size: cover; background-position: center; */
  z-index: 0;
}

/* Cloud texture overlay */
.hero__bg-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 40%, rgba(80,110,140,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 70% 30%, rgba(60,90,120,0.35) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 50% 60%, rgba(40,70,100,0.3) 0%, transparent 65%);
}

.hero__waves {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.waves-svg {
  width: 100%;
  height: 100%;
}

/* Animate waves */
.wave-group--1 .wave-path { animation: waveDrift 12s ease-in-out infinite; }
.wave-group--2 .wave-path { animation: waveDrift 16s ease-in-out infinite reverse; }
.wave-group--3 .wave-path { animation: waveDrift 20s ease-in-out infinite; }

.wave-group--1 .wave-path:nth-child(2) { animation-delay: -4s; }
.wave-group--1 .wave-path:nth-child(3) { animation-delay: -8s; }
.wave-group--2 .wave-path:nth-child(2) { animation-delay: -5s; }
.wave-group--2 .wave-path:nth-child(3) { animation-delay: -10s; }
.wave-group--3 .wave-path:nth-child(2) { animation-delay: -7s; }

@keyframes waveDrift {
  0%, 100% { transform: translateX(0) translateY(0); }
  33%       { transform: translateX(-18px) translateY(6px); }
  66%       { transform: translateX(12px) translateY(-4px); }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  animation: heroFadeUp 1.2s var(--ease-out) 0.3s both;
}

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

.hero__heading {
  font-family: var(--ff-display);
  font-size: clamp(40px, 7vw, 78px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 44px;
}

.hero__heading em {
  font-style: italic;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  animation: heroFadeUp 1.2s var(--ease-out) 0.55s both;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

@media (max-width: 768px) {
  .c-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .c-footer__col--nav {
    width: 100%;
    justify-content: flex-start;
  }

  .c-footer__nav {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .c-footer__ql-heading {
    margin-bottom: 12px;
  }
  /* MOBILE SUBMENU */
/* SUBMENU (ALL DEVICES NOW) */
.c-onav__sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
  display: flex;
  flex-direction: column;
}

.c-onav__sub a {
  font-size: 14px;
  padding: 10px 0 10px 30px;
  letter-spacing: 0.1em;
  opacity: 1;
  font-weight: 500;
}

/* OPEN STATE */
.c-onav__item.is-open .c-onav__sub {
  max-height: 400px;
}
.c-onav__item {
   display: block;
}
}
@media (min-width: 769px) {
  .c-onav__sub {
    display: none; /* or keep hidden if you don’t want inline submenu */
  }
}
@media (max-width: 600px) {
  .c-footer__bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  /* .c-footer__bar-inner span,
  .c-footer__bar-link {
    font-size: 9px;
  } */
}
/* ═════════ ABOUT PAGE ═════════ */

/* HERO */
.about-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0 20px;
}

/* background */
.about-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* content layer */
.about-hero .container {
  position: relative;
  z-index: 2;
}

/* small label */
.about-label {
  font-size: 16px;
  letter-spacing: 0.3em;
  color: #FFFFFF;
  margin-bottom: 5px;
  font-weight: 500;
}

/* main centered text */
.about-text {
  font-family: var(--ff-display);
  font-size: 34px;
  line-height: 1.3;
  font-weight: 400;
  color: var(--navy-mid);
  max-width: 720px;
  margin: 0 auto;
}
.border-bottom-1{
  border-bottom: 1px solid var(--white);
}

/* overlay */
/* .about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,20,35,0.4) 0%,
    rgba(10,20,35,0.75) 100%
  );
  z-index: 1;
} */

/* ═════════ FULL SCREEN DUAL SECTION ═════════ */

.about-dual {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* background */
.about-dual-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* dark overlay */
/* .about-dual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 45, 0.92);
  z-index: 1;
} */

/* content */
.about-dual .container {
  position: relative;
  z-index: 2;
}

/* inner layout */
.about-dual-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* rows */
.about-row {
  padding: 60px 0;
}

/* divider */
.about-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.48);
}

/* typography */
.about-heading {
  font-size: 40px;
  letter-spacing: 0.15em;
  color: var(--navy-mid);
  margin-right: 40px;
}

.about-desc {
  font-size: 15px;
  color: var(--slate-lt);
  line-height: 1.5;
  font-weight: 500;
}

/* optional alignment tweak */
.about-right {
  margin-left: 40%;
}

/* ═════════ TEAM ═════════ */

/* ═════════ TEAM BACKGROUND FIX ═════════ */

.team-section {
  position: relative;   /* important */
  overflow: hidden;
  padding: 60px 60px 60px 0;
  text-align: center;
}

/* background image (reuse same class) */
.team-section .about-dual-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* bring content above background */
.team-section .container {
  position: relative;
  z-index: 2;
}

.team-title {
  margin-bottom: 60px;
  /* letter-spacing: 0.15em; */
  font-size: 16px;
  text-align: left;
  color: var(--navy-mid);
  font-weight: 500;
  font-family: var(--ff-ui-med);
}

.team-card img {
  width: 180px;
  margin: 0 auto 20px;
}

.team-card h5 {
  font-size: 16px;
  margin-bottom: 5px;
}

.team-card p {
  font-size: 12px;
  color: var(--slate);
}

/* ═════════ CTA ═════════ */

.about-cta {
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.cta-text {
  letter-spacing: 0.15em;
}

/* ═════════ RESPONSIVE ═════════ */

@media (max-width: 768px) {

  .about-text {
    font-size: 22px;
  }
  .about-heading{
    font-size: 25px;
  }

  .about-dual {
    height: auto;
    padding: 80px 0;
  }

  .about-row {
    padding: 40px 0;
  }

  .about-divider {
    margin: 20px 0;
  }

  .team-section {
    padding: 100px 0;
  }
}

@media (max-width: 480px) {

  .about-text {
    font-size: 20px;
    line-height: 1.6;
  }

  .about-label {
    font-size: 14px;
  }
}


/* dark gradient at bottom */
/* .team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.3) 40%,
    transparent 70%
  );
  z-index: 1;
} */

/* TEXT OVERLAY */
.team-overlay {
  position: absolute;
    bottom: 0;
    left: 0;
    margin: 22px 16px;
    right: 0;
    width: 100%;
    z-index: 2;
    text-align: left;
    background: black;
}

.team-overlay h5 {
  font-family: var(--ff-ui);
  font-size: 16px;
  margin-bottom: 4px;
  color: #fff;
}

.team-content h5 {
  font-family: var(--ff-ui);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
  color: #fff;
}

.team-content h6 {
  font-family: var(--ff-ui);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
  color: #fff;
}

.team-overlay p {
  font-family: var(--ff-ui);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.7);
}

.team-content p {
  font-family: var(--ff-ui);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--navy-mid);
  font-weight: 600;
}

/* spacing between cards */
.team-top-row {
  margin-top: 60px;
  margin-bottom: 60px;
}

/* increase gap between columns */
.team-top-row .col-md-6 {
  padding-left: 80px;
  padding-right: 80px;
}

/* divider line */
.team-divider {
  width: 80%;
  height: 1px;
  background: var(--navy-mid);
  margin: 0 0 30px auto;
}

.section-divider {
  width: 95%;
  height: 1px;
  background: var(--white);
  margin: 0 auto 60px;
}

/* bottom names */
/* .team-bottom-row h6 {
  font-size: 14px;
  margin-bottom: 5px;
  color: #ffffff;
  font-family: var(--ff-ui)
} */

/* bottom roles */
/* .team-bottom-row p {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6);
} */


/* ═════════ BOTTOM LINKS STRIP ═════════ */

.about-links {
  padding: 40px 0 60px;
  position: relative;
}

.about-links::before {
  content: "";
  display: block;
  width: 85%;              /* 👈 reduce length */
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 0 auto 30px;    /* 👈 center it */
}
/* inner layout */
.about-links-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* links */
.about-links a {
  font-family: var(--ff-ui);
  font-size: 15px;
  /* letter-spacing: 0.18em; */
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
  font-weight: 600;
  text-decoration: underline;
}

.about-links a:hover {
  color: var(--navy);
}

/* alignment helpers (optional clarity) */
.about-link-left  { text-align: left; }
.about-link-right { text-align: right; }

 /* ═══════════════════════════════════════════════
       OFFERINGS PAGE — LOCAL STYLES
    ═══════════════════════════════════════════════ */

    /* ── HERO / PHILOSOPHY ── */
    .offerings-hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .offerings-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 1px; /* thickness */
  background: #fff; /* change color */
}

    .offerings-hero-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .offerings-hero .container {
      position: relative;
      z-index: 2;
      padding-top: 120px;
      padding-bottom: 100px;
    }

    .off-process-link{
      font-family: var(--ff-ui);
      font-size: 15px;
      font-weight: 600;
      color: var(--navy-mid);
    }

    .off-process-link a {
      text-decoration: underline;
    }

    .off-label {
      font-family: var(--ff-ui-med);
      font-size: 18px;
      font-weight: 500;
      letter-spacing: 1px;
      color: var(--white);
      text-transform: uppercase;
      margin-bottom: 15px;
    }

    .off-hero-heading {
      font-family: var(--ff-display);
      padding: 0px 40px;
      font-size: clamp(28px, 4.5vw, 40px);
      font-weight: 400;
      line-height: 1.12;
      letter-spacing: 0.01em;
      color: #04123C;
      margin-bottom: 0;
    }

    .margin-top-40{
  margin-top: 10%;
    }

    .off-hero-desc {
      text-align: left;
      margin-top: 50px;
      font-family: var(--ff-ui-med);
      font-size: 16px;
      font-weight: 500;
      line-height: 1.7;
      color: var(--white);
    }

    /* ── PROCESS DARK SECTION ── */
.off-process {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
}

.off-process::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 1px; /* thickness */
  background: #fff; /* change color */
}

    .off-process-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    /* fallback dark bg if image missing */
    .off-process-bg-fallback {
      position: absolute;
      inset: 0;
      background: linear-gradient(165deg, #152234 0%, #0e1c2e 60%, #081220 100%);
      z-index: 0;
    }

    /* Decorative wave lines — right side */
    .off-process-waves {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 38%;
      height: 80%;
      z-index: 1;
      pointer-events: none;
      opacity: 0.35;
    }

    .off-process .container {
      position: relative;
      z-index: 2;
    }

    .off-process-block {
      padding-bottom: 30px;
    }

    .off-process-block + .off-process-divider + .off-process-block {
      padding-top: 30px;
      padding-bottom: 0;
    }

    .off-process-divider {
      width: 100%;
      height: 1px;
      background: white;
    }
     .footer-divider {
      width: 100%;
      height: 1px;
      background: rgba(255,255,255,0.23);
    }

    .off-process-label {
      font-family: var(--ff-ui);
      font-size: 18px;
      font-weight: 500;
      letter-spacing: 1px;
      color: var(--white);
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .off-process-heading {
      font-family: var(--ff-display);
      font-size: clamp(26px, 4vw, 40px);
      font-weight: 400;
      color: var(--navy);
      line-height: 1;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .off-process-body {
      font-family: var(--ff-ui-med);
      font-size: 15px;
      font-weight: 400;
      line-height: 1.4;
      color: var(--slate-lt);
      max-width: 380px;
      margin-bottom: 40px;
    }

    /* Pillars row */
    .off-pillars {
      display: flex;
      gap: 0;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }

    .off-pillar {
      margin-right: 42px;
      margin-bottom: 12px;
    }

    .off-pillar-text {
      font-family: var(--ff-display);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.15em;
      color: var(--white);
      text-transform: uppercase;
      line-height: 1.4;
    }

    .off-process-footer {
      font-family: var(--ff-ui-med);
      font-size: 15px;
      font-weight: 300;
      color: var(--slate-lt);
      max-width: 400px;
    }

    .off-pillar {
      flex: 1;
      border-right: 2px solid #ccc;
    }

    /* Remove line after last item */
    .off-pillar:last-child {
      border-right: none;
    }

    /* ── OFFERINGS CARDS ── */
    .off-cards-section {
      position: relative;
      overflow: hidden;
      padding: 80px 0 100px;
    }

    .off-cards-section::after {
        content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 1px; /* thickness */
  background: #fff; /* change color */
    }

    .off-cards-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .off-cards-bg-fallback {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, #c8d5e2 0%, #b8c8d8 50%, #d2d8cc 100%);
      z-index: 0;
    }

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

    .off-cards-label {
      font-family: var(--ff-ui-med);
      font-size: 15px;
      font-weight: 500;
      letter-spacing: 0.1em;
      color: var(--white);
      text-transform: uppercase;
      margin-bottom: 40px;
    }

    .off-card-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10%;
      max-width: 900px;
      margin: 0 auto;
    }

    /* Each offering card */
    .off-card {
      position: relative;
      height: 500px;
      overflow: hidden;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .off-card-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .off-card:hover .off-card-bg {
      transform: scale(1.04);
    }

    /* Fallback backgrounds */
    .off-card--elevate .off-card-bg-fallback {
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, #b8cdd9 0%, #8aafca 35%, #6090b0 70%, #4a7a9b 100%);
      z-index: 0;
    }

    .off-card--horizon .off-card-bg-fallback {
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, #c8c4b0 0%, #b0aa94 35%, #9a9278 70%, #857c62 100%);
      z-index: 0;
    }

    /* SVG wave decoration inside card */
    .off-card-waves {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      pointer-events: none;
      opacity: 0.55;
    }

    /* Bottom text overlay */
    .off-card-content {
      position: relative;
      z-index: 2;
      padding: 24px 22px 22px;
      background: linear-gradient(to top, rgba(0,0,0,0.22) 0%, transparent 100%);
    }

    .off-card-name {
      font-family: var(--ff-oof);
      color: var(--light-navy);
      font-size: 50px;
      font-weight: 200;
      letter-spacing: 0.03em;
      line-height: 1;
      margin-bottom: 10px;
    }

    .off-card {
  position: relative;
  overflow: hidden;
}

.off-card-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease, transform 0.6s ease;
}

/* Default image visible */
.img-default {
  opacity: 1;
  z-index: 1;
}

/* Hover image hidden initially */
.img-hover {
  opacity: 0;
  z-index: 2;
}

/* On hover: swap images */
.off-card:hover .img-default {
  opacity: 0;
  transform: scale(1.1);
}

.off-card:hover .img-hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Keep content above images */
.off-card-content {
  position: relative;
  z-index: 3;
}

    .off-card-desc {
      font-family: var(--ff-ui);
      color: var(--light-navy);
      font-size: 15px;
      font-weight: 500;
      line-height: 1.4;
    }

    /* ── CLARITY SECTION ── */
    .off-clarity {
      position: relative;
      overflow: hidden;
      padding: 100px 0 80px;
    }

    .off-clarity-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .off-clarity-bg-fallback {
      position: absolute;
      inset: 0;
      background: linear-gradient(175deg, #1a2e44 0%, #1e3449 50%, #0e1c2e 100%);
      z-index: 0;
    }

    .off-clarity .container {
      position: relative;
      z-index: 2;
    }

    .off-clarity-heading {
      font-family: var(--ff-display);
      font-size: clamp(26px, 4vw, 55px);
      font-weight: 400;
      line-height: 1.05;
      color: var(--navy-mid);
      letter-spacing: 0.02em;
      margin-bottom: 30px;
    }

    .off-clarity-body {
      font-family: var(--ff-ui-med);
      font-size: 15px;
      font-weight: 500;
      line-height: 1.75;
      color: var(--white);
      max-width: 70%;
      margin-bottom: 60px;
    }

    /* Bottom navigation links */
    .off-bottom-links {
      display: flex;
      justify-content: space-between;
      align-items: center;
      /* border-top: 1px solid rgba(255,255,255,0.18); */
      padding-top: 30px;
    }

    .off-bottom-link {
      text-decoration: none;
    border-bottom: 1px solid white;
    padding-bottom: 6px;
    font-family: var(--ff-ui-sb);
    }

    .off-bottom-link:hover {
      
      color: var(--navy);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .off-hero-heading { font-size: 28px; }
      .off-process-heading { font-size: 28px; }
      .off-card-wrap { grid-template-columns: 1fr; max-width: 340px; }
      .off-card { height: 360px; }
      .off-clarity-heading { font-size: 36px; }
      .off-process { padding: 70px 0; }
      .off-process-block { padding-bottom: 50px; }
    }

    @media (max-width: 480px) {
      .off-card-name { font-size: 28px; }
      .off-pillars { gap: 12px; }
      .off-pillar { margin-right: 0; }
    }

      /* ═══════════════════════════════════════════════
       ELEVATE PAGE — LOCAL STYLES
    ═══════════════════════════════════════════════ */

/* ── SECTION 1: HERO ── */
.elv-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* BG image reveal */
.elv-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  animation: bgReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

@keyframes bgReveal {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0% 0);
  }
}

/* Fallback */
.elv-hero-bg-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(175deg, #c2d0de 0%, #aec1d2 40%, #96afc4 100%);
  z-index: 0;
}

/* Lines */
.elv-hero-lines {
  position: absolute;
  left: 25%;
  top: 0;
  width: 38%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: screen;
  animation: linesReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

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

.elv-back:hover {
  opacity: 0.65;
  color: var(--light-navy);
}

.elv-back-arrow { font-size: 14px; }

/* Content */
.elv-hero-content {
  position: absolute;
  bottom: 14%;
  right: 0;
  z-index: 3;
  max-width: 580px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.5s forwards;
}

/* Shared fade */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========================= */
/* NEW HEADING (same style system) */
/* ========================= */

.elv-hero-heading {
  font-weight: 200;
  font-size: 60px;
  text-transform: uppercase;
  font-family: var(--ff-oof);
    letter-spacing: 20%;            /* matches strong emphasis */
  line-height: 1.7;
  color: var(--light-navy);
  margin-bottom: 12px;

  opacity: 0;
  transform: translateY(20px);
  animation: elvHeadingSequence 3s ease forwards;
}

@keyframes elvHeadingSequence {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  20% {
    opacity: 1;
    transform: translateY(0);
  }
  65% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(-16px);
  }
}

/* ========================= */
/* PARAGRAPH (delayed reveal) */
/* ========================= */

.elv-hero-intro {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--light-navy);
  margin-bottom: 0;

  opacity: 0;
  transform: translateY(20px);
  animation: elvTextReveal 1s ease forwards;
  animation-delay: 2s; /* AFTER heading */
}

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

.elv-hero-intro strong {
  font-weight: 700;
}

    /* ── SECTION 2: SCHEME PRIORITIES ── */
.elv-priorities {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.elv-priorities-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.elv-priorities-bg-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, #2a3d52 0%, #1e3044 40%, #182840 70%, #0e1c2e 100%);
  z-index: 0;
}

.elv-priorities .container {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  padding-bottom: 90px;
}

/* Two-column approach grid */
.elv-approach-grid {
  display: grid;
  grid-template-columns: 1fr 200px 1fr;
  align-items: center;
  min-height: 70vh;
}

/* Left: label */
.elv-approach-label {
  padding-right: 60px;
}

.elv-approach-the,
.elv-approach-sub {
  color: #82A5BD;
  font-family: var(--ff-ui-light);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

.elv-approach-title {
  color: #B0C9E5;
  font-family: var(--ff-oof);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 6px 0;
  line-height: 1.1;
}

/* Center: vertical divider */
.elv-approach-divider {
  background: var(--white);
  width: 1.5px;
  align-self: stretch;
}

/* Right: stacked items */
.elv-approach-items {
  padding-left: 60px;
}

.elv-approach-item {
  padding: 32px 0;
  /* border-bottom: 0.5px solid rgba(255, 255, 255, 0.1); */
}

.elv-approach-item:last-child {
  border-bottom: none;
}

.elv-approach-item p {
  color: #F5F0EA;
  font-family: var(--ff-ui);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
}

    /* Subtle dividers between rows */
    /* .elv-priority-row + .elv-priority-row {
      border-top: 1px solid rgba(255,255,255,0.08);
    } */

    /* ── SECTION 3: CURATED FOR ── */
    .elv-curated {
      position: relative;
      overflow: hidden;
      padding: 90px 0 80px;
    }

    .elv-curated-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .elv-curated-bg-fallback {
      position: absolute;
      inset: 0;
      background: linear-gradient(175deg, #b8c8d8 0%, #a8bece 50%, #98b4c4 100%);
      z-index: 0;
    }

    .elv-curated .container {
      position: relative;
      z-index: 2;
    }

    .elv-curated-label {
      font-family: var(--ff-ui);
      font-size: 18px;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: var(--navy-mid);
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .elv-curated-body {
      font-family: var(--ff-ui-med);
      font-size: 15px;
      font-weight: 500;
      line-height: 1.7;
      color: var(--navy-mid);
      max-width: 560px;
      margin-bottom: 22px;
    }

    .elv-curated-cta {
      font-family: var(--ff-ui-med);
      font-size: 15px;
      font-weight: 500;
      color: var(--navy-mid);
      line-height: 1.6;
    }

    .elv-curated-cta a {
      font-weight: 500;
      text-decoration: underline;
      color: var(--navy-mid);
      transition: opacity 0.25s;
    }

    .elv-curated-cta a:hover { opacity: 0.6; }

    /* ── SECTION 4: BOTTOM LINKS ── */
    .elv-bottom-links {
      position: relative;
      overflow: hidden;
      padding: 50px 0 60px;
    }

    .elv-bottom-links-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .elv-bottom-links-bg-fallback {
      position: absolute;
      inset: 0;
      background: linear-gradient(175deg, #b8c8d8 0%, #a8bece 100%);
      z-index: 0;
    }

    .elv-bottom-links .container {
      position: relative;
      z-index: 2;
    }

    .elv-links-divider {
      width: 100%;
      height: 1px;
      background: rgba(1, 57, 94, 0.2);
      margin-bottom: 36px;
    }

    .elv-links-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .elv-nav-link {
text-decoration: none;
color: var(--navy-mid);
text-transform: uppercase;
    border-bottom: 1px solid var(--navy-mid);
    padding-bottom: 6px;
    font-family: var(--ff-ui-sb);
      transition: opacity 0.25s;
    }

    .elv-nav-link:hover {
      opacity: 0.55;
      color: var(--navy-mid);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 992px) {
      .elv-hero-content {
        max-width: 320px;
        right: 4%;
        bottom: 10%;
      }
      .elv-hero-lines { width: 45%; }
    }

    @media (max-width: 768px) {
      .elv-hero-content {
        position: relative;
        left: 50%;
        bottom: auto;
        right: auto;
        max-width: 100%;
        padding: 40px 24px 50px;
        margin-top: auto;
        opacity: 0;
        animation: fadeUp 1s var(--ease-out) 1.5s forwards;
      }

      .elv-hero {
        min-height: 100svh;
        justify-content: flex-end;
      }

      .elv-hero-lines { width: 55%; }

      .elv-priority-row {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .elv-priority-item--right,
      .elv-priority-item--left {
        padding: 24px 0;
        text-align: left;
      }

      .elv-priority-empty { display: none; }

      .elv-section-label { font-size: 28px; }

      .elv-priority-item p { font-size: 18px; }

      .elv-back { left: 20px; top: 24px; }
    }

    @media (max-width: 480px) {
      .elv-hero-intro { font-size: 20px; }
      /* .elv-curated-body { font-size: 14px; } */
      .elv-links-row { flex-direction: column; gap: 20px; align-items: flex-start; }
    }

      /* ═══════════════════════════════════════════════
       HORIZON PAGE — LOCAL STYLES
    ═══════════════════════════════════════════════ */

    /* ── SECTION 1: HERO ── */
   .hrz-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* BG reveals left → right */
.hrz-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  animation: bgRevealLR 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

@keyframes bgRevealLR {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0% 0 0);
  }
}

/* Fallback */
.hrz-hero-bg-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #c8d4de 0%, #b4c4d2 40%, #9eb4c8 100%);
  z-index: 0;
}

/* Horizontal wave lines image */
.hrz-hero-lines {
  position: absolute;
  left: 0;
  top: 25%;
  width: 100%;
  height: 55%;
  object-fit: cover;
  object-position: center top;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: screen;
  animation: linesRevealLR 1s cubic-bezier(0.16, 1, 0.3, 1) 1.3s forwards;
}

@keyframes linesRevealLR {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Back link */
.hrz-back {
  position: absolute;
  top: 36px;
  left: 40px;
  z-index: 10;
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--light-navy);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.8s forwards;
  text-decoration: none;
}

.hrz-back:hover {
  opacity: 0.65;
  color: var(--light-navy);
}

/* Hero content */
.hrz-hero-content {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 100%;
  max-width: 50%;
  text-align: center;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.6s forwards;
}

/* ========================= */
/* NEW HEADING ANIMATION */
/* ========================= */

.hrz-hero-heading {
  font-size: 60px;
  font-weight: 200;
  text-transform: uppercase;
  font-family: var(--ff-oof);
    letter-spacing: 20%;
  margin-bottom: 16px;
  color: var(--light-navy);
  opacity: 0;
  transform: translateY(20px);
  animation: headingSequence 4s ease forwards;
}

@keyframes headingSequence {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  20% {
    opacity: 1;
    transform: translateY(0);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(-20px);
  }
}

/* ========================= */
/* PARAGRAPH ANIMATION */
/* ========================= */

.hrz-hero-intro {
  color: var(--light-navy);
  font-family: var(--ff-display);
  opacity: 0;
  transform: translateY(20px);
  animation: textReveal 1s ease forwards;
  animation-delay: 2s; /* starts after heading fades */
}

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

/* Existing fadeUp (if not already defined) */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px) translateX(-50%);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
  }
}


    .hrz-hero-intro strong {
      font-weight: 700;
    }

   .hrz-priorities {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hrz-priorities-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hrz-priorities-bg-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, #3a4d62 0%, #2a3d52 35%, #1e3044 65%, #162840 100%);
  z-index: 0;
}

.hrz-priorities .container {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  padding-bottom: 90px;
}

/* Header label block */
.hrz-approach-header {
  margin-bottom: 40px;
}

.hrz-approach-the,
.hrz-approach-sub {
  color: #F5F0EA;
  font-family: var(--ff-ui-light);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

.hrz-approach-title {
  color: #B0C9E5;
  font-family: var(--ff-oof);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 6px 0;
  line-height: 1.1;
}

/* Horizontal divider */
.hrz-approach-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  margin-bottom: 60px;
}

/* Three-column items row */
.hrz-approach-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.hrz-approach-item {
  padding-right: 48px;
}

.hrz-approach-item:last-child {
  padding-right: 0;
}

.hrz-approach-item p {
  color: #F5F0EA;
  font-family: var(--ff-ui);
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
}

    /* ── SECTION 3: CURATED FOR ── */
    .hrz-curated {
      position: relative;
      overflow: hidden;
      padding: 90px 0 80px;
    }

    .hrz-curated-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .hrz-curated-bg-fallback {
      position: absolute;
      inset: 0;
      background: linear-gradient(175deg, #b8c8d8 0%, #a8bece 50%, #98b4c4 100%);
      z-index: 0;
    }

    .hrz-curated .container {
      position: relative;
      z-index: 2;
    }

    .hrz-curated-label {
      font-family: var(--ff-ui);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.22em;
      color: var(--light-navy);
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .hrz-curated-body {
      font-family: var(--ff-ui);
      font-size: 15px;
      font-weight: 500;
      line-height: 1.7;
      color: var(--light-navy);
      max-width: 520px;
      margin-bottom: 22px;
    }

    .hrz-curated-cta {
      font-family: var(--ff-ui);
      font-size: 14px;
      font-weight: 400;
      color: var(--light-navy);
      line-height: 1.6;
    }

    .hrz-curated-cta a {
      font-weight: 600;
      text-decoration: underline;
      color: var(--light-navy);
      transition: opacity 0.25s;
    }
    .hrz-curated-cta a:hover { opacity: 0.6; }

    /* ── SECTION 4: BOTTOM LINKS ── */
    .hrz-bottom-links {
      position: relative;
      overflow: hidden;
      padding: 50px 0 60px;
    }

    .hrz-bottom-links-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .hrz-bottom-links-bg-fallback {
      position: absolute;
      inset: 0;
      background: linear-gradient(175deg, #b8c8d8 0%, #a8bece 100%);
      z-index: 0;
    }

    .hrz-bottom-links .container {
      position: relative;
      z-index: 2;
    }

    .hrz-links-divider {
      width: 100%;
      height: 1px;
      background: rgba(1, 57, 94, 0.2);
      margin-bottom: 36px;
    }

    .hrz-links-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .hrz-nav-link {
      font-family: var(--ff-ui);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--light-navy);
      text-decoration: underline;
      transition: opacity 0.25s;
    }
    .hrz-nav-link:hover { opacity: 0.55; color: var(--light-navy); }

    /* ── RESPONSIVE ── */
    @media (max-width: 992px) {
      .hrz-hero-content { max-width: 360px; }
      .hrz-hero-lines { height: 50%; }
    }

    @media (max-width: 768px) {
      .hrz-priorities {
        min-height: auto;
      }
      .hrz-hero-content {
        position: relative;
        bottom: 10%;
        left: auto;
        transform: none;
        max-width: 100%;
        text-align: left;
        padding: 40px 24px 50px;
        margin-top: auto;
        opacity: 0;
        animation: fadeUpMobile 1s var(--ease-out) 1.6s forwards;
      }

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

      .hrz-hero {
        min-height: 100svh;
        justify-content: flex-end;
      }

      .hrz-hero-lines { height: 45%; }

      .hrz-priority-row {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .hrz-priority-item--left,
      .hrz-priority-item--right {
        padding: 24px 0;
        text-align: left;
      }

      .hrz-priority-row--center {
        justify-content: flex-start;
      }

      .hrz-priority-item--center {
        text-align: left;
        padding: 24px 0;
      }

      .hrz-priority-empty { display: none; }

      .hrz-section-label { font-size: 28px; }
      .hrz-priority-item p { font-size: 18px; }
      .hrz-back { left: 20px; top: 24px; }
    }

    @media (max-width: 480px) {
      .hrz-hero-intro { font-size: 20px; }
      .hrz-curated-body { font-size: 14px; }
      .hrz-links-row { flex-direction: column; gap: 20px; align-items: flex-start; }
    }

      /* ── SECTION 1: HERO — exactly one screen ── */
    .ct-hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
    }

    .ct-hero-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0;
      animation: ctBgFade 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
    }

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

    .ct-hero-bg-fallback {
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, #8ba4be 0%, #7a96b2 30%, #6a8aa8 60%, #7a9ab4 100%);
      z-index: 0;
    }

    .ct-hero-lines {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: left top;
      z-index: 2;
      pointer-events: none;
      opacity: 0;
      mix-blend-mode: screen;
      animation: ctLinesIn 1s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
    }

    @keyframes ctLinesIn {
      from { opacity: 0; transform: translateX(-30px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    /* "Designed For" — fills hero, content right-aligned & vertically centered */
    .ct-hero-content {
      position: absolute;
      inset: 0;
      z-index: 3;
      display: flex;
      align-items: flex-end;
      justify-content: flex-end;
      opacity: 0;
      animation: ctContentUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.6s forwards;
      bottom: 20%;
    }

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

    .ct-designed {
      max-width: 700px;
      margin-left: auto;
    }

    .ct-designed .ct-designed-title {
      font-family: var(--ff-display);
      font-size: 36px;
      font-weight: 400;
      letter-spacing: 0.1em;
      color: var(--navy-mid);
      text-transform: uppercase;
      margin-bottom: 30px;
    }

    .ct-designed-label {
      font-family: var(--ff-ui-sb);
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 0.10em;
      color: var(--navy-mid);
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .ct-designed-list {
      list-style: none;
      padding: 0;
      margin: 0 0 22px;
    }

    .ct-designed-list li {
      font-family: var(--ff-ui-sb);
      font-size: 15px;
      font-weight: 400;
      color: var(--navy-mid);
      line-height: 1.65;
      padding: 3px 0 3px 16px;
      position: relative;
    }

    .ct-designed-list li::before {
      content: "•";
      position: absolute;
      left: 0;
      color: var(--light-navy);
    }

    .ct-designed-note {
      font-family: var(--ff-ui-sb);
      font-size: 15px;
      font-weight: 400;
      color: var(--navy-mid);
      line-height: 1.65;
    }

    /* ── SECTION 2: PRICING + OVERSIGHT ── */
    .ct-info {
      position: relative;
      overflow: hidden;
      padding: 90px 0;
    }

    .ct-info-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .ct-info-bg-fallback {
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, #8ba4be 0%, #7a96b2 40%, #6a8aa8 100%);
      z-index: 0;
    }

    .ct-info .container {
      position: relative;
      z-index: 2;
    }

    .ct-info-divider {
      width: 100%;
      height: 1px;
      background: rgba(1, 57, 94, 0.18);
      margin-bottom: 60px;
    }

    .ct-info-grid {
      display: row;
      /* grid-template-columns: 1fr 1fr;
      gap: 60px; */
    }

    .ct-info-label {
      font-family: var(--ff-ui-sb);
      color: var(--light-navy);
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .ct-info-body {
      font-family: var(--ff-ui);
      font-size: 15px;
      font-weight: 400;
      color: var(--light-navy);
      line-height: 1.75;
    }

    .ct-info-body a {
      font-weight: 400;
      text-decoration: underline;
      color: var(--light-navy);
      transition: opacity 0.25s;
    }
    .ct-info-body a:hover { opacity: 0.6; }

    /* ── SECTION 3: GET IN TOUCH ── */
    .ct-contact {
      position: relative;
      overflow: hidden;
      padding: 80px 0 90px;
    }

    .ct-contact-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .ct-contact-bg-fallback {
      position: absolute;
      inset: 0;
      background: linear-gradient(170deg, #1e3248 0%, #182840 50%, #0e1c2e 100%);
      z-index: 0;
    }

    .ct-contact .container {
      position: relative;
      z-index: 2;
    }

    .ct-contact-label {
      font-family: var(--ff-display);
      font-size: 30px;
      font-weight: 500;
      letter-spacing: 0.02em;
      color: var(--light-navy);
      text-transform: uppercase;
      margin-bottom: 32px;
    }

    .ct-card {
      display: grid;
      grid-template-columns: 1fr 1.8fr;
      overflow: hidden;
      /* border: 1px solid rgba(255,255,255,0.12); */
      background-color: #9AAECA;
      border-radius: 10px;
    }

    .ct-card-left {
  position: relative;
  margin: 10px;
  padding: 20px;
  overflow: hidden;

  background: 
    url('./images/contact/form-left.png') center / cover no-repeat;
} 

    .ct-card-left-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

    .ct-card-left-fallback {
      position: absolute;
      inset: 0;
      background: linear-gradient(145deg, #2a4060 0%, #1e3248 60%, #162840 100%);
      z-index: 0;
    }

    .ct-card-left > * { position: relative; z-index: 2; }

    .ct-card-left-title {
      font-family: var(--ff-ui-med);
      font-size: 22px;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 15%;
      letter-spacing: 0.02em;
    }

    .ct-detail-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 20px;
    }

    .ct-detail-icon {
      width: 14px;
      flex-shrink: 0;
      margin-top: 2px;
      opacity: 1;
    }

    .ct-detail-text {
      font-family: var(--ff-ui);
      font-size: 15px;
      font-weight: 400;
      color: rgba(255,255,255,0.82);
      line-height: 1.6;
    }

    .ct-detail-text a {
      color: rgba(255,255,255,0.82);
      text-decoration: none;
      transition: opacity 0.2s;
    }
    .ct-detail-text a:hover { opacity: 0.6; }

    .ct-card-right {
      background: #9AAECA;
      /* box-shadow: 0 8px 32px rgba(0,0,0,0.25);
      backdrop-filter: blur(8px); */
      /* -webkit-backdrop-filter: blur(8px); */
      padding: 40px 44px;
    }

    .ct-form-title {
      font-family: var(--ff-ui-med);
      font-size: 22px;
      font-weight: 500;
      color: var(--light-navy);
      margin-bottom: 8px;
    }

    .ct-form-subtitle {
      font-family: var(--ff-ui-sb);
      font-size: 15px;
      font-weight: 400;
      color: var(--light-navy);
      line-height: 1.6;
      margin-bottom: 10%;
      max-width: 580px;
    }

    .ct-form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px;
    }

    .ct-field {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .ct-field label {
      font-family: var(--ff-ui-sb);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.14em;
      color: var(--light-navy);
      text-transform: uppercase;
    }

    .ct-field input {
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--light-navy);
      padding: 8px 0;
      font-family: var(--ff-ui);
      font-size: 13px;
      font-weight: 300;
      color: var(--light-navy);
      outline: none;
      transition: border-color 0.25s;
      width: 100%;
    }

    .ct-field input::placeholder { color: var(--light-navy); }
    .ct-field input:focus { border-bottom-color: var(--teal-light); }

    .ct-mcq-label {
      font-family: var(--ff-ui-sb);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.14em;
      color: var(--light-navy);
      text-transform: uppercase;
      margin-bottom: 12px;
      margin-top: 8px;
    }

    .ct-radio-group {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 36px;
    }

    .ct-radio-item {
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
    }

    .ct-radio-item input[type="radio"] {
      appearance: none;
      -webkit-appearance: none;
      width: 14px;
      height: 14px;
      border: 1px solid rgba(255,255,255,0.4);
      border-radius: 50%;
      flex-shrink: 0;
      cursor: pointer;
      position: relative;
      transition: border-color 0.2s;
    }

    .ct-radio-item input[type="radio"]:checked {
      border-color: var(--light-navy);
      background: var(--teal-light);
    }

    .ct-radio-item input[type="radio"]:checked::after {
      content: '';
      position: absolute;
      inset: 3px;
      background: var(--light-navy);
      border-radius: 50%;
    }

    .ct-radio-item span {
      font-family: var(--ff-ui-sb);
      font-size: 13px;
      font-weight: 400;
      color: var(--light-navy);
    }

    .ct-submit-wrap {
      display: flex;
      justify-content: flex-end;
    }

    .ct-btn-submit {
      font-family: var(--ff-ui);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--white);
      background: var(--light-navy);
      border: none;
      padding: 13px 32px;
      cursor: pointer;
      transition: background 0.3s, transform 0.2s;
    }

    .ct-btn-submit:hover {
      background: var(--teal-light);
      transform: translateY(-1px);
    }

    .ct-success {
      display: none;
      font-family: var(--ff-ui);
      font-size: 13px;
      color: var(--light-navy);
      text-align: right;
      margin-top: 12px;
      letter-spacing: 0.06em;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 992px) {
      .ct-designed { max-width: 340px; }
      .ct-card { grid-template-columns: 1fr 1.4fr; }
    }

    @media (max-width: 768px) {
      .ct-hero-lines { width: 100%; height: 100%; }

      .ct-hero-content {
        align-items: flex-end;
        justify-content: flex-start;
        padding-bottom: 50px;
      }
      .ct-designed { max-width: 100%; }

      .ct-info-grid { grid-template-columns: 1fr; gap: 36px; }

      .ct-card { grid-template-columns: 1fr; }
      .ct-card-right { padding: 32px 24px; }
      .ct-card-left { padding: 32px 24px; }
      .ct-form-row { grid-template-columns: 1fr; }
    }

    @media (max-width: 480px) {
      .ct-form-title { font-size: 18px; }
      .ct-radio-group { gap: 14px; }
      .ct-contact { padding: 60px 0 70px; }
      .ct-info { padding: 60px 0; }
    }

    /* Base hidden state */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* Visible state */
.animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* Variations */
.fade-in {
  transform: translateY(20px);
}

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

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

/* When visible */
.slide-left.show,
.slide-right.show,
.fade-in.show {
  transform: translate(0);
}


/* Loader wrapper */
#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Spinner */
.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #ccc;
  border-top: 4px solid #1f3c88;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Spin animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.animate-delay-1 { transition-delay: 0.2s; }
.animate-delay-2 { transition-delay: 0.4s; }
.animate-delay-3 { transition-delay: 0.6s; }

/* HERO BASE */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* BACKGROUND IMAGE */
.hero__bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;

  animation: bgZoom 8s ease-out forwards;
}

/* WAVES BASE */
.hero::after,
.hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: url("./images/home/home-waves.png") no-repeat bottom left;
  background-size: cover;

  z-index: 2;
}

/* FRONT WAVE */
.hero::after {
  opacity: 0.9;
  animation: waveFadeUp 1.8s ease-out forwards;
}

/* BACK WAVE (subtle depth) */
.hero::before {
  content: none;
}

/* CONTENT */
.c-hero__body {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  margin-bottom: 12%;
}

/* HEADING */
.c-hero__heading {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.3;
}

/* BUTTONS */
.c-hero__ctas {
  margin-top: 30px;
  display: flex;
  gap: 30px;
  justify-content: center;
}

/* BUTTON STYLE UPGRADE */
.c-btn {
  padding: 12px 22px;
  font-size: 13px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.c-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* BACKGROUND ZOOM */
@keyframes bgZoom {
  from {
    transform: scale(1.05);
    opacity: 1;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes waveFadeUp {
  from {
    transform: translateY(60px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.about-links-inner a {
    text-decoration: none;
    border-bottom: 1px solid white;
    padding-bottom: 6px; /* controls the space */
    font-family: var(--ff-ui-sb);
}
.margin-bottom-15 {
    margin-bottom: 6%
}
.margin-bottom-20 {
  margin-bottom: 80px;
}

.team-card img {
  transition: transform 0.4s ease;
}

.team-card:hover img {
  transform: scale(1.09);
}
@media (max-width: 768px) {

  .c-onav__item {
    position: relative;
  }

  .c-onav__sub {
    position: relative;
    z-index: 5;

    max-height: 0;
    overflow: hidden;

    opacity: 0;
    pointer-events: none;

    transition: all 0.3s ease;
  }

  .c-onav__item.is-open .c-onav__sub {
    max-height: 300px;
    opacity: 1;

    pointer-events: auto;
  }

  /* IMPORTANT */
  .c-onav__sub a {
    position: relative;
    z-index: 10;

    display: block;
  }
  .about-right {
    margin-top: 25vh;
    margin-left: 0;
  }

  .team-divider{
    margin: 20px auto 20px;
    width: 80%;
  }
  .team-section{
    padding: 30px 0;
  }
  .team-title{
    margin-bottom: 30px;
  }
  .section-divider {
    margin: 0 auto 30px;
  }
  .about-hero{
    padding: 0;
  }
  .off-hero-heading{
    padding: 0;
  }
  .off-hero-desc{
    margin-top: 10px;
    text-align: center;
    font-size: 15px;
  }
  .off-pillar-text{
    font-size: 12px;
  }
  .off-clarity-body{
    max-width: 100%;
  }
  .elv-approach-grid{
    grid-template-columns: 1fr 10px 1fr;
  }
  .elv-approach-label{
    padding: 0;
  }
  .elv-approach-items{
    padding: 0;
  }
  .hrz-approach-item{
    padding-right: 10px;
  }

}

/* ═══════════════════════════════════════════════
   TEAM MODAL — RESPONSIVE LAYOUT ONLY
   (TEXT SIZES UNTOUCHED)
═══════════════════════════════════════════════ */

.team-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: #0e1c2e;
  z-index: 2000;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;

  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.team-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.team-modal-inner {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

/* ═════════ LEFT SIDE ═════════ */
.team-modal-left {
  width: 40%;
  background: url('./images/about/about-modal-left.png') center center / cover no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

  padding: 80px 5%;
  position: relative;
}

.team-modal-left img {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 2;
  display: block;
}

.team-modal-left .team-content {
  width: 100%;
  max-width: 320px;
}

/* ═════════ RIGHT SIDE ═════════ */
.team-modal-right {
  width: 60%;
  background: url('./images/about/about-modal-right.png') center center / cover no-repeat;

  padding: 100px 7%;
  display: flex;
  flex-direction: column;
  justify-content: center;

  position: relative;
}

.team-modal-content {
  width: 100%;
}

.team-modal-content p {
  max-width: 720px;
}

/* ═════════ TOP NAV ═════════ */
.team-modal-nav {
  position: fixed;
  top: 35px;
  right: 40px;
  z-index: 9999;
}

.modal-close {
  font-size: 12px;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.modal-close:hover {
  opacity: 0.7;
}

/* ═════════ TEAM CARD ═════════ */
.team-card {
  position: relative;
  width: 300px;
  margin: 0 auto;
  overflow: hidden;
  cursor: pointer;
}

.team-card img {
  width: 100%;
  display: block;
  filter: grayscale(100%);
}

/* ═══════════════════════════════════════════════
   LAPTOP
═══════════════════════════════════════════════ */
@media (max-width: 1200px) {

  .team-modal-left {
    padding: 70px 5%;
  }

  .team-modal-right {
    padding: 80px 5%;
  }

  .team-modal-left img {
    max-width: 280px;
  }
}

/* ═══════════════════════════════════════════════
   TABLET
═══════════════════════════════════════════════ */
@media (max-width: 991px) {

  .team-modal-inner {
    flex-direction: column;
    min-height: auto;
  }

  .team-modal-left,
  .team-modal-right {
    width: 100%;
  }

  .team-modal-left {
    padding: 120px 40px 50px;
    align-items: center;
    text-align: center;
  }

  .team-modal-left .team-content {
    max-width: 100%;
    text-align: center;
  }

  .team-modal-left img {
    max-width: 260px;
  }

  .team-modal-right {
    padding: 40px 40px 80px;
    justify-content: flex-start;
  }

  .team-modal-content p {
    max-width: 100%;
  }

  .team-modal-nav {
    top: 35px;
    right: 35px;
  }
}

/* ═══════════════════════════════════════════════
   MOBILE
═══════════════════════════════════════════════ */
@media (max-width: 767px) {

  .team-modal-left {
    padding: 100px 24px 40px;
  }

  .team-modal-right {
    padding: 30px 24px 60px;
  }

  .team-modal-left img {
    max-width: 220px;
  }

  .team-modal-nav {
    top: 20px;
    right: 20px;
  }
}

/* ═══════════════════════════════════════════════
   SMALL MOBILE
═══════════════════════════════════════════════ */
@media (max-width: 480px) {

  .team-modal-left {
    padding: 90px 20px 35px;
  }

  .team-modal-right {
    padding: 20px 20px 50px;
  }

  .team-modal-left img {
    max-width: 190px;
  }
}

/* ═════════════ LOADER ═════════════ */
#loader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: var(--navy);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease;
}

#loader img {
  width: 180px;
  max-width: 75vw;
  animation: loaderAnim 2s ease-in-out infinite;
  filter: brightness(0) invert(1);
}

@keyframes loaderAnim {
  0% {
    opacity: 0.5;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0.5;
    transform: scale(0.96);
  }
}