/* ============================================================
   CHRISTY IOANNIDOU — PORTFOLIO
   Lead Product Designer, Berlin
   ============================================================ */

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

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

body {
  background: #ffffff;
  color: #0a0a0a;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 14;
}

h1, h2, h3, h4, h5, h6,
.hero__headline,
.cs-hero__title,
.ai-section__headline,
.about__headline,
.contact__headline,
.wcard__title,
.cs-section__heading,
.cs-quote__text,
.cs-next__title,
.stats__num {
  font-variation-settings: 'opsz' 32;
}

/* Inter — homepage + case-study titles use Inter site-wide.
   (IBM Plex Mono is reserved for small mono labels / eyebrows.) */
h1, h2, h3,
.hero__headline,
.cs-stacked__title,
.cs-creative__title,
.cs-hero__title,
.ai-section__headline,
.about__headline,
.contact__headline,
.wcard__title,
.nav__logo-text,
.nav__links a,
.life-strip__title,
.stats__num {
  font-family: 'Inter', sans-serif;
}

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

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

ul {
  list-style: none;
}

/* ---- LAYOUT ----------------------------------------------- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

/* ---- TYPOGRAPHY ------------------------------------------- */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 64px;
}

/* ---- ANIMATIONS ------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-in--delay {
  transition-delay: 0.15s;
}

.fade-in--delay-2 {
  transition-delay: 0.3s;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- NAV -------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  padding: 16px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  backdrop-filter: blur(8px);
}

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

.nav__logo {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: #0a0a0a;
  transition: opacity 0.2s;
}

.nav__logo:hover {
  opacity: 0.6;
}

.nav__links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav__links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: 0.01em;
  transition: opacity 0.2s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #0a0a0a;
  transition: width 0.25s ease;
}

.nav__links a:hover::after {
  width: 100%;
}

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

.nav__menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #0a0a0a;
  transition: transform 0.25s, opacity 0.25s;
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding: 16px 24px 24px;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .nav__links a {
    font-size: 16px;
  }

  .nav__menu-toggle {
    display: flex;
  }
}

/* ---- NAV (tiny, Orchid-style) ----------------------------- */
.nav--tiny {
  padding: 18px 0;
}
.nav--tiny .nav__inner {
  justify-content: space-between;
  gap: 40px;
}
.nav--tiny .nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0a0a0a;
}
.nav__logo-mark {
  width: 32px;
  height: 32px;
  display: block;
  filter: invert(1);
  flex: 0 0 auto;
}
.nav__logo-text {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  font-variation-settings: 'opsz' 32;
}
.nav--tiny .nav__links {
  gap: 28px;
  margin-left: auto;
  padding-right: 4px;
}
.nav--tiny .nav__links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .nav--tiny .nav__links { display: none; }
}

/* ---- HERO — Orchid-style --------------------------------- */
.hero.hero--orchid {
  padding: max(120px, calc(100vh - 660px)) 0 0;
}
.hero-o__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 0;
}
.hero-o__headline {
  font-family: 'Inter', sans-serif;
  font-size: 63px;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #0a0a0a;
  margin: 0;
  font-variation-settings: 'opsz' 32;
  max-width: 1100px;
}
@media (max-width: 768px) {
  .hero.hero--orchid { padding: 160px 0 0; }
  .hero-o__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .hero-o__headline { font-size: 40px; line-height: 1.05; }
}
.hero-o__cta {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #0a0a0a;
  white-space: nowrap;
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}
.hero-o__cta:hover {
  border-color: #0a0a0a;
}
.hero-o__cta span {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.25s ease;
}
.hero-o__cta:hover span {
  transform: translateX(4px);
}

