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

:root {
  --bg: #f0ebe3;
  --text: #1e1a17;
  --text-mute: #7a6f65;
  --accent: #1e1a17;
  --loader-bg: #1e1a17;
  --loader-fg: #f0ebe3;
  --nav-bg: rgba(236, 230, 220, 0.82);
  --radius: 999px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Typography Scale */
  --title-size: clamp(40px, 5.5vw, 76px);
  --title-weight: 800;
  --title-lh: 1.05;
  --title-ls: -0.03em;

  --subtitle-size: clamp(14px, 1.2vw, 17px);
  --subtitle-weight: 400;
  --subtitle-lh: 1.6;
  --subtitle-ls: -0.01em;

  --eyebrow-size: 11px;
  --eyebrow-weight: 600;
  --eyebrow-ls: 0.15em;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════
   LOADING SCREEN
═══════════════════════════════════════════════════ */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--loader-bg);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 48px 52px;
  transition: opacity 0.5s var(--ease);
}

#loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

#loading-screen.gone {
  display: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

/* Big counter number */
.loader-counter {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}

#loader-number {
  font-family: var(--font);
  font-size: clamp(64px, 10vw, 140px);
  font-weight: 700;
  color: var(--loader-fg);
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  transition: none;
}

.loader-pct {
  font-family: var(--font);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  color: rgba(240, 235, 227, 0.45);
  letter-spacing: -0.02em;
}

/* Thin progress track */
.loader-track {
  width: 100%;
  height: 1.5px;
  background: rgba(240, 235, 227, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  width: 0%;
  background: var(--loader-fg);
  border-radius: 2px;
  transition: width 0.12s linear;
}

.loader-label {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 235, 227, 0.4);
}

/* ═══════════════════════════════════════════════════
   INTRO BAR OVERLAY
   Bars sit hidden; JS adds .go to fire the animation
═══════════════════════════════════════════════════ */
#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  gap: 0;
  overflow: hidden;
  pointer-events: none;
  /* Hidden until loading is done */
  visibility: hidden;
}

#intro-overlay.ready {
  visibility: visible;
}

.intro-bar {
  flex: 0 0 calc(100% / 7 + 1px);
  height: 100%;
  background: var(--loader-bg);
  transform: translateY(0%);
  will-change: transform;
  margin-left: -1px;
}

/* Bar wipe animation — only fires when #intro-overlay has .go class */
#intro-overlay.go .intro-bar:nth-child(1) {
  animation: barWipe 0.65s cubic-bezier(0.76, 0, 0.24, 1) 0.00s forwards;
}

#intro-overlay.go .intro-bar:nth-child(2) {
  animation: barWipe 0.65s cubic-bezier(0.76, 0, 0.24, 1) 0.08s forwards;
}

#intro-overlay.go .intro-bar:nth-child(3) {
  animation: barWipe 0.65s cubic-bezier(0.76, 0, 0.24, 1) 0.16s forwards;
}

#intro-overlay.go .intro-bar:nth-child(4) {
  animation: barWipe 0.65s cubic-bezier(0.76, 0, 0.24, 1) 0.24s forwards;
}

#intro-overlay.go .intro-bar:nth-child(5) {
  animation: barWipe 0.65s cubic-bezier(0.76, 0, 0.24, 1) 0.32s forwards;
}

#intro-overlay.go .intro-bar:nth-child(6) {
  animation: barWipe 0.65s cubic-bezier(0.76, 0, 0.24, 1) 0.40s forwards;
}

#intro-overlay.go .intro-bar:nth-child(7) {
  animation: barWipe 0.65s cubic-bezier(0.76, 0, 0.24, 1) 0.48s forwards;
}

@keyframes barWipe {
  0% {
    transform: translateY(0%);
  }

  100% {
    transform: translateY(-100%);
  }
}

/* ═══════════════════════════════════════════════════
   PAGE CONTENT — hidden until bars done
═══════════════════════════════════════════════════ */
#navbar,
#scroll-container,
#progress-indicator,
#mission-section,
#projects-section {
  opacity: 0;
  transition: opacity 0.55s var(--ease);
}

