/* ============================================================
   ABOUT PAGE — joseph-soto.com/about/
   Extends style.css + mobile.css — do not duplicate tokens here.
   All CSS variables (--navy, --cyan, --display, etc.) inherited.
   ============================================================ */

/* ── ABOUT HERO ─────────────────────────────────────────────
   Split-screen editorial layout.
   LEFT: StarQuality photo, flush left edge, rounded right
   corners, parallax scroll.
   RIGHT: Name + title text stacked left, professional portrait
   card on right, stats bar spanning full width at bottom.
──────────────────────────────────────────────────────────── */
.about-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--white);
}

/* Left photo panel — flush to viewport left edge, rounded right corners */
.about-hero-photo {
  position: relative;
  overflow: hidden;
  border-radius: 0 clamp(20px, 2.2vw, 36px) clamp(20px, 2.2vw, 36px) 0;
  min-height: 100vh;
}

/* Extended inner container for parallax travel — use vh not % so it
   resolves correctly against a min-height parent */
.about-hero-parallax {
  position: absolute;
  top: -20vh;
  bottom: -20vh;
  left: 0;
  right: 0;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.about-hero-parallax img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: translateZ(0);
  will-change: transform;
}

/* Right content panel — flex column, overflow:visible so name can bleed */
.about-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(80px, 9vw, 120px) clamp(36px, 4.5vw, 64px) clamp(80px, 10vw, 130px);
  position: relative;
  gap: 0;
  overflow: hidden;
}

/* Portrait card — absolutely positioned top-right, stays out of text flow */
.about-hero-portrait {
  position: absolute;
  top: clamp(36px, 4vw, 56px);
  right: clamp(36px, 4.5vw, 64px);
  width: clamp(72px, 10vw, 150px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 26, 79, 0.18);
}

.about-hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Text block — name bleeds past right edge, overflow:visible lets it */
.about-hero-text {
  display: flex;
  flex-direction: column;
  gap: 0;                     /* each child sets its own spacing */
  padding-bottom: clamp(20px, 2.5vw, 32px);
  width: 100%;
  overflow: visible;
}

/* Stats bar — full width at bottom */
.about-hero-stats {
  display: flex;
  gap: clamp(28px, 5vw, 56px);
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.about-hero-eyebrow {
  font-family: var(--body);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: clamp(24px, 4vw, 56px); /* space before the name hierarchy */
}

/* ── VOGUE TYPOGRAPHIC HIERARCHY ────────────────────────────
   Three tiers, like a magazine masthead:

   TIER 1 — JOSEPH  → small editorial label (PUNTO DE VISTA)
   TIER 2 — SOTO    → massive word filling full panel width (VOGUE)
   TIER 3 — Subtitle → small stacked lines below (masthead notes)
──────────────────────────────────────────────────────────── */

/* Container — sets font family + text-transform for all children.
   NO font-size here; each tier sets its own. */
.about-hero-name {
  font-family: var(--display);
  font-size: 0;              /* collapse parent, each child sets its own */
  text-transform: uppercase;
  color: var(--cobalt);
  width: 100%;
  overflow: visible;
  line-height: 1;
  margin: 0;
  padding: 0;
}

/* TIER 1 — JOSEPH: small editorial label above SOTO */
.hero-name-joseph {
  display: block;
  font-size: clamp(13px, 1.6vw, 22px);
  font-weight: 300;
  font-style: normal;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--cobalt);
  line-height: 1;
  margin-bottom: clamp(6px, 0.8vw, 14px);
  white-space: nowrap;
}

/* TIER 2 — SOTO: massive, JS fit-text scales this to fill container */
.hero-name-soto {
  display: block;
  font-size: clamp(100px, 22vw, 380px); /* baseline for JS to scale from */
  font-weight: 700;
  font-style: italic;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: -0.045em;
  color: var(--cobalt);
  line-height: 0.84;
  white-space: nowrap;
  overflow: visible;
}

/* Soto logo swap — replaces the giant SOTO text, scales to same width */
.hero-name-soto-logo {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  line-height: 0.84;
  margin-bottom: clamp(6px, 0.8vw, 14px);
}

