/* ============================================================
   XTOPIA — Section-specific styles
   Loaded after components.css on every page.
   ============================================================ */

/* ============================================================
   HERO (home / verticals hub)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.25;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(17,16,16,0.95) 0%, rgba(17,16,16,0.35) 45%, rgba(17,16,16,0.55) 100%);
}
.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: calc(var(--nav-height) + 2rem) var(--gutter);
}
.hero__headline {
  display: flex;
  flex-direction: column;
}
.hero__headline .line { display: block; overflow: hidden; }
.hero__headline .line > span {
  display: inline-block;
  transform: translateY(120px);
  filter: blur(8px);
  opacity: 0;
}
.hero.is-ready .hero__headline .line > span {
  transform: translateY(0);
  filter: blur(0);
  opacity: 1;
  transition: transform 1s var(--ease-out), filter 1s var(--ease-out), opacity 1s var(--ease-out);
}
.hero.is-ready .hero__headline .line:nth-child(1) > span { transition-delay: 0.05s; }
.hero.is-ready .hero__headline .line:nth-child(2) > span { transition-delay: 0.13s; }
.hero.is-ready .hero__headline .line:nth-child(3) > span { transition-delay: 0.21s; }
.hero.is-ready .hero__headline .line:nth-child(4) > span { transition-delay: 0.29s; }

/* Hero Columns & Glassmorphism Card */
.hero__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: clamp(2rem, 5vw, 6rem);
  width: 100%;
}

.hero__col-left {
  flex: 0 0 58%;
  min-width: 0;
}

.hero__col-right {
  flex: 0 0 38%;
  max-width: 460px;
  min-width: 320px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: clamp(1.75rem, 3vh, 2.25rem) clamp(1.75rem, 3vw, 2.25rem);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card__title {
  font-family: 'Gotham', 'Helvetica Neue', sans-serif;
  font-weight: 300;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-cream);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-card__title::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--color-sage);
  border-radius: 50%;
}

.hero-card__desc {
  font-family: 'Gotham', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin: 0;
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 1023px) {
  .hero {
    align-items: flex-end;
  }
  
  .hero__inner {
    padding: calc(var(--nav-height) + 1rem) var(--gutter) clamp(5.25rem, 12vh, 6.5rem);
  }

  .hero__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .hero__col-left,
  .hero__col-right {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  
  .hero-card {
    padding: 1.25rem 1.5rem;
    gap: 0.75rem;
  }
  
  .hero-card__desc {
    font-size: 14px;
    line-height: 1.65;
  }
  
  .hero__eyebrow {
    margin-bottom: 1.25rem;
  }
}

.hero__eyebrow { margin-bottom: 1.75rem; }
.hero__foot {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: clamp(1.25rem, 3vh, 2.25rem);
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}
.scroll-hint { display: inline-flex; flex-direction: column; gap: 0.6rem; }

/* Centered hero variant (verticals hub) */
.hero--center { align-items: center; text-align: center; }
.hero--center .hero__inner { padding-top: calc(var(--nav-height) + 1.5rem); padding-bottom: 0; }
.hero--center .hero__headline { align-items: center; }

/* ============================================================
   FLIP STATEMENT (pinned)
   ============================================================ */
.flip {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.flip__stage { position: relative; max-width: 1200px; padding-inline: var(--gutter); }
.flip__line { display: block; }
.flip__a .word,
.flip__b { opacity: 0; }
.flip__a .word { transition: opacity 0.4s ease, filter 0.4s ease; filter: blur(6px); }
.flip__a .word.is-on { opacity: 1; filter: blur(0); }
.flip__b {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, filter 0.5s ease;
  filter: blur(8px);
}
.flip__b.is-on { opacity: 1; filter: blur(0); }
.flip__divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(2rem, 5vh, 4rem);
  display: flex;
  justify-content: center;
}

/* ============================================================
   FRAMEWORK (3 columns)
   ============================================================ */
.framework__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 4rem); }
.fw-col { padding-top: 2rem; transition: background var(--dur-med) var(--ease-out); border-radius: 4px; }
.fw-col__num {
  font-family: 'Gotham', sans-serif;
  font-weight: 200;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1;
  color: var(--color-cream);
}
.fw-col__icon { width: 64px; height: 64px; object-fit: contain; margin: 1.5rem 0; opacity: 0.9; }
.fw-col__title {
  font-family: 'Gotham', sans-serif;
  font-weight: 200;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 1rem;
}
.fw-col__line { height: 1px; background: var(--c-line-bright); transform-origin: left; transform: scaleX(0); margin: 1.5rem 0; }
.fw-col.is-in .fw-col__line { transform: scaleX(1); transition: transform 1s var(--ease-out) 0.3s; }
.fw-col:hover { background: rgba(194,199,163,0.06); }

/* ============================================================
   VERTICALS — Asymmetrical grid (replacement of h-scroll)
   ============================================================ */
