:root {
  --dreamer-blue: #001b58;
  --dreamer-blue-dark: #00133f;
  --launch-yellow: #ffb519;
  --ink: #101114;
  --paper: #f6f4ed;
  --white: #ffffff;
  --line: rgba(0, 27, 88, 0.2);
  --muted: #5d626c;
  --max: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 244, 237, 0.96);
}

.site-header__inner,
.shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header__inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand-mark { width: auto; max-width: 56vw; height: 66px; object-fit: contain; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a { text-decoration: none; }
.site-nav a:hover,
.site-nav a:focus-visible { color: var(--dreamer-blue); text-decoration: underline; text-underline-offset: 6px; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 2px solid var(--dreamer-blue);
  color: var(--white);
  background: var(--dreamer-blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.button:hover,
.button:focus-visible { color: var(--dreamer-blue); background: var(--launch-yellow); }
.button--outline { color: var(--dreamer-blue); background: transparent; }
.button--outline:hover,
.button--outline:focus-visible { background: var(--white); }
.button--yellow { border-color: var(--launch-yellow); color: var(--dreamer-blue); background: var(--launch-yellow); }
.button--yellow:hover,
.button--yellow:focus-visible { border-color: var(--white); color: var(--dreamer-blue); background: var(--white); }

.eyebrow {
  margin: 0 0 18px;
  color: var(--dreamer-blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  background: var(--white);
}

.home-hero__copy {
  padding: clamp(80px, 10vw, 150px) max(40px, calc((100vw - var(--max)) / 2));
  padding-right: clamp(40px, 7vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dream-big-lockup { width: min(760px, 100%); margin-bottom: 36px; }

.home-hero__descriptor {
  margin: 0;
  color: var(--dreamer-blue);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.07em;
}

.home-hero__actions,
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 42px; }

.home-hero__portrait {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: var(--dreamer-blue);
}

.home-hero__portrait::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 14px;
  background: var(--launch-yellow);
  content: "";
}

.home-hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  filter: grayscale(100%) contrast(1.04);
}

.section { padding: clamp(76px, 10vw, 138px) 0; }
.section--white { background: var(--white); }
.section--blue { color: var(--white); background: var(--dreamer-blue); }
.section--yellow { color: var(--dreamer-blue); background: var(--launch-yellow); }
.section--blue .eyebrow { color: var(--launch-yellow); }

.section-heading {
  max-width: 900px;
  margin: 0;
  color: var(--dreamer-blue);
  font-size: clamp(2.4rem, 5vw, 5.25rem);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section--blue .section-heading { color: var(--white); }

.lede {
  max-width: 780px;
  margin: 30px 0 0;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.65;
}

.portfolio-list { margin-top: 64px; border-top: 1px solid var(--line); }

.portfolio-row {
  display: grid;
  grid-template-columns: 90px minmax(200px, 0.55fr) minmax(260px, 1fr);
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.portfolio-row__number { color: var(--dreamer-blue); font-size: 0.7rem; font-weight: 900; letter-spacing: 0.16em; }
.portfolio-row h3 { margin: 0; color: var(--dreamer-blue); font-size: clamp(1.3rem, 2.3vw, 2rem); line-height: 1.1; }
.portfolio-row p { margin: 0; color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: start;
}

.quote-mark {
  display: block;
  margin-bottom: 40px;
  color: var(--launch-yellow);
  font-size: 7rem;
  font-weight: 900;
  line-height: 0.5;
}

.pullquote { margin: 0; font-size: clamp(2rem, 4vw, 4rem); font-weight: 700; letter-spacing: -0.045em; line-height: 1.05; }

.footer {
  padding: 38px 0;
  color: rgba(255,255,255,0.75);
  background: var(--dreamer-blue-dark);
  font-size: 0.75rem;
}

.footer__inner { display: flex; justify-content: space-between; gap: 30px; }

/* GIV Advisory */
.giv-hero {
  color: var(--white);
  background: var(--dreamer-blue);
}

.giv-hero__grid {
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
}

.giv-hero__copy {
  padding: clamp(84px, 10vw, 150px) max(40px, calc((100vw - var(--max)) / 2));
  padding-right: clamp(40px, 7vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.giv-hero .eyebrow { color: var(--launch-yellow); }
.giv-hero h1 { max-width: 860px; margin: 0; font-size: clamp(3.1rem, 6.4vw, 6.9rem); font-weight: 760; letter-spacing: -0.06em; line-height: 0.93; }
.giv-hero__copy > p:not(.eyebrow) { max-width: 700px; margin: 34px 0 0; color: rgba(255,255,255,0.82); font-size: clamp(1.05rem, 1.7vw, 1.28rem); }

.giv-hero__portrait { position: relative; min-height: 620px; overflow: hidden; background: var(--launch-yellow); }
.giv-hero__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 24%; filter: grayscale(100%) contrast(1.06); mix-blend-mode: multiply; }
.giv-hero__portrait::after { position: absolute; inset: auto 0 0; height: 16px; background: var(--launch-yellow); content: ""; }

.moment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 60px;
  margin-top: 56px;
  border-top: 1px solid var(--line);
}

.moment-grid p { margin: 0; padding: 22px 0; border-bottom: 1px solid var(--line); }
.moment-grid strong { color: var(--dreamer-blue); }

.service-list { margin-top: 72px; border-top: 1px solid rgba(255,255,255,0.25); }
.service-row { display: grid; grid-template-columns: 80px minmax(220px, 0.6fr) minmax(280px, 1fr); gap: 30px; padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,0.25); }
.service-row__number { color: var(--launch-yellow); font-size: 0.74rem; font-weight: 900; letter-spacing: 0.16em; }
.service-row h3 { margin: 0; font-size: clamp(1.5rem, 2.5vw, 2.3rem); line-height: 1.08; }
.service-row p { margin: 0; color: rgba(255,255,255,0.78); }

.serve-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin-top: 56px; background: var(--line); border: 1px solid var(--line); }
.serve-grid article { min-height: 240px; padding: 34px; background: var(--white); }
.serve-grid h3 { margin: 0 0 18px; color: var(--dreamer-blue); font-size: 1.5rem; line-height: 1.15; }
.serve-grid p { margin: 0; color: var(--muted); }

.process-line { display: flex; flex-wrap: wrap; gap: 12px 24px; margin: 52px 0; padding: 0; list-style: none; color: var(--dreamer-blue); font-size: clamp(1.35rem, 2.8vw, 2.6rem); font-weight: 700; letter-spacing: -0.03em; }
.process-line li:not(:last-child)::after { margin-left: 24px; color: var(--launch-yellow); content: "→"; }

.scar-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.scar-card { min-height: 300px; padding: 32px; background: var(--paper); }
.scar-letter { display: block; color: var(--launch-yellow); font-size: 4.5rem; font-weight: 900; line-height: 0.9; }
.scar-card h3 { margin: 28px 0 12px; color: var(--dreamer-blue); font-size: 1.4rem; }
.scar-card p { margin: 0; color: var(--muted); }

.experience-list { margin-top: 60px; }
.experience-row { display: grid; grid-template-columns: minmax(210px, 0.5fr) minmax(280px, 1fr); gap: 34px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.24); }
.experience-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.24); }
.experience-row h3 { margin: 0; color: var(--launch-yellow); font-size: 1.3rem; }
.experience-row p { margin: 0; color: rgba(255,255,255,0.8); }

