/* ========== TEMPORARY: Hide placeholder images ========== */
/* Remove this block to restore all placeholder images */
.team-card__img-placeholder,
.team-card__img,
.quote-section__img-placeholder,
.quote-section__img,
.quote-section__image,
.proj-card__img-placeholder,
.case-study-card__img-placeholder,
.press-featured__img-placeholder {
  display: none !important;
}
/* ========== END placeholder hide ========== */

/* ========== Reset & Base ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: #333;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== Header / Nav ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(20, 30, 45, 0.55);
  backdrop-filter: blur(4px);
}

.header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.header__logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 56px;
  width: auto;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  transition: color 0.3s;
}

.nav__link:hover {
  color: rgba(255, 255, 255, 0.7);
}

.nav__arrow {
  font-size: 9px;
  margin-left: 4px;
  opacity: 0.8;
}

.nav__link--outlined {
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 10px 24px;
  border-radius: 0;
  font-weight: 400;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.nav__link--outlined:hover {
  background: #fff;
  color: #1e2837;
  border-color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

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

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% 35%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 23, 35, 0.9) 0%,
    rgba(15, 23, 35, 0.7) 45%,
    rgba(15, 23, 35, 0.25) 100%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 90px;
}

/* Hero entrance animation */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__eyebrow,
.hero__title,
.hero__subtitle,
.hero__cta {
  animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__eyebrow { animation-delay: 0.2s; }
.hero__title { animation-delay: 0.4s; }
.hero__subtitle { animation-delay: 0.6s; }
.hero__cta { animation-delay: 0.8s; }

.hero__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c8a45a;
  margin-bottom: 20px;
}

.hero__title {
  font-family: 'Roboto', 'Helvetica Neue', sans-serif;
  font-size: 56px;
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 40px;
  letter-spacing: 0.3px;
}

.hero__cta {
  display: flex;
  gap: 16px;
}

.hero__scroll-arrow {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: color 0.3s, border-color 0.3s, transform 0.3s;
  animation: heroFadeUp 1s 1.2s cubic-bezier(0.16, 1, 0.3, 1) both, bounceSubtle 2.4s 2.5s ease-in-out infinite;
}

.hero__scroll-arrow:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

@keyframes bounceSubtle {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ========== Icons (Lucide) ========== */
.icon {
  width: 32px;
  height: 32px;
  stroke-width: 1.25;
}

.icon--gold {
  color: #c8a45a;
  width: 32px;
  height: 32px;
  stroke-width: 1.25;
}

.icon--gold-sm {
  color: #c8a45a;
  width: 22px;
  height: 22px;
  stroke-width: 1.25;
  flex-shrink: 0;
  margin-top: 3px;
}

.icon--white {
  color: #fff;
  width: 20px;
  height: 20px;
  stroke-width: 1.25;
}

.icon--muted {
  color: #6b7b8d;
  width: 18px;
  height: 18px;
  stroke-width: 1.25;
}

/* ========== Buttons ========== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

.btn--dark {
  background: #1e2837;
  color: #fff;
}

.btn--dark:hover {
  background: #2c3e50;
}

.btn--white {
  background: #fff;
  color: #1e2837;
}

.btn--white:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn--outline-white:hover {
  background: #fff;
  color: #1e2837;
  border-color: #fff;
}

.btn--outline-light {
  background: transparent;
  color: #90a4ae;
  border: 1px solid rgba(144, 164, 174, 0.3);
}

.btn--outline-light:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--sm {
  padding: 10px 24px;
  font-size: 10px;
}

.btn--dark:hover {
  box-shadow: 0 4px 20px rgba(30, 40, 55, 0.3);
}

.btn--white:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ========== Stats Strip ========== */
/* ========== Trust Bar (floating stats) ========== */
.trust-bar {
  background: transparent;
  padding: 0;
  position: relative;
  margin-top: -48px;
  z-index: 3;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  max-width: 1000px;
  margin: 0 auto;
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 48px;
}

.trust-bar__icon {
  color: #c8a45a;
  width: 22px;
  height: 22px;
  stroke-width: 1.25;
  margin-bottom: 10px;
  opacity: 0.7;
}

.trust-bar__number {
  font-family: 'Roboto', 'Helvetica Neue', sans-serif;
  font-size: 32px;
  font-weight: 300;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.trust-bar__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #999;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.trust-bar__divider {
  width: 1px;
  height: 40px;
  background: #e8e8e8;
}

/* ========== Section Titles ========== */
.section-title {
  font-family: 'Roboto', 'Helvetica Neue', sans-serif;
  font-size: 36px;
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: 0.5px;
}

.section-title--white {
  color: #fff;
}

.section-title--lg {
  font-size: 44px;
}

/* ========== About ========== */
.about {
  padding: 140px 0 100px;
}

.about__intro {
  max-width: 700px;
  margin-bottom: 64px;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c8a45a;
  margin-bottom: 16px;
}

.about__description {
  color: #555;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}

.about__description:last-of-type {
  margin-bottom: 28px;
}

.about__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ========== Opportunity ========== */
.opportunity {
  padding: 120px 0;
  border-top: 1px solid #eee;
}

.opportunity__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.opportunity__left {
  position: sticky;
  top: 140px;
}

.opportunity__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c8a45a;
  margin-bottom: 16px;
}

.opportunity__intro {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #777;
  line-height: 1.7;
  letter-spacing: 0.2px;
  margin-top: 8px;
}

.opportunity__right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.opportunity__item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid #eee;
}