#navbar.visible,
#scroll-container.visible,
#progress-indicator.visible,
#mission-section.visible,
#projects-section.visible {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  z-index: 1000;
  width: auto;
  max-width: 620px;
  will-change: transform, opacity;
  transition: transform 0.45s var(--ease), opacity 0.55s var(--ease);
}

#navbar.hidden {
  transform: translateX(-50%) translateY(-130%);
  opacity: 0 !important;
  pointer-events: none;
}

.nav-inner {
  display: flex;
  align-items: center;
  background: var(--nav-bg);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  padding: 8px 12px 8px 14px;
  box-shadow: 0 4px 32px rgba(60, 50, 40, 0.10), 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  gap: 8px;
}

.nav-logo {
  display: flex;
  align-items: center;
  margin-right: 4px;
}

.nav-logo-img {
  height: 26px;
  width: auto;
  display: block;
  color: #1e1a17;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: background 0.22s var(--ease);
}

.nav-links a:hover {
  background: rgba(30, 26, 23, 0.07);
}

.nav-cta {
  text-decoration: none;
  background: var(--accent);
  color: #f0ebe3;
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 8px 20px;
  border-radius: var(--radius);
  margin-left: 6px;
  transition: background 0.22s var(--ease), transform 0.18s var(--ease), box-shadow 0.22s var(--ease);
  box-shadow: 0 2px 12px rgba(30, 26, 23, 0.18);
}

.nav-cta:hover {
  background: #352f2a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30, 26, 23, 0.25);
}

/* ═══════════════════════════════════════════════════
   SCROLL CONTAINER
═══════════════════════════════════════════════════ */
#scroll-container {
  position: relative;
  width: 100%;
}

#hero-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--bg);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* ═══════════════════════════════════════════════════
   HERO CONTENT PANELS
═══════════════════════════════════════════════════ */
.hero-content {
  position: absolute;
  display: flex;
  flex-direction: column;
  will-change: opacity, transform;
  pointer-events: none;
}

.hero-content.active {
  pointer-events: auto;
}

/* RIGHT — vertically centered, right-aligned */
.right-content {
  right: 5%;
  top: 50%;
  transform: translateY(-50%) translateX(0px);
  text-align: right;
  align-items: flex-end;
  max-width: min(680px, 55vw);
  gap: 14px;
  opacity: 1;
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.right-content.hidden-out {
  opacity: 0;
  transform: translateY(-50%) translateX(60px);
}

/* LEFT — vertically centered, left-aligned */
.left-content {
  left: 5%;
  top: 50%;
  transform: translateY(-50%) translateX(-60px);
  text-align: left;
  align-items: flex-start;
  max-width: min(600px, 48vw);
  gap: 14px;
  opacity: 0;
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.left-content.revealed {
  opacity: 1;
  transform: translateY(-50%) translateX(0px);
}

/* ── Typography ── */
.hero-content h1,
.hero-content h2 {
  font-family: var(--font);
  font-size: var(--title-size);
  font-weight: var(--title-weight);
  line-height: var(--title-lh);
  letter-spacing: var(--title-ls);
  color: var(--text);
}

.hero-content h1 .light {
  font-weight: 400;
  display: block;
  white-space: nowrap;
}

.hero-content h1 .bold,
.hero-content h2 .bold {
  font-weight: 700;
  display: block;
  white-space: nowrap;
}

.hero-content p {
  font-family: var(--font);
  font-size: var(--subtitle-size);
  font-weight: var(--subtitle-weight);
  line-height: var(--subtitle-lh);
  letter-spacing: var(--subtitle-ls);
  color: var(--text-mute);
  max-width: 38ch;
}

.eyebrow {
  font-family: var(--font);
  font-size: var(--eyebrow-size);
  font-weight: var(--eyebrow-weight);
  letter-spacing: var(--eyebrow-ls);
  text-transform: uppercase;
  color: var(--text-mute);
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-bottom: 1.5px solid var(--text);
  padding-bottom: 3px;
  width: fit-content;
  transition: gap 0.25s var(--ease);
}

.cta-link:hover {
  gap: 14px;
}

.cta-link.secondary {
  color: var(--text-mute);
  border-color: var(--text-mute);
}

.cta-link.secondary:hover {
  color: var(--text);
  border-color: var(--text);
}

.arrow {
  font-size: 15px;
}

/* ═══════════════════════════════════════════════════
   PROGRESS INDICATOR
═══════════════════════════════════════════════════ */
#progress-indicator {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 5px;
  mix-blend-mode: difference;
}

.progress-ring {
  position: relative;
  width: 46px;
  height: 46px;
}

.progress-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.progress-ring .track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 2.5;
}

