/* ============================================================
   GH ADVISORY — Site Styles
   Design system modeled on PJT Partners: vast white space,
   large thin ghost-gray section headings, small quiet body
   text, hairline rules, rich gradient "mosaic" blocks, a
   periwinkle accent, and corner-bracket buttons.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --navy:        #1a2740;
  --navy-deep:   #0f1a2e;
  --ink:         #33383f;      /* body text */
  --muted:       #8b9199;      /* small gray text */
  --ghost:       #cdd1d6;      /* large light-gray headings */
  --ghost-strong:#b7bcc3;
  --accent:      #6366e6;      /* periwinkle */
  --accent-deep: #4a4dd0;
  --paper:       #ffffff;
  --paper-alt:   #f4f4f2;
  --line:        #e6e6e3;
  --line-strong: #d6d6d2;

  --display: "Archivo", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1280px;
  --gutter: clamp(1.5rem, 5vw, 6rem);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  /* Gradient mosaic themes (dark -> light quadrants) */
  --gb-1: linear-gradient(135deg, #0e5535, #1f6f57);   /* green-blue */
  --gb-2: linear-gradient(135deg, #2b8f8a, #52b7d6);
  --gb-3: linear-gradient(135deg, #10603f, #2a7d64);
  --gb-4: linear-gradient(135deg, #2f97c4, #64c2ea);

  --tl-1: linear-gradient(135deg, #4f9b91, #77b8ac);   /* teal */
  --tl-2: linear-gradient(135deg, #8fc7bb, #c3e4da);
  --tl-3: linear-gradient(135deg, #58a49a, #86bfb2);
  --tl-4: linear-gradient(135deg, #9ccfc2, #d2ebe1);

  --sg-1: linear-gradient(135deg, #6f9f6e, #93bd86);   /* sage green */
  --sg-2: linear-gradient(135deg, #a9cd9a, #d3e6c4);
  --sg-3: linear-gradient(135deg, #7aa974, #9ec78f);
  --sg-4: linear-gradient(135deg, #b6d5a6, #dcecd0);

  --bl-1: linear-gradient(135deg, #2b6fb0, #4f97d6);   /* blue */
  --bl-2: linear-gradient(135deg, #5ba0dd, #93c6f0);
  --bl-3: linear-gradient(135deg, #316fae, #5a9ad4);
  --bl-4: linear-gradient(135deg, #6fb0e6, #a6d2f4);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--navy);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
}
p { margin: 0 0 1.3em; }
p:last-child { margin-bottom: 0; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.full { width: 100%; }
.section { padding: clamp(4.5rem, 10vw, 8.5rem) 0; }
.section--tight { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--alt { background: var(--paper-alt); }
.section--navy { background: var(--navy); color: rgba(255,255,255,0.78); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.hr { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--accent); opacity: 0.6; }
.eyebrow--center { justify-content: center; }
.section--navy .eyebrow { color: #a9abf0; }
.section--navy .eyebrow::before { background: #a9abf0; }

/* ---------- Type scale ---------- */
.display {
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: var(--navy);
}
/* Big thin light-gray section heading (PJT "Expertise"/"Results") */
.ghost-title {
  font-family: var(--display);
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ghost);
  line-height: 1.05;
  margin: 0 0 2.8rem;
}
.h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 500; }
.h3 { font-size: clamp(1.15rem, 1.7vw, 1.4rem); font-weight: 600; letter-spacing: -0.015em; }
.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
}
.small { font-size: 0.92rem; color: var(--muted); line-height: 1.6; }
.measure { max-width: 40rem; }
.measure-wide { max-width: 52rem; }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 1rem 1.8rem;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: #fff;
  cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn:hover { background: var(--navy-deep); border-color: var(--navy-deep); }
.btn--light { background: #fff; color: var(--navy); border-color: #fff; }
.btn--light:hover { background: transparent; color: #fff; }

/* Corner-bracket button (PJT signature) */
.btn--bracket {
  position: relative;
  background: transparent;
  color: var(--accent);
  border: 0;
  padding: 1rem 1.5rem;
}
.btn--bracket::before,
.btn--bracket::after {
  content: "";
  position: absolute;
  width: 9px; height: 9px;
  border: 1.5px solid var(--accent);
  transition: width .3s var(--ease), height .3s var(--ease);
}
.btn--bracket::before { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.btn--bracket::after { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.btn--bracket:hover { background: transparent; color: var(--accent-deep); }
.btn--bracket:hover::before,
.btn--bracket:hover::after { width: 14px; height: 14px; }
.section--navy .btn--bracket { color: #b9baf4; }
.section--navy .btn--bracket::before,
.section--navy .btn--bracket::after { border-color: #b9baf4; }

.btn-row { display: flex; flex-wrap: wrap; gap: 1.4rem; align-items: center; margin-top: 2.4rem; }

/* Arrow link with L-shape corner (PJT card link) */
.corner-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--accent);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: gap .3s var(--ease);
}
.corner-link svg { transition: transform .3s var(--ease); }
.corner-link:hover { gap: 0.9rem; }
.corner-link:hover svg { transform: translate(2px, 2px); }

/* ============================================================
   GRADIENT MOSAIC  (2x2 windowpane blocks)
   ============================================================ */
.mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  overflow: hidden;
  position: relative;
}
.mosaic > i { display: block; }
.mosaic.sq { aspect-ratio: 1 / 1; }
.mosaic.m-gb > i:nth-child(1){ background: var(--gb-1); }
.mosaic.m-gb > i:nth-child(2){ background: var(--gb-2); }
.mosaic.m-gb > i:nth-child(3){ background: var(--gb-3); }
.mosaic.m-gb > i:nth-child(4){ background: var(--gb-4); }
.mosaic.m-tl > i:nth-child(1){ background: var(--tl-1); }
.mosaic.m-tl > i:nth-child(2){ background: var(--tl-2); }
.mosaic.m-tl > i:nth-child(3){ background: var(--tl-3); }
.mosaic.m-tl > i:nth-child(4){ background: var(--tl-4); }
.mosaic.m-sg > i:nth-child(1){ background: var(--sg-1); }
.mosaic.m-sg > i:nth-child(2){ background: var(--sg-2); }
.mosaic.m-sg > i:nth-child(3){ background: var(--sg-3); }
.mosaic.m-sg > i:nth-child(4){ background: var(--sg-4); }
.mosaic.m-bl > i:nth-child(1){ background: var(--bl-1); }
.mosaic.m-bl > i:nth-child(2){ background: var(--bl-2); }
.mosaic.m-bl > i:nth-child(3){ background: var(--bl-3); }
.mosaic.m-bl > i:nth-child(4){ background: var(--bl-4); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.15rem 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand {
  display: inline-flex;
  background: #fff;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  box-shadow: 0 2px 16px -8px rgba(15,26,46,0.22);
  transition: padding .4s var(--ease);
}
.brand img { height: 50px; width: auto; transition: height .4s var(--ease); }
.site-header.scrolled .brand { padding: 0.25rem 0.45rem; box-shadow: none; }
.site-header.scrolled .brand img { height: 42px; }

.nav { display: flex; align-items: center; gap: 2.2rem; }
.nav a {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--navy);
  position: relative;
  padding: 0.3rem 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1.5px; background: var(--accent); transition: width .3s var(--ease);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav .nav-cta {
  padding: 0.6rem 1.3rem;
  border: 1px solid var(--line-strong);
  color: var(--navy);
  border-radius: 2px;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.nav .nav-cta::after { display: none; }
.nav .nav-cta:hover { border-color: var(--accent); color: var(--accent); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--navy); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Home hero: nav sits in a floating white bar over the gradient (PJT). */
@media (min-width: 901px) {
  body.home .site-header:not(.scrolled) .header-inner {
    background: #fff;
    padding: 0.5rem 1.4rem;
    border-radius: 3px;
    box-shadow: 0 16px 46px -22px rgba(15,26,46,0.45);
  }
  body.home .site-header:not(.scrolled) .brand {
    background: transparent; box-shadow: none; padding: 0;
  }
}

/* ============================================================
   HERO — gradient mosaic band + statement
   ============================================================ */
.hero { padding-top: 0; background: #fff; }
/* Layered hero: photo sits behind, the stepped gradient blocks cap its
   top, and a gentle parallax reveals more of the photo as you scroll. */
.hero-frame {
  position: relative;
  overflow: hidden;
  height: clamp(500px, 84vh, 920px);
}
.hero-photo {
  position: absolute;
  left: 0; right: 0;
  top: -16%;
  height: 132%;
  z-index: 1;
  will-change: transform;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Anchor to the LEFT so George is always in frame — as the browser
     narrows (down to mobile) the crop trims from the right, not the left. */
  object-position: left 55%;
}
/* Stair-stepped gradient blocks: columns aligned to the top so their
   bottoms step down unevenly (PJT hero). They cap the top of the photo. */
.hero-band {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 0;
  height: clamp(120px, 19vh, 210px);
}
.hero-band > div { min-width: 0; }
.hero-band .col-a { flex: 1.7; height: 55%; }
.hero-band .col-b { flex: 1.15; height: 70%; }
.hero-band .col-c { flex: 1.0; height: 85%; }
.hero-band .col-d { flex: 1.0; height: 100%; }
.hero-band .mosaic { height: 100%; }

.hero-statement-section { padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem); }
.hero-statement {
  font-family: var(--display);
  font-size: clamp(2.1rem, 4.8vw, 3.9rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: var(--navy);
  max-width: 20ch;
}
.hero-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 60rem;
  margin-top: 2.6rem;
}
.hero-cols p { font-size: 0.98rem; color: var(--muted); line-height: 1.7; margin: 0; }

/* Interior page hero */
.page-hero { padding: clamp(8rem, 16vh, 11rem) 0 clamp(2.5rem, 5vw, 4rem); }
.page-hero .display { max-width: 20ch; }
.page-hero .lead { margin-top: 1.6rem; color: var(--muted); }

/* Full-bleed image placeholder */
.media-full {
  width: 100%;
  aspect-ratio: 16 / 7;
  background:
    repeating-linear-gradient(135deg, #ececea 0 22px, #f3f3f1 22px 44px);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.media-full span {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
  background: rgba(255,255,255,0.7); padding: 0.5rem 1rem;
}

/* ============================================================
   LIST ROWS  (Expertise / Areas of Focus)
   ============================================================ */
.rows { border-top: 1px solid var(--line); }
.row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 5vw, 5rem);
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.row .row-index {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  color: var(--accent); margin-bottom: 0.8rem;
}
.row h3 { font-size: clamp(1.3rem, 2.4vw, 1.9rem); font-weight: 500; letter-spacing: -0.02em; color: var(--navy); }
.row p { color: var(--muted); font-size: 0.98rem; line-height: 1.7; margin: 0; }
.row:hover h3 { color: var(--accent); transition: color .3s var(--ease); }

/* ============================================================
   VIDEO
   ============================================================ */
.video-frame {
  position: relative; width: 100%; padding-top: 56.25%;
  background: var(--navy-deep); overflow: hidden;
  box-shadow: 0 50px 90px -50px rgba(15,26,46,0.45);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ============================================================
   PULLQUOTE / EDITORIAL
   ============================================================ */
.pullquote {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: #fff;
  font-weight: 400;
  max-width: 46rem;
}
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.split--portrait { grid-template-columns: 0.85fr 1.15fr; align-items: center; }

/* ============================================================
   PROSE
   ============================================================ */
.prose { max-width: 40rem; }
.prose p { font-size: 1.05rem; line-height: 1.75; color: var(--ink); }
.prose .emphasis {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  line-height: 1.4; color: var(--navy); font-weight: 500; letter-spacing: -0.02em;
  margin: 2.2rem 0;
}

/* Principles list — bold lead-in, hairline separators */
.principles { list-style: none; margin: 2rem 0 0; padding: 0; border-top: 1px solid var(--line); }
.principles li {
  font-size: 1.05rem; line-height: 1.75; color: var(--ink);
  padding: 1.4rem 0; border-bottom: 1px solid var(--line);
}
.principles li strong { font-weight: 600; color: var(--navy); }

/* ============================================================
   PORTRAIT
   ============================================================ */
.portrait { position: relative; overflow: hidden; background: var(--paper-alt); }
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait--framed { box-shadow: 0 50px 90px -55px rgba(15,26,46,0.5); }

/* ============================================================
   SELECTED EXPERIENCE
   ============================================================ */
.experience-list { border-top: 1px solid var(--line); margin-top: 2.5rem; }
.experience-item {
  display: grid; grid-template-columns: 0.4fr 1fr; gap: 2rem;
  padding: 2.2rem 0; border-bottom: 1px solid var(--line);
}
.experience-item h3 { font-size: 1.3rem; font-weight: 600; }
.experience-item .role {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--accent); margin-top: 0.5rem;
}
.experience-item p { color: var(--muted); margin: 0; font-size: 0.98rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.6rem, 3vw, 2.6rem); }
.testimonial-card { background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column; }
.testimonial-thumb { position: relative; padding-top: 56.25%; overflow: hidden; }
.testimonial-thumb iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.testimonial-thumb .mosaic { position: absolute; inset: 0; }
.testimonial-thumb .play-tag {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.8rem; color: #fff;
}
.testimonial-thumb .play {
  width: 54px; height: 54px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.85); display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.12);
}
.testimonial-thumb .play-tag small { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; }
.testimonial-body { padding: 1.7rem 1.8rem 2rem; }
.testimonial-name { font-family: var(--display); font-size: 1.25rem; font-weight: 600; color: var(--navy); letter-spacing: -0.01em; }
.testimonial-title { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-top: 0.4rem; }
.testimonial-quote { margin-top: 1.2rem; color: var(--muted); font-size: 0.98rem; line-height: 1.7; }
.testimonial-quote.pending { font-style: italic; color: var(--ghost-strong); }

.written-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 3vw, 2.2rem); }
.written-card { border-top: 2px solid var(--accent); padding: 1.7rem 0 0; }
.written-card .mark { font-family: var(--display); font-size: 3rem; line-height: 0.6; color: var(--line-strong); height: 1.6rem; display: block; }
.written-card .testimonial-quote { margin-top: 0.4rem; }
.written-card .who { margin-top: 1.5rem; }

/* Themed quote layout (testimonials rebuilt — no video) */
.theme-head { margin-bottom: clamp(2rem, 4vw, 3.2rem); max-width: 32ch; }
.quote-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.8rem, 3.2vw, 3.2rem); }
.quote-grid--3 { grid-template-columns: repeat(3, 1fr); }
.quote-card { border-top: 2px solid var(--accent); padding: 1.7rem 0 0; display: flex; flex-direction: column; height: 100%; }
.quote-card .mark { font-family: var(--display); font-size: 3rem; line-height: 0.6; color: var(--line-strong); height: 1.4rem; display: block; }
.quote-card blockquote {
  margin: 0.7rem 0 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.quote-card .who { margin-top: auto; padding-top: 1.6rem; }

/* Quotes grouped by person */
.person-block {
  display: grid; grid-template-columns: 0.42fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(2.6rem, 5vw, 4rem) 0;
  border-bottom: 1px solid var(--line);
}
.person-block:last-child { border-bottom: 0; padding-bottom: 0; }
.person-photo {
  display: block; width: min(320px, 100%); height: auto;
  margin: 0 0 1.1rem;
}
.person-name {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.2; letter-spacing: -0.02em; color: var(--navy); margin: 0;
}
.person-title {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent);
  margin-top: 0.6rem; line-height: 1.6;
}
.person-quotes { display: grid; gap: clamp(1.8rem, 3.2vw, 2.8rem); }

/* ============================================================
   EXPERTISE / "MORE" CARDS  (gradient thumb + title + link)
   ============================================================ */
.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.8rem, 4vw, 3.5rem); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 3vw, 2.6rem); }
.info-card { display: block; color: inherit; }
.info-card .mosaic { aspect-ratio: 16 / 11; margin-bottom: 1.4rem; transition: transform .5s var(--ease); }
.info-card .mosaic > i { transition: filter .4s var(--ease); }
.info-card:hover .mosaic { transform: translateY(-4px); }
.info-card h3 { font-size: 1.4rem; font-weight: 500; color: var(--navy); letter-spacing: -0.02em; transition: color .3s var(--ease); }
.info-card:hover h3 { color: var(--accent); }
.info-card p { color: var(--muted); font-size: 0.96rem; line-height: 1.7; margin: 0.8rem 0 1.3rem; max-width: 30rem; }
.info-card .row-index { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; color: var(--accent); margin-bottom: 0.7rem; }

/* Two-line stacked ghost heading (PJT "One Firm. Many Capabilities.") */
.stacked-title { margin: 0 0 1.6rem; }
.stacked-title span {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: var(--ghost);
}
.stacked-title span.on { color: var(--navy); }

/* Full-bleed media band */
.bleed { position: relative; left: 50%; right: 50%; width: 100vw; margin-left: -50vw; margin-right: -50vw; }
.media-band {
  display: block;
  width: 100%;
  aspect-ratio: 21 / 8;
  object-fit: cover;
  object-position: center 42%;
}
.media-band--short { aspect-ratio: 32 / 7; object-position: center 68%; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: start; }
.contact-detail { margin-bottom: 1.8rem; }
.contact-detail .label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.35rem; }
.contact-detail .value { font-size: 1.08rem; color: var(--navy); }
.contact-detail a.value:hover { color: var(--accent); }

.form { display: grid; gap: 1.4rem; }
.field { display: grid; gap: 0.45rem; }
.field label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea {
  font-family: var(--sans); font-size: 0.98rem; color: var(--ink);
  padding: 0.9rem 1rem; border: 1px solid var(--line-strong); background: #fff; border-radius: 2px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input:focus, .field textarea:focus { outline: 0; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(99,102,230,0.12); }
.field textarea { resize: vertical; min-height: 130px; }
.form .btn { justify-content: center; margin-top: 0.3rem; }
.form-note { font-size: 0.86rem; color: var(--muted); margin-top: 0.1rem; }
.form-success { display: none; padding: 1rem 1.2rem; background: var(--paper-alt); border-left: 3px solid var(--accent); font-size: 0.96rem; color: var(--navy); }
.form-success.show { display: block; }

/* ============================================================
   CTA
   ============================================================ */
.cta-strip { text-align: center; padding: clamp(3rem, 6.67vw, 5.67rem) 0; }
.cta-strip .h2 { max-width: 20ch; margin: 0 auto 2.2rem; }
.cta-strip .btn-row { justify-content: center; }

/* ============================================================
   FOOTER  (light, minimal — PJT style)
   ============================================================ */
.site-footer { background: #fff; border-top: 1px solid var(--line); padding: clamp(3rem, 6vw, 4.5rem) 0 2.5rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.footer-logo { display: inline-flex; }
.footer-logo img { width: 118px; height: auto; }
.footer-brand p { margin-top: 1.2rem; max-width: 24rem; color: var(--muted); font-size: 0.92rem; }
.footer-col h4 { color: var(--navy); font-family: var(--sans); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col a, .footer-col p { display: block; color: var(--muted); font-size: 0.94rem; margin-bottom: 0.65rem; transition: color .25s var(--ease); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding-top: 1.8rem; border-top: 1px solid var(--line); font-size: 0.8rem; color: var(--muted);
}
.footer-bottom a:hover { color: var(--accent); }

/* ============================================================
   SCROLL MOTION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.parallax { transform: translate3d(0, var(--p, 0px), 0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .parallax { transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 340px);
    background: #fff; flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 1.6rem; padding: 2rem 2.4rem; transform: translateX(100%);
    transition: transform .45s var(--ease); box-shadow: -20px 0 60px -30px rgba(15,26,46,0.4);
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 1rem; }
  .nav-toggle { display: flex; z-index: 101; }

  .hero-frame { height: clamp(360px, 68vh, 560px); }
  .hero-band { height: clamp(200px, 34vh, 300px); gap: 0; }
  .hero-cols { grid-template-columns: 1fr; gap: 1.4rem; }
  .row { grid-template-columns: 1fr; gap: 0.7rem; }
  .split, .split--portrait { grid-template-columns: 1fr; }
  .split--portrait .portrait { order: -1; max-height: 62vh; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .written-grid { grid-template-columns: 1fr; }
  .quote-grid, .quote-grid--3 { grid-template-columns: 1fr; }
  .person-block { grid-template-columns: 1fr; gap: 1.6rem; }
  .card-grid, .card-grid--3 { grid-template-columns: 1fr; }
  .media-band { aspect-ratio: 3 / 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .experience-item { grid-template-columns: 1fr; gap: 0.6rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 520px) {
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
}
