/* ═══════════════════════════════════════════════════════════
   NEXT STAGE SPORTS ADVISORY — STYLES
   Brand Palette: Navy #001A4D · Orange #E8621A · Yellow #F5C518
   Cyan #00AEEF · White #FFFFFF · Dark #0A0E1A
   Fonts: Bebas Neue (display) · Barlow Condensed (sub-display) · Barlow (body)
═══════════════════════════════════════════════════════════ */

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

:root {
  /* Brand Colors */
  --navy:        #001A4D;
  --navy-mid:    #002266;
  --navy-light:  #0A2A6E;
  --orange:      #E8621A;
  --orange-light:#F07A3A;
  --yellow:      #F5C518;
  --cyan:        #00AEEF;
  --white:       #FFFFFF;
  --off-white:   #F4F2EE;
  --dark:        #0A0E1A;
  --dark-mid:    #111827;
  --gray-light:  #E8E8E8;
  --gray-mid:    #9CA3AF;
  --gray-dark:   #4B5563;

  /* Typography */
  --font-display:  'Bebas Neue', sans-serif;
  --font-sub:      'Barlow Condensed', sans-serif;
  --font-body:     'Barlow', sans-serif;

  /* Spacing */
  --section-pad:   clamp(5rem, 10vw, 9rem);
  --container:     1280px;
  --gutter:        clamp(1.25rem, 4vw, 2.5rem);

  /* Transitions */
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── CONTAINER ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ─── SECTION HEADERS ──────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-label {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.section-label--light { color: var(--yellow); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: 1rem;
}

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

.section-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--gray-dark);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-sub--light { color: rgba(255,255,255,0.7); }

/* ─── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sub);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-100%);
  transition: transform 0.3s var(--ease);
}

.btn:hover::before { transform: translateX(0); }

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232, 98, 26, 0.35);
}

.btn--primary:hover {
  background: var(--orange-light);
  box-shadow: 0 6px 28px rgba(232, 98, 26, 0.5);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn--full { width: 100%; }

/* ─── NAVIGATION ───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background 0.35s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.nav.scrolled {
  background: rgba(0, 26, 77, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.nav__link {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.9rem;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.nav__link:hover { color: var(--white); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__link--cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.55rem 1.2rem;
  margin-left: 0.5rem;
}

.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: var(--orange-light); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

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

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

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 26, 77, 0.88) 0%,
    rgba(0, 26, 77, 0.72) 40%,
    rgba(10, 14, 26, 0.85) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--section-pad) + 4rem) var(--gutter) var(--section-pad);
  width: 100%;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s var(--ease-out) 0.2s both;
}

.hero__eyebrow-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.hero__eyebrow-text {
  font-family: var(--font-sub);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 1.75rem;
  max-width: 900px;
  animation: fadeUp 0.9s var(--ease-out) 0.35s both;
}

.hero__headline em {
  font-style: normal;
  color: var(--orange);
  position: relative;
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.9s var(--ease-out) 0.5s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeUp 0.9s var(--ease-out) 0.65s both;
}

.hero__tagline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  font-family: var(--font-sub);
  font-size: 1.17rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  animation: fadeUp 0.9s var(--ease-out) 0.8s both;
}

.hero__tagline-sep { color: var(--orange); opacity: 0.6; }

.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
  animation: fadeIn 1s var(--ease-out) 1.2s both;
}

.hero__scroll-text {
  font-family: var(--font-sub);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ─── MARQUEE ───────────────────────────────────────────── */
.marquee {
  background: var(--orange);
  overflow: hidden;
  padding: 0.85rem 0;
  position: relative;
  z-index: 2;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee__track span {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}

.marquee__dot { color: rgba(255,255,255,0.5) !important; font-size: 0.5rem !important; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── DIFFERENCE ────────────────────────────────────────── */
.difference {
  padding: var(--section-pad) 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.difference::before {
  content: 'NEXT STAGE';
  position: absolute;
  top: -2rem;
  right: -2rem;
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 14rem);
  color: rgba(0, 26, 77, 0.04);
  letter-spacing: 0.05em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.difference__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.diff-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-top: 3px solid var(--navy);
  padding: 2.25rem 2rem;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-top-color 0.3s;
  opacity: 0;
  transform: translateY(30px);
}

.diff-card.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), box-shadow 0.3s var(--ease), border-top-color 0.3s;
}

.diff-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 26, 77, 0.12);
  border-top-color: var(--orange);
}