/* project grid — full-bleed, 2-col, static */
.hero-strip {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 24px;        /* tighter — sit close to the headline / CTA */
  padding: 0 20px;
  box-sizing: border-box;
}
.hero-strip__track {
  display: grid;
  grid-template-columns: 2.2fr 1.8fr 2.2fr 2.2fr;
  grid-auto-rows: 420px;
  gap: 16px;
}
.hero-strip__item--vertical img {
  object-fit: cover;
  object-position: center;
}
.hero-strip__item {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: #f0efec;
  position: relative;
  transition: transform 0.4s ease;
  text-decoration: none;
  height: 100%;
}
.hero-strip__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}
/* Row 2: 3 tiles — first spans 2 cols (wide), other two each take 1 col */
.hero-strip__item:nth-child(5) { grid-column: 1 / 3; }
.hero-strip__item:nth-child(6) { grid-column: 3 / 4; }
.hero-strip__item:nth-child(7) { grid-column: 4 / 5; }
.hero-strip__cap {
  position: absolute;
  left: 18px;
  bottom: 18px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(10,10,10,0.55);
  padding: 6px 12px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.hero-strip__item:hover { transform: translateY(-4px); }
.hero-strip__item:hover img { transform: scale(1.03); }
.hero-strip__item:hover .hero-strip__cap { opacity: 1; transform: translateY(0); }

/* "Coming soon" tile — disabled, no hover lift */
.hero-strip__item--soon {
  cursor: default;
  display: block;
  position: relative;
  text-decoration: none;
  background:
    radial-gradient(ellipse 320px 220px at 70% 30%, rgba(255,255,255,0.06), transparent 60%),
    radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1.4px) 0 0 / 18px 18px,
    #2a2440;
}
.hero-strip__item--soon:hover { transform: none; }
.hero-strip__soon-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-strip__soon-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fbbf24;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.18);
  animation: hero-soon-pulse 2.4s ease-in-out infinite;
}
@keyframes hero-soon-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.18); }
  50%      { opacity: 0.6; box-shadow: 0 0 0 5px rgba(251, 191, 36, 0.30); }
}

@media (max-width: 1024px) {
  .hero-strip__track {
    grid-template-columns: 2fr 1fr 2fr;
    grid-auto-rows: 240px;
  }
  .hero-strip__item:nth-child(5) { grid-column: 1 / 3; }
  .hero-strip__item:nth-child(6) { grid-column: 3 / 4; }
}

@media (max-width: 768px) {
  .hero--orchid { padding: 96px 0 48px; }
  .hero-o__foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .hero-strip { padding: 0 12px; }
  .hero-strip__track {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 12px;
  }
  .hero-strip__item { aspect-ratio: 3/2; height: auto; }
  .hero-strip__item--vertical { aspect-ratio: 2/3; }
  .hero-strip__item:nth-child(5),
  .hero-strip__item:nth-child(6) { grid-column: auto; }
}

/* ---- HERO (legacy, still used by case studies via .hero) -- */
.hero {
  padding: 160px 0 120px;
}

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

.hero__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 32px;
}

.hero__headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #0a0a0a;
}

.hero__bio {
  font-size: 16px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 20px;
}

.hero__bio:last-of-type {
  margin-bottom: 36px;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #444;
  letter-spacing: 0.01em;
  transition: border-color 0.2s, color 0.2s;
}

.tag:hover {
  border-color: rgba(0,0,0,0.4);
  color: #0a0a0a;
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero {
    padding: 120px 0 80px;
  }
}

/* ---- WORK GRID -------------------------------------------- */
.work {
  padding: 80px 0 120px;
}

.work__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 20px;
}

/* Full-width card spans both columns */
.work-card--full {
  grid-column: 1 / -1;
}

.work-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