/* Each line fills exactly 100% of the container — sized by JS fitText */
.hero-fit-line {
  display: block;
  white-space: nowrap;
  overflow: visible;
}

/* TIER 3 — Meta block: small stacked label lines below SOTO.
   Like the fine-print text beneath the VOGUE masthead.
   Fixed size — does NOT use fit-text. */
.about-hero-meta {
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 0.3vw, 5px);
  margin-top: clamp(10px, 1.2vw, 18px);
  line-height: 1.1;
}

.about-hero-title {
  display: block;
  font-family: var(--body);
  font-size: clamp(13px, 1.5vw, 20px);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.1;
  white-space: nowrap;
}

.about-hero-location {
  display: block;
  font-family: var(--body);
  font-size: clamp(13px, 1.5vw, 20px);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.1;
  opacity: 0.7;
  white-space: nowrap;
}

/* Remove old dot separator */
.about-hero-location::before { display: none; }

/* Descriptor words stack — each word fills 100% panel width via fitText JS */
.about-hero-descriptors-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  overflow: hidden;
  margin-top: clamp(12px, 1.5vw, 24px);
}

.descriptor-word {
  display: block;
  font-family: var(--body);
  font-size: clamp(40px, 8vw, 120px); /* baseline — JS scales to exact fit */
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: rgba(0, 26, 79, 0.18);
  line-height: 0.92;
  white-space: nowrap;
  overflow: visible;
  cursor: default;
  will-change: color;
  transition: color 0.4s ease;
}

.descriptor-word:hover {
  font-family: var(--display);
  font-style: italic;
  letter-spacing: -0.045em;
  color: var(--cobalt);
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-stat-num {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.about-stat-label {
  font-family: var(--body);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
}

/* Suppress old deco element if still present */
.about-hero-deco { display: none; }

/* ── BIO STATEMENT ───────────────────────────────────────────
   Cobalt background with IWantToBelieve photo at 30% opacity
   layered behind the pull quote and body copy.
──────────────────────────────────────────────────────────── */
.about-bio {
  background: var(--cobalt);
  padding: var(--section) var(--gutter);
  position: relative;
  overflow: hidden;
}

/* Background photo overlay at 30% — right side ghost.
   Using IDontBelongHere until IWantToBelieve syncs from Google Drive.
   To swap: replace the filename below with IWantToBelieve.webp */
.about-bio::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 65%;
  background: url('../images/about/JosephSoto-Portfolio-AboutMe-IDontBelongHere.webp')
              center top / cover no-repeat;
  opacity: 0.28;
  mix-blend-mode: luminosity;
  pointer-events: none;
  z-index: 0;
}

.about-bio-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  position: relative;
  z-index: 1;
}

.about-bio-quote {
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--white);
}