.diff-card__icon {
  width: 48px;
  height: 48px;
  color: var(--navy);
  margin-bottom: 1.25rem;
  transition: color 0.3s;
}

.diff-card:hover .diff-card__icon { color: var(--orange); }

.diff-card__title {
  font-family: var(--font-sub);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.diff-card__body {
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.75;
}

.difference__statement {
  opacity: 0;
  transform: translateY(20px);
}

.difference__statement.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s var(--ease-out) 0.2s, transform 0.7s var(--ease-out) 0.2s;
}

.diff-quote {
  position: relative;
  text-align: center;
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.7;
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 3rem;
  background: var(--white);
  border-left: 4px solid var(--orange);
  border-radius: 2px;
  box-shadow: 0 4px 24px rgba(0,26,77,0.07);
}

.diff-quote__mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--orange);
  opacity: 0.3;
  line-height: 0;
  vertical-align: -1rem;
}

/* ─── SERVICES ──────────────────────────────────────────── */
.services {
  padding: var(--section-pad) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.services__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(12rem, 30vw, 28rem);
  color: rgba(255,255,255,0.025);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}

.service-card {
  background: var(--navy);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s var(--ease);
  opacity: 0;
  transform: translateY(20px);
}

.service-card.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), background 0.3s var(--ease);
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-card:hover { background: rgba(255,255,255,0.04); }
.service-card:hover::before { transform: scaleX(1); }

.service-card__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(255,255,255,0.08);
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.service-card:hover .service-card__number { color: rgba(232, 98, 26, 0.2); }

.service-card__title {
  font-family: var(--font-sub);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-card__body {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

/* ─── IDEAL FOR ─────────────────────────────────────────── */
.ideal {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.ideal__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.ideal__content { opacity: 0; transform: translateX(-30px); }
.ideal__visual  { opacity: 0; transform: translateX(30px); }

.ideal__content.in-view {
  opacity: 1; transform: translateX(0);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.ideal__visual.in-view {
  opacity: 1; transform: translateX(0);
  transition: opacity 0.7s var(--ease-out) 0.15s, transform 0.7s var(--ease-out) 0.15s;
}

.ideal__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin: 0.5rem 0 1.5rem;
}

.ideal__body {
  font-size: 1rem;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.ideal__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.ideal__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--dark-mid);
  line-height: 1.5;
}

.ideal__list li svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 1px;
}

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

.ideal__stat {
  background: var(--navy);
  padding: 2rem 1.5rem;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease);
}

.ideal__stat::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
}

.ideal__stat:hover { transform: translateY(-4px); }

.ideal__stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  line-height: 1;
}

.ideal__stat-label {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ─── LEADERSHIP ────────────────────────────────────────── */
.leadership {
  padding: var(--section-pad) 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.leadership::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(0,26,77,0.04) 100%);
  pointer-events: none;
}

.leadership__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.leadership__portrait { opacity: 0; transform: translateX(-30px); }
.leadership__bio      { opacity: 0; transform: translateX(30px); }