/* Image cards */
.work-card--image .work-card__image-wrap,
.work-card--dark .work-card__image-wrap {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.work-card--large .work-card__image-wrap {
  height: 520px;
}

.work-card--small .work-card__image-wrap {
  height: 520px;
}

.work-card--full .work-card__image-wrap {
  height: 480px;
}

.work-card__image {
  width: 100%;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.25, 0.1, 0.25, 1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-card__link:hover .work-card__image {
  transform: scale(1.04);
}

/* Overlay */
.work-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.work-card__overlay--light {
  background: rgba(0, 0, 0, 0.45);
}

.work-card__link:hover .work-card__overlay {
  opacity: 1;
}

.work-card__overlay-content {
  padding: 32px;
  transform: translateY(12px);
  transition: transform 0.4s ease;
  width: 100%;
}

.work-card__link:hover .work-card__overlay-content {
  transform: translateY(0);
}

.work-card__overlay .work-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}

.work-card__overlay .work-card__meta {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}

.work-card__overlay .work-card__arrow {
  display: block;
  margin-top: 16px;
  font-size: 20px;
  color: #fff;
  transform: translateX(0);
  transition: transform 0.25s ease;
}

.work-card__link:hover .work-card__arrow {
  transform: translateX(6px);
}

/* Text card (Digital Anamnesis — off-white) */
.work-card--text .work-card__text-wrap {
  background: #f7f4ef;
  height: 520px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.3s;
}

.work-card--text .work-card__link--text:hover .work-card__text-wrap {
  background: #f0ece3;
}

.work-card__year {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
}

.work-card--text .work-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.15;
  color: #0a0a0a;
  letter-spacing: -0.01em;
  margin-top: 12px;
}

.work-card--text .work-card__description {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  flex: 1;
  margin-top: 20px;
}

.work-card--text .work-card__meta {
  font-size: 13px;
  color: #999;
  letter-spacing: 0.02em;
  margin-top: 16px;
}

.work-card__arrow--dark {
  display: block;
  margin-top: 20px;
  font-size: 20px;
  color: #0a0a0a;
  transition: transform 0.25s ease;
}

.work-card--text .work-card__link--text:hover .work-card__arrow--dark {
  transform: translateX(6px);
}

/* Dark card (SA Stavrakis) */
.work-card--dark .work-card__image-wrap {
  background: #111;
}

@media (max-width: 900px) {
  .work__grid {
    grid-template-columns: 1fr;
  }

  .work-card--large .work-card__image-wrap,
  .work-card--small .work-card__image-wrap,
  .work-card--text .work-card__text-wrap {
    height: 400px;
  }

  .work-card--full .work-card__image-wrap {
    height: 360px;
  }

  .work-card--full {
    grid-column: 1;
  }
}

/* ---- AI SECTION ------------------------------------------- */
.ai-section {
  background: #0a0a0a;
  padding: 120px 0;
  color: #fff;
}

.ai-section__header {
  max-width: none;
  margin-bottom: 80px;
}

.ai-section__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 28px;
}

.ai-section__headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
}

.ai-section__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.ai-section__col-number {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #444;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.ai-section__col-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.ai-section__col-body {
  font-size: 15px;
  line-height: 1.75;
  color: #888;
}

/* AI section fade-in — white text on dark bg */
.ai-section .fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.ai-section .fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .ai-section__columns {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ---- ABOUT ------------------------------------------------ */
.about {
  padding: 120px 0;
}

/* Lede — short bio + headline, single column */
.about__lede {
  max-width: 760px;
}
.about__eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 24px;
}

.about__portrait-wrap {
  position: relative;
  aspect-ratio: 3/4;
  background: #f0ece8;
  overflow: hidden;
}

.about__portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about__portrait-placeholder {
  background: #e8e4de;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  margin-bottom: 32px;
}

.about__bio {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 0;
  max-width: 700px;
}

/* Credentials — closing band below the carousel */
.about__credentials {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.about__cred-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about__cred-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aaa;
}
.about__cred-value {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .about__credentials { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 540px) {
  .about__credentials { grid-template-columns: 1fr; gap: 22px; }
}

.about__meta {
  margin-top: 48px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.about__meta-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  align-items: start;
}

.about__meta-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aaa;
  padding-top: 2px;
}

.about__meta-value {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__portrait-wrap {
    max-width: 360px;
  }

  .about__meta-item {
    grid-template-columns: 100px 1fr;
    gap: 12px;
  }
}