.verticals-section {
  padding-block: var(--space-xl);
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.5rem, 3vw, 3.5rem);
}

.v-card {
  position: relative;
  height: clamp(380px, 55vh, 560px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--c-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.7);
  grid-column: span 6; /* Center and equal size */
}

/* Wide cards */
.v-card--wide {
  grid-column: span 6;
}

/* Full width cards */
.v-card--full {
  grid-column: span 12;
}

.v-card__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.v-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1.2s var(--ease-out);
}

.v-card:hover .v-card__bg img {
  transform: scale(1.0);
}

.v-card__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(17,16,16,0.92) 0%, rgba(17,16,16,0.4) 60%, rgba(17,16,16,0.2) 100%);
  transition: opacity var(--dur-med);
}

.v-card:hover .v-card__veil {
  opacity: 0.85;
}

.v-card__num {
  position: absolute;
  left: 2rem;
  top: 1rem;
  font-family: 'Gotham', sans-serif;
  font-weight: 200;
  font-size: 8vw;
  line-height: 0.8;
  color: var(--color-cream);
  opacity: 0.06;
  pointer-events: none;
  z-index: 3;
}

.v-card__content {
  position: relative;
  z-index: 4;
  padding: clamp(1.5rem, 3vw, 3rem);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.v-card__logo {
  height: clamp(28px, 4vw, 48px);
  width: auto;
  margin-bottom: 1.25rem;
}

.v-card__meta {
  font-family: 'Gotham', sans-serif;
  font-weight: 200;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 10px;
  color: var(--color-cream-dim);
  margin-bottom: 0.5rem;
}

.v-card__tag {
  margin-bottom: 1.5rem;
  color: var(--color-cream);
  font-size: clamp(16px, 1.5vw, 22px);
}

/* Responsive Grid styling */
@media (max-width: 1023px) {
  .v-card {
    grid-column: span 6;
  }
  .v-card--wide {
    grid-column: span 6;
  }
}

@media (max-width: 767px) {
  .v-card,
  .v-card--wide,
  .v-card--full {
    grid-column: span 12;
    height: clamp(340px, 45vh, 440px);
  }
  .v-card__num {
    font-size: 16vw;
  }
}

/* ============================================================
   FEATURED PROJECT (clip-path reveal)
   ============================================================ */
.feature { overflow: hidden; }
.feature__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.feature__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.feature__media img,
.feature__media video { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); transition: transform 0.8s cubic-bezier(0.2, 0, 0, 1); }
.feature__media.is-in img,
.feature__media.is-in video { transform: scale(1); transition: transform 8s ease-out; }
.feature__media:hover video,
.feature__media:hover img { transform: scale(1.03); transition: transform 0.6s cubic-bezier(0.2, 0, 0, 1); }
.feature__stats { display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; }
.feature__stat .num { font-family: 'Gotham', sans-serif; font-weight: 300; font-size: clamp(1.5rem, 2.5vw, 2.4rem); }
.feature__stat .lbl { font-family: 'Gotham', sans-serif; font-weight: 200; letter-spacing: 0.18em; text-transform: uppercase; font-size: 11px; color: var(--color-cream-dim); }

/* Dynamic styling for light backgrounds */
.bg-cream .feature__stat .num { color: var(--color-navy); font-weight: 400; }
.bg-cream .feature__stat .lbl { color: rgba(0, 38, 62, 0.65); font-weight: 400; }

/* ============================================================
   QUOTE BREAK
   ============================================================ */
.quote { text-align: center; min-height: 90vh; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 2rem; }
.quote__mark { margin-top: 1rem; }

/* ============================================================
   AWARDS / PARTNERS STRIP
   ============================================================ */
.strip { padding-block: clamp(2.5rem, 5vw, 4rem); }
.strip__row + .strip__row { margin-top: 1.5rem; }

/* ---------- Recognition & Partners — premium logo wall ---------- */
.logo-wall { overflow: hidden; display: flex; -webkit-mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent); mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent); }
.logo-wall + .logo-wall { margin-top: clamp(0.85rem, 1.4vw, 1.4rem); }
.logo-wall__track {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  will-change: transform;
  animation: marquee 55s linear infinite;
  animation-play-state: running !important; /* keep moving, even on hover */
}
.logo-wall--reverse .logo-wall__track { animation-direction: reverse; animation-duration: 68s; }

