:root {
  --olive: #68614e;
  --olive-dark: #4d4738;
  --olive-black: #242117;
  --cream: #f7f3e9;
  --paper: #fffaf0;
  --gold: #d7a545;
  --gold-light: #f3cf72;
  --ink: #292824;
  --muted: #69645c;
  --line: rgba(41, 40, 36, 0.16);
  --white: #fff;
  --shadow: 0 24px 80px rgba(35, 31, 24, 0.18);
  --glow: 0 0 0 1px rgba(243, 207, 114, 0.35), 0 0 42px rgba(215, 165, 69, 0.2);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% -10%, rgba(215, 165, 69, 0.13), transparent 38%),
    var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

.cursor-light {
  position: fixed;
  z-index: 0;
  width: 420px;
  height: 420px;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(243, 207, 114, 0.16), transparent 62%);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 240ms ease;
}

body.pointer-active .cursor-light {
  opacity: 1;
}

.site-header,
main,
.footer {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
  padding: 10px clamp(20px, 5vw, 72px);
  background: rgba(255, 250, 240, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px) saturate(140%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 132px;
  max-width: 132px;
  height: 72px;
  max-height: 72px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  position: relative;
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
}

.brand-mark span {
  position: absolute;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  inset: 7px;
}

.brand-mark span:nth-child(2) {
  border-color: #4a63b7;
  transform: rotate(-15deg);
  inset: 4px 9px 9px 4px;
}

.brand-mark span:nth-child(3) {
  border-color: #9b5044;
  transform: rotate(24deg);
  inset: 10px 4px 4px 10px;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  color: #3d46a0;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
}

.brand-text small {
  color: var(--olive-dark);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.brand.small .brand-mark {
  width: 42px;
  height: 42px;
}

.brand.small .brand-logo {
  width: 112px;
  max-width: 112px;
  height: 58px;
  max-height: 58px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 24px);
  font-size: 0.92rem;
}

.nav a {
  position: relative;
  text-decoration: none;
  color: var(--olive-dark);
  border-bottom: 1px solid transparent;
  padding: 8px 0;
  transition: color 180ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.active {
  color: var(--ink);
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--ink);
}

.section,
.hero {
  padding: clamp(72px, 9vw, 140px) clamp(20px, 6vw, 96px);
}

.section-dark {
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(243, 207, 114, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(243, 207, 114, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 80% 16%, rgba(243, 207, 114, 0.18), transparent 30%),
    linear-gradient(135deg, var(--olive-black), var(--olive-dark) 54%, var(--olive));
  background-size: 48px 48px, 48px 48px, auto, auto;
}

.section-light {
  background:
    linear-gradient(180deg, rgba(215, 165, 69, 0.08), transparent 34%),
    var(--cream);
}

.section-gold {
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 250, 240, 0.68), transparent 34%),
    linear-gradient(135deg, #e0ae45, #efc665 52%, #d6a243);
}

.hero {
  min-height: 92vh;
  display: grid;
  align-content: center;
  gap: 48px;
  overflow: hidden;
}

.hero-grid,
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
}

h1 {
  max-width: 920px;
  font-size: clamp(4rem, 9.5vw, 8.8rem);
  letter-spacing: -0.035em;
}

h2 {
  max-width: 980px;
  font-size: clamp(2.2rem, 4.8vw, 5.1rem);
  color: var(--olive-dark);
  letter-spacing: -0.025em;
}

.section-dark h2,
.section-dark h1 {
  color: var(--gold-light);
}

h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--ink);
}

.hero-copy p {
  max-width: 760px;
  color: rgba(255, 250, 240, 0.86);
}

.hero-lede {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2.35rem);
  line-height: 1.18;
}

.hero-actions,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

.button-primary {
  background: var(--gold);
  color: var(--ink);
}

.button-secondary {
  border-color: rgba(255, 250, 240, 0.34);
  color: var(--paper);
}

.signal-board {
  position: relative;
  min-height: 560px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.12), rgba(255, 250, 240, 0.055));
  border: 1px solid rgba(243, 207, 114, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.signal-board::after {
  content: "";
  position: absolute;
  inset: auto 28px 28px auto;
  width: 130px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243, 207, 114, 0.62));
}

.board-top,
.proof-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.board-top {
  color: rgba(255, 250, 240, 0.72);
}