/* ---- ABOUT — LIFE STRIP (personal photo carousel) -------- */
.life-strip-section {
  margin-top: 96px;
  padding-top: 64px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.life-strip__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 14px;
}
.life-strip__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #0a0a0a;
  margin-bottom: 12px;
  max-width: 720px;
}
.life-strip__intro {
  font-size: 16px;
  color: #666;
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 40px;
}
.life-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 24px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: max(48px, calc(50vw - 620px));
  padding-right: max(48px, calc(50vw - 620px));
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.18) transparent;
  -webkit-overflow-scrolling: touch;
}
.life-strip::-webkit-scrollbar { height: 4px; }
.life-strip::-webkit-scrollbar-track { background: transparent; }
.life-strip::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.18);
  border-radius: 2px;
}
.life-strip__item {
  flex: 0 0 auto;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  margin: 0;
  cursor: pointer;
}
.life-strip__item--landscape { width: 520px; }
.life-strip__item--portrait  { width: 260px; }
.life-strip__item--square    { width: 360px; }
.life-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.life-strip__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.10);
}
.life-strip__item:hover img { transform: scale(1.04); }
.life-strip__item figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(10,10,10,0.55);
  padding: 7px 12px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 768px) {
  .life-strip-section { margin-top: 64px; padding-top: 48px; }
  .life-strip { padding-left: 24px; padding-right: 24px; }
  .life-strip__item { height: 280px; }
  .life-strip__item--landscape { width: 380px; }
  .life-strip__item--portrait  { width: 200px; }
  .life-strip__item--square    { width: 280px; }
}

/* ---- CONTACT ---------------------------------------------- */
.contact {
  padding: 120px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}

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

.contact__headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #0a0a0a;
}

.contact__body {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 32px;
}

.contact__email {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  color: #0a0a0a;
  border-bottom: 1.5px solid #0a0a0a;
  padding-bottom: 4px;
  transition: opacity 0.2s;
  letter-spacing: -0.01em;
}

.contact__email:hover {
  opacity: 0.5;
}

.contact__socials {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

.contact__social-link {
  font-size: 14px;
  color: #888;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  letter-spacing: 0.02em;
}

.contact__social-link:hover {
  color: #0a0a0a;
  border-color: #0a0a0a;
}

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

/* ---- FOOTER ----------------------------------------------- */
.footer {
  padding: 32px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}

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

.footer__copy {
  font-size: 13px;
  color: #bbb;
}

.footer__title {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #bbb;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats {
  padding: 140px 0 130px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.stats__item {
  padding: 0 40px;
  border-left: 1px solid rgba(0,0,0,0.08);
}
.stats__item:first-child {
  padding-left: 0;
  border-left: none;
}
.stats__num {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  color: #0a0a0a;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 10px;
}
.stats__label {
  display: block;
  font-size: 13px;
  color: #888;
  letter-spacing: 0.01em;
}

/* ============================================================
   WORK — ORCHID-STYLE EQUAL GRID
   ============================================================ */
.wgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.wcard {
  display: block;
  overflow: hidden;
  border-radius: 4px;
}
.wcard__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.wcard__img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.wcard__img-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.25, 0.1, 0.25, 1),
              opacity 0.6s ease;
}

/* default hover: subtle scale on any card */
.wcard__link:hover .wcard__img-el--primary { transform: scale(1.035); }

/* -- animated cover: gentle continuous drift so it never looks flat -- */
.wcard--animated .wcard__img-el--primary {
  animation: wcardDrift 9s ease-in-out infinite alternate;
  transform-origin: 50% 55%;
}
@keyframes wcardDrift {
  0%   { transform: scale(1.04) translate(0, 0); }
  50%  { transform: scale(1.06) translate(-1.2%, -0.6%); }
  100% { transform: scale(1.04) translate(1%, 0.8%); }
}

/* -- image crossfade on hover (primary → secondary) -- */
.wcard--animated .wcard__img-el--secondary { opacity: 0; transform: scale(1.04); }
.wcard--animated .wcard__link:hover .wcard__img-el--primary   { opacity: 0; }
.wcard--animated .wcard__link:hover .wcard__img-el--secondary { opacity: 1; transform: scale(1.06); }

