@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Libre+Caslon+Display&display=swap');

:root {
  --teal: #086777;
  --teal-deep: #064d5b;
  --teal-ink: #083f49;
  --orange: #f47735;
  --orange-light: #ff9a60;
  --cream: #f7edcf;
  --paper: #fbf1d2;
  --ink: #132e33;
  --white: #ffffff;
  --line: rgba(19, 46, 51, 0.16);
  --max: 1240px;
  --serif: "Libre Caslon Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

::selection {
  background: var(--orange);
  color: var(--white);
}

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

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

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .028;
  z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 0 28px;
  background: var(--paper);
  border-bottom: 1px solid rgba(8, 103, 119, .14);
}

.nav-shell {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 12px 0;
  border-radius: 0;
}

.brand {
  width: 315px;
  height: 82px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  background: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--orange);
  transition: right .25s ease;
}

.site-nav > a:not(.nav-cta):hover::after { right: 0; }

.nav-cta {
  background: var(--teal);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 11px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  transition: transform .25s ease, background .25s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--teal-deep);
}

.menu-toggle { display: none; }

.section {
  position: relative;
  padding: 120px max(28px, calc((100vw - var(--max)) / 2));
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: rgba(255,255,255,.78);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 24px;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--orange);
}

.eyebrow.dark { color: var(--teal-deep); }
.eyebrow.light { color: rgba(255,255,255,.78); }

.hero {
  min-height: 890px;
  padding-top: 205px;
  padding-bottom: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(244,119,53,.18), transparent 27%),
    linear-gradient(135deg, var(--teal-ink) 0%, var(--teal) 58%, #087a87 100%);
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 780px;
  height: 780px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 50%;
  right: -210px;
  top: 82px;
}

.hero-grid {
  max-width: var(--max);
  min-height: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy h1,
.section-heading h2,
.services-top h2,
.approach h2,
.leadership-heading h2,
.contact h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
  margin: 0;
}

.hero-copy h1 {
  font-size: clamp(72px, 8vw, 126px);
  line-height: .82;
}

.hero-copy h1 em,
.section-heading h2 em,
.services-top h2 em,
.approach h2 em,
.leadership-heading h2 em,
.contact h2 em {
  color: var(--orange);
  font-style: italic;
  font-weight: 400;
}

.outline-word {
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(255,255,255,.75);
}

.hero-lede {
  max-width: 625px;
  margin: 38px 0 0;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,.78);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 20px;
  min-width: 180px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 14px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(2,30,35,.18);
}

.button-primary {
  background: var(--orange);
  color: var(--white);
}

.button-primary:hover { background: #ff8040; }

.button-light {
  background: var(--white);
  color: var(--teal-deep);
  width: fit-content;
  max-width: 100%;
}

.text-link {
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.84);
}

.hero-visual {
  position: relative;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.impact-card {
  position: relative;
  z-index: 3;
  width: min(420px, 92%);
  padding: 42px;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 4px 56px 4px 4px;
  transform: rotate(2.5deg);
  box-shadow: 0 34px 90px rgba(0,0,0,.18);
}

.impact-card::before {
  content: "";
  position: absolute;
  width: 84px;
  height: 7px;
  background: var(--orange);
  top: 0;
  left: 42px;
}

.impact-kicker {
  margin: 0 0 52px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.62);
}

.impact-quote {
  font-family: var(--serif);
  font-size: 39px;
  line-height: 1.08;
  margin: 0;
}

.impact-line {
  height: 1px;
  margin: 32px 0;
  background: rgba(255,255,255,.2);
}

.impact-caption {
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
}

.orbit-a { width: 510px; height: 510px; }
.orbit-b { width: 365px; height: 365px; }




.hero-shape {
  position: absolute;
  background: var(--orange);
  opacity: .15;
  pointer-events: none;
}

.hero-shape-one {
  width: 480px;
  height: 160px;
  left: -140px;
  bottom: 170px;
  clip-path: polygon(0 75%, 100% 0, 73% 100%);
  transform: rotate(-9deg);
}