.board-top strong {
  color: var(--gold-light);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.signal-orbit {
  position: relative;
  height: 420px;
}

.orbit {
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(243, 207, 114, 0.32);
  border-radius: 50%;
  animation: rotate 28s linear infinite;
}

.orbit-two {
  inset: 24% 9%;
  transform: rotate(28deg);
  animation-duration: 38s;
}

.node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 116px;
  min-height: 54px;
  padding: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.92);
  color: var(--olive-dark);
  cursor: pointer;
  font-weight: 800;
  text-align: center;
  font-size: 0.78rem;
  font-family: var(--sans);
  box-shadow: 0 12px 30px rgba(24, 22, 18, 0.22);
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.node:hover,
.node:focus-visible,
.node.active {
  transform: scale(1.04);
  background: var(--gold-light);
  box-shadow: var(--glow);
}

.n1 { top: 10%; left: 34%; }
.n2 { top: 34%; right: 4%; }
.n3 { right: 24%; bottom: 8%; }
.n4 { left: 8%; bottom: 22%; }
.n5 { left: 3%; top: 28%; }

.signal-readout {
  min-height: 118px;
  padding: 20px;
  border: 1px solid rgba(243, 207, 114, 0.18);
  border-radius: 8px;
  background: rgba(24, 22, 18, 0.24);
}

.signal-readout span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.signal-readout p {
  margin: 0;
  color: rgba(255, 250, 240, 0.78);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 18px;
  background: rgba(255, 250, 240, 0.065);
  border: 1px solid rgba(243, 207, 114, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.proof-strip div {
  display: grid;
  gap: 4px;
}

.proof-strip strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.18rem;
}

.proof-strip span {
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.92rem;
}

.section-heading {
  max-width: 1050px;
  margin-bottom: clamp(32px, 5vw, 70px);
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered p {
  margin-inline: auto;
}

.section-heading.compact {
  max-width: 860px;
}

.section-heading p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.08rem;
}

.two-column p {
  color: var(--muted);
  font-size: 1.05rem;
}

.large-quote {
  margin: 0;
  padding: 30px;
  color: var(--olive-dark);
  border-left: 4px solid var(--gold);
  background: rgba(255, 250, 240, 0.7);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.2vw, 3rem);
  line-height: 1.2;
}

.pillars,
.signal-grid,
.team-grid,
.portfolio-grid {
  display: grid;
  gap: 18px;
}

.pillars {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 40px;
}

.pillars article,
.signal-card,
.team-card,
.portfolio-card {
  border: 1px solid rgba(41, 40, 36, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.92), rgba(255, 250, 240, 0.68));
  padding: 24px;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.pillars article:hover,
.signal-card:hover,
.team-card:hover,
.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow), 0 18px 40px rgba(53, 45, 28, 0.14);
  border-color: rgba(215, 165, 69, 0.45);
}