/* -- footer (equal across all cards) -- */
.wcard__foot {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 4px 0;
}
.wcard__n {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #bbb;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  width: 24px;
}
.wcard__text { flex: 1; min-width: 0; }
.wcard__title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #0a0a0a;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.wcard__meta {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.wcard__arrow {
  font-size: 16px;
  color: #0a0a0a;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.wcard__link:hover .wcard__arrow { transform: translateX(5px); }

@media (max-width: 780px) {
  .wgrid { grid-template-columns: 1fr; gap: 28px; }
}

/* -- honour reduced-motion users -- */
@media (prefers-reduced-motion: reduce) {
  .wcard--animated .wcard__img-el--primary { animation: none; transform: none; }
}

/* ============================================================
   WORK — EDITORIAL LAYOUT (legacy, unused)
   ============================================================ */
.wc {
  display: block;
  overflow: hidden;
  border-radius: 3px;
}
.wc__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.wc__img {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.wc--large .wc__img { height: 580px; }
.wc--half  .wc__img { height: 460px; }

.wc__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.wc__link:hover .wc__img img { transform: scale(1.04); }

.wc__foot {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 28px;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.07);
  transition: background 0.25s ease;
}
.wc__foot--dark {
  background: #111;
  border-top-color: rgba(255,255,255,0.07);
}
.wc__link:hover .wc__foot:not(.wc__foot--dark) { background: #f7f4ef; }
.wc__link:hover .wc__foot--dark                { background: #1c1c1c; }

.wc__n {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #ccc;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  width: 28px;
}
.wc__foot--dark .wc__n { color: #444; }

.wc__text { flex: 1; min-width: 0; }

.wc__title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #0a0a0a;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wc__foot--dark .wc__title { color: #fff; }

.wc__meta {
  font-size: 12px;
  color: #999;
  margin-top: 3px;
  letter-spacing: 0.02em;
}
.wc__foot--dark .wc__meta { color: #555; }

.wc__arrow {
  font-size: 16px;
  color: #0a0a0a;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.wc__foot--dark .wc__arrow { color: #fff; }
.wc__link:hover .wc__arrow  { transform: translateX(5px); }

/* Two-column row */
.wc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

/* Numbered list rows */
.wl { margin-top: 4px; }

.wl__row {
  display: grid;
  grid-template-columns: 52px 1fr 1.2fr auto 28px;
  align-items: center;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.wl__row:first-child { border-top: 1px solid rgba(0,0,0,0.06); }
.wl__row:hover { opacity: 0.5; }

.wl__n {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #ccc;
  letter-spacing: 0.06em;
}
.wl__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  color: #0a0a0a;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.wl__desc {
  font-size: 14px;
  color: #888;
  line-height: 1.55;
}
.wl__tag {
  font-size: 12px;
  color: #bbb;
  letter-spacing: 0.04em;
  text-align: right;
  white-space: nowrap;
}
.wl__arrow {
  font-size: 16px;
  color: #0a0a0a;
  text-align: right;
}

/* ---- Responsive ------------------------------------------- */
@media (max-width: 900px) {
  .wc-row { grid-template-columns: 1fr; }
  .wc--large .wc__img { height: 400px; }
  .wc--half  .wc__img { height: 340px; }
  .wl__row { grid-template-columns: 40px 1fr auto 24px; }
  .wl__desc { display: none; }
}
@media (max-width: 600px) {
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .stats__item { padding: 0 24px; }
  .stats__item:nth-child(odd) { padding-left: 0; border-left: none; }
  .stats__item:nth-child(even) { border-left: 1px solid rgba(0,0,0,0.08); }
  .wl__row { grid-template-columns: 36px 1fr 20px; }
  .wl__tag { display: none; }
}


/* ============================================================
   CASE STUDY PAGES
   ============================================================ */

/* ---- CASE STUDY HERO -------------------------------------- */
.cs-hero {
  padding: 160px 0 80px;
}

.cs-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #888;
  margin-bottom: 64px;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.cs-back:hover {
  color: #0a0a0a;
}

.cs-back::before {
  content: '←';
  font-size: 14px;
}

.cs-hero__eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 24px;
}

.cs-hero__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  margin-bottom: 16px;
  max-width: 840px;
}

.cs-hero__subtitle {
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 300;
  color: rgba(0,0,0,0.45);
  line-height: 1.4;
  max-width: 720px;
  margin-bottom: 48px;
}

.cs-hero__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 80px;
}

.cs-meta-item__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 8px;
}

.cs-meta-item__value {
  font-size: 15px;
  color: #0a0a0a;
  line-height: 1.4;
}

.cs-hero__image {
  width: 100%;
  background: transparent;
}

.cs-hero__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .cs-hero__meta {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* ---- CASE STUDY CONTENT ----------------------------------- */
.cs-content {
  padding: 80px 0 120px;
}

.cs-section {
  margin-bottom: 80px;
}

.cs-section__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 28px;
}

.cs-section__heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #0a0a0a;
  margin-bottom: 24px;
  max-width: 720px;
}