.logo-card {
  flex: 0 0 auto;
  width: clamp(184px, 19vw, 248px);
  height: clamp(92px, 10vw, 120px);
  margin-inline: clamp(0.5rem, 0.9vw, 1rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1.85rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #f6f4ec 0%, #ece9df 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.logo-card:hover { transform: translateY(-5px); box-shadow: 0 18px 46px rgba(0, 0, 0, 0.45); }
.logo-card img {
  max-height: clamp(34px, 4vw, 48px);
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: transform 0.5s var(--ease-out), filter 0.5s var(--ease-out);
}
.logo-card:hover img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.05);
}
/* Larger logo within a card */
.logo-card--lg img { max-height: clamp(52px, 6.5vw, 76px); }
.logo-card--xl { padding: 0.85rem 1.4rem; }
.logo-card--xl img { max-height: clamp(64px, 8.5vw, 96px); }
/* Dark card variant — for logos that are white / light so they stay visible */
.logo-card--dark {
  background: linear-gradient(180deg, #232220 0%, #161514 100%);
  border-color: rgba(240, 237, 227, 0.12);
}
/* Per-logo overrides */
.logo-card--white { background: var(--color-cream); }
.logo-card--black img { filter: brightness(0) opacity(0.55); }      /* render the logo solid black */
.logo-card--black:hover img { filter: brightness(0) opacity(1); }
.logo-card--lg img { max-height: clamp(48px, 6vw, 70px); }
.logo-card--xl img { max-height: clamp(62px, 8vw, 92px); }

/* ============================================================
   FOOTER CTA
   ============================================================ */
.cta-block { text-align: center; min-height: 80vh; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; }
.cta-block__q { display: inline-block; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-hero { display: grid; grid-template-columns: 1.05fr 0.95fr; min-height: 100vh; }
.about-hero__text { display: flex; flex-direction: column; justify-content: center; padding: var(--nav-height) var(--gutter) 3rem; }
.about-hero__media { position: relative; overflow: hidden; }
.about-hero__media img { width: 100%; height: 100%; object-fit: cover; }

.philosophy { position: relative; }
.philosophy__screen {
  min-height: 56vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: clamp(3rem, 9vh, 7rem) var(--gutter);
}
.philosophy__screen .type-display {
  max-width: 16ch;
  margin-inline: auto;
  font-size: clamp(2.25rem, 5.5vw, 5rem);
  line-height: 1.08;
}

.deep-row { align-items: center; }
.deep-row__icon { width: clamp(90px, 12vw, 150px); height: auto; opacity: 0.9; }

/* Global presence map */
.map-wrap { position: relative; max-width: 1100px; margin-inline: auto; }
.map-wrap img.map-base { width: 100%; opacity: 0.85; }
.map-dot {
  position: absolute;
  width: 14px; height: 14px;
  transform: translate(-50%, -50%);
}
.map-dot::before {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid var(--color-sage);
  border-radius: 50%;
  animation: pulse-ring 2.6s ease-out infinite;
}
.map-dot__core { position: absolute; inset: 30%; background: var(--color-cream); border-radius: 50%; }
.map-dot--hq { width: 20px; height: 20px; }
.map-dot--hq::before { border-color: var(--color-cream); animation-duration: 2s; }
.map-dot__label {
  position: absolute; bottom: 140%; left: 50%; transform: translateX(-50%);
  font-family: 'Gotham', sans-serif; font-weight: 200; font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; white-space: nowrap; color: var(--color-cream);
  opacity: 0; transition: opacity var(--dur-fast); pointer-events: none;
}
.map-dot:hover .map-dot__label { opacity: 1; }
.map-dot:nth-child(2)::before { animation-delay: 0.3s; }
.map-dot:nth-child(3)::before { animation-delay: 0.6s; }
.map-dot:nth-child(4)::before { animation-delay: 0.9s; }
.map-dot:nth-child(5)::before { animation-delay: 1.2s; }
.map-dot:nth-child(6)::before { animation-delay: 1.5s; }

/* Section Divider */
.section-divider {
  border: none;
  border-top: 1px solid var(--c-line);
  margin: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4rem);
}

/* Compact Directory Style */
.team-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: clamp(1.5rem, 3vw, 2.5rem); 
}

.compact-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.compact-card__media {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background: var(--c-charcoal);
  border: 1px solid rgba(240, 237, 227, 0.08);
}

.compact-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: filter var(--dur-med), transform var(--dur-med) var(--ease-out);
}

.compact-card:hover .compact-card__media img {
  filter: grayscale(0) contrast(1);
  transform: scale(1.05);
}

.compact-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.compact-card__name {
  font-family: 'Gotham', sans-serif;
  font-weight: 300;
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--color-cream);
}

.compact-card__role {
  font-family: 'Gotham', sans-serif;
  font-weight: 200;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 10px;
  color: var(--color-cream-dim);
}

/* Dynamic styling for light backgrounds */
.bg-cream .compact-card__name,
.section--cream .compact-card__name {
  color: var(--color-navy);
  font-weight: 400;
}

.bg-cream .compact-card__role,
.section--cream .compact-card__role {
  color: rgba(0, 38, 62, 0.65); /* Faded Navy */
  font-weight: 400;
}

.bg-cream .compact-card__media,
.section--cream .compact-card__media {
  border-color: rgba(0, 38, 62, 0.15);
  background: transparent;
}