.hero-shape-two {
  width: 270px;
  height: 190px;
  right: 5%;
  top: 8%;
  clip-path: polygon(0 0,100% 18%,52% 100%);
  transform: rotate(7deg);
}

.hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.18);
  padding: 22px 0;
  background: rgba(1,40,47,.20);
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 32px;
  animation: marquee 28s linear infinite;
  font-size: 12px;
  letter-spacing: .14em;
  font-weight: 700;
}

.marquee-track i {
  color: var(--orange);
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.intro {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: .45fr 1.55fr;
  align-items: end;
}

.section-heading .eyebrow { align-self: start; }

.section-heading h2,
.services-top h2,
.approach h2,
.leadership-heading h2,
.contact h2 {
  font-size: clamp(56px, 7vw, 105px);
  line-height: .94;
}

.intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  margin: 90px 0;
  padding-left: 22.5%;
}

.intro-lede {
  margin: 0;
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.28;
  color: var(--teal-deep);
}

.intro-copy {
  max-width: 520px;
  color: #567076;
  font-size: 16px;
  line-height: 1.8;
}

.intro-copy p:first-child { margin-top: 0; }

.statement-band {
  display: grid;
  grid-template-columns: 70px 1fr 70px 1fr 70px 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 132px;
}

.statement-number {
  height: 100%;
  display: grid;
  place-items: center;
  background: var(--teal);
  color: white;
  font-family: var(--serif);
  font-size: 30px;
}

.statement-band p {
  margin: 0;
  padding: 0 28px;
  font-weight: 600;
  color: var(--teal-deep);
}

.services {
  background: var(--teal-deep);
  color: var(--white);
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  width: 530px;
  height: 530px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  right: -180px;
  top: -180px;
}

.services-top {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 75px;
}

.services-intro {
  color: rgba(255,255,255,.62);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 8px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255,255,255,.15);
  border-left: 1px solid rgba(255,255,255,.15);
}

.service-card {
  min-height: 310px;
  padding: 34px;
  display: grid;
  grid-template-columns: 54px 1fr 40px;
  gap: 24px;
  border-right: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
  transition: background .3s ease, transform .3s ease;
}

.service-card:hover {
  background: rgba(244,119,53,.11);
}

.service-index {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--orange-light);
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 400;
  margin: 34px 0 18px;
}

.service-card p {
  margin: 0;
  color: rgba(255,255,255,.62);
  line-height: 1.75;
  font-size: 14px;
}

.service-arrow {
  font-size: 24px;
  color: var(--orange);
  justify-self: end;
  transition: transform .3s ease;
}

.service-card:hover .service-arrow { transform: translate(4px,-4px); }

.approach { background: var(--cream); }

.approach-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 90px;
}

.approach-sticky {
  position: sticky;
  top: 100px;
  align-self: start;
}

.approach-sticky > p:last-child {
  max-width: 360px;
  margin: 30px 0 0;
  color: #62767a;
  line-height: 1.7;
}

.steps { border-top: 1px solid var(--line); }

.step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 26px;
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
}

.step > span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  padding-top: 9px;
}

.step h3 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  color: var(--teal-deep);
  margin: 0 0 15px;
}

.step p {
  max-width: 590px;
  margin: 0;
  line-height: 1.75;
  color: #64777b;
}

.leadership { background: var(--paper); }

.leadership-heading {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 40px 90px;
  margin-bottom: 70px;
}

.leadership-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -6px; }

.leadership-heading > p:last-child {
  align-self: end;
  margin: 0 0 10px;
  color: #64777b;
  line-height: 1.75;
}

.leader-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.leader-card {
  position: relative;
  min-height: 430px;
  background: var(--teal);
  color: white;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.leader-card::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 180px;
  background: rgba(255,255,255,.06);
  top: 12%;
  right: -15%;
  clip-path: polygon(0 70%,100% 0,74% 100%);
  transform: rotate(-10deg);
}