/* Dynamic neon highlight — gradient text + glow + thick offset underline */
.about-bio-quote strong {
  font-style: normal;
  font-weight: 700;
  /* Gradient: cyan → white for an electric editorial feel */
  background: linear-gradient(110deg, var(--cyan) 0%, #9ef8ff 55%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Neon glow via filter (works on gradient text) */
  filter: drop-shadow(0 0 12px rgba(11, 208, 250, 0.65))
          drop-shadow(0 0 32px rgba(11, 208, 250, 0.35));
  /* Underline bar beneath — pseudo painted on the parent em context */
  text-decoration: underline;
  text-decoration-color: rgba(11, 208, 250, 0.55);
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.about-bio-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}

.about-bio-body {
  font-family: var(--body);
  font-size: var(--fs-md);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

/* ── WHO I AM ────────────────────────────────────────────────
   Full editorial 4-image layout. Two stacked portrait columns
   flank the center text block. Left column aligns to top,
   right column offset DOWN for asymmetric magazine dynamism.
   Images use curtain-lift clip-reveal animation.
──────────────────────────────────────────────────────────── */
/* ── WHO I AM — cobalt / cream color-block layout ────────────── */
.wia-section {
  display: grid;
  grid-template-columns: 45fr 55fr;
  align-items: stretch;
  overflow: hidden;
}

/* LEFT — cobalt panel, stacked duotone images */
.wia-panel-dark {
  background: var(--cobalt);
  display: flex;
  flex-direction: column;
  padding: clamp(56px, 7vw, 100px) clamp(36px, 4vw, 60px);
  gap: clamp(24px, 3vw, 40px);
  position: relative;
}

.wia-eyebrow {
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.2em;
}

/* Duotone: grayscale + multiply on cobalt bg = cobalt tint */
.wia-img-a,
.wia-img-b,
.wia-img-c {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.wia-img-a img,
.wia-img-b img,
.wia-img-c img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  /* Full cobalt duotone — no mix-blend-mode so it works at all
     breakpoints regardless of what's behind the image */
  filter: grayscale(1) brightness(0.88) sepia(1) hue-rotate(185deg) saturate(4.5);
}

/* Image A — full width, taller. Overflow hidden (on parent) clips parallax travel. */
.wia-img-a {
  width: 100%;
  aspect-ratio: 3/4;
}

/* Extend inner img so it has room to drift up/down without exposing gaps */
.wia-img-a img {
  height: 120% !important;
  margin-top: -10%;
  will-change: transform;
}

/* Image B — narrower, offset right for stagger */
.wia-img-b {
  width: 72%;
  aspect-ratio: 3/4;
  align-self: flex-end;
  margin-top: clamp(-60px, -6vw, -32px); /* slight vertical overlap */
}

/* Top row of right panel — headline left, image right */
.wia-light-top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(20px, 2.5vw, 36px);
}

.wia-light-top .wia-text-block {
  flex: 1 1 0;
  min-width: 0;
}

/* Image C — sits to the right of the headline.
   Duotone is applied via CSS filter only (no cobalt bg) so there's
   no background bleed at the edges. */
.wia-img-c {
  flex: 0 0 36%;
  align-self: flex-start;
  will-change: transform;
}

/* Full image — no crop. Duotone: greyscale → sepia → hue shift to cobalt.
   Border-radius applied directly to img so all 4 corners are rounded. */
.wia-img-c img {
  object-fit: contain !important;
  object-position: center top !important;
  height: auto !important;
  width: 100%;
  mix-blend-mode: normal !important;
  filter: grayscale(1) brightness(0.88) sepia(1) hue-rotate(185deg) saturate(4.5) !important;
  border-radius: var(--radius-lg);
}

/* RIGHT — white panel */
.wia-panel-light {
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(56px, 7vw, 100px) clamp(48px, 6vw, 96px) clamp(56px, 7vw, 100px) clamp(40px, 5vw, 72px);
  gap: clamp(48px, 6vw, 80px);
  border-left: 1px solid rgba(0,26,79,0.1);
}

.wia-text-block { position: relative; }

.wia-headline {
  font-family: var(--display);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--navy);
}

.wia-headline em {
  font-style: italic;
  color: var(--cobalt);
}

/* Pull quote — large, stagger-animated line by line */
.wia-pull-quote {
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  border-left: 2px solid var(--cobalt);
  padding-left: clamp(20px, 2vw, 32px);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}

.wpq-line {
  display: block;
  opacity: 0;
  color: rgba(0, 26, 79, 0.52); /* muted navy — not opacity, so em can override */
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1) var(--d, 0s),
              transform 0.7s cubic-bezier(0.16,1,0.3,1) var(--d, 0s);
}

.wia-pull-quote.in-view .wpq-line {
  opacity: 1; /* full opacity — muted feel comes from color value, not opacity */
  transform: translateY(0);
}

/* Keyframe: muted grey → cobalt. Used by each highlighted word with a
   staggered delay so colour blooms AFTER the line has faded in. */
@keyframes wia-bloom-cobalt {
  from { color: rgba(0, 26, 79, 0.52); }
  to   { color: var(--cobalt); }
}

/* Highlighted words — hold muted until their animation fires */
.wia-pull-quote em,
.wia-pull-quote .wia-cobalt {
  font-style: italic;
  color: rgba(0, 26, 79, 0.52);
}

/* On scroll-in: each word blooms to cobalt after its line has settled.
   animation-fill-mode: both keeps the muted colour during the delay
   and holds cobalt after completion. */