.progress-ring .fill {
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 125.66;
  stroke-dashoffset: 125.66;
  transition: stroke-dashoffset 0.08s linear;
}

#progress-number {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .right-content {
    right: 4%;
    max-width: 85vw;
  }

  .left-content {
    left: 4%;
    max-width: 85vw;
  }

  .nav-links {
    display: none;
  }

  #navbar {
    max-width: 90vw;
  }

  #loading-screen {
    padding: 36px 28px;
  }
}

/* ═══════════════════════════════════════════════════
   MISSION SECTION
═══════════════════════════════════════════════════ */
#mission-section {
  background: #080808;
  width: 100%;
  padding: 110px 0 110px;
  overflow: hidden;
}

.mission-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
}

/* ── Top split row ── */
.mission-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-end;
  padding-bottom: 80px;
}

/* ── Left: badge + heading ── */
.mission-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mission-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 6px 14px 6px 8px;
  width: fit-content;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.mission-badge.in-view {
  opacity: 1;
  transform: translateY(0);
}

.mission-badge span {
  font-family: var(--font);
  font-size: var(--eyebrow-size);
  font-weight: var(--eyebrow-weight);
  letter-spacing: var(--eyebrow-ls);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.heading-divider {
  display: block;
  width: 52px;
  height: 4px;
  background-color: #fff;
  margin: 28px 0 24px;
}

.mission-heading {
  font-family: var(--font);
  font-size: var(--title-size);
  font-weight: var(--title-weight);
  line-height: var(--title-lh);
  letter-spacing: var(--title-ls);
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease) 0.08s, transform 0.65s var(--ease) 0.08s;
}

.mission-heading.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Orange accent word */
.accent-word {
  color: #e8702a;
  font-style: italic;
}

/* ── Right: description text ── */
.mission-right {
  display: flex;
  align-items: flex-end;
  padding-bottom: 6px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s var(--ease) 0.16s, transform 0.65s var(--ease) 0.16s;
}

.mission-right.in-view {
  opacity: 1;
  transform: translateY(0);
}

.mission-right p {
  font-family: var(--font);
  font-size: var(--subtitle-size);
  font-weight: var(--subtitle-weight);
  line-height: var(--subtitle-lh);
  letter-spacing: var(--subtitle-ls);
  color: rgba(255, 255, 255, 0.38);
  max-width: 44ch;
}

/* ── Stats bar ── */
.mission-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  overflow: hidden;
}

.mstat {
  padding: 36px 36px 44px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.mstat:last-child {
  border-right: none;
}

.mstat.in-view {
  opacity: 1;
  transform: translateY(0);
}

.mstat:nth-child(2) {
  transition-delay: 0.07s;
}

.mstat:nth-child(3) {
  transition-delay: 0.14s;
}

.mstat:nth-child(4) {
  transition-delay: 0.21s;
}

.mstat-num {
  font-family: var(--font);
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
}

.mstat-plus,
.mstat-unit {
  font-size: 0.6em;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: -0.02em;
}

.mstat-label {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mstat-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  padding: 5px 12px;
  width: fit-content;
}

.avail-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3ecf73;
  box-shadow: 0 0 6px #3ecf73;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 6px #3ecf73;
  }

  50% {
    opacity: 0.7;
    box-shadow: 0 0 14px #3ecf73;
  }
}