.leader-card-alt { background: var(--orange); }

.leader-monogram {
  position: relative;
  z-index: 2;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 25px;
}

.leader-meta {
  position: relative;
  z-index: 2;
}

.leader-meta > p:first-child {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 700;
  opacity: .62;
}

.leader-meta h3 {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  margin: 8px 0 16px;
}

.leader-description {
  max-width: 520px;
  margin: 0;
  line-height: 1.7;
  font-size: 14px;
  color: rgba(255,255,255,.74);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
  border: 1px solid var(--line);
}

.proof-strip > div {
  min-height: 170px;
  padding: 30px;
  display: flex;
  gap: 18px;
  align-items: flex-end;
}

.proof-strip > div + div { border-left: 1px solid var(--line); }

.proof-strip strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 64px;
  line-height: .9;
  color: var(--teal);
}

.proof-strip span {
  max-width: 165px;
  color: #66777a;
  font-size: 12px;
  line-height: 1.5;
}

.contact {
  min-height: 560px;
  background: var(--orange);
  color: white;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 100px;
  align-items: end;
  position: relative;
  z-index: 2;
}

.contact h2 em { color: var(--teal-deep); }

.contact-actions p {
  max-width: 520px;
  margin: 0 0 30px;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
}

.phone-link {
  display: block;
  width: fit-content;
  margin-top: 20px;
  font-family: var(--serif);
  font-size: 26px;
}

.contact-arrow {
  position: absolute;
  width: 700px;
  height: 410px;
  right: -180px;
  bottom: -160px;
  background: rgba(255,255,255,.11);
  clip-path: polygon(0 75%,100% 0,72% 100%);
  transform: rotate(-7deg);
}

footer {
  background: #062f37;
  color: white;
  padding: 58px max(28px, calc((100vw - var(--max)) / 2)) 26px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr .9fr .6fr;
  gap: 70px;
  align-items: start;
}

.footer-logo {
  width: 300px;
  max-width: 100%;
  padding: 0;
  background: transparent;
}

.footer-address p {
  margin: 0 0 5px;
  color: rgba(255,255,255,.60);
  font-size: 14px;
}

.footer-links {
  display: grid;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.footer-links a:hover { color: var(--orange-light); }

.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: rgba(255,255,255,.40);
  font-size: 11px;
  letter-spacing: .02em;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay { transition-delay: .14s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1000px) {
  .site-header { padding: 0 16px; }
  .nav-shell { min-height: 88px; padding: 8px 0; }
  .brand {
    width: 235px;
    height: 58px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 7px;
    background: var(--teal);
    border: 0;
    border-radius: 10px;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: white;
    transition: transform .25s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 102px 16px auto;
    background: white;
    color: var(--ink);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
    padding: 22px;
    display: grid;
    gap: 18px;
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-cta { justify-content: space-between; }

  .hero {
    min-height: auto;
    padding-top: 160px;
    padding-bottom: 100px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-visual { height: 490px; }
  .hero-marquee { display: none; }

  .section-heading,
  .services-top,
  .approach-grid,
  .leadership-heading,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    padding-left: 0;
    gap: 30px;
    margin: 60px 0;
  }

  .statement-band {
    grid-template-columns: 60px 1fr;
  }

  .statement-number { min-height: 84px; }
  .statement-band p { min-height: 84px; display:flex; align-items:center; }

  .services-top { gap: 35px; }
  .approach-sticky { position: static; }

  .leadership-heading { gap: 30px; }
  .leadership-heading .eyebrow { grid-column: auto; }

  .proof-strip strong { font-size: 50px; }
}

@media (max-width: 720px) {
  .section { padding: 82px 20px; }

  .hero {
    padding: 150px 20px 85px;
  }

  .hero-copy h1 { font-size: clamp(60px, 20vw, 86px); }
  .hero-lede { font-size: 16px; }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    height: 410px;
    margin-top: 10px;
  }

  .impact-card {
    width: 94%;
    padding: 30px;
  }

  .impact-quote { font-size: 33px; }
  .impact-kicker { margin-bottom: 36px; }

  .section-heading h2,
  .services-top h2,
  .approach h2,
  .leadership-heading h2,
  .contact h2 {
    font-size: clamp(50px, 15vw, 72px);
  }

  .section-heading { gap: 26px; }
  .intro-lede { font-size: 28px; }

  .service-grid,
  .leader-grid,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 260px;
    grid-template-columns: 40px 1fr 24px;
    padding: 26px 20px;
    gap: 14px;
  }

  .service-card h3 { font-size: 30px; margin-top: 28px; }

  .leader-card { min-height: 410px; padding: 28px; }
  .leader-meta h3 { font-size: 36px; }

  .proof-strip > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .contact { min-height: 600px; }
  .contact-grid { gap: 45px; }

  .button-light {
    font-size: 12px;
    word-break: break-word;
  }

  .footer-main { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 520px) {
  .brand {
    width: 205px;
    height: 52px;
  }

  .nav-shell {
    min-height: 72px;
  }
}


/* =========================
   INNER PAGES
   ========================= */

.inner-page {
  background: var(--paper);
}

.inner-header {
  position: relative;
}

.site-nav a.active:not(.nav-cta) {
  color: var(--teal);
}

.site-nav a.active:not(.nav-cta)::after {
  right: 0 !important;
}

.inner-hero {
  position: relative;
  min-height: 520px;
  padding: 115px max(28px, calc((100vw - var(--max)) / 2)) 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid rgba(8,103,119,.14);
}

.inner-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(8,103,119,.10);
  border-radius: 50%;
  right: 8%;
  top: 40px;
}

