:root {
  --navy: #0f263d;
  --navy-deep: #091b2d;
  --navy-soft: #193650;
  --orange: #d73e25;
  --orange-dark: #b9321d;
  --charcoal: #505961;
  --silver: #e8eaec;
  --mist: #f3f4f4;
  --white: #ffffff;
  --paper: #faf9f6;
  --line: rgba(15, 38, 61, 0.16);
  --line-light: rgba(255, 255, 255, 0.22);
  --shadow: 0 28px 70px rgba(9, 27, 45, 0.14);
  --sans: "DM Sans", Arial, sans-serif;
  --serif: "Newsreader", Georgia, serif;
  --max-width: 1280px;
  --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
::selection { background: var(--orange); color: var(--white); }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-200%);
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--orange);
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }
.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;
}

.container { width: min(calc(100% - 3rem), var(--max-width)); margin-inline: auto; }
.section-pad { padding: clamp(6rem, 10vw, 10rem) 0; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { text-wrap: balance; }
h1 {
  margin-bottom: 2rem;
  font-family: var(--sans);
  font-size: clamp(3.6rem, 6.9vw, 7.9rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
  font-weight: 500;
}
h1 em {
  color: var(--orange);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}
h2 {
  margin-bottom: 1.7rem;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.3vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 400;
}
h3 { margin-bottom: 0.8rem; font-size: 1.8rem; line-height: 1.12; letter-spacing: -0.02em; }
p { margin-bottom: 1.25rem; }
.large-copy { font-family: var(--serif); font-size: clamp(1.55rem, 2.35vw, 2.7rem); line-height: 1.22; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow > span { width: 1.85rem; height: 3px; background: var(--orange); }
.eyebrow-light { color: rgba(255,255,255,0.7); }
.orange-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--orange); }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-orange { background: var(--orange); color: var(--white); }
.button-orange:hover { background: var(--white); color: var(--navy); }
.button-white { background: var(--white); color: var(--navy); }
.button-white:hover { background: transparent; color: var(--white); border-color: var(--white); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateY(3px); }
.text-link-light { color: var(--white); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 200ms ease, box-shadow 200ms ease;
}
.site-header.scrolled { background: rgba(250, 249, 246, 0.94); box-shadow: 0 1px 0 var(--line); backdrop-filter: blur(12px); }
.header-inner { display: flex; min-height: 92px; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { width: 270px; display: grid; align-items: center; }
.brand img { grid-area: 1 / 1; width: 100%; height: auto; transition: opacity 180ms ease; }
.brand-primary { opacity: 0; }
.brand-reversed { opacity: 1; }
.site-header.scrolled .brand-primary { opacity: 1; }
.site-header.scrolled .brand-reversed { opacity: 0; }
.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav a { color: var(--white); text-decoration: none; font-size: 0.87rem; font-weight: 600; }
.site-header.scrolled .site-nav a { color: var(--navy); }
.site-nav a:not(.nav-cta) { position: relative; }
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.4rem;
  height: 2px;
  background: var(--orange);
  transition: right 180ms ease;
}
.site-nav a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { padding: 0.75rem 1rem; border: 1px solid rgba(255,255,255,0.45); }
.site-header.scrolled .nav-cta { border-color: var(--navy); }
.nav-cta:hover { background: var(--orange); border-color: var(--orange) !important; color: var(--white) !important; }
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(9.5rem, 13vw, 12rem) 0 2.3rem;
  background: var(--navy);
  color: var(--white);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: clamp(2rem, 6vw, 6rem); }