.mstat-badge span:last-child {
  font-family: var(--font);
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.01em;
}

/* Responsive */
@media (max-width: 960px) {
  .mission-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mission-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .mstat:nth-child(2) {
    border-right: none;
  }

  .mstat:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.09);
  }

  .mstat:nth-child(3),
  .mstat:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }
}

@media (max-width: 580px) {
  .mission-inner {
    padding: 0 24px;
  }

  .mission-stats {
    grid-template-columns: 1fr 1fr;
  }
}


/* Available pill (card 2) */
.mcard-available {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  padding: 8px 16px;
  margin-top: 20px;
  width: fit-content;
}

.avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3ecf73;
  box-shadow: 0 0 6px #3ecf73;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 6px #3ecf73;
  }

  50% {
    opacity: 0.7;
    box-shadow: 0 0 12px #3ecf73;
  }
}

.mcard-available span:last-child {
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -0.01em;
}

/* Stars (card 3) */
.mcard-stars {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.stars {
  font-size: 14px;
  color: #f5c842;
  letter-spacing: 1px;
}

.stars-label {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

/* Scroll-reveal for cards */
.mcard {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease),
    border-color 0.3s ease;
}

.mcard.in-view {
  opacity: 1;
  transform: translateY(0);
}

.mcard:nth-child(2) {
  transition-delay: 0.1s;
}

.mcard:nth-child(3) {
  transition-delay: 0.2s;
}

.mission-badge,
.mission-heading {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.mission-badge.in-view,
.mission-heading.in-view {
  opacity: 1;
  transform: translateY(0);
}

.mission-heading {
  transition-delay: 0.08s;
}

/* Responsive */
@media (max-width: 900px) {
  .mission-cards {
    grid-template-columns: 1fr 1fr;
  }

  .mcard:nth-child(3) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .mission-inner {
    padding: 0 24px;
  }

  .mission-cards {
    grid-template-columns: 1fr;
  }

  .mcard:nth-child(3) {
    grid-column: auto;
  }
}

/* ═══════════════════════════════════════════════════
   PROJECTS HORIZONTAL SCROLL SECTION
═══════════════════════════════════════════════════ */
#projects-section {
  position: relative;
  background: #060606;
}

.projects-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.proj-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 52px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.proj-header-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.proj-eyebrow {
  font-family: var(--font);
  font-size: var(--eyebrow-size);
  font-weight: var(--eyebrow-weight);
  letter-spacing: var(--eyebrow-ls);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.proj-drag-hint {
  font-family: var(--font);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.22);
}

.proj-counter {
  font-family: var(--font);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  gap: 6px;
}

#proj-current {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: opacity 0.2s;
}

.proj-sep {
  opacity: 0.25;
}

.projects-track {
  display: flex;
  flex: 1;
  will-change: transform;
}

.proj-card {
  flex: 0 0 90vw;
  height: 100%;
  padding: 32px 40px 0 52px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.proj-card:last-child {
  border-right: none;
}

.proj-card-inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 32px;
  height: 100%;
  align-items: center;
}

.proj-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 48px;
}

.proj-num {
  font-family: var(--font);
  font-size: var(--eyebrow-size);
  font-weight: var(--eyebrow-weight);
  letter-spacing: var(--eyebrow-ls);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}

.proj-title {
  font-family: var(--font);
  font-size: var(--title-size);
  font-weight: var(--title-weight);
  line-height: var(--title-lh);
  letter-spacing: var(--title-ls);
  color: #fff;
  margin: 0;
}