.inner-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.inner-hero h1 {
  font-family: var(--serif);
  font-size: clamp(64px, 8vw, 116px);
  line-height: .9;
  font-weight: 400;
  letter-spacing: -.045em;
  margin: 0;
  color: var(--teal-deep);
}

.inner-hero h1 em {
  color: var(--orange);
  font-style: italic;
  font-weight: 400;
}

.inner-hero-copy > p:last-child {
  max-width: 680px;
  margin: 34px 0 0;
  color: #567076;
  font-size: 17px;
  line-height: 1.75;
}

.inner-hero-mark {
  position: absolute;
  width: 540px;
  height: 230px;
  right: -80px;
  bottom: -30px;
  background: rgba(244,119,53,.16);
  clip-path: polygon(0 72%,100% 0,72% 100%);
  transform: rotate(-6deg);
}

.inner-section {
  padding: 110px max(28px, calc((100vw - var(--max)) / 2));
}

.section-intro {
  max-width: 800px;
  margin-bottom: 65px;
}

.section-intro h2 {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -.035em;
  color: var(--teal-deep);
  margin: 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.detail-card {
  min-height: 280px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .25s ease, transform .25s ease;
}

.detail-card:hover {
  background: rgba(244,119,53,.08);
}

.detail-card > span {
  display: block;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  margin-bottom: 44px;
}

.detail-card h3 {
  font-family: var(--serif);
  color: var(--teal-deep);
  font-size: 34px;
  font-weight: 400;
  margin: 0 0 16px;
}

.detail-card p {
  color: #62777b;
  line-height: 1.75;
  margin: 0;
  max-width: 500px;
}

.page-cta {
  margin: 0;
  padding: 85px max(28px, calc((100vw - var(--max)) / 2));
  background: var(--orange);
  color: white;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
}

.page-cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 5vw, 68px);
  max-width: 780px;
  line-height: 1;
  margin: 0;
}

.team-feature-grid {
  display: grid;
  gap: 24px;
}

.team-feature {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 50px;
  padding: 52px;
  background: var(--teal-deep);
  color: white;
}

.team-feature:nth-child(2) {
  background: var(--orange);
}

.team-initial {
  width: 160px;
  height: 160px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 48px;
}

