/* ─── NAV TRANSPARENT (index-specific: no background until scrolled) ─── */
nav.nav-transparent:not(.scrolled) {
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

/* ─── HERO ─── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12rem 3rem 4rem;
  position: relative;
}

.hero-press {
  width: 100%;
  max-width: 1400px;
  margin: 5rem auto 0;
  text-align: center;
}

.hero-press .section-label { margin-bottom: 2rem; }
.hero-press .proof-note { margin-top: 1.5rem; }

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--dark-teal);
  margin-bottom: 1.5rem;
}

.hero-text h1 .highlight {
  color: var(--dark-teal);
  position: relative;
  display: inline-block;
}

.hero-text h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--gold);
  opacity: 0.3;
  border-radius: 4px;
  z-index: -1;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--teal);
  max-width: 620px;
  margin: 0 0 2rem;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--dark-teal);
  color: var(--cream);
  padding: 1rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 65, 70, 0.2);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--dark-teal);
  padding: 1rem 1.75rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1.5px solid rgba(26, 65, 70, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.hero-video {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 65, 70, 0.12);
  position: relative;
  aspect-ratio: 16 / 9;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-left {
  display: flex;
  flex-direction: column;
}

/* ─── SECTION UTILITY ─── */
section { position: relative; }

.section-pad {
  padding: 7rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal);
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--dark-teal);
  margin-bottom: 1.5rem;
}

/* ─── THE PROBLEM ─── */
.problem {
  background: var(--cream);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
}

.problem-left .big-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.35;
  color: var(--dark-teal);
}

.problem-right {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.problem-stat h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--dark-teal);
  margin: 0 0 0.4rem;
}

.problem-stat p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--teal);
  font-weight: 300;
  margin: 0;
}


/* ─── VALUES ─── */
.values { background: var(--light-cream); }

.values-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 5rem;
  align-items: start;
  margin-top: 2.5rem;
}

.values-anchor {
  margin: 0;
  position: sticky;
  top: 6rem;
}

.values-anchor-frame {
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  background: var(--dark-teal);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 48px -24px rgba(26, 65, 70, 0.35);
}

.values-anchor-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 25% 42%;
  display: block;
}

.values-anchor-caption {
  margin-top: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--teal);
  opacity: 0.75;
}

.values-heading {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
  margin-top: 1rem;
  margin-bottom: 1.75rem;
  text-wrap: balance;
}

.values-body .values-intro {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--teal);
  font-weight: 300;
  max-width: none;
  margin-bottom: 3rem;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.values-item {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(26, 65, 70, 0.18);
}

.values-item:first-child {
  border-top: none;
  padding-top: 0;
}

.values-item:last-child { padding-bottom: 0; }

.values-item h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--dark-teal);
  margin: 0 0 0.4rem;
}

.values-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--teal);
  font-weight: 300;
  margin: 0;
}

/* ─── MOMENTS MARQUEE ─── */
.moments {
  background: var(--dark-teal);
  padding: 4rem 0;
  overflow: hidden;
}

.moments-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: moments-scroll 80s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.moments:hover .moments-track {
  animation-play-state: paused;
}

.moment-card {
  flex: 0 0 380px;
  aspect-ratio: 4 / 3;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 22%, rgba(211, 164, 70, 0.22), transparent 60%),
    linear-gradient(160deg, #245256 0%, #122e32 100%);
  position: relative;
  box-shadow:
    0 16px 32px -20px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(232, 224, 200, 0.08);
  transform: translateZ(0);
}

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

.moment-placeholder {
  position: absolute;
  bottom: 1.25rem;
  left: 1.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232, 224, 200, 0.5);
}

@keyframes moments-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-50% - 0.625rem), 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .moments-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 0 1.5rem;
  }
  .moments-track > [aria-hidden="true"] { display: none; }
}

/* ─── WHAT WE DO ─── */
.services { background: var(--dark-teal); color: var(--cream); }

.services .section-label { color: var(--gold); }
.services .section-heading { color: var(--cream); }

.services-subtitle {
  color: rgba(232, 224, 200, 0.7);
  font-size: 1.1rem;
  max-width: 500px;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
}

.services-secondary {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card--feature { height: 560px; }
.services-secondary .service-card { height: 272px; }

.service-card:hover {
  transform: translateY(-6px);
}

.service-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.service-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(26, 65, 70, 0.55) 100%);
}

.service-card:hover .service-card-bg {
  transform: scale(1.05);
}

.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
}

.service-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  color: white;
}

.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
}

.service-card-border { display: none; }

/* ─── EA SECTION ─── */
.ea-section { background: var(--cream); }

.ea-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.ea-description {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--teal);
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 480px;
}

.ea-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 0;
}