.proj-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proj-location {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.proj-price {
  font-family: var(--font);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  color: #e8702a;
  letter-spacing: -0.03em;
}

.proj-desc {
  font-family: var(--font);
  font-size: var(--subtitle-size);
  font-weight: var(--subtitle-weight);
  line-height: var(--subtitle-lh);
  letter-spacing: var(--subtitle-ls);
  color: rgba(255, 255, 255, 0.35);
  max-width: 34ch;
}

.proj-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.proj-tags span {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 5px 12px;
  transition: border-color 0.2s, color 0.2s;
}

.proj-card:hover .proj-tags span {
  border-color: rgba(232, 112, 42, 0.45);
  color: rgba(232, 112, 42, 0.85);
}

.proj-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 10px 22px;
  width: fit-content;
  transition: background 0.25s, border-color 0.25s, gap 0.2s;
}

.proj-cta:hover {
  background: #e8702a;
  border-color: #e8702a;
  gap: 14px;
}

.proj-img-wrap {
  width: 100%;
  aspect-ratio: 1000 / 667;
  max-height: 80vh;
  border-radius: 0;
  overflow: hidden;
}

.proj-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.proj-card:hover .proj-img-wrap img {
  transform: scale(1.04);
}

.proj-progress-bar {
  height: 2px;
  background: rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.proj-progress-fill {
  height: 100%;
  background: #e8702a;
  width: 0%;
  transition: width 0.05s linear;
}

@media (max-width: 900px) {
  .proj-card {
    flex: 0 0 95vw;
    padding: 24px 24px 0;
  }

  .proj-card-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .proj-img-wrap {
    height: 42vh;
  }

  .proj-header {
    padding: 20px 24px;
  }
}

/* ── Project Card Reveal Animations ── */
.proj-info>* {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.proj-card.in-view .proj-info>* {
  opacity: 1;
  transform: translateY(0);
}

.proj-card.in-view .proj-info>*:nth-child(1) {
  transition-delay: 0.05s;
}

.proj-card.in-view .proj-info>*:nth-child(2) {
  transition-delay: 0.12s;
}

.proj-card.in-view .proj-info>*:nth-child(3) {
  transition-delay: 0.19s;
}

.proj-card.in-view .proj-info>*:nth-child(4) {
  transition-delay: 0.26s;
}

.proj-card.in-view .proj-info>*:nth-child(5) {
  transition-delay: 0.33s;
}

.proj-card.in-view .proj-info>*:nth-child(6) {
  transition-delay: 0.40s;
}

.proj-img-wrap {
  opacity: 0;
  transform: scale(0.96) translateX(20px);
  transition: opacity 0.8s var(--ease) 0.15s, transform 0.8s var(--ease) 0.15s;
}

.proj-card.in-view .proj-img-wrap {
  opacity: 1;
  transform: scale(1) translateX(0);
}

/* ═══════════════════════════════════════════════════
   FUTURE / ABOUT SECTION
═══════════════════════════════════════════════════ */
#future-section {
  background: var(--bg);
  width: 100%;
  color: var(--text);
  overflow: hidden;
}

.future-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 160px 56px 100px;
}

.future-top {
  display: grid;
  grid-template-columns: 2.5fr 7.5fr;
  gap: 60px;
  align-items: flex-start;
}

.future-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 18px;
}

.future-eyebrow {
  font-family: var(--font);
  font-size: var(--subtitle-size);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

.future-desc {
  font-family: var(--font);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-mute);
  max-width: 28ch;
}

.future-right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.watermark-logo {
  position: absolute;
  top: -80px;
  left: -80px;
  color: rgba(30, 26, 23, 0.03);
  pointer-events: none;
  z-index: 0;
}

.future-title {
  font-family: var(--font);
  font-size: var(--title-size);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.future-sub {
  font-family: var(--font);
  font-size: var(--subtitle-size);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-mute);
  position: relative;
  z-index: 1;
}

.future-bottom {
  position: relative;
  width: 100%;
  height: 80vh;
}

.future-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.future-icon-overlay {
  position: absolute;
  bottom: 40px;
  left: 56px;
  z-index: 2;
}

/* Animations */
.future-eyebrow,
.future-desc,
.future-title,
.future-sub {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

#future-section.in-view .future-eyebrow {
  transition-delay: 0.05s;
  opacity: 1;
  transform: translateY(0);
}