.person-role {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .14em;
  font-weight: 700;
  opacity: .68;
  margin-top: 0;
}

.team-feature h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 48px;
  margin: 8px 0 20px;
}

.team-feature p {
  max-width: 820px;
  color: rgba(255,255,255,.76);
  line-height: 1.75;
}

.team-collab-section {
  padding-top: 20px;
}

.name-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.name-grid div {
  min-height: 110px;
  display: flex;
  align-items: center;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 25px;
  color: var(--teal-deep);
}

.resource-feature {
  min-height: 390px;
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 50px;
  align-items: end;
  padding: 56px;
  background: var(--teal-deep);
  color: white;
  margin-bottom: 24px;
}

.resource-feature h2 {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
  margin: 0 0 24px;
}

.resource-feature > div:first-child > p:last-child {
  max-width: 700px;
  color: rgba(255,255,255,.68);
  line-height: 1.75;
}

.resource-symbol {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  font-size: 52px;
  color: var(--orange-light);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.resource-card {
  min-height: 330px;
  padding: 34px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.resource-card > span {
  margin-bottom: auto;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
}

.resource-card h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--teal-deep);
  margin: 0 0 16px;
}

.resource-card p {
  color: #62777b;
  line-height: 1.7;
  margin: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 24px;
}

.contact-info-panel {
  background: var(--teal-deep);
  color: white;
  padding: 52px;
}

.contact-info-panel h2,
.contact-form-panel h2 {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 400;
  margin: 0 0 50px;
}

.contact-detail {
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.16);
}

.contact-detail span {
  display: block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
  font-weight: 700;
  color: var(--orange-light);
  margin-bottom: 10px;
}

.contact-detail a,
.contact-detail p {
  font-family: var(--serif);
  font-size: 24px;
  margin: 0;
  line-height: 1.4;
}

.contact-form-panel {
  border: 1px solid var(--line);
  padding: 52px;
}

.form-kicker {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 700;
}

.contact-form-panel form {
  display: grid;
  gap: 24px;
}

.contact-form-panel label {
  display: grid;
  gap: 9px;
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 700;
}

.contact-form-panel input,
.contact-form-panel textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(8,103,119,.3);
  background: transparent;
  border-radius: 0;
  padding: 12px 0;
  color: var(--ink);
  font: inherit;
  outline: none;
}

.contact-form-panel textarea {
  border: 1px solid rgba(8,103,119,.25);
  padding: 14px;
  resize: vertical;
}

.contact-form-panel input:focus,
.contact-form-panel textarea:focus {
  border-color: var(--orange);
}

.form-note {
  color: #7a8a8d;
  font-size: 11px;
  line-height: 1.5;
  margin: 24px 0 0;
}

@media (max-width: 900px) {
  .detail-grid,
  .resource-grid,
  .contact-layout,
  .page-cta {
    grid-template-columns: 1fr;
  }

  .team-feature {
    grid-template-columns: 1fr;
  }

  .name-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .resource-feature {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .inner-hero {
    min-height: 440px;
    padding: 85px 20px 70px;
  }

  .inner-section {
    padding: 75px 20px;
  }

  .detail-grid,
  .name-grid {
    grid-template-columns: 1fr;
  }

  .detail-card {
    min-height: 240px;
    padding: 28px 22px;
  }

  .team-feature {
    padding: 32px 24px;
  }

  .team-initial {
    width: 110px;
    height: 110px;
    font-size: 36px;
  }

  .team-feature h2 {
    font-size: 40px;
  }

  .resource-feature,
  .contact-info-panel,
  .contact-form-panel {
    padding: 32px 24px;
  }

  .page-cta {
    padding: 65px 20px;
  }
}

/* Resource library */
.resource-library-section { background: var(--paper); }

.library-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.library-card {
  min-height: 390px;
  padding: 38px;
  border: 1px solid rgba(8,103,119,.22);
  border-left: 5px solid var(--teal);
  background: rgba(255,255,255,.16);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.library-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.32);
  box-shadow: 0 18px 40px rgba(8,77,91,.08);
}