/* ============================================================
   VERTICALS HUB — accordion (collapsed bars; hover reveals all)
   ============================================================ */
.accordion { display: flex; flex-direction: column; }
.acc-bar {
  position: relative;
  overflow: hidden;
  min-height: 98px;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--c-line);
  cursor: pointer;
  transition: min-height 0.65s var(--ease-in-out);
}
.acc-bar:last-child { border-bottom: 1px solid var(--c-line); }
.acc-bar__accent { position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--accent, var(--color-cream)); z-index: 3; }

.acc-bar__bg { position: absolute; inset: 0; opacity: 0; transition: opacity 0.7s var(--ease-out); }
.acc-bar__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 1.4s var(--ease-out); }
.acc-bar__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(17,16,16,0.94) 0%, rgba(17,16,16,0.78) 42%, rgba(17,16,16,0.4) 100%);
}

.acc-bar__inner { position: relative; z-index: 2; width: 100%; padding-block: 1.5rem; }
.acc-bar__head { display: flex; align-items: baseline; gap: clamp(1rem, 2vw, 2rem); }
.acc-bar__idx {
  font-family: 'Gotham', sans-serif; font-weight: 200; letter-spacing: 0.24em;
  font-size: 13px; color: var(--accent, var(--color-cream-dim)); flex-shrink: 0;
}
.acc-bar__name {
  font-family: 'Gotham', sans-serif; font-weight: 300;
  font-size: clamp(1.5rem, 3.2vw, 3rem); line-height: 1; letter-spacing: -0.01em;
}
.acc-bar__tag {
  margin-left: auto; flex-shrink: 0;
  font-family: 'Book Antiqua', Georgia, serif; font-style: italic; color: var(--color-cream-dim);
  font-size: clamp(0.95rem, 1.5vw, 1.3rem); transition: color var(--dur-fast);
}

.acc-bar__detail {
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height 0.65s var(--ease-in-out), opacity 0.5s var(--ease-out), margin-top 0.65s var(--ease-in-out);
  max-width: 620px;
}
.acc-bar__detail .type-body { margin-bottom: 1.5rem; }
.acc-bar__stats { display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; margin-bottom: 1.75rem; }
.acc-stat { display: flex; flex-direction: column; gap: 0.3rem; }
.acc-stat .num { font-family: 'Gotham', sans-serif; font-weight: 300; font-size: clamp(1.4rem, 2.2vw, 2.1rem); line-height: 1; color: var(--accent, var(--color-cream)); }
.acc-stat .lbl { font-family: 'Gotham', sans-serif; font-weight: 200; letter-spacing: 0.18em; text-transform: uppercase; font-size: 11px; color: var(--color-cream-dim); }

/* Open / hovered state — reveals image + full information */
.acc-bar.is-open { min-height: clamp(440px, 60vh, 620px); }
.acc-bar.is-open .acc-bar__bg { opacity: 1; }
.acc-bar.is-open .acc-bar__bg img { transform: scale(1); }
.acc-bar.is-open .acc-bar__detail { max-height: 460px; opacity: 1; margin-top: 1.75rem; }
.acc-bar.is-open .acc-bar__head { flex-wrap: wrap; }
.acc-bar.is-open .acc-bar__tag { margin-left: 0; color: var(--color-cream); width: 100%; }

/* On touch / small screens hover isn't available — show every bar fully */
@media (max-width: 900px) {
  .acc-bar,
  .acc-bar.is-open { min-height: auto; cursor: default; }
  .acc-bar__bg { opacity: 1; }
  .acc-bar__bg img { transform: none; }
  .acc-bar__inner { padding-block: clamp(2.25rem, 6vw, 3rem); }
  .acc-bar__head { flex-wrap: wrap; }
  .acc-bar__tag { margin-left: 0; width: 100%; color: var(--color-cream); }
  .acc-bar__detail { max-height: none; opacity: 1; overflow: visible; margin-top: 1.5rem; }
}

/* ============================================================
   VERTICAL DETAIL pages
   ============================================================ */
.vhero {
  position: relative; min-height: 100vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.vhero__layer { position: absolute; inset: 0; }
.vhero__layer img { width: 100%; height: 100%; object-fit: cover; }
.vhero__veil { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,16,16,0.9), rgba(17,16,16,0.5)); }
.vhero__inner { position: relative; z-index: 3; padding-inline: var(--gutter); }
.vhero__logo { height: clamp(54px, 8vw, 110px); width: auto; margin-inline: auto; margin-bottom: 2rem; }
.vhero__accent { color: var(--accent, var(--color-sage)); }

.vstats { display: flex; flex-wrap: wrap; gap: 2rem 3.5rem; }
.vstat .num { font-family: 'Gotham', sans-serif; font-weight: 300; font-size: clamp(2.2rem, 5vw, 4.5rem); line-height: 1; color: var(--accent, var(--color-cream)); }
.vstat .lbl { font-family: 'Gotham', sans-serif; font-weight: 200; letter-spacing: 0.18em; text-transform: uppercase; font-size: 12px; color: var(--color-cream-dim); margin-top: 0.6rem; }
.bg-cream .vstat .lbl { color: rgba(0, 38, 62, 0.65); font-weight: 400; }