.wia-pull-quote.in-view .wpq-line:nth-child(2) em {
  animation: wia-bloom-cobalt 0.85s cubic-bezier(0.16,1,0.3,1) 0.85s both;
}
.wia-pull-quote.in-view .wpq-line:nth-child(3) em {
  animation: wia-bloom-cobalt 0.85s cubic-bezier(0.16,1,0.3,1) 1.0s both;
}
.wia-pull-quote.in-view .wpq-line:nth-child(4) em {
  animation: wia-bloom-cobalt 0.85s cubic-bezier(0.16,1,0.3,1) 1.15s both;
}

.wia-body-block { max-width: 500px; }

.wia-body {
  font-family: var(--body);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 400;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: clamp(32px, 4vw, 52px);
}

.wia-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.wia-point {
  display: flex;
  gap: clamp(16px, 2vw, 24px);
  align-items: flex-start;
  padding: clamp(16px, 2vw, 24px) 0;
  border-bottom: 1px solid rgba(0,26,79,0.1);
}

.wia-point:first-child { border-top: 1px solid rgba(0,26,79,0.1); }

.wia-point-num {
  font-family: var(--body);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--cobalt);
  flex-shrink: 0;
  padding-top: 3px;
}

.wia-point-text {
  font-family: var(--body);
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--navy);
}

/* ── CLIP-REVEAL ─────────────────────────────────────────────
   Curtain-lift animation. ::after overlay slides up to reveal
   the image beneath; image simultaneously descales to natural.
──────────────────────────────────────────────────────────── */
.clip-reveal {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 4;
}

.clip-reveal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.clip-reveal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  transform: translateY(0%);
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: inherit;
}

.clip-reveal.in-view::after {
  transform: translateY(101%);
}

.clip-reveal.in-view img {
  transform: scale(1);
}

/* ── APPROACH ────────────────────────────────────────────────
   Light-blue bg, 3 large icon cards with big dynamic SVG icons
   matching the homepage service icon visual language.
──────────────────────────────────────────────────────────── */
.approach-section {
  background: var(--light-blue);
  padding: var(--section) var(--gutter);
}

.approach-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

.approach-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.approach-headline {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.approach-headline em { font-style: italic; }

.approach-desc {
  font-family: var(--body);
  font-size: var(--fs-md);
  line-height: 1.7;
  color: var(--grey);
  padding-bottom: 8px;
}

.approach-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.approach-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 52px) clamp(28px, 3vw, 44px) clamp(36px, 4.5vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.approach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0, 26, 79, 0.10);
}

.approach-icon {
  width: 72px;
  height: 72px;
  color: var(--cobalt);
  flex-shrink: 0;
}

.approach-num {
  font-family: var(--body);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--cyan);
  text-transform: uppercase;
}

.approach-card-title {
  font-family: var(--display);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.approach-card-body {
  font-family: var(--body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--grey);
  margin-top: -8px;
}

/* ── AIGA LA ─────────────────────────────────────────────────
   Editorial split layout (Dulcedo-inspired):
   LEFT — tall on-stage portrait photo (tan suit hero shot)
   RIGHT — massive Cormorant headline + body + AIGA logo,
   stats bar, and photo mosaic below.
   Navy background throughout.
──────────────────────────────────────────────────────────── */
.aiga-about {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* ── Editorial hero block ── */
.aiga-editorial {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  min-height: 80vh;
  align-items: stretch;
}

/* Right: photo panel — rounded on all corners, minimal left gap */
.aiga-editorial-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: clamp(24px, 3vw, 40px) clamp(24px, 3vw, 40px) clamp(24px, 3vw, 40px) clamp(8px, 1vw, 16px);
}

.aiga-editorial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.8s var(--ease);
}

.aiga-editorial-photo:hover img {
  transform: scale(1.03);
}

/* Right: headline + text content */
.aiga-editorial-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 7vw, 100px) clamp(40px, 5vw, 80px) clamp(60px, 7vw, 100px) clamp(32px, 4vw, 56px);
}

.aiga-editorial-eyebrow {
  margin-bottom: clamp(16px, 2vw, 24px);
}