.cs-section__body {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  max-width: 720px;
}

.cs-section__body p {
  margin-bottom: 20px;
}

.cs-section__body p:last-child {
  margin-bottom: 0;
}

.cs-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.cs-image-full {
  width: 100%;
  margin-bottom: 80px;
  background: transparent;
}

.cs-image-full img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: contain;
}

/* ---- CASE STUDY — From/To comparison ---- */
.cs-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 96px;
}
.cs-compare__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 16px;
}
.cs-compare__img {
  background: #f4f1ec;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  border-radius: 16px;
}
.cs-compare__img img {
  width: 100%;
  height: auto;
  display: block;
}
.cs-compare .cs-image-caption {
  margin-top: 12px;
}

/* ---- CASE STUDY — Screenshot gallery ---- */
.cs-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 96px;
}
.cs-gallery__item {
  margin: 0;
}
.cs-gallery__item--wide {
  grid-column: 1 / -1;
}
.cs-gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  background: #f4f1ec;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  object-fit: contain;
}
.cs-gallery__item figcaption {
  margin-top: 12px;
}

@media (max-width: 900px) {
  .cs-compare,
  .cs-gallery { grid-template-columns: 1fr; gap: 32px; }
  .cs-gallery__item--wide { grid-column: 1; }
}

.cs-image-caption {
  font-size: 13px;
  color: #aaa;
  margin-top: 12px;
  letter-spacing: 0.01em;
}

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

.cs-list li {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding-left: 20px;
  position: relative;
}

.cs-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #ccc;
}

.cs-quote {
  padding: 48px 0;
  margin: 60px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.cs-quote__text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: #0a0a0a;
  letter-spacing: -0.01em;
  max-width: 720px;
}

.cs-quote__source {
  margin-top: 20px;
  font-size: 13px;
  color: #aaa;
  letter-spacing: 0.04em;
}

/* ---- NEXT PROJECT ----------------------------------------- */
.cs-next {
  padding: 80px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.cs-next__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 24px;
}

.cs-next__link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.cs-next__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  color: #0a0a0a;
  letter-spacing: -0.02em;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 4px;
  transition: border-color 0.25s;
}

.cs-next__link:hover .cs-next__title {
  border-color: #0a0a0a;
}

.cs-next__arrow {
  font-size: 24px;
  transform: translateX(0);
  transition: transform 0.25s ease;
}

.cs-next__link:hover .cs-next__arrow {
  transform: translateX(8px);
}

/* ---- CONTINUE / MORE FROM THE SUITE — 3-card visual grid ---- */
.cs-more {
  padding: 96px 0 120px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.cs-more__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}