#future-section.in-view .future-desc {
  transition-delay: 0.1s;
  opacity: 1;
  transform: translateY(0);
}

#future-section.in-view .future-title {
  transition-delay: 0.15s;
  opacity: 1;
  transform: translateY(0);
}

#future-section.in-view .future-sub {
  transition-delay: 0.25s;
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   PROCESS SECTION (Redesigned)
═══════════════════════════════════════════════════ */
#process-section.process-new {
  background: #080808;
  color: var(--bg);
  padding: 160px 0;
  position: relative;
}

.process-container-new {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
}

.process-visuals {
  position: relative;
  height: 100%;
}

.process-sticky-new {
  position: sticky;
  top: 15vh;
  height: 70vh;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
}

.process-img-new {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(100% 0 0 0);
  transform: scale(1.1);
  z-index: 1;
  transition: clip-path 0.8s cubic-bezier(0.85, 0, 0.15, 1), transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
}

.process-img-new.prev {
  clip-path: inset(0 0 0 0);
  transform: scale(1);
  z-index: 1;
  transition: none;
}

.process-img-new.active {
  clip-path: inset(0 0 0 0);
  transform: scale(1);
  z-index: 2;
}

.process-badge-new {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(8, 8, 8, 0.6);
  backdrop-filter: blur(8px);
  padding: 12px 20px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--bg);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.pb-num {
  color: #e8702a;
}

/* ═══════════════════════════════════════════════════
   FEATURED STORY / TESTIMONIAL (Two-Card Layout)
═══════════════════════════════════════════════════ */
#testimonials-section.featured-story-section {
  background: #f4efeb;
  padding: 120px 0;
}

.fs-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.fs-card {
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.fs-card.dark {
  background: #111;
  color: #fff;
  min-height: 800px;
}

.fs-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.fs-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.fs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(17, 17, 17, 0.2) 0%, rgba(17, 17, 17, 0.9) 100%);
}

.fs-card.dark .fs-card-content {
  position: relative;
  z-index: 1;
  padding: 64px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fs-eyebrow {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #e8702a;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fs-headline {
  font-family: var(--font);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #fff;
}

.fs-bottom {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  align-items: end;
}

.fs-year {
  font-family: var(--font);
  font-size: 32px;
  font-weight: 500;
}

.fs-desc {
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

/* Light Card */
.fs-card.light {
  background: #ede8e1;
  color: #1e1a17;
}

.fs-card.light .fs-card-content {
  padding: 64px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  height: 100%;
}

.fs-row {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 32px;
}

.fs-row-label {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.fs-row-content p {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(30, 26, 23, 0.8);
  margin-bottom: 24px;
}

.fs-row-content p:last-child {
  margin-bottom: 0;
}

.fs-image-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  height: 240px;
}

.fs-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fs-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fs-pill {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(30, 26, 23, 0.15);
  color: rgba(30, 26, 23, 0.7);
}

.fs-cta-wrap {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
}

.fs-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--accent); /* Changed to brand orange */
  color: #fff; /* Changed to white for better contrast with the darker orange */
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 16px 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.fs-btn:hover {
  background: #cf6222; /* Slightly darker shade of accent for hover */
  transform: translateY(-2px);
}

.fs-btn-arrow {
  background: #fff;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #1e1a17;
}

.process-content-new {
  padding-bottom: 20vh;
}

.process-step-new {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0.2;
  transform: translateY(40px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.process-step-new.active {
  opacity: 1;
  transform: translateY(0);
}

.process-eyebrow-new {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(240, 235, 227, 0.5);
  margin-bottom: 24px;
}

.process-eyebrow-new .accent-color {
  color: #e8702a;
}

.process-title-new {
  font-family: var(--font);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 450;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--bg);
  margin-bottom: 32px;
}

.process-desc-new {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(240, 235, 227, 0.6);
  margin-bottom: 48px;
  max-width: 55ch;
}

.process-list-new {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-list-new li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--font);
  font-size: 15px;
  color: rgba(240, 235, 227, 0.5);
}

.process-list-new li strong {
  color: var(--bg);
  font-weight: 600;
}

.pl-dot {
  width: 8px;
  height: 8px;
  background: #e8702a;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  top: 1px;
}

/* ═══════════════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════════════ */
@media (pointer: fine) {
  body {
    cursor: none;
  }

  .custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background-color: #e8702a;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease), height 0.3s var(--ease), background-color 0.3s var(--ease);
    mix-blend-mode: difference;
  }

  .custom-cursor.hover {
    width: 64px;
    height: 64px;
    background-color: #fff;
  }
}