.pillars span,
.signal-card span,
.team-card span,
.portfolio-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--olive-dark);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.pillars p,
.signal-card p,
.team-card p,
.portfolio-card p {
  color: var(--muted);
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 2px;
  color: var(--olive-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.portfolio-link::after {
  content: "↗";
  margin-left: 6px;
  font-size: 0.78rem;
}

.portfolio-link:hover,
.portfolio-link:focus-visible {
  color: var(--gold-dark);
  transform: translateX(2px);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(41, 40, 36, 0.16);
  border-radius: 8px;
  overflow: hidden;
}

.timeline-item {
  display: grid;
  gap: 6px;
  min-height: 98px;
  padding: 18px;
  border: 0;
  border-right: 1px solid rgba(41, 40, 36, 0.18);
  background: rgba(255, 250, 240, 0.48);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.timeline-item:hover {
  background: rgba(255, 250, 240, 0.78);
  box-shadow: inset 0 0 0 1px rgba(215, 165, 69, 0.38);
}

.timeline-item:last-child {
  border-right: 0;
}

.timeline-item span {
  font-family: var(--serif);
  font-size: 1.25rem;
}

.timeline-item small {
  color: var(--muted);
  font-size: 0.84rem;
}

.timeline-item.active {
  background: var(--olive-dark);
  color: var(--gold-light);
  box-shadow: inset 0 0 0 1px rgba(243, 207, 114, 0.38), 0 0 30px rgba(77, 71, 56, 0.18);
}

.timeline-item.active small {
  color: rgba(255, 250, 240, 0.78);
}

.stage-panel {
  margin-top: 16px;
  padding: 24px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0, rgba(243, 207, 114, 0.18), transparent 28%),
    rgba(77, 71, 56, 0.92);
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 2rem);
}

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

.section-dark .portfolio-card,
.section-dark .team-card {
  background: rgba(255, 250, 240, 0.92);
}

.filter {
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 999px;
  background: transparent;
  color: var(--paper);
  padding: 10px 15px;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.filter.active,
.filter:hover {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 0 26px rgba(243, 207, 114, 0.22);
}

.portfolio-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 24px;
}

.portfolio-card {
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 22% 12%, rgba(215, 165, 69, 0.22), transparent 28%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.portfolio-card:hover::before {
  opacity: 1;
}

.portfolio-card > * {
  position: relative;
}

.portfolio-card:hover .first-signal,
.portfolio-card:focus-within .first-signal {
  opacity: 1;
  transform: translateY(0);
}

.portrait {
  width: 100%;
  height: 150px;
  display: block;
  object-fit: cover;
  object-position: center;
  margin-bottom: 22px;
  border-radius: 8px;
  border: 1px solid rgba(41, 40, 36, 0.12);
  filter: saturate(0.86) contrast(1.02);
  box-shadow: inset 0 0 0 1px rgba(255, 250, 240, 0.24), 0 14px 28px rgba(41, 40, 36, 0.12);
}

.portrait.wide {
  object-position: center;
}

.portfolio-card h3,
.team-card h3 {
  font-size: 1.24rem;
}

.first-signal {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 16px;
  border-radius: 8px;
  background: rgba(36, 33, 23, 0.92);
  color: rgba(255, 250, 240, 0.84);
  font-size: 0.88rem;
  line-height: 1.42;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 240ms ease, transform 240ms ease;
  backdrop-filter: blur(14px);
}

.first-signal strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.02rem;
}

.portfolio-note {
  max-width: 800px;
  margin: 34px auto 0;
  color: var(--gold-light);
  text-align: center;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 22px;
  border-radius: 8px;
  filter: grayscale(1) contrast(1.04);
  border: 1px solid rgba(41, 40, 36, 0.12);
  box-shadow: 0 18px 38px rgba(41, 40, 36, 0.12);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  color: var(--olive-dark);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--ink);
}

.allocator-section {
  background:
    radial-gradient(circle at 88% 18%, rgba(243, 207, 114, 0.16), transparent 28%),
    linear-gradient(135deg, var(--olive-black), var(--olive-dark));
  color: var(--paper);
}

.allocator-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(243, 207, 114, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.045);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.18);
}

.allocator-card h2 {
  color: var(--gold-light);
}

.allocator-card p:not(.eyebrow) {
  color: rgba(255, 250, 240, 0.78);
}

.cta-section {
  background:
    linear-gradient(180deg, rgba(104, 97, 78, 0.08), rgba(104, 97, 78, 0.18)),
    var(--cream);
}

.cta-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 72px);
  border-radius: 8px;
  background: var(--olive-dark);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.cta-card h2 {
  color: var(--gold-light);
}

.cta-card p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 250, 240, 0.78);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 6vw, 96px);
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--olive-dark);
}

.footer p,
.footer a {
  margin: 0;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.hidden {
  display: none;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 24px 24px;
    background: rgba(247, 243, 233, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }

  .hero-grid,
  .two-column,
  .pillars,
  .team-grid,
  .allocator-card {
    grid-template-columns: 1fr;
  }

  .proof-strip,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    display: grid;
  }

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

@media (max-width: 680px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand-text strong {
    font-size: 1rem;
  }

  .brand-logo {
    width: 112px;
    max-width: 112px;
    height: 62px;
    max-height: 62px;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 5.8rem);
  }

  .section,
  .hero {
    padding: 64px 18px;
  }

  .signal-board {
    min-height: 430px;
  }

  .signal-orbit {
    height: 300px;
  }

  .node {
    width: 98px;
    min-height: 48px;
    font-size: 0.7rem;
  }

  .signal-grid,
  .portfolio-grid,
  .proof-strip,
  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    border-right: 0;
    border-bottom: 1px solid rgba(41, 40, 36, 0.18);
  }

  .first-signal {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 16px;
    opacity: 1;
    transform: none;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