.opportunity__item:first-child {
  padding-top: 0;
}

.opportunity__item:last-child {
  border-bottom: none;
}

.opportunity__item-num {
  font-family: 'Roboto', 'Helvetica Neue', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #c8a45a;
  line-height: 1;
  min-width: 40px;
  padding-top: 2px;
}

.opportunity__item-title {
  font-family: 'Roboto', 'Helvetica Neue', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.opportunity__item-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #777;
  line-height: 1.8;
}

/* ========== Why West77 ========== */
.why {
  padding: 120px 0;
  background: #1e2837;
}

.why__header {
  max-width: 680px;
  margin-bottom: 64px;
}

.why__header .section-title {
  color: #fff;
}

.why__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c8a45a;
  margin-bottom: 16px;
}

.why__description {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.2px;
}

.why__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.why__col .icon {
  margin-bottom: 20px;
}

.why__col-title {
  font-family: 'Roboto', 'Helvetica Neue', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 12px;
}

.why__col-text {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
}

/* ========== National Footprint ========== */
.footprint {
  padding: 120px 0;
  background: #fff;
}

.footprint__header {
  max-width: 560px;
  margin-bottom: 40px;
}

.footprint__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c8a45a;
  margin-bottom: 16px;
}

.footprint__intro {
  font-size: 15px;
  font-weight: 300;
  color: #666;
  line-height: 1.8;
}

.footprint__locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.footprint__col-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8e8e8;
}

.footprint__list li {
  font-size: 15px;
  font-weight: 300;
  color: #4a4a4a;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footprint__count {
  font-size: 12px;
  font-weight: 400;
  color: #c8a45a;
  letter-spacing: 0.5px;
}

/* ========== CTA ========== */
.cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 35, 0.88);
}

.cta__content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 600px;
}

.cta__title {
  font-family: 'Roboto', 'Helvetica Neue', sans-serif;
  font-size: 48px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.cta__text {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 36px;
}

.cta__buttons {
  display: flex;
  gap: 16px;
}

/* ========== Footer ========== */
.footer {
  background: #1e2837;
  color: #fff;
  padding-top: 72px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.2fr 0.8fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__logo-img {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 13px;
  font-weight: 300;
  color: #6b7b8d;
  line-height: 1.6;
  max-width: 240px;
}

.footer__heading {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  margin-bottom: 20px;
  color: #fff;
}

.footer__list li {
  margin-bottom: 10px;
}

.footer__list a,
.footer__contact p,
.footer__contact a,
.footer__investor a {
  color: #6b7b8d;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.3px;
  transition: color 0.3s;
}

.footer__list a:hover,
.footer__contact a:hover,
.footer__investor a:hover {
  color: #c8a45a;
}

.footer__icon {
  width: 14px;
  height: 14px;
  stroke-width: 1.25;
  color: #c8a45a;
  vertical-align: -2px;
  margin-right: 4px;
}

.footer__contact p {
  margin-bottom: 3px;
  color: #6b7b8d;
  font-size: 14px;
}

.footer__contact-gap {
  margin-top: 12px !important;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  font-size: 11px;
  color: #4a5568;
  letter-spacing: 1px;
}

.footer__legal {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer__legal a {
  font-size: 11px;
  color: #4a5568;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.footer__legal a:hover {
  color: #c8a45a;
}

.footer__legal span {
  color: #4a5568;
}

/* ========== Scroll Animations ========== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from left */
.reveal--left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal--left.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.reveal--right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal--right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Scale up */
.reveal--scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal--scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Header scroll state */
.header--scrolled {
  background: rgba(20, 30, 45, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.15);
}

/* Hero parallax base */
.hero__img {
  will-change: transform;
  transform: scale(1.05);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-item,
  .reveal--left,
  .reveal--right,
  .reveal--scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__img {
    transform: none;
    will-change: auto;
  }
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .hero__title {
    font-size: 44px;
  }

  .section-title--lg {
    font-size: 36px;
  }

  .opportunity__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .opportunity__left {
    position: static;
  }

  .why__columns {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .trust-bar__inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .trust-bar__item {
    padding: 28px 32px;
  }
}

@media (max-width: 768px) {
  .nav__list {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav__list.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    background: rgba(20, 28, 40, 0.98);
    padding: 32px 40px;
    gap: 20px;
  }

  .hero {
    height: 100vh;
    min-height: 500px;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__subtitle {
    font-size: 14px;
  }

  .hero__overlay {
    background: linear-gradient(
      to top,
      rgba(15, 23, 35, 0.85) 0%,
      rgba(15, 23, 35, 0.5) 50%,
      rgba(15, 23, 35, 0.3) 100%
    );
  }

  .hero__content {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 60px;
    height: 100%;
  }

  .hero__cta {
    flex-direction: column;
    gap: 12px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-title--lg {
    font-size: 32px;
  }

  .about {
    padding: 80px 0 60px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__img {
    height: 300px;
  }

  .trust-bar {
    margin-top: -32px;
    padding: 0 16px;
  }

  .trust-bar__inner {
    flex-direction: column;
  }

  .trust-bar__divider {
    width: 40px;
    height: 1px;
  }

  .trust-bar__item {
    padding: 20px;
  }

  .opportunity {
    padding: 120px 0;
  }

  .why {
    padding: 120px 0;
  }

  .footprint {
    padding: 120px 0;
  }

  .footprint__locations {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta {
    padding: 120px 0;
  }

  .cta__title {
    font-size: 32px;
  }

  .cta__buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