.aiga-editorial-eyebrow-text {
  font-family: var(--body);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* Large standalone logo between eyebrow and headline */
.aiga-editorial-logo {
  display: block;
  width: clamp(140px, 16vw, 240px);
  opacity: 0.9;
  filter: brightness(0) invert(1);
  margin-bottom: clamp(20px, 2.5vw, 36px);
}

/* Massive editorial headline — like the Dulcedo reference */
.aiga-editorial-headline {
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 140px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: clamp(28px, 3.5vw, 48px);
}

.aiga-editorial-headline em {
  font-style: italic;
  color: var(--cyan);
}

.aiga-editorial-body {
  font-family: var(--body);
  font-size: var(--fs-md);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.60);
  max-width: 560px;
}

/* ── Stats strip below editorial block ── */
.aiga-about-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) var(--section);
}

.aiga-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.aiga-stat-item {
  background: rgba(255, 255, 255, 0.04);
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.aiga-stat-num {
  font-family: var(--display);
  font-size: clamp(40px, 4.5vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cyan);
}

.aiga-stat-label {
  font-family: var(--body);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* Photo mosaic — immersive, magazine-style grid */
.aiga-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: clamp(280px, 28vw, 420px) clamp(220px, 22vw, 340px);
  gap: clamp(8px, 1vw, 14px);
}

.aiga-mosaic-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.aiga-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}

.aiga-mosaic-item:hover img {
  transform: scale(1.04);
}

.aiga-mosaic-item--hero { grid-column: 1; grid-row: 1 / 3; }
.aiga-mosaic-item--wide { grid-column: 2 / 4; grid-row: 1; }
.aiga-mosaic-item--sm1  { grid-column: 2; grid-row: 2; }
.aiga-mosaic-item--sm2  { grid-column: 3; grid-row: 2; }

.aiga-event-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: clamp(24px, 3vw, 36px);
}

.aiga-event-label-text {
  font-family: var(--body);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

.aiga-event-label-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

/* ── ADOBE MENTORSHIP ────────────────────────────────────────
   Cream background, Adobe red accents, 3-photo showcase.
──────────────────────────────────────────────────────────── */
.adobe-about {
  background: var(--white);
  padding: var(--section) var(--gutter);
  overflow: hidden;
  position: relative;
}

/* Text + graphic two-column hero row */
.adobe-about-hero {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.adobe-about-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.adobe-about-graphic {
  will-change: transform;
}

.adobe-about-graphic img {
  width: 100%;
  height: auto;
  display: block;
}

.adobe-about-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
}

.adobe-about-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(32px, 4vw, 64px);
  margin-bottom: clamp(24px, 3vw, 40px);
}

.adobe-logo-img {
  height: clamp(32px, 3.5vw, 52px);
  width: auto;
  flex-shrink: 0;
  display: block;
}

.adobe-about-title {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: clamp(20px, 2.5vw, 32px);
}

.adobe-about-title em {
  font-style: italic;
  color: inherit;
}

.adobe-about-body {
  font-family: var(--body);
  font-size: var(--fs-md);
  line-height: 1.7;
  color: var(--grey);
  max-width: 680px;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.adobe-mentor-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 26, 79, 0.07);
  border: 1px solid rgba(0, 26, 79, 0.15);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  font-family: var(--body);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: clamp(32px, 4vw, 48px);
}

.adobe-mentor-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cobalt);
  flex-shrink: 0;
}

.adobe-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.2vw, 16px);
}

.adobe-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--white);
}

/* Portrait: 1 column, tall */
.adobe-photo--portrait {
  grid-column: span 1;
  aspect-ratio: 3 / 4;
  align-self: start;
}

/* Landscape: 2 columns, wide */
.adobe-photo--landscape {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
  align-self: start;
}

/* Full-width cinematic row */
.adobe-photo--wide {
  grid-column: span 3;
  aspect-ratio: 21 / 9;
}

.adobe-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.8s var(--ease);
}

.adobe-photo:hover img {
  transform: scale(1.04);
}

/* ── AWARDS & RECOGNITION ────────────────────────────────────
   Grid-line table — one award per row, thin dividers.
──────────────────────────────────────────────────────────── */
.awards-section {
  background: var(--white);
  padding: var(--section) var(--gutter);
}

.awards-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