.brand-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--c-line); border: 1px solid var(--c-line); }
.brand-cell {
  position: relative; aspect-ratio: 4/3; background: var(--c-charcoal);
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  overflow: hidden;
}
.brand-cell img { max-height: 56%; max-width: 78%; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.7; transition: opacity var(--dur-fast), filter var(--dur-fast); }
.brand-cell:hover img { opacity: 1; }
/* For opaque (JPG) logos that carry their own background — show on a white
   tile with no monochrome filter so they render true and clear. */
.brand-cell--photo { background: var(--color-cream); }
.brand-cell--photo img { filter: none; opacity: 1; max-height: 62%; max-width: 84%; }
/* White tile + force the logo solid black (for white/transparent PNG logos) */
.brand-cell--white-black { background: var(--color-cream); }
.brand-cell--white-black img { filter: brightness(0); opacity: 1; max-height: 60%; max-width: 82%; }
/* Square / circular logos — let them fill more of the tile so they read balanced */
.brand-cell--square img { max-height: 80%; max-width: 80%; }
/* Bigger wordmark logos */
.brand-cell--big img { max-height: 80%; max-width: 92%; }

/* ---------- Awards & Recognition ---------- */
.awards-laurels { width: 100%; max-width: 660px; height: auto; margin-inline: auto; display: block; }
.awards-layout {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.award-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.75rem, 3vw, 2.75rem) clamp(1.5rem, 2.5vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.award-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(17, 16, 16, 0.14);
}
.award-card__logo { height: clamp(40px, 4.6vw, 58px); width: auto; max-width: 90%; object-fit: contain; }
.award-card__accolade {
  font-family: 'Gotham', sans-serif;
  font-weight: 200;
  letter-spacing: 0.06em;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(17, 16, 16, 0.6);
}
.awards-hotlist img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  margin-inline: auto;
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}
@media (max-width: 920px) {
  .awards-layout { grid-template-columns: 1fr; gap: clamp(2.5rem, 6vw, 4rem); }
}
@media (max-width: 560px) {
  .award-grid { grid-template-columns: repeat(2, 1fr); }
}
.brand-cell__info {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.4rem; text-align: center; padding: 1rem;
  background: var(--accent, var(--color-dark-olive)); color: var(--color-cream);
  opacity: 0; transition: opacity var(--dur-fast);
}
.brand-cell:hover .brand-cell__info { opacity: 1; }
.brand-cell__name { font-family: 'Gotham', sans-serif; font-weight: 300; font-size: 15px; }
.brand-cell__desc { font-family: 'Gotham', sans-serif; font-weight: 200; letter-spacing: 0.12em; font-size: 11px; text-transform: uppercase; }

.next-vertical { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-block: clamp(3rem, 7vw, 6rem); border-top: 1px solid var(--c-line); }
.next-vertical .type-display { font-size: clamp(2rem, 5.5vw, 4rem); line-height: 0.95; }
.next-vertical .btn { flex-shrink: 0; }

/* ============================================================
   PROJECTS
   ============================================================ */
.proj-filter { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 3rem; }
.proj-filter__btn {
  font-family: 'Gotham', sans-serif; font-weight: 200; letter-spacing: 0.2em; text-transform: uppercase; font-size: 12px;
  border: 1px solid var(--c-line-bright); border-radius: 100px; padding: 0.7rem 1.5rem; color: var(--color-cream-dim);
  transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}
.proj-filter__btn:hover { color: var(--color-cream); }
.proj-filter__btn.is-active { background: var(--color-cream); color: var(--c-void); border-color: var(--color-cream); }

.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 2rem); }
.proj-card { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--c-charcoal); }
.proj-card.is-hidden { display: none; }
.proj-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.proj-card:hover img { transform: scale(1.05); }
.proj-card__base {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.75rem;
  background: linear-gradient(to top, rgba(17,16,16,0.9), transparent);
}
.proj-card__name { font-family: 'Gotham', sans-serif; font-weight: 300; font-size: clamp(1.1rem, 1.6vw, 1.6rem); }
.proj-card__loc { font-family: 'Gotham', sans-serif; font-weight: 200; letter-spacing: 0.2em; text-transform: uppercase; font-size: 11px; color: var(--color-cream-dim); margin-top: 0.4rem; }
.proj-card__hover {
  position: absolute; inset: 0; z-index: 3; padding: 1.75rem;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 1rem;
  background: linear-gradient(to top, rgba(17,16,16,0.95) 30%, rgba(17,16,16,0.2));
  opacity: 0; transform: translateY(12%); transition: opacity var(--dur-med), transform var(--dur-med) var(--ease-out);
}
.proj-card:hover .proj-card__hover { opacity: 1; transform: translateY(0); }
.proj-card__stat { font-family: 'Gotham', sans-serif; font-weight: 200; letter-spacing: 0.12em; font-size: 13px; color: var(--color-cream); }