.library-card-top {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.library-card-top > span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  padding-top: 9px;
}

.library-card h2 {
  font-family: var(--serif);
  color: var(--teal-deep);
  font-size: 31px;
  line-height: 1.1;
  font-weight: 400;
  margin: 0;
}

.library-card > p {
  color: #5d7478;
  line-height: 1.65;
  font-size: 14px;
  margin: 22px 0 28px 56px;
}

.library-card ul {
  list-style: none;
  margin: auto 0 0 56px;
  padding: 0;
  border-top: 1px solid rgba(8,103,119,.15);
}

.library-card li {
  border-bottom: 1px solid rgba(8,103,119,.15);
}

.library-card li a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  transition: color .2s ease, padding-left .2s ease;
}

.library-card li a span {
  color: var(--orange);
  flex-shrink: 0;
}

.library-card li a:hover {
  color: var(--orange);
  padding-left: 5px;
}

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

@media (max-width: 520px) {
  .library-card { padding: 28px 22px; min-height: 0; }
  .library-card > p,
  .library-card ul { margin-left: 0; }
  .library-card-top { grid-template-columns: 1fr; }
}

/* =========================
   TEAM PAGE — PHOTO BUILD
   ========================= */

.partners-section { background: var(--paper); }

.partner-profiles {
  display: grid;
  gap: 26px;
}

.partner-profile {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 0;
  border: 1px solid rgba(8,103,119,.20);
  background: rgba(255,255,255,.18);
  overflow: hidden;
}

.partner-photo-wrap {
  min-height: 430px;
  background: var(--teal-deep);
}

.partner-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  image-rendering: auto;
}

.partner-copy {
  padding: 52px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.partner-copy h2 {
  font-family: var(--serif);
  font-size: clamp(42px,4.5vw,66px);
  line-height: 1;
  color: var(--teal-deep);
  font-weight: 400;
  margin: 8px 0 20px;
}

.partner-summary {
  max-width: 720px;
  color: #5c7478;
  line-height: 1.75;
  font-size: 16px;
}

.consultants-section {
  padding-top: 30px;
  background: var(--paper);
}

.consultant-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.consultant-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(8,103,119,.19);
  background: rgba(255,255,255,.18);
  min-width: 0;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.consultant-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(8,77,91,.08);
  background: rgba(255,255,255,.34);
}

.consultant-photo-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #e8dcc0;
}

.consultant-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.01);
}

.consultant-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.consultant-card h3 {
  font-family: var(--serif);
  color: var(--teal-deep);
  font-size: 31px;
  line-height: 1.05;
  font-weight: 400;
  margin: 7px 0 16px;
}

.consultant-card-body > p:not(.person-role) {
  color: #61777b;
  line-height: 1.65;
  font-size: 14px;
  margin: 0 0 24px;
}

.bio-details {
  border-top: 1px solid rgba(8,103,119,.18);
  margin-top: 26px;
}

.bio-details summary {
  list-style: none;
  cursor: pointer;
  padding: 17px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .10em;
  font-size: 11px;
  font-weight: 700;
}

.bio-details summary::-webkit-details-marker { display: none; }

.bio-details summary span {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(244,119,53,.38);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  transition: transform .2s ease;
}

.bio-details[open] summary span { transform: rotate(45deg); }

.bio-content {
  padding: 0 0 20px;
  color: #536c71;
  line-height: 1.75;
  font-size: 14px;
}

.bio-content p { margin: 0; }

.bio-details.compact {
  margin-top: auto;
}

.person-role {
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  margin: 0;
}

@media (max-width: 1050px) {
  .consultant-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 760px) {
  .partner-profile { grid-template-columns: 1fr; }
  .partner-photo-wrap { min-height: 0; aspect-ratio: 1 / .9; }
  .partner-copy { padding: 34px 26px; }
  .consultant-grid { grid-template-columns: 1fr; }
}