.leadership__portrait.in-view {
  opacity: 1; transform: translateX(0);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.leadership__bio.in-view {
  opacity: 1; transform: translateX(0);
  transition: opacity 0.7s var(--ease-out) 0.15s, transform 0.7s var(--ease-out) 0.15s;
}

.leadership__portrait-frame {
  position: relative;
  margin-bottom: 2rem;
}

.leadership__portrait-accent {
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid var(--orange);
  border-radius: 2px;
  z-index: 0;
}

.leadership__portrait-img-wrap {
  position: relative;
  z-index: 1;
  background: var(--navy);
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 3/4;
  padding: 0;
}

.leadership__portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.leadership__contact-card {
  background: var(--navy);
  padding: 1.75rem;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.leadership__contact-name {
  font-family: var(--font-sub);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
}

.leadership__contact-title {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.leadership__contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}

.leadership__contact-link svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  flex-shrink: 0;
}

.leadership__contact-link:hover { color: var(--white); }

.leadership__bio-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.leadership__bio-headline em {
  font-style: normal;
  color: var(--orange);
}

.leadership__bio-text {
  font-size: 0.97rem;
  color: var(--gray-dark);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.leadership__credentials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
  padding: 2rem;
  background: var(--white);
  border-left: 3px solid var(--orange);
  border-radius: 2px;
}

.leadership__cred {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.leadership__cred-role {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

.leadership__cred-desc {
  font-size: 0.88rem;
  color: var(--gray-dark);
}

.leadership__disclaimer {
  font-size: 0.78rem;
  color: var(--gray-mid);
  font-style: italic;
  line-height: 1.6;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-light);
}

/* ─── CONTACT ───────────────────────────────────────────── */
.contact {
  padding: var(--section-pad) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.contact__bg-accent {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 98, 26, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact__left  { opacity: 0; transform: translateX(-30px); }
.contact__right { opacity: 0; transform: translateX(30px); }

.contact__left.in-view {
  opacity: 1; transform: translateX(0);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.contact__right.in-view {
  opacity: 1; transform: translateX(0);
  transition: opacity 0.7s var(--ease-out) 0.15s, transform 0.7s var(--ease-out) 0.15s;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1;
  color: var(--white);
  margin: 0.5rem 0 1.5rem;
}

.contact__title em {
  font-style: normal;
  color: var(--orange);
}

.contact__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact__direct {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__direct-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.contact__direct-link:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(232, 98, 26, 0.4);
  transform: translateX(4px);
}

.contact__direct-icon {
  width: 44px;
  height: 44px;
  background: rgba(232, 98, 26, 0.15);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__direct-icon svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
}

.contact__direct-link > div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact__direct-label {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.contact__direct-value {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
}

/* Accessibility utility — hides honeypot from sighted users */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── CONTACT FORM ──────────────────────────────────────── */
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  padding: 2.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-label {
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.form-label span { color: var(--orange); }

.form-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}

.form-input::placeholder { color: rgba(255,255,255,0.25); }

.form-input:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px rgba(232, 98, 26, 0.15);
}

.form-input.error { border-color: #ef4444; }

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 18px;
  padding-right: 2.5rem;
}

.form-select option { background: var(--dark-mid); color: var(--white); }

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

.form-error {
  font-size: 0.78rem;
  color: #ef4444;
  min-height: 1rem;
}

.form-success {
  display: none;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 2px;
  margin-top: 1rem;
}

.form-success.visible { display: flex; }

.form-success svg {
  width: 24px;
  height: 24px;
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-success strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.form-success p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.btn__loading { display: none; }
.btn.loading .btn__text { display: none; }
.btn.loading .btn__loading { display: inline; }

/* ─── FOOTER ────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 0 2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}

.footer__logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  /* No filter — logo has its own colors */
  margin-bottom: 1rem;
}

.footer__tagline {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__nav a {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer__nav a:hover { color: var(--orange); }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__contact p {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.footer__contact a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer__contact a:hover { color: var(--orange); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.footer__legal {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  font-style: italic;
  max-width: 600px;
  text-align: right;
  line-height: 1.5;
}

/* ─── ANIMATIONS ────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

/* Stagger delays for diff-cards */
.diff-card:nth-child(1) { transition-delay: 0s; }
.diff-card:nth-child(2) { transition-delay: 0.1s; }
.diff-card:nth-child(3) { transition-delay: 0.2s; }
.diff-card:nth-child(4) { transition-delay: 0.3s; }

/* Stagger delays for service-cards */
.service-card:nth-child(1) { transition-delay: 0s; }
.service-card:nth-child(2) { transition-delay: 0.08s; }
.service-card:nth-child(3) { transition-delay: 0.16s; }
.service-card:nth-child(4) { transition-delay: 0.24s; }
.service-card:nth-child(5) { transition-delay: 0.32s; }
.service-card:nth-child(6) { transition-delay: 0.40s; }

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .leadership__inner {
    grid-template-columns: 320px 1fr;
  }
}

@media (max-width: 900px) {
  .ideal__inner,
  .leadership__inner,
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .ideal__visual { order: -1; }

  .ideal__stat-stack {
    grid-template-columns: repeat(4, 1fr);
  }

  .leadership__portrait-frame { max-width: 360px; }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    z-index: 999;
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
  }

  .nav__links.open { transform: translateX(0); }

  .nav__link {
    font-size: 1rem;
    padding: 0.75rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav__link--cta {
    margin-left: 0;
    margin-top: 1rem;
    text-align: center;
    padding: 0.85rem 1.5rem;
  }

  .nav__hamburger { display: flex; z-index: 1000; }

  .form-row { grid-template-columns: 1fr; }

  .ideal__stat-stack { grid-template-columns: 1fr 1fr; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__disclaimer { text-align: left; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; text-align: center; }
  .contact-form { padding: 1.5rem; }
  .diff-quote { padding: 1.75rem 1.5rem; }
}

/* ─── MOBILE NAV OVERLAY ────────────────────────────────── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  backdrop-filter: blur(4px);
}

.nav-overlay.visible { display: block; }