/* Project detail sections */
.proj-detail { scroll-margin-top: 96px; }
.proj-logo { height: clamp(72px, 11vw, 150px); width: auto; max-width: 100%; object-fit: contain; margin-bottom: 1rem; }
.proj-logo--invert { filter: brightness(0) invert(1); }
/* Wide wordmark logos: size by width so they read as large as SOHO */
.proj-logo--lg { height: auto; width: clamp(260px, 36vw, 460px); max-height: 220px; }
.proj-logo--xl { height: auto; width: clamp(360px, 48vw, 620px); max-height: 300px; }
.proj-detail .type-italic { font-size: clamp(20px, 2.4vw, 32px); }
.proj-mix {
  font-family: 'Gotham', sans-serif; font-weight: 200; letter-spacing: 0.12em;
  line-height: 1.9; font-size: 13px; color: var(--color-cream-dim);
}
.section--panel .proj-mix { color: var(--color-cream-dim); }

/* SOHO deep dive floor stack */
.floors { display: flex; flex-direction: column-reverse; gap: 16px; }
.floor {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.4rem 2.25rem; background: var(--c-void); border-left: 3px solid var(--color-sage);
  border-top: 1px solid rgba(240, 237, 227, 0.02);
  border-right: 1px solid rgba(240, 237, 227, 0.02);
  border-bottom: 1px solid rgba(240, 237, 227, 0.02);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  transform: translateX(-30px); opacity: 0;
}
.floor.is-in { transform: none; opacity: 1; transition: transform 0.6s var(--ease-out), opacity 0.6s var(--ease-out); }
.floor__lvl { font-family: 'Gotham', sans-serif; font-weight: 300; font-size: 1.15rem; }
.floor__use { font-family: 'Gotham', sans-serif; font-weight: 200; letter-spacing: 0.18em; text-transform: uppercase; font-size: 12px; color: var(--color-cream-dim); }
.spec-table { width: 100%; border-collapse: collapse; margin-bottom: 2.5rem; }
.spec-table td { padding: 1.6rem 0; border-bottom: 1px solid var(--c-line); }
.spec-table td:first-child { font-family: 'Gotham', sans-serif; font-weight: 200; letter-spacing: 0.18em; text-transform: uppercase; font-size: 12px; color: var(--color-cream-dim); }
.spec-table td:last-child { text-align: right; font-family: 'Gotham', sans-serif; font-weight: 300; }

/* ============================================================
   COMMUNITY
   ============================================================ */
.pillar { position: relative; min-height: 100vh; overflow: hidden; display: flex; align-items: flex-end; }
.pillar__bg { position: absolute; inset: 0; }
.pillar__bg img { width: 100%; height: 100%; object-fit: cover; }
.pillar__veil { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,16,16,0.92), rgba(17,16,16,0.25)); }
.pillar__content { position: relative; z-index: 2; padding: clamp(2rem,5vw,5rem) var(--gutter); max-width: 760px; }

/* MAHYA hotspots */
.park-map { position: relative; max-width: 1100px; margin-inline: auto; }
.park-map img { width: 100%; border-radius: 4px; }
.hotspot { position: absolute; width: 26px; height: 26px; transform: translate(-50%, -50%); }
.hotspot__dot {
  width: 100%; height: 100%; border: 1px solid var(--color-cream); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(17,16,16,0.4); transition: background var(--dur-fast), transform var(--dur-fast);
}
.hotspot__dot::before { content: ''; width: 6px; height: 6px; background: var(--color-cream); border-radius: 50%; }
.hotspot:hover .hotspot__dot { background: var(--color-cream); transform: scale(1.15); }
.hotspot:hover .hotspot__dot::before { background: var(--c-void); }
.hotspot__tip {
  position: absolute; bottom: 150%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--color-cream); color: var(--c-void); padding: 0.6rem 0.9rem; border-radius: 3px;
  width: max-content; max-width: 220px; opacity: 0; pointer-events: none;
  transition: opacity var(--dur-fast), transform var(--dur-fast);
}
.hotspot:hover .hotspot__tip { opacity: 1; transform: translateX(-50%) translateY(0); }
.hotspot__tip strong { font-family: 'Gotham', sans-serif; font-weight: 300; font-size: 13px; display: block; }
.hotspot__tip span { font-family: 'Gotham', sans-serif; font-weight: 200; font-size: 11px; letter-spacing: 0.08em; }