.case-study { margin-top: 80px; padding: clamp(34px, 6vw, 72px); color: var(--dreamer-blue); background: var(--launch-yellow); }
.case-study h3 { margin: 0 0 42px; font-size: clamp(2rem, 4vw, 4rem); letter-spacing: -0.045em; line-height: 1; }
.case-study__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 42px; }
.case-study__grid span { display: block; margin-bottom: 12px; font-size: 0.7rem; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }
.case-study__grid p { margin: 0; }

.leadership-grid { display: grid; grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr); gap: clamp(48px, 8vw, 120px); align-items: center; }
.leadership-grid img { width: 100%; max-height: 720px; object-fit: cover; object-position: 50% 22%; filter: grayscale(100%); }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.stat { padding-top: 20px; border-top: 4px solid var(--launch-yellow); }
.stat strong { display: block; color: var(--dreamer-blue); font-size: clamp(2.5rem, 5vw, 5rem); line-height: 1; }
.stat span { display: block; margin-top: 10px; font-size: 0.68rem; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; }

@media (max-width: 900px) {
  .site-nav a:not(.button) { display: none; }
  .home-hero,
  .giv-hero__grid,
  .split,
  .leadership-grid { grid-template-columns: 1fr; }
  .home-hero__portrait,
  .giv-hero__portrait { min-height: 520px; }
  .portfolio-row,
  .service-row { grid-template-columns: 60px 1fr; }
  .portfolio-row p,
  .service-row p { grid-column: 2; }
  .serve-grid { grid-template-columns: 1fr; }
  .scar-grid { grid-template-columns: repeat(2, 1fr); }
  .case-study__grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .site-header__inner { min-height: 78px; }
  .brand-mark { width: auto; max-width: 62vw; height: 50px; }
  .site-nav .button { display: none; }
  .home-hero__copy,
  .giv-hero__copy { padding: 74px 22px; }
  .home-hero__portrait,
  .giv-hero__portrait { min-height: 430px; }
  .section { padding: 72px 0; }
  .section-heading { font-size: 2.6rem; }
  .moment-grid,
  .stats { grid-template-columns: 1fr; }
  .scar-grid { grid-template-columns: 1fr; }
  .portfolio-row,
  .service-row { grid-template-columns: 44px 1fr; gap: 16px; }
  .experience-row { grid-template-columns: 1fr; gap: 8px; }
  .experience-row h3,
  .experience-row p { min-width: 0; }
  .footer__inner { flex-direction: column; }
}