.cs-more__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaa;
}
.cs-more__title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #0a0a0a;
  margin: 8px 0 0;
}
.cs-more__back {
  font-size: 14px;
  color: #666;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.cs-more__back:hover { color: #0a0a0a; }
.cs-more__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cs-more__card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s ease;
}
.cs-more__card:hover { transform: translateY(-4px); }
.cs-more__thumb {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: #f0efec;
  margin-bottom: 16px;
  position: relative;
}
.cs-more__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.cs-more__card:hover .cs-more__thumb img { transform: scale(1.04); }
.cs-more__card-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaa;
  display: block;
  margin-bottom: 6px;
}
.cs-more__card-name {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #0a0a0a;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cs-more__card-name::after {
  content: '→';
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
  transition: transform 0.3s ease;
}
.cs-more__card:hover .cs-more__card-name::after { transform: translateX(4px); }
@media (max-width: 900px) {
  .cs-more__grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .cs-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ---- HERO STRIP CAPTION VARIANTS ---------------------------------------- */

/* Variant A: small pill always visible */
.hero-strip__cap--always {
  opacity: 1 !important;
  transform: none !important;
}

/* Variant B: bottom gradient + full-width title always visible */
.hero-strip__item--titled::after {
  content: '';
  position: absolute;
  inset: 45% 0 0 0;
  background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, transparent 100%);
  pointer-events: none;
  border-radius: 0 0 8px 8px;
}
.hero-strip__label {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  z-index: 1;
  letter-spacing: -0.01em;
  pointer-events: none;
}

/* ---- CREATIVE CASE STUDY HERO -------------------------------------------- */
.cs-hero--creative {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 92vh;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}
.cs-creative__left {
  background: #0c0c0c;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 80px 72px;
}
.cs-creative__left-inner {
  width: 100%;
}
.cs-creative__back {
  display: inline-block;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  letter-spacing: 0.02em;
  margin-bottom: 64px;
  transition: color 0.2s;
}
.cs-creative__back:hover { color: #fff; }
.cs-creative__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 20px;
}
.cs-creative__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 3.6vw, 58px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 18px;
}
.cs-creative__sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 56px;
  max-width: 400px;
}
.cs-creative__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 40px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cs-creative__meta-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  margin-bottom: 6px;
}
.cs-creative__meta-value {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}
.cs-creative__right {
  position: relative;
  overflow: hidden;
  background: #111;
}
.cs-creative__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 900px) {
  .cs-hero--creative {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .cs-creative__left {
    padding: 100px 24px 56px;
    align-items: flex-start;
  }
  .cs-creative__right {
    height: 70vw;
  }
  .cs-creative__meta {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---- IBM Plex Mono — section labels & eyebrows -------------------- */
.section-label,
.ai-section__label,
.cs-hero__eyebrow,
.cs-creative__eyebrow,
.cs-stacked__eyebrow,
.wcard__meta,
.footer__copy,
.footer__title {
  font-family: 'IBM Plex Mono', monospace;
}

/* ---- STACKED CASE STUDY HERO (text top, image bottom) ------------- */
.cs-hero--stacked {
  padding-top: 120px;
  background: #fff;
  color: #0a0a0a;
}
.cs-stacked__text {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px 80px;
}
.cs-stacked__back {
  display: inline-block;
  font-size: 13px;
  color: rgba(0,0,0,0.38);
  text-decoration: none;
  letter-spacing: 0.02em;
  margin-bottom: 56px;
  transition: color 0.2s;
}
.cs-stacked__back:hover { color: #0a0a0a; }
.cs-stacked__eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  margin-bottom: 20px;
}
.cs-stacked__title {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #0a0a0a;
  margin-bottom: 18px;
}
.cs-stacked__sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(0,0,0,0.45);
  line-height: 1.6;
  margin-bottom: 56px;
  max-width: 560px;
}
.cs-stacked__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 36px;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.cs-stacked__meta-item {
  padding-right: 32px;
}
.cs-stacked__meta-item + .cs-stacked__meta-item {
  padding-left: 32px;
  border-left: 1px solid rgba(0,0,0,0.1);
}
.cs-stacked__meta-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  margin-bottom: 8px;
}
.cs-stacked__meta-value {
  font-size: 14px;
  color: #0a0a0a;
  line-height: 1.4;
}
.cs-stacked__image {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.cs-stacked__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .cs-stacked__text { padding: 0 24px 60px; }
  .cs-stacked__meta { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
  .cs-stacked__meta-item + .cs-stacked__meta-item { padding-left: 0; border-left: none; }
  .cs-stacked__meta-item:nth-child(even) { padding-left: 24px; border-left: 1px solid rgba(0,0,0,0.1); }
}