/* Experiences drag carousel */
.carousel { overflow: hidden; cursor: grab; }
.carousel.is-dragging { cursor: grabbing; }
.carousel__track { display: flex; gap: clamp(1rem, 2vw, 2rem); padding-inline: var(--gutter); will-change: transform; }
.exp-card { position: relative; flex: 0 0 clamp(260px, 32vw, 460px); aspect-ratio: 4/5; overflow: hidden; background: var(--c-charcoal); }
.exp-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.exp-card:hover img { transform: scale(1.05); }
.exp-card__veil { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,16,16,0.85), transparent 60%); }
.exp-card__name { position: absolute; left: 1.5rem; bottom: 1.5rem; z-index: 2; font-family: 'Gotham', sans-serif; font-weight: 300; font-size: 1.4rem; }
/* Higher specificity than ".exp-card img" so the logo shows fully (contain),
   not cropped by the background image's object-fit:cover. Size unchanged. */
.exp-card img.exp-card__logo {
  position: absolute; left: 1.5rem; bottom: 1.5rem; z-index: 2;
  width: auto; height: auto; max-height: 46px; max-width: 60%;
  object-fit: contain; filter: brightness(0) invert(1);
}
.exp-card:hover img.exp-card__logo { transform: none; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { display: grid; grid-template-columns: 1.04fr 0.96fr; min-height: 100vh; }

/* ---- Left (dark) ---- */
.contact__left {
  position: relative; overflow: hidden; background: var(--c-void);
  display: flex; flex-direction: column; justify-content: space-between; gap: clamp(2.5rem, 5vh, 4rem);
  padding: calc(var(--nav-height) + 3rem) clamp(1.75rem, 5vw, 5.5rem) clamp(2.5rem, 5vw, 4rem);
}
.contact__left-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.contact__logo { height: 30px; width: auto; }

.contact__title {
  font-family: 'Gotham', sans-serif; font-weight: 300;
  font-size: clamp(2.75rem, 6.2vw, 6.25rem); line-height: 0.92; letter-spacing: -0.02em;
}
.contact__title .u-italic { font-weight: 300; }
.contact__lead { max-width: 40ch; margin-top: 1.75rem; }

.contact__details { display: flex; flex-direction: column; }
.contact__details li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1.5rem;
  padding: 1.15rem 0; border-top: 1px solid var(--c-line);
}
.contact__details li:last-child { border-bottom: 1px solid var(--c-line); }
.contact__detail-label {
  font-family: 'Gotham', sans-serif; font-weight: 200; letter-spacing: 0.22em; text-transform: uppercase;
  font-size: 11px; color: var(--color-cream-dim); white-space: nowrap;
}
.contact__detail-value {
  font-family: 'Gotham', sans-serif; font-size: clamp(15px, 1.2vw, 18px); color: var(--color-cream);
  text-align: right; transition: color var(--dur-fast);
}
a.contact__detail-value { position: relative; }
a.contact__detail-value:hover { color: var(--color-sage); }

/* ---- Right (cream form) ---- */
.contact__right {
  background: var(--color-cream); color: var(--c-void);
  display: flex; align-items: center; justify-content: center;
  padding: calc(var(--nav-height) + 3rem) clamp(1.75rem, 5vw, 5.5rem) clamp(2.5rem, 5vw, 4rem);
}
.contact__form-wrap { width: 100%; max-width: 580px; }
.contact__form-title {
  font-family: 'Gotham', sans-serif; font-weight: 300; font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.05; margin: 0.85rem 0 clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em;
}
.contact__form { display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2.5vw, 2.25rem); }