.awards-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.awards-headline {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.awards-intro {
  font-family: var(--body);
  font-size: var(--fs-md);
  line-height: 1.7;
  color: var(--grey);
  padding-bottom: 4px;
}

.awards-cols {
  display: grid;
  grid-template-columns: 100px 1fr 1fr 180px;
  gap: clamp(16px, 2vw, 32px);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.awards-col-head {
  font-family: var(--body);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  opacity: 0.6;
}

.awards-row {
  display: grid;
  grid-template-columns: 100px 1fr 1fr 180px;
  gap: clamp(16px, 2vw, 32px);
  align-items: center;
  padding: clamp(20px, 2.5vw, 28px) 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.25s var(--ease);
}

.awards-row:hover {
  background: var(--light-blue);
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
}

.awards-year {
  font-family: var(--body);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--cobalt);
  letter-spacing: 0.04em;
}

.awards-name {
  font-family: var(--display);
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.awards-brand {
  font-family: var(--body);
  font-size: var(--fs-base);
  color: var(--grey);
}

.awards-type {
  font-family: var(--body);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  opacity: 0.6;
}

.awards-medal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.awards-medal--gold  { background: rgba(212, 160, 23, 0.12); color: #B8860B; }
.awards-medal--plat  { background: rgba(120, 120, 140, 0.12); color: #6b6b7b; }
.awards-medal--board { background: rgba(11, 208, 250, 0.10); color: var(--cobalt); }

/* ── RESPONSIVE: TABLET (≤1100px) ───────────────────────────── */
@media (max-width: 1100px) {

  /* Hero — stack vertically */
  .about-hero {
    grid-template-columns: 1fr;
    grid-template-rows: 55vw auto;
    min-height: auto;
  }
  .about-hero-photo {
    border-radius: 0 0 clamp(20px, 2.2vw, 36px) clamp(20px, 2.2vw, 36px);
    min-height: 55vw;
  }
  .about-hero-content {
    padding: clamp(40px, 5vw, 64px) clamp(32px, 4vw, 48px);
  }

  /* Who I Am — image pairs side by side, text below */
  .wia-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
  }
  .wia-img-left  { grid-column: 1; grid-row: 1; }
  .wia-img-right { grid-column: 2; grid-row: 1; margin-top: 0; }
  .wia-center    { grid-column: 1 / 3; grid-row: 2; padding-top: clamp(32px, 4vw, 48px); }

  /* AIGA editorial — stack vertically */
  .aiga-editorial { grid-template-columns: 1fr; min-height: auto; }
  .aiga-editorial-photo {
    border-radius: var(--radius-lg);
    margin: clamp(24px, 3vw, 40px);
    aspect-ratio: 16/9;
  }
  .aiga-editorial-content { padding: clamp(40px, 5vw, 64px) clamp(24px, 3vw, 40px) clamp(40px, 5vw, 64px); }
  .aiga-editorial-headline { font-size: clamp(48px, 7vw, 90px); }

  .aiga-stats { grid-template-columns: repeat(2, 1fr); }
  .aiga-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .aiga-mosaic-item--hero { grid-column: 1 / 3; grid-row: 1; aspect-ratio: 16/9; }
  .aiga-mosaic-item--wide { grid-column: 1; grid-row: 2; }
  .aiga-mosaic-item--sm1  { grid-column: 2; grid-row: 2; }
  .aiga-mosaic-item--sm2  { grid-column: 1 / 3; grid-row: 3; aspect-ratio: 16/7; }

  .about-bio-inner { grid-template-columns: 1fr; gap: clamp(28px, 4vw, 48px); }
  .approach-cards { grid-template-columns: repeat(2, 1fr); }
  .approach-cards .approach-card:last-child { grid-column: 1 / 3; }
  .awards-header { grid-template-columns: 1fr; }
  .awards-cols, .awards-row { grid-template-columns: 80px 1fr 1fr; }
  .awards-col-head:last-child, .awards-type { display: none; }
}

/* ── RESPONSIVE: MOBILE (≤768px) ────────────────────────────── */
@media (max-width: 768px) {

  /* ── Hero — show head, not just body ── */
  .about-hero { grid-template-rows: 75vw auto; }
  .about-hero-photo { min-height: 75vw; }
  /* Disable top extension on mobile — it pushes the head above the visible area */
  .about-hero-parallax { top: 0; bottom: -10%; }
  .about-hero-parallax img { object-position: center top; }
  .about-hero-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding: clamp(32px, 5vw, 48px) clamp(20px, 5vw, 32px);
    gap: 16px;
  }
  .about-hero-text    { grid-column: 1; grid-row: 1; }
  .about-hero-portrait {
    grid-column: 1; grid-row: 2;
    width: clamp(100px, 28vw, 160px);
    align-self: start;
  }
  .about-hero-stats   { grid-column: 1; grid-row: 3; flex-wrap: wrap; gap: clamp(16px, 4vw, 24px); }
  .about-hero-name { font-size: clamp(56px, 16vw, 120px); white-space: normal; }

  /* ── Bio ── */
  .about-bio-inner { grid-template-columns: 1fr; }

  /* ── Who I Am — full-bleed images bridge blue → cream sections ── */
  .wia-section { grid-template-columns: 1fr; overflow: visible; }
  .wia-panel-dark {
    padding: clamp(40px, 6vw, 56px) 0 0; /* no horizontal or bottom pad — images go edge-to-edge */
    gap: 0;
    flex-direction: column;
    overflow: visible;  /* let bottom image bleed into white section */
    z-index: 2;         /* sit above wia-panel-light so bleed shows */
  }
  /* Restore side padding for the label only */
  .wia-eyebrow { padding: 0 clamp(20px, 5vw, 32px) clamp(20px, 3vw, 28px); }
  /* Image A — full-bleed portrait */
  .wia-img-a { width: 100%; aspect-ratio: 3/4; border-radius: var(--radius-lg); margin: 0; }
  /* Image B — landscape, bleeds 80px into the cream section below */
  .wia-img-b {
    width: 100%; aspect-ratio: 16/9; border-radius: var(--radius-lg);
    margin-top: 0; align-self: auto;
    position: relative; z-index: 2; margin-bottom: -80px;
    background: var(--cobalt);
  }

  /* On mobile, mix-blend-mode: luminosity is unreliable when the parent has
     overflow: visible (no isolated stacking context). Bypass it entirely and
     apply the cobalt duotone as a direct filter chain — same technique as
     wia-img-c, which always shows the blue tint correctly. */
  .wia-img-a img,
  .wia-img-b img {
    mix-blend-mode: normal !important;
    filter: grayscale(1) brightness(0.88) sepia(1) hue-rotate(185deg) saturate(4.5) !important;
  }
  /* Cream panel — extra top padding to clear the overlapping image */
  .wia-panel-light {
    padding: calc(80px + clamp(40px, 6vw, 56px)) clamp(20px, 5vw, 32px) clamp(40px, 6vw, 56px);
    border-left: none;
    border-top: none;  /* no divider — image bridges the sections */
    justify-content: flex-start;
    gap: 0; /* zero flex gap — control all spacing via direct margin-top */
  }
  .wia-light-top { flex-direction: column; gap: 20px; }
  /* Headline — large enough to feel full-width */
  .wia-headline { font-size: clamp(52px, 15vw, 80px); }
  /* Image C — full-width, controlled height so it doesn't go rogue */
  .wia-img-c {
    flex: 0 0 auto;
    width: calc(100% + clamp(40px, 10vw, 64px));
    margin-left: calc(-1 * clamp(20px, 5vw, 32px));
    margin-right: calc(-1 * clamp(20px, 5vw, 32px));
    margin-top: 0;
    align-self: auto;
    border-radius: 0;
    aspect-ratio: 4/3; /* cap the height — at 390px wide = ~292px tall */
  }
  .wia-img-c img {
    object-fit: cover !important;
    height: 100% !important;
    object-position: center top !important; /* anchor to top so heads stay in frame */
  }
  /* Pull quote and body — direct margins instead of flex gap */
  .wia-pull-quote { margin-top: 24px; }
  .wia-body-block  { margin-top: 24px; }

  /* ── Approach — "How I Work." on one line ── */
  .approach-headline br { display: none; }
  .approach-headline { font-size: clamp(32px, 9vw, 52px); white-space: nowrap; }
  .approach-header { grid-template-columns: 1fr; }
  .approach-cards { grid-template-columns: 1fr; }
  .approach-cards .approach-card:last-child { grid-column: 1; }

  /* ── AIGA — equal spacing via row-gap on the grid ── */
  .aiga-editorial { row-gap: 24px; }
  .aiga-editorial-photo { aspect-ratio: 4/3; margin: 0 16px clamp(32px, 5vw, 48px); } /* space below photo = gap above stats */
  .aiga-editorial-content { padding: clamp(24px, 4vw, 40px) 20px clamp(32px, 4vw, 48px); }
  .aiga-editorial-headline { font-size: clamp(40px, 10vw, 64px); }
  /* Stats: equal breathing room above (from photo margin) and below (margin-bottom = same value) */
  .aiga-about-inner { padding-top: 0; } /* photo margin already provides top gap */
  .aiga-stats { grid-template-columns: repeat(2, 1fr); margin-top: 0; margin-bottom: clamp(32px, 5vw, 48px); }
  .aiga-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 8px;
    margin-top: 0; /* row-gap handles spacing */
  }
  .aiga-mosaic-item--hero { grid-column: 1 / 3; grid-row: 1; aspect-ratio: 4/3; }
  .aiga-mosaic-item--wide { grid-column: 1; grid-row: 2; aspect-ratio: 1; }
  .aiga-mosaic-item--sm1  { grid-column: 2; grid-row: 2; aspect-ratio: 1; }
  .aiga-mosaic-item--sm2  { grid-column: 1 / 3; grid-row: 3; aspect-ratio: 16/8; }

  /* ── "Shaping Design Culture" — wrap text, hide decorative lines ── */
  .aiga-event-label { justify-content: center; }
  .aiga-event-label-text { white-space: normal; text-align: center; font-size: 11px; letter-spacing: 0.12em; }
  .aiga-event-label-line { display: none; }

  /* ── Adobe — stack to 1 column, graphic centered and large ── */
  .adobe-about-header { grid-template-columns: 1fr; gap: 16px; }
  .adobe-logo-img { height: 28px; }
  .adobe-about-hero {
    grid-template-columns: 1fr;
    gap: 0;               /* graphic controls its own spacing via margin */
    overflow: hidden;
    margin-bottom: 0;
  }
  /* Graphic: full width. Top margin is smaller to compensate for the PNG's
     built-in transparent area at the top (the star floats above the red box),
     which adds ~20px of visual whitespace that isn't real CSS space. */
  .adobe-about-graphic {
    width: 100%;
    margin-top: 0;
    margin-bottom: clamp(36px, 7vw, 56px);
  }
  .adobe-photos { grid-template-columns: 1fr; gap: 10px; }
  .adobe-photo--portrait,
  .adobe-photo--landscape,
  .adobe-photo--wide { grid-column: span 1; aspect-ratio: 4/3; }

  /* ── Adobe → Awards whitespace — reduce the default 72px section padding on mobile ── */
  .adobe-about { padding-bottom: 40px; }
  .awards-section { padding-top: 40px; }

  /* ── Awards ── */
  .awards-header { grid-template-columns: 1fr; }
  .awards-cols { display: none; }
  .awards-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 20px 0;
  }
  .awards-row:hover { margin: 0; padding: 20px 16px; }
  .awards-type { display: block; }
  .awards-brand::before { content: '→ '; color: var(--cyan); }

  /* ── Footer — wordmark + safe-area inset so no white strip on iPhone ── */
  .footer-wordmark { width: 90vw; opacity: 0.12; }
  .footer-dark { padding-bottom: env(safe-area-inset-bottom, 0px); }
  .footer { background: var(--navy); } /* ensure outer wrapper is also navy */
}

/* ── CTA BACKGROUND PARALLAX (about page only) ───────────────
   StarQuality wide image drifts on scroll behind the navy +
   dot pattern. Extended ±20% top/bottom so image always
   covers the section while appearing to drift.
──────────────────────────────────────────────────────────── */
.cta-bg-parallax {
  position: absolute;
  inset: -20% 0;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

.cta-bg-parallax img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.5;
  display: block;
}