.hero-copy { padding: 2rem 0 3rem; }
.hero-text { max-width: 680px; color: rgba(255,255,255,0.72); font-size: clamp(1.08rem, 1.45vw, 1.28rem); }
.hero-actions { display: flex; align-items: center; gap: 1.6rem; margin-top: 2.5rem; }
.hero-visual { position: relative; min-height: 620px; display: grid; place-items: center; }
.hero-mark { width: min(100%, 650px); mix-blend-mode: screen; }
.hero-note {
  position: absolute;
  right: 0;
  bottom: 10%;
  width: min(320px, 74%);
  padding: 1.4rem 1.5rem 1.25rem;
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
}
.hero-note::before { content: ""; position: absolute; left: 0; top: 0; width: 42%; height: 4px; background: var(--orange); }
.note-kicker { display: block; margin-bottom: 0.75rem; color: var(--orange); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }
.hero-note p { margin: 0; font-family: var(--serif); font-size: 1.45rem; line-height: 1.15; }
.hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; pointer-events: none; }
.hero-orbit-one { width: 950px; height: 950px; right: -420px; top: -340px; }
.hero-orbit-two { width: 680px; height: 680px; right: -130px; bottom: -520px; }
.hero-bottom {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
  gap: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-bottom p { margin: 0; color: rgba(255,255,255,0.58); font-size: 0.85rem; }
.hero-path { position: relative; height: 42px; }
.path-dot, .path-line { position: absolute; }
.path-dot { z-index: 2; top: 50%; width: 13px; height: 13px; border: 3px solid var(--navy); border-radius: 50%; background: var(--silver); transform: translate(-50%, -50%); box-shadow: 0 0 0 2px var(--white); }
.path-dot-one { left: 0; }
.path-dot-two { left: 35%; }
.path-dot-three { left: 66%; }
.path-dot-four { left: 100%; width: 18px; height: 18px; background: var(--orange); box-shadow: none; border: 0; }
.path-line { height: 2px; background: var(--white); transform-origin: left center; }
.path-line-one { left: 1%; top: 60%; width: 35%; transform: rotate(-8deg); }
.path-line-two { left: 35%; top: 31%; width: 32%; transform: rotate(5deg); }
.path-line-three { left: 66%; top: 50%; width: 35%; transform: rotate(-20deg); }

.manifesto { background: var(--white); }
.manifesto-grid { display: grid; grid-template-columns: 0.42fr 1.58fr; gap: clamp(3rem, 8vw, 8rem); }
.manifesto-label { display: flex; align-items: flex-start; gap: 0.8rem; padding-top: 0.6rem; }
.manifesto-label p { margin: 0; color: var(--charcoal); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.manifesto-copy h2 { max-width: 1000px; }
.manifesto-copy .large-copy { max-width: 980px; color: var(--charcoal); }

.services { background: var(--mist); }
.section-intro { display: grid; grid-template-columns: 0.55fr 1.45fr; gap: clamp(3rem, 8vw, 8rem); margin-bottom: 4.5rem; }
.section-intro > div { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(2rem, 5vw, 5rem); align-items: end; }
.section-intro h2 { margin-bottom: 0; font-size: clamp(2.9rem, 4.7vw, 5.4rem); }
.section-intro > div > p { margin: 0; max-width: 420px; color: var(--charcoal); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card {
  min-height: 470px;
  padding: clamp(2rem, 4vw, 3.2rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.service-card:hover { position: relative; z-index: 2; transform: translateY(-5px); box-shadow: var(--shadow); }
.card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5.5rem; color: var(--orange); font-size: 0.8rem; font-weight: 700; }
.card-top i { width: 11px; height: 11px; border-radius: 50%; background: var(--orange); }
.service-card h3 { font-family: var(--serif); font-size: clamp(2.2rem, 3.4vw, 4rem); font-weight: 400; }
.service-card > p { max-width: 560px; color: var(--charcoal); }
.service-card ul { margin: 2rem 0 0; padding: 1.5rem 0 0; border-top: 1px solid var(--line); list-style: none; }
.service-card li { padding: 0.35rem 0; font-size: 0.85rem; }
.service-card-dark { background: var(--navy); color: var(--white); }
.service-card-dark > p { color: rgba(255,255,255,0.68); }
.service-card-dark ul { border-color: var(--line-light); }

.approach { position: relative; overflow: hidden; background: var(--navy); color: var(--white); }
.approach::after { content: ""; position: absolute; right: -230px; bottom: -420px; width: 850px; height: 850px; border: 1px solid rgba(255,255,255,0.08); border-radius: 50%; }
.approach-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(4rem, 10vw, 10rem); }
.approach-heading { position: sticky; top: 145px; align-self: start; }
.approach-heading h2 { font-size: clamp(3rem, 4.8vw, 5.5rem); }
.approach-heading > p:not(.eyebrow) { max-width: 520px; color: rgba(255,255,255,0.65); }
.process { position: relative; margin: 0; padding: 0; list-style: none; }
.process::before { content: ""; position: absolute; left: 27px; top: 31px; bottom: 31px; width: 2px; background: rgba(255,255,255,0.24); }
.process-step { position: relative; display: grid; grid-template-columns: 58px 1fr; gap: 2rem; padding: 0 0 4rem; }
.process-step:last-child { padding-bottom: 0; }
.process-node { position: relative; z-index: 2; width: 56px; height: 56px; display: grid; place-items: center; border: 2px solid var(--navy); border-radius: 50%; background: var(--silver); color: var(--navy); box-shadow: 0 0 0 2px var(--white); font-size: 0.8rem; font-weight: 700; }
.process-node-orange { width: 62px; height: 62px; background: var(--orange); color: var(--white); box-shadow: none; border: 0; transform: translateX(-3px); }
.process-step h3 { margin-top: 0.4rem; font-family: var(--serif); font-size: clamp(2.2rem, 3.6vw, 4rem); font-weight: 400; }
.process-step p { max-width: 620px; margin-bottom: 0; color: rgba(255,255,255,0.64); }

.work { background: var(--paper); }
.section-intro-work { margin-bottom: 4rem; }
.case-study { display: grid; grid-template-columns: 0.95fr 1.05fr; min-height: 720px; border: 1px solid var(--line); background: var(--white); }
.case-copy { padding: clamp(2.3rem, 5.2vw, 5.5rem); }
.case-label { margin-bottom: 2.3rem; color: var(--orange); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.case-copy h3 { max-width: 700px; font-family: var(--serif); font-size: clamp(2.6rem, 4.1vw, 4.8rem); font-weight: 400; }
.case-copy > p:not(.case-label):not(.placeholder-note) { max-width: 630px; color: var(--charcoal); }
.deliverables { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin: 3rem 0 1.5rem; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.deliverables div { padding: 1rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.deliverables dt { margin-bottom: 0.65rem; color: var(--orange); font-size: 0.7rem; font-weight: 700; }
.deliverables dd { margin: 0; font-size: 0.88rem; }
.placeholder-note { margin: 1rem 0 0; color: #7b8186; font-size: 0.72rem; }
.report-stage { position: relative; min-height: 720px; display: grid; place-items: center; overflow: hidden; background: var(--silver); }
.report-backdrop { position: absolute; width: 570px; height: 570px; border: 1px solid rgba(15,38,61,0.17); border-radius: 50%; }
.report-backdrop::after { content: ""; position: absolute; inset: 70px; border: 1px solid rgba(15,38,61,0.14); border-radius: 50%; }
.report-page { position: relative; z-index: 2; width: min(66%, 410px); min-height: 550px; padding: 2rem; background: var(--white); box-shadow: 0 30px 80px rgba(15,38,61,0.2); transform: rotate(3deg); }
.report-brand { display: flex; align-items: center; gap: 0.7rem; color: var(--navy); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; }
.report-brand img { width: 35px; height: 35px; }
.report-kicker { margin: 3.2rem 0 0.7rem; color: var(--orange); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.13em; }
.report-page h4 { margin-bottom: 1rem; font-family: var(--serif); font-size: 2.45rem; line-height: 1; font-weight: 400; }
.report-rule { width: 42%; height: 3px; margin: 1.4rem 0 2rem; background: var(--orange); }
.report-stat { display: flex; align-items: center; gap: 1rem; }
.report-stat strong { font-family: var(--serif); font-size: 4rem; line-height: 1; font-weight: 400; }
.report-stat span { max-width: 140px; color: var(--charcoal); font-size: 0.7rem; line-height: 1.3; }
.report-chart { height: 100px; display: flex; align-items: end; gap: 0.7rem; margin: 2.1rem 0; border-bottom: 1px solid var(--line); }
.report-chart span { flex: 1; height: var(--h); background: var(--charcoal); }
.report-chart span:last-child { background: var(--orange); }
.report-lines { display: grid; gap: 0.5rem; }
.report-lines i { height: 4px; background: var(--silver); }
.report-lines i:nth-child(2) { width: 82%; }
.report-lines i:nth-child(3) { width: 65%; }
.report-stamp { position: absolute; z-index: 3; left: 8%; bottom: 9%; width: 170px; height: 170px; display: grid; place-content: center; border-radius: 50%; background: var(--orange); color: var(--white); font-family: var(--serif); font-size: 1.22rem; line-height: 1.2; transform: rotate(-10deg); box-shadow: 0 16px 35px rgba(15,38,61,0.2); }

.principles { background: var(--white); }
.principles-header { display: grid; grid-template-columns: 0.55fr 1.45fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; margin-bottom: 4rem; }
.principles-header h2 { max-width: 950px; font-size: clamp(3rem, 4.8vw, 5.5rem); }
.principle-list { border-top: 1px solid var(--line); }
.principle { display: grid; grid-template-columns: 0.45fr 0.55fr 1fr; gap: 2rem; align-items: baseline; padding: 2.2rem 0; border-bottom: 1px solid var(--line); }
.principle > span { color: var(--orange); font-size: 0.76rem; font-weight: 700; }
.principle h3 { margin: 0; font-family: var(--serif); font-size: clamp(2.2rem, 3.5vw, 4rem); font-weight: 400; }
.principle p { max-width: 480px; margin: 0; color: var(--charcoal); }

.about { background: var(--mist); }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(4rem, 9vw, 9rem); align-items: center; }
.about-visual { min-height: 610px; display: grid; place-items: center; overflow: hidden; background: var(--white); border: 1px solid var(--line); }
.about-visual img { width: 105%; max-width: none; }
.about-copy h2 { font-size: clamp(3rem, 4.7vw, 5.4rem); }
.about-copy .large-copy { color: var(--navy); }
.about-copy > p:last-child { color: var(--charcoal); }

.contact { position: relative; overflow: hidden; background: var(--orange); color: var(--white); }
.contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.contact h2 { max-width: 870px; font-size: clamp(3.2rem, 5.6vw, 6.3rem); }
.contact-side p { max-width: 460px; color: rgba(255,255,255,0.82); }
.contact-watermark { position: absolute; right: -9%; bottom: -45%; width: min(50vw, 720px); opacity: 0.07; mix-blend-mode: screen; }

.site-footer { padding: 4rem 0 2.5rem; background: var(--navy-deep); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 0.8fr 1.2fr auto; gap: 3rem; align-items: center; }
.footer-brand { width: 265px; }
.footer-brand img { width: 100%; height: auto; }
.footer-grid > p:not(.copyright) { max-width: 540px; margin: 0; color: rgba(255,255,255,0.55); font-size: 0.9rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 1.2rem; }
.footer-links a { color: rgba(255,255,255,0.78); text-decoration: none; font-size: 0.82rem; }
.footer-links a:hover { color: var(--white); }
.copyright { grid-column: 1 / -1; margin: 2rem 0 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.38); font-size: 0.75rem; }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity 720ms ease, transform 720ms ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1060px) {
  .header-inner { min-height: 78px; }
  .brand { width: 225px; }
  .menu-button {
    display: grid;
    width: 45px;
    height: 45px;
    place-content: center;
    gap: 7px;
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 50%;
    background: transparent;
  }
  .site-header.scrolled .menu-button { border-color: var(--line); background: var(--paper); }
  .menu-button span:not(.sr-only) { width: 18px; height: 1px; background: var(--white); }
  .site-header.scrolled .menu-button span:not(.sr-only) { background: var(--navy); }
  .site-nav {
    position: fixed;
    inset: 78px 1rem auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
    padding: 1.1rem;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a, .site-header:not(.scrolled) .site-nav a { padding: 0.65rem; color: var(--navy); }
  .nav-cta { margin-top: 0.35rem; border-color: var(--navy); text-align: center; }
  .hero-grid, .approach-grid, .case-study, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 9rem; }
  .hero-copy { padding-bottom: 0; }
  .hero-visual { min-height: 500px; }
  .hero-mark { width: min(72%, 570px); }
  .hero-note { right: 10%; }
  .approach-heading { position: static; }
  .report-stage { min-height: 680px; }
  .about-visual { min-height: 520px; }
  .contact-side { max-width: 620px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 1.5rem), var(--max-width)); }
  .section-pad { padding: 5.5rem 0; }
  h1 { font-size: clamp(3.25rem, 15vw, 5.8rem); }
  h2 { font-size: clamp(2.65rem, 11vw, 4.6rem); }
  .brand { width: 205px; }
  .hero { min-height: auto; padding-bottom: 1.8rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-visual { min-height: 410px; }
  .hero-mark { width: 98%; }
  .hero-note { right: 2%; bottom: 2%; width: 72%; }
  .hero-bottom { grid-template-columns: 1fr; gap: 1rem; }
  .hero-path { margin-top: 0.8rem; }
  .manifesto-grid, .section-intro, .principles-header { grid-template-columns: 1fr; gap: 2rem; }
  .section-intro > div { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .card-top { margin-bottom: 3.5rem; }
  .process-step { gap: 1.25rem; }
  .deliverables { grid-template-columns: 1fr; }
  .report-stage { min-height: 590px; }
  .report-page { width: 76%; min-height: 500px; padding: 1.5rem; }
  .report-page h4 { font-size: 2rem; }
  .report-stamp { left: 2%; bottom: 5%; width: 135px; height: 135px; font-size: 1rem; }
  .principle { grid-template-columns: 50px 1fr; gap: 1rem; }
  .principle p { grid-column: 2; }
  .about-visual { min-height: 390px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { width: 220px; }
}

@media (max-width: 430px) {
  .header-inner { min-height: 72px; }
  .site-nav { inset: 72px 0.75rem auto; }
  .brand { width: 182px; }
  .hero { padding-top: 7.8rem; }
  .hero-visual { min-height: 340px; }
  .hero-note { width: 82%; padding: 1.1rem; }
  .hero-note p { font-size: 1.2rem; }
  .case-copy { padding: 1.5rem; }
  .report-stage { min-height: 530px; }
  .report-page { width: 82%; }
  .report-stamp { width: 112px; height: 112px; }
  .about-visual { min-height: 330px; }
}

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