@media (pointer: coarse) {
  .custom-cursor {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS SECTION (Redesigned)
═══════════════════════════════════════════════════ */
#testimonials-section.testim-new {
  background: var(--bg);
  color: var(--text);
  padding: 160px 0 120px;
  overflow: hidden;
  border-top: 1px solid rgba(30, 26, 23, 0.05);
}

.testim-container {
  max-width: 1440px;
  margin: 0 auto;
}

.testim-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 56px 64px;
  border-bottom: 1px solid rgba(30, 26, 23, 0.1);
}

.testim-eyebrow-new {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mute);
}

.testim-title-new {
  font-family: var(--font);
  font-size: var(--title-size);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.testim-track-wrap {
  width: 100%;
  padding-left: 56px;
  cursor: grab;
}

.testim-track-wrap:active {
  cursor: grabbing;
}

.testim-track {
  display: flex;
  gap: 120px;
  padding: 80px 56px 80px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testim-track::-webkit-scrollbar {
  display: none;
}

.testim-slide {
  flex: 0 0 clamp(600px, 60vw, 800px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.slide-quote {
  font-family: var(--font);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 450;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.slide-author {
  display: flex;
  align-items: center;
  gap: 24px;
}

.sa-line {
  width: 48px;
  height: 2px;
  background: #e8702a;
}

.sa-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sa-info strong {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
}

.sa-info span {
  font-family: var(--font);
  font-size: 13px;
  color: var(--text-mute);
}

/* ═══════════════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════════════ */
#faq-section {
  background: #080808;
  color: var(--bg);
  padding: 160px 0;
}

.faq-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 80px;
  align-items: flex-start;
}

.faq-left {
  position: sticky;
  top: 160px;
}

.faq-title {
  font-family: var(--font);
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--bg);
  margin-bottom: 24px;
}

.faq-title .accent {
  color: #e8702a;
}

.faq-desc {
  font-family: var(--font);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

.faq-desc a {
  color: var(--bg);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq-right {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  background: none;
  border: none;
  color: var(--bg);
  font-family: var(--font);
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--bg);
  transition: transform 0.4s var(--ease);
}

.faq-icon::before {
  width: 8px;
  height: 1.5px;
}

.faq-icon::after {
  width: 1.5px;
  height: 8px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  border-color: rgba(255, 255, 255, 0.8);
}

.faq-item.active .faq-icon::after {
  transform: scaleY(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease);
}

.faq-answer p {
  padding-bottom: 32px;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 65ch;
}

/* ═══════════════════════════════════════════════════
   FOOTER / CTA SECTION
═══════════════════════════════════════════════════ */
#footer-section {
  background: #080808;
  color: var(--bg);
  padding: 120px 0 40px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
}

.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 48px;
  margin-bottom: 160px;
}

.footer-cta h2 {
  font-family: var(--font);
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.cta-link.massive {
  font-family: var(--font);
  font-size: 24px;
  color: var(--bg);
  text-decoration: none;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(240, 235, 227, 0.3);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.cta-link.massive:hover {
  color: #e8702a;
  border-color: #e8702a;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col.brand {
  gap: 24px;
}

.footer-col.brand p {
  max-width: 28ch;
}

.footer-col strong {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.footer-col a,
.footer-col p {
  font-family: var(--font);
  font-size: 15px;
  color: var(--bg);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.3s var(--ease);
}

.footer-col a:hover {
  color: #e8702a;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
  font-family: var(--font);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}