.field { position: relative; margin-bottom: clamp(1.75rem, 3vw, 2.5rem); }
.field input,
.field textarea {
  width: 100%; padding: 0.9rem 0; border-bottom: 1px solid rgba(17,16,16,0.22);
  font-family: 'Gotham', sans-serif; font-size: clamp(17px, 1.3vw, 20px); color: var(--c-void); background: transparent;
}
.field textarea { resize: none; min-height: 120px; }
.field::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--color-dark-olive); transform: scaleX(0); transform-origin: left;
  transition: transform 0.55s var(--ease-out);
}
.field:focus-within::after { transform: scaleX(1); }
.field label {
  position: absolute; left: 0; top: 0.9rem; pointer-events: none;
  font-family: 'Gotham', sans-serif; font-weight: 200; letter-spacing: 0.2em; text-transform: uppercase;
  font-size: 13px; color: rgba(17,16,16,0.5); transition: all var(--dur-fast) var(--ease-out);
}
.field input:focus ~ label,
.field textarea:focus ~ label,
.field input:not(:placeholder-shown) ~ label,
.field textarea:not(:placeholder-shown) ~ label {
  top: -0.85rem; font-size: 10px; letter-spacing: 0.24em; color: var(--color-dark-olive);
}
.contact__submit {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 0.85rem; margin-top: 1rem;
  background: var(--c-void); color: var(--color-cream); border-radius: 100px;
  padding: 1.2rem 2.85rem; font-family: 'Gotham', sans-serif; font-weight: 200;
  letter-spacing: 0.22em; text-transform: uppercase; font-size: 13px;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast), background var(--dur-fast);
}
.contact__submit:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(0,0,0,0.22); }
.contact__submit.is-sent { background: var(--color-dark-olive); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1023px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .feature__grid { grid-template-columns: 1fr; }
}
@media (max-width: 920px) {
  .contact { grid-template-columns: 1fr; }
  .contact__left { min-height: auto; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 767px) {
  .about-hero { grid-template-columns: 1fr; }
  .about-hero__media { min-height: 50vh; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .proj-grid { grid-template-columns: 1fr; }
  .framework__cols { grid-template-columns: 1fr; gap: 3rem; }
  .h-scroll__track { flex-direction: column; }
  .v-panel { flex-basis: auto; height: 88vh; }
  .v-panel__num { font-size: 50vw; }
  .next-vertical { flex-direction: column; align-items: flex-start; }
}


/* ============================================================
   FLIP SECTION EXCEPTION (Strictly protected Barques font)
   ============================================================ */
.flip__a .type-display {
  font-family: 'Barques', sans-serif;
  font-size: clamp(44px, 7vw, 120px);
}
.flip__b .type-hero {
  font-family: 'Barques', sans-serif;
  font-size: clamp(38px, 5.2vw, 96px);
}
@media (max-width: 600px) {
  .flip__a .type-display { font-size: clamp(1.7rem, 8vw, 2.7rem); }
  .flip__b .type-hero { font-size: clamp(1.55rem, 8.6vw, 2.7rem); }
}


/* ============================================================
   STORY & VALUES
   ============================================================ */
.story-narrative {
  padding-block: 15rem;
  background-color: var(--c-void);
  color: var(--color-cream);
  position: relative;
}
.story-narrative__block {
  margin-bottom: 30vh;
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}
.story-narrative__block:last-child {
  margin-bottom: 0;
}
.story-narrative__text {
  font-size: clamp(24px, 4vw, 48px);
  line-height: 1.3;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.story-narrative__highlight {
  color: #fff;
  font-weight: 500;
  font-style: italic;
}

.values-section {
  padding-block: 8rem;
  background-color: var(--c-charcoal);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}
.value-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 3rem 2rem;
  transition: all 0.4s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.value-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-5px);
}
.value-card__num {
  font-size: 1rem;
  opacity: 0.5;
  margin-bottom: 2rem;
  font-family: var(--font-mono);
}
.value-card__title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}
.value-card__text {
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.7;
  transition: opacity 0.4s ease;
  margin-top: auto;
}
.value-card:hover .value-card__text {
  opacity: 1;
}


/* ============================================================
   ENHANCED VALUES ROW DESIGN (Scroll-Swap)
   ============================================================ */
.values-section {
  padding: 0 !important;
}
.values-section .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 1rem;
  padding-bottom: 1rem;
  box-sizing: border-box;
}
.values-section .u-center.stack {
  margin-bottom: 0;
  gap: 0.5rem;
}
.values-list {
  position: relative;
  margin-top: 1rem;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.value-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 3rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 620px;
  margin: 0 auto;
  transition: background-color 0.5s ease;
}
.value-row:hover {
  background-color: rgba(255,255,255,0.05);
}
.value-row__num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
  margin-bottom: 0.75rem;
}
.value-row__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.value-row__icon {
  opacity: 0.7;
  margin-bottom: 0.25rem;
}
.value-row__icon svg,
.value-row__content > svg {
  width: 36px;
  height: 36px;
}
.value-row__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-cream);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.value-row__text {
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  line-height: 1.6;
  max-width: 48ch;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}

/* ---- Progress indicator (injected by JS) ---- */
.values-progress {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1.5rem;
}
.values-progress__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background-color 0.4s ease, transform 0.4s ease;
}
.values-progress__dot.is-active {
  background: var(--color-cream);
  transform: scale(1.35);
}

@media (max-width: 768px) {
  .value-row {
    padding: 1.5rem 1.25rem;
    border-radius: 14px;
  }
}


/* ============================================================
   REDESIGNED STORY NARRATIVE (STICKY)
   ============================================================ */
.story-narrative {
  padding-block: 8rem;
  color: var(--color-cream);
  color: var(--color-cream);
  position: relative;
}
.story-narrative__layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: start;
}
.story-narrative__sidebar {
  position: sticky;
  top: 150px;
}
.story-narrative__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 70px);
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--color-cream);
  margin-top: 1rem;
}
.story-narrative__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.story-narrative__text {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.35;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.8);
}
.story-narrative__highlight {
  color: #fff;
  font-weight: 500;
  font-style: italic;
}
@media (max-width: 900px) {
  .story-narrative__layout {
    grid-template-columns: 1fr;
  }
  .story-narrative__sidebar {
    position: relative;
    top: 0;
  }
}