.ea-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.5rem;
  padding: 0.5rem 0;
  align-items: baseline;
}

.ea-item dt {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-teal);
  letter-spacing: 0.01em;
  text-align: right;
  padding-right: 1.5rem;
  border-right: 1px solid rgba(26, 65, 70, 0.15);
  line-height: 1.35;
}

.ea-item dd {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--teal);
  font-weight: 300;
  margin: 0;
}

.ea-item dd a {
  color: var(--dark-teal);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(211, 164, 70, 0.55);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}

.ea-item dd a:hover {
  text-decoration-color: var(--gold);
}

/* ─── LOGO STRIPS ─── */
.logo-strip { background: var(--cream); }

.logo-strip .section-pad {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  text-align: center;
}

.logo-strip .section-label { margin-bottom: 2.5rem; }

.logo-grid {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 2rem 3rem;
}

.logo-grid li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.logo-grid img {
  max-width: 100%;
  height: 38px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(1);
  transition: opacity 0.3s ease;
}

.logo-grid img:hover { opacity: 0.95; }

.logo-grid--clients {
  max-width: 1100px;
  grid-template-columns: repeat(6, 1fr);
}

.logo-grid--press {
  max-width: 1200px;
  grid-template-columns: repeat(8, 1fr);
  gap: 1.5rem 2.5rem;
}

.logo-grid--press img { height: 28px; }

/* ─── TESTIMONIALS ─── */
.testimonials { background: rgba(245, 241, 232, 0.7); }

.proof-note {
  text-align: center;
  max-width: 640px;
  margin: 1.25rem auto 0;
  font-size: 0.875rem;
  color: var(--teal);
  opacity: 0.55;
  font-weight: 300;
}

.logo-strip .proof-note { margin-top: 1.75rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 2.25rem;
  transition: transform 0.3s ease;
}

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

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  letter-spacing: 2px;
}

.testimonial-logo {
  margin-bottom: 1.25rem;
  height: 28px;
  display: flex;
  align-items: center;
}

.testimonial-logo img {
  max-height: 100%;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
}

.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark-teal);
  margin-bottom: 1.5rem;
  font-weight: 300;
  font-style: italic;
}

.testimonial-card--multi blockquote {
  font-size: 0.92rem;
  margin: 0 0 0.9rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonial-card--multi blockquote:last-of-type {
  margin-bottom: 1.5rem;
  padding-bottom: 0;
  border-bottom: none;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--teal);
  opacity: 0.6;
}

/* ─── CTA ─── */
.cta-section {
  background: var(--dark-teal);
  color: var(--cream);
  text-align: center;
  position: relative;
}

.cta-inner {
  position: relative;
}

.cta-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.8;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--cream);
  color: var(--dark-teal);
  padding: 1.1rem 2.5rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

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

.reveal-delay-1,
.reveal-delay-2,
.reveal-delay-3,
.reveal-delay-4 { transition-delay: 0s; }

/* ─── INDEX RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .values-layout { grid-template-columns: 1fr; gap: 3rem; }
  .values-anchor { position: static; }
  .values-anchor-frame { aspect-ratio: 16 / 10; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card--feature { height: 420px; }
  .services-secondary { flex-direction: row; }
  .services-secondary .service-card { height: 320px; flex: 1; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; }
  .ea-grid { grid-template-columns: 1fr; gap: 3rem; }
  .problem-grid { grid-template-columns: 1fr; gap: 3rem; }
  .logo-grid--clients { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
  .logo-grid--press { grid-template-columns: repeat(4, 1fr); gap: 1.5rem 2rem; }
}

@media (max-width: 768px) {
  nav.nav-transparent.scrolled { padding: 0.75rem 1.5rem; }
  .section-pad { padding: 4rem 1.5rem; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .hero-video { border-radius: 12px; }
  .values-anchor-frame { aspect-ratio: 4 / 3; }
  .values-list { font-size: 0.95rem; }
  .moments { padding: 2.5rem 0; }
  .moments-track { gap: 0.875rem; }
  .moment-card { flex-basis: 280px; }
  @keyframes moments-scroll {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(calc(-50% - 0.4375rem), 0, 0); }
  }
  .logo-grid--clients { grid-template-columns: repeat(3, 1fr); gap: 1.75rem 1.5rem; }
  .logo-grid--press { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .logo-grid img { height: 32px; }
  .logo-grid--press img { height: 26px; }
  .ea-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .ea-item dt {
    text-align: left;
    padding-right: 0;
    padding-bottom: 0.25rem;
    border-right: none;
    border-bottom: 1px solid rgba(26, 65, 70, 0.15);
  }
  .ea-item dt br { display: none; }
  .services-secondary { flex-direction: column; }
  .services-secondary .service-card { height: 320px; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
}
