:root {
  --bg: #fafafa;
  --paper: #ffffff;
  --ink: #18211d;
  --muted: #607069;
  --line: #dfe5e1;
  --green: #143d2b;
  --green-2: #1f5a40;
  --gold: #d7aa50;
  --gold-soft: #f3e5bf;
  --gray: #eef2ef;
  --shadow: 0 24px 70px rgba(24, 33, 29, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(223, 229, 225, 0.86);
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(18px);
}

.nav-shell,
.section-inner,
.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav-shell {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 170px;
  max-height: 82px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  font-size: 13px;
  font-weight: 650;
  color: #24332d;
}

.nav-links a {
  position: relative;
  padding: 30px 0;
}

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

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-action {
  padding: 11px 14px;
  border: 1px solid var(--green);
  border-radius: var(--radius);
  color: var(--green);
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--green);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  min-height: auto;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 56px 0 60px;
  background: var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.74fr);
  gap: clamp(42px, 6vw, 84px);
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--gold);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(46px, 5.2vw, 68px);
}

.hero p,
.page-hero p {
  margin: 24px 0 0;
  max-width: 630px;
  color: #4f6259;
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius);
  border: 1px solid var(--green);
  font-size: 14px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

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

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--green);
}

.hero-visual {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  min-height: clamp(360px, 50vh, 520px);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(24, 33, 29, 0.1);
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(20, 61, 43, 0) 56%, rgba(20, 61, 43, 0.48) 100%),
    linear-gradient(90deg, rgba(20, 61, 43, 0.22), rgba(20, 61, 43, 0));
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 50% 43%;
}

.hero-facts {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 700px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  background: transparent;
}

.fact {
  min-height: auto;
  padding: 0 18px;
  background: transparent;
  border-left: 1px solid rgba(223, 229, 225, 0.9);
}

.fact:first-child {
  padding-left: 0;
  border-left: 0;
}

.fact strong {
  display: block;
  font-size: 15px;
  line-height: 1.25;
}

.fact span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.section {
  padding: 92px 0;
}

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

.section.green {
  background: var(--green);
  color: white;
}

.section.gray {
  background: var(--gray);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}

.section-head h2,
.page-section h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-head p,
.page-section p.lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.green .section-head p,
.green .muted,
.green .service-row p,
.green .long-copy {
  color: rgba(255, 255, 255, 0.72);
}

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

.service-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 0.82fr) minmax(0, 1.1fr);
  gap: 34px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.service-number {
  color: var(--gold);
  font-size: 14px;
  font-weight: 850;
}

.service-row h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.15;
}

.service-row p {
  margin: 0;
  color: var(--muted);
}

.capability-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: stretch;
}

.media-panel {
  min-height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  background: url("assets/hero-strategy.png") center / cover;
  box-shadow: var(--shadow);
}

.global-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 54px;
  align-items: center;
}

.global-layout h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
}

.visual-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.visual-card img {
  width: 100%;
  height: auto;
}

.credibility-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.credibility-strip div {
  min-height: 92px;
  padding: 18px;
  background: var(--paper);
}

.credibility-strip strong,
.credibility-strip span {
  display: block;
}

.credibility-strip strong {
  font-size: 17px;
  line-height: 1.2;
}

.credibility-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.text-panel {
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.text-panel h2 {
  margin: 0 0 18px;
  font-size: 42px;
  line-height: 1.08;
}

.check-list {
  display: grid;
  gap: 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.78);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 14px;
  height: 2px;
  background: var(--gold);
}

.process-grid,
.facts-grid,
.contact-grid,
.page-grid,
.team-grid,
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.process-card,
.plain-card,
.contact-card,
.team-card,
.insight-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 28px;
}

.process-card strong,
.plain-card strong {
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
}

.process-card h3,
.plain-card h3,
.contact-card h3 {
  margin: 16px 0 10px;
  font-size: 24px;
  line-height: 1.16;
}

.process-card p,
.plain-card p,
.contact-card p,
.contact-card address,
.team-card p,
.insight-card p {
  margin: 0;
  color: var(--muted);
  font-style: normal;
}

.long-copy {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}

.statement-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.statement-list li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 24px;
  background: var(--paper);
}

.statement-list strong {
  color: var(--green);
}

.statement-list span {
  color: var(--muted);
}

.team-card {
  position: relative;
  overflow: hidden;
}

.team-simple-head {
  align-items: start;
  margin-bottom: 32px;
}

.team-card.featured {
  grid-column: span 2;
  background: #f9fbfa;
}

.team-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 22px;
  background: var(--gold);
}

.team-card h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.16;
}

.team-card .role {
  margin: 8px 0 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.team-card p {
  font-size: 15px;
}

.team-contact {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.team-card .initials {
  position: absolute;
  right: 22px;
  top: 22px;
  color: rgba(20, 61, 43, 0.08);
  font-size: 58px;
  font-weight: 900;
  line-height: 1;
}

.insight-card strong {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
}

.insight-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.16;
}

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

.footer {
  padding: 42px 0 24px;
  color: rgba(255, 255, 255, 0.7);
  background: #0f1713;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.footer-brand-block {
  max-width: 430px;
}

.footer-brand-title {
  color: #fff;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.footer-brand-subtitle {
  display: block;
  margin-top: 6px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
}

.footer p {
  margin: 18px 0 0;
  max-width: 420px;
}

.footer-domain {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.footer-column {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.footer-column strong,
.footer-nav strong {
  margin-bottom: 6px;
  color: #fff;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  font-size: 14px;
}

.footer-nav div {
  display: grid;
  gap: 7px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 750;
}

.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.page-hero {
  padding: 76px 0 68px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-hero.compact h1 {
  max-width: 860px;
}

.page-hero.editorial {
  background:
    linear-gradient(90deg, rgba(250, 250, 250, 1) 0%, rgba(250, 250, 250, 0.88) 58%, rgba(250, 250, 250, 0.2) 100%),
    url("assets/hero-strategy.png") right center / min(44vw, 680px) auto no-repeat;
}

.page-hero.dark {
  color: white;
  background:
    linear-gradient(135deg, rgba(17, 24, 21, 0.96), rgba(20, 61, 43, 0.98)),
    url("assets/hero-strategy.png") right center / min(42vw, 620px) auto no-repeat;
  border-bottom: 0;
}

.page-hero.dark h1,
.page-hero.dark p {
  color: white;
}

.page-hero.dark p {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero.catalog {
  background: var(--gray);
}

.page-hero.contact-hero {
  padding-bottom: 36px;
  background: linear-gradient(180deg, #fff, #f4f7f5);
}

.catalog-masthead,
.company-masthead {
  padding: 74px 0 56px;
  border-bottom: 1px solid var(--line);
}

.catalog-masthead {
  background: var(--gray);
}

.catalog-masthead-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 54px;
  align-items: end;
}

.catalog-label {
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.catalog-masthead h1,
.company-masthead h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
}

.catalog-masthead p,
.company-masthead p {
  margin: 18px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
}

.company-masthead {
  background: var(--paper);
}

.company-masthead-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.company-quick-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 1px;
  min-width: min(460px, 100%);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.company-quick-facts div {
  padding: 18px;
  background: #fff;
}

.company-quick-facts strong {
  display: block;
  font-size: 13px;
  color: var(--green);
  text-transform: uppercase;
}

.company-quick-facts span {
  display: block;
  margin-top: 6px;
  font-weight: 800;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-opening {
  padding: 76px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.about-opening-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.55fr);
  gap: 64px;
  align-items: stretch;
}

.about-opening h1,
.development-opening h1,
.participation-opening h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
}

.about-opening p,
.development-opening p,
.participation-opening p {
  margin: 22px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.scope-panel {
  padding: 28px;
  border-radius: var(--radius);
  color: white;
  background: var(--green);
}

.scope-panel > strong {
  display: block;
  color: var(--gold);
  margin-bottom: 22px;
}

.scope-panel dl {
  display: grid;
  gap: 1px;
  margin: 0;
  background: rgba(255, 255, 255, 0.14);
}

.scope-panel dl div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding: 16px 0;
  background: var(--green);
}

.scope-panel dt,
.scope-panel dd {
  margin: 0;
}

.scope-panel dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.scope-panel dd {
  color: rgba(255, 255, 255, 0.9);
}

.development-opening {
  padding: 72px 0;
  background:
    linear-gradient(90deg, rgba(238, 242, 239, 0.98) 0%, rgba(238, 242, 239, 0.92) 48%, rgba(238, 242, 239, 0.54) 100%),
    url("assets/hero-strategy.png") right center / min(44vw, 620px) auto no-repeat;
  border-bottom: 1px solid var(--line);
}

.development-board {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 54px;
  align-items: center;
}

.board-stack {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.board-stack div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 78px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
}

.board-stack strong {
  color: var(--gold);
  font-weight: 900;
}

.board-stack span {
  color: var(--green);
  font-size: 18px;
  font-weight: 850;
}

.participation-opening {
  padding: 72px 0;
  color: white;
  background: var(--green);
}

.participation-opening-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
  gap: 62px;
  align-items: end;
}

.participation-opening .section-kicker,
.participation-opening h1 {
  color: white;
}

.participation-opening .section-kicker {
  color: var(--gold);
}

.participation-opening p {
  color: rgba(255, 255, 255, 0.76);
}

.participation-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.participation-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: white;
  background: rgba(255, 255, 255, 0.07);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-top {
  padding: 64px 0 78px;
  background: linear-gradient(180deg, #fff 0%, #f7f9f8 100%);
}

.team-masthead {
  padding: 70px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.team-masthead-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.team-masthead h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.03;
}

.team-masthead p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.team-role-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.team-role-board div {
  min-height: 86px;
  padding: 18px;
  background: #fff;
}

.team-role-board strong {
  display: block;
  color: var(--gold);
  font-size: 13px;
}

.team-role-board span {
  display: block;
  margin-top: 7px;
  color: var(--green);
  font-weight: 850;
}

.page-hero .hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--green);
  background: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.page-section {
  padding: 78px 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: start;
}

.prose p {
  color: var(--muted);
  font-size: 18px;
}

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

.legal-note {
  margin-top: 28px;
  padding: 22px;
  border-left: 3px solid var(--gold);
  background: #f7f9f7;
  color: #4f6259;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 56px;
  align-items: start;
}

.story-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.story-panel h2,
.catalog-intro h2,
.pipeline-header h2,
.registry-block h2,
.contact-panel h1,
.contact-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
}

.timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: 2px solid var(--line);
}

.timeline li {
  position: relative;
  padding: 0 0 34px 30px;
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}

.timeline strong {
  display: block;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.timeline span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.catalog-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  align-items: start;
}

.catalog-list {
  display: grid;
  gap: 18px;
}

.catalog-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.catalog-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--green);
  font-weight: 900;
}

.catalog-item h3,
.pipeline-step h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.15;
}

.catalog-item p,
.pipeline-step p,
.registry-row dd,
.contact-detail p {
  margin: 0;
  color: var(--muted);
}

.method-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
}

.method-strip div {
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
}

.method-strip strong {
  display: block;
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 10px;
}

.method-strip span {
  color: rgba(255, 255, 255, 0.76);
}

.pipeline {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 46px;
}

.pipeline-steps {
  display: grid;
  gap: 18px;
}

.pipeline-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.pipeline-number {
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.dark-ledger {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.ledger-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
}

.ledger-row {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 28px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
}

.ledger-row strong {
  color: var(--gold);
}

.ledger-row span {
  color: rgba(255, 255, 255, 0.76);
}

.team-lead {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  margin-bottom: 28px;
}

.team-structure {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 44px;
  align-items: start;
}

.role-rail {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.role-rail a {
  padding: 16px 18px;
  background: var(--paper);
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.registry-block {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 48px;
}

.registry-table {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.registry-row {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 1px;
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.registry-row:last-child {
  border-bottom: 0;
}

.registry-row dt,
.registry-row dd {
  margin: 0;
  padding: 20px;
  background: var(--paper);
  overflow-wrap: anywhere;
}

.registry-row dt {
  color: var(--green);
  font-weight: 850;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.contact-panel {
  min-width: 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.contact-detail {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-detail:last-child {
  border-bottom: 0;
}

.contact-detail strong {
  color: var(--green);
}

.contact-detail a,
.legal-copy a {
  color: var(--green);
  font-weight: 800;
}

.mosaic-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(220px, auto);
  gap: 18px;
}

.mosaic-card {
  position: relative;
  min-height: 220px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 45px rgba(12, 35, 25, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.mosaic-card:has(.card-media) {
  padding: 0;
}

.mosaic-card:hover {
  transform: translateY(-3px);
  border-color: rgba(218, 169, 61, 0.42);
  box-shadow: 0 24px 60px rgba(12, 35, 25, 0.1);
}

.card-media {
  position: relative;
  height: 230px;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(20, 61, 43, 0.1);
  background: #102d20;
}

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 28, 19, 0) 35%, rgba(8, 28, 19, 0.28) 100%),
    linear-gradient(90deg, rgba(8, 28, 19, 0.18), rgba(8, 28, 19, 0));
  pointer-events: none;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.88) contrast(1.05);
  transform: scale(1.02);
}

.mosaic-card.large {
  grid-row: span 2;
  background: var(--green);
  color: white;
}

.mosaic-card.large p {
  color: rgba(255, 255, 255, 0.72);
}

.mosaic-card.large .catalog-icon {
  background: rgba(255, 255, 255, 0.94);
  color: var(--green);
}

.mosaic-card .catalog-icon {
  margin-bottom: 26px;
}

.mosaic-card:has(.card-media) .catalog-icon {
  margin: 24px 30px 22px;
}

.mosaic-card h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.08;
}

.mosaic-card:has(.card-media) h3 {
  padding: 0 30px;
}

.mosaic-card p {
  margin: 0;
  color: var(--muted);
}

.mosaic-card:has(.card-media) p {
  padding: 0 30px 34px;
}

.mosaic-card::after {
  content: attr(data-index);
  position: absolute;
  right: 24px;
  bottom: 8px;
  color: rgba(20, 61, 43, 0.06);
  font-size: 88px;
  font-weight: 900;
  line-height: 1;
}

.mosaic-card.large::after {
  color: rgba(255, 255, 255, 0.08);
}

.strategy-canvas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "header header"
    "left right";
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
}

.strategy-canvas > div {
  min-height: 170px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.06);
}

.strategy-canvas .canvas-header {
  grid-area: header;
  min-height: 150px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.06);
}

.strategy-canvas strong {
  display: block;
  color: var(--gold);
  margin-bottom: 12px;
}

.strategy-canvas p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.dossier-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.dossier-side {
  padding: 34px;
  color: white;
  background: var(--green);
}

.dossier-side strong {
  display: block;
  color: var(--gold);
  margin-bottom: 14px;
}

.dossier-side p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.dossier-layout .registry-table {
  border: 0;
  border-radius: 0;
}

.brand-lab {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 36px;
  align-items: start;
}

.logo-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.logo-choice {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.logo-choice img {
  width: 260px;
  height: auto;
}

.logo-choice h3 {
  margin: 24px 0 8px;
  font-size: 22px;
}

.logo-choice p {
  margin: 0;
  color: var(--muted);
}

.contact-command {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-command .contact-panel:first-child {
  color: white;
  background: var(--green);
}

.contact-command .contact-panel:first-child h1,
.contact-command .contact-panel:first-child h2,
.contact-command .contact-panel:first-child strong {
  color: white;
}

.contact-command .contact-panel:first-child p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-command .contact-detail {
  border-color: rgba(255, 255, 255, 0.16);
}

.routing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.routing-tile {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(12, 35, 25, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.routing-tile:has(.card-media) {
  padding: 0;
}

.routing-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(218, 169, 61, 0.42);
  box-shadow: 0 24px 60px rgba(12, 35, 25, 0.1);
}

.routing-tile .card-media {
  height: 220px;
  margin: 0 0 24px;
}

.routing-tile strong {
  display: block;
  color: var(--gold);
  margin-bottom: 30px;
}

.routing-tile:has(.card-media) strong {
  width: fit-content;
  margin: 0 30px 22px;
  padding: 10px 13px;
  border: 1px solid rgba(218, 169, 61, 0.5);
  border-radius: 999px;
  color: var(--green);
  background: rgba(218, 169, 61, 0.1);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.routing-tile h3 {
  margin: 0 0 12px;
  font-size: 25px;
}

.routing-tile:has(.card-media) h3 {
  padding: 0 30px;
}

.routing-tile p {
  margin: 0;
  color: var(--muted);
}

.routing-tile:has(.card-media) p {
  padding: 0 30px;
}

.deal-tile {
  display: flex;
  flex-direction: column;
}

.deal-tile a {
  margin-top: auto;
  padding: 22px 30px 30px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.editorial-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 46px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(20, 61, 43, 0.16);
}

.editorial-intro h2 {
  margin: 0;
  max-width: 680px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.editorial-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.service-ledger,
.deal-ledger {
  border-top: 1px solid rgba(20, 61, 43, 0.18);
}

.service-entry,
.deal-entry {
  display: grid;
  align-items: center;
  gap: 34px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(20, 61, 43, 0.18);
}

.service-entry {
  grid-template-columns: 76px minmax(0, 1fr) minmax(250px, 360px);
}

.deal-entry {
  grid-template-columns: minmax(260px, 360px) 76px minmax(0, 1fr);
}

.service-entry figure,
.deal-entry figure {
  position: relative;
  height: 190px;
  margin: 0;
  overflow: hidden;
  background: #102d20;
}

.service-entry figure::after,
.deal-entry figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 28, 19, 0) 30%, rgba(8, 28, 19, 0.34) 100%),
    linear-gradient(90deg, rgba(8, 28, 19, 0.18), rgba(8, 28, 19, 0));
}

.service-entry img,
.deal-entry img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06);
  transform: scale(1.015);
}

.entry-number {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-entry h3,
.deal-entry h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.service-entry p,
.deal-entry p {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.deal-entry a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-entry:hover h3,
.deal-entry:hover h3,
.deal-entry a:hover {
  color: var(--green);
}

.catalog-masthead h1,
.page-hero.editorial h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.catalog-masthead {
  background: linear-gradient(180deg, #fff 0%, #f5f8f6 100%);
}

.catalog-label {
  letter-spacing: 0.16em;
}

.mandate-photo-strip {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(90deg, rgba(10, 31, 21, 0.72), rgba(10, 31, 21, 0.94)),
    url("assets/hero-strategy.png") center 58% / cover no-repeat;
}

.deals-photo-strip {
  background:
    linear-gradient(90deg, rgba(10, 31, 21, 0.74), rgba(10, 31, 21, 0.94)),
    url("assets/deal-preparation-room.png") center 45% / cover no-repeat;
}

.mandate-photo-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  min-height: 210px;
  align-items: end;
  background: rgba(255, 255, 255, 0.14);
}

.mandate-photo-inner div {
  min-height: 150px;
  padding: 28px;
  background: rgba(10, 31, 21, 0.42);
  backdrop-filter: blur(1px);
}

.mandate-photo-inner strong,
.mandate-photo-inner span {
  display: block;
}

.mandate-photo-inner strong {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mandate-photo-inner span {
  margin-top: 14px;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.5;
}

.governance-photo-strip {
  background:
    linear-gradient(90deg, rgba(10, 31, 21, 0.76), rgba(10, 31, 21, 0.94)),
    url("assets/governance-review.png") center 48% / cover no-repeat;
}

.image-ribbon {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 260px;
  overflow: hidden;
  background: var(--green);
}

.image-ribbon.compact {
  min-height: 190px;
  margin-bottom: 38px;
  border: 1px solid rgba(20, 61, 43, 0.14);
}

.image-ribbon figure,
.panel-photo,
.inline-photo,
.stack-photo,
.pipeline-photo,
.summary-photo,
.ledger-photo,
.team-hero-photo,
.contact-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #102d20;
}

.image-ribbon figure::after,
.panel-photo::after,
.inline-photo::after,
.stack-photo::after,
.pipeline-photo::after,
.summary-photo::after,
.ledger-photo::after,
.team-hero-photo::after,
.contact-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 28, 19, 0) 30%, rgba(8, 28, 19, 0.32) 100%);
}

.image-ribbon img,
.panel-photo img,
.inline-photo img,
.stack-photo img,
.pipeline-photo img,
.summary-photo img,
.ledger-photo img,
.team-hero-photo img,
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.06);
  transform: scale(1.015);
}

.panel-photo {
  height: 180px;
  margin: -28px -28px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.inline-photo {
  height: 240px;
  margin: 0 0 26px;
}

.stack-photo {
  height: 170px;
}

.pipeline-photo {
  min-height: 210px;
  border: 1px solid var(--line);
}

.summary-photo,
.team-hero-photo {
  height: 210px;
  margin: 0 0 24px;
}

.ledger-photo {
  height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-photo {
  height: 220px;
  margin: 22px 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

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

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-size: 13px;
  font-weight: 800;
  color: #34423c;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-status {
  min-height: 24px;
  color: var(--green);
  font-weight: 750;
}

.form-status a {
  color: var(--green);
  text-decoration: underline;
}

.policy-masthead {
  padding: 76px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.policy-masthead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 58px;
  align-items: center;
}

.policy-masthead h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.02;
}

.policy-masthead p {
  margin: 22px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
}

.policy-summary {
  display: grid;
  gap: 8px;
  padding: 28px;
  border-radius: var(--radius);
  color: white;
  background: var(--green);
}

.policy-summary strong {
  color: var(--gold);
  font-size: 18px;
}

.policy-summary span {
  color: rgba(255, 255, 255, 0.82);
  overflow-wrap: anywhere;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.legal-index {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.legal-index a {
  padding: 16px 18px;
  color: var(--green);
  background: var(--paper);
  font-size: 13px;
  font-weight: 850;
}

.legal-copy {
  display: grid;
  gap: 30px;
  min-width: 0;
}

.legal-copy section {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.legal-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.legal-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  overflow-wrap: anywhere;
}

.legal-copy p + p {
  margin-top: 14px;
}

/* Site-wide cleanup: keep repeated content structured without heavy connected boxes. */
.section.paper {
  background: #fff;
}

.section.gray {
  background: #f6f8f6;
}

.section + .section {
  border-top: 1px solid rgba(223, 229, 225, 0.72);
}

.section-head {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(223, 229, 225, 0.9);
}

.service-list,
.service-row {
  border-color: rgba(223, 229, 225, 0.82);
}

.service-row {
  padding: 30px 0;
}

.credibility-strip,
.statement-list,
.method-strip,
.ledger-list,
.registry-table,
.board-stack,
.company-quick-facts,
.strategy-canvas {
  gap: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.credibility-strip div,
.statement-list li,
.method-strip div,
.ledger-row,
.registry-row,
.board-stack div,
.company-quick-facts div,
.strategy-canvas > div {
  min-height: auto;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.statement-list li,
.ledger-row,
.registry-row,
.board-stack div,
.scope-panel dl div {
  border-bottom: 1px solid var(--line);
}

.process-card,
.plain-card,
.contact-card,
.team-card,
.insight-card,
.routing-tile,
.story-panel,
.contact-panel,
.policy-summary,
.legal-copy section,
.logo-choice {
  border-color: rgba(223, 229, 225, 0.88);
  box-shadow: none;
}

.process-card,
.plain-card,
.contact-card,
.team-card,
.insight-card,
.routing-tile,
.story-panel,
.contact-panel,
.legal-copy section,
.logo-choice {
  border-radius: 0;
  border-width: 1px 0 0;
  background: transparent;
  padding: 26px 0;
}

.team-card.featured {
  border: 0;
  border-top: 3px solid var(--gold);
  background: #fbfcfb;
  padding: 28px;
}

.initials {
  box-shadow: none;
}

.routing-tile {
  min-height: 0;
  transition: color 160ms ease, border-color 160ms ease;
}

.routing-tile:hover {
  transform: none;
  border-color: var(--gold);
  box-shadow: none;
}

.text-panel {
  border-radius: 0;
  background: transparent;
}

.media-panel,
.visual-card,
.hero-visual,
.panel-photo,
.inline-photo,
.stack-photo,
.pipeline-photo,
.summary-photo,
.ledger-photo,
.team-hero-photo,
.contact-photo,
.service-entry figure,
.deal-entry figure {
  border-radius: 4px;
  box-shadow: none;
}

.image-ribbon {
  min-height: 230px;
}

.catalog-item,
.pipeline-step {
  border-radius: 0;
}

.scope-panel {
  padding: 28px;
  border: 0;
  border-radius: var(--radius);
  color: white;
  background: var(--green);
  box-shadow: none;
}

.scope-panel .panel-photo {
  margin: -28px -28px 24px;
}

.scope-panel dl {
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.scope-panel dl div {
  grid-template-columns: minmax(92px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  padding: 17px 18px;
  border-bottom: 0;
  background: var(--green);
}

.scope-panel dt,
.scope-panel dd {
  overflow-wrap: anywhere;
}

.about-opening h1,
.development-opening h1,
.participation-opening h1,
.catalog-masthead h1,
.company-masthead h1,
.team-masthead h1,
.policy-masthead h1,
.page-hero h1 {
  overflow-wrap: anywhere;
}

.strategy-canvas {
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "header header"
    "left right";
  gap: 0 36px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  background: transparent;
}

.strategy-canvas > div {
  min-height: auto;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  background: transparent;
}

.strategy-canvas .canvas-header {
  min-height: auto;
  background: transparent;
}

.strategy-canvas p {
  color: rgba(255, 255, 255, 0.84);
}

.team-role-board {
  gap: 0 36px;
  overflow: visible;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.team-role-board div {
  min-height: auto;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.team-role-board div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.team-role-board span {
  max-width: 260px;
}

.team-hero-photo {
  height: 190px;
}

@media (max-width: 1120px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 12px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-action {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 56px 0 62px;
  }

  .hero-grid,
  .section-head,
  .capability-grid,
  .two-column,
  .split-band,
  .story-layout,
  .catalog-layout,
  .pipeline,
  .dark-ledger,
  .team-lead,
  .team-structure,
  .registry-block,
  .contact-layout,
  .brand-lab,
  .global-layout,
  .catalog-masthead-grid,
  .company-masthead-grid,
  .team-masthead-grid,
  .about-opening-grid,
  .development-board,
  .participation-opening-grid,
  .policy-masthead-grid,
  .legal-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .page-hero.editorial,
  .page-hero.dark {
    background:
      linear-gradient(180deg, rgba(250, 250, 250, 1) 0%, rgba(250, 250, 250, 0.94) 58%, rgba(250, 250, 250, 0.2) 100%),
      url("assets/hero-strategy.png") center bottom / 100% auto no-repeat;
    padding-bottom: 290px;
  }

  .page-hero.dark {
    background:
      linear-gradient(180deg, rgba(17, 24, 21, 0.98) 0%, rgba(20, 61, 43, 0.94) 60%, rgba(20, 61, 43, 0.72) 100%),
      url("assets/hero-strategy.png") center bottom / 100% auto no-repeat;
  }

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

  .role-rail {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-index {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dossier-layout,
  .contact-command {
    grid-template-columns: 1fr;
  }

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

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

  .hero-facts,
  .facts-grid,
  .process-grid,
  .contact-grid,
  .page-grid,
  .team-grid,
  .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: 420px;
  }

  .team-card.featured {
    grid-column: span 2;
  }

  .service-row {
    grid-template-columns: 54px 1fr;
  }

  .service-row p {
    grid-column: 2;
  }

  .editorial-intro,
  .service-entry,
  .deal-entry {
    grid-template-columns: 1fr;
  }

  .deal-entry figure {
    order: 3;
  }

  .service-entry figure,
  .deal-entry figure {
    width: min(100%, 520px);
  }

  .mandate-photo-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mandate-photo-inner div {
    min-height: auto;
  }

  .image-ribbon {
    grid-template-columns: 1fr;
  }

  .image-ribbon figure {
    min-height: 190px;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .section-inner,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 28px, 1180px);
  }

  .brand img {
    width: 126px;
    max-height: 70px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .hero p,
  .page-hero p {
    font-size: 18px;
  }

  .hero {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .hero-kicker {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .section,
  .page-section {
    padding: 50px 0;
  }

  .facts-grid,
  .process-grid,
  .contact-grid,
  .page-grid,
  .team-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .team-card.featured {
    grid-column: span 1;
  }

  .statement-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .page-hero.editorial,
  .page-hero.dark {
    padding-bottom: 180px;
  }

  .catalog-item,
  .pipeline-step,
  .ledger-row,
  .registry-row,
  .contact-detail,
  .scope-panel dl div,
  .board-stack div {
    grid-template-columns: 1fr;
  }

  .method-strip,
  .role-rail,
  .legal-index,
  .mosaic-services,
  .strategy-canvas,
  .logo-options,
  .routing-grid,
  .team-role-board,
  .credibility-strip,
  .company-quick-facts {
    grid-template-columns: 1fr;
  }

  .mosaic-card.large {
    grid-row: span 1;
  }

  .card-media,
  .routing-tile .card-media {
    height: 190px;
  }

  .mosaic-card:has(.card-media) .catalog-icon,
  .routing-tile:has(.card-media) strong {
    margin-left: 22px;
    margin-right: 22px;
  }

  .mosaic-card:has(.card-media) h3,
  .routing-tile:has(.card-media) h3 {
    padding-left: 22px;
    padding-right: 22px;
  }

  .mosaic-card:has(.card-media) p,
  .routing-tile:has(.card-media) p {
    padding-left: 22px;
    padding-right: 22px;
  }

  .mosaic-card:has(.card-media) p {
    padding-bottom: 28px;
  }

  .deal-tile a {
    padding-left: 22px;
    padding-right: 22px;
  }

  .strategy-canvas {
    grid-template-areas: none;
  }

  .strategy-canvas .canvas-header {
    grid-area: auto;
  }

  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 34px;
  }

  .fact {
    min-height: 78px;
    padding: 14px;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-row p {
    grid-column: auto;
  }

  .editorial-intro {
    gap: 18px;
    margin-bottom: 24px;
    padding-bottom: 24px;
  }

  .service-entry,
  .deal-entry {
    gap: 16px;
    padding: 26px 0;
  }

  .service-entry figure,
  .deal-entry figure {
    width: 100%;
    height: 184px;
  }

  .service-entry h3,
  .deal-entry h3 {
    font-size: 30px;
  }

  .service-entry p,
  .deal-entry p {
    font-size: 16px;
  }

  .catalog-masthead h1,
  .page-hero.editorial h1 {
    letter-spacing: -0.045em;
  }

  .mandate-photo-inner {
    width: 100%;
  }

  .mandate-photo-inner div {
    padding: 22px;
  }

  .mandate-photo-inner span {
    font-size: 16px;
  }

  .image-ribbon {
    min-height: auto;
  }

  .image-ribbon.compact {
    margin-bottom: 26px;
  }

  .image-ribbon figure {
    min-height: 150px;
  }

  .image-ribbon figure:nth-child(n + 3) {
    display: none;
  }

  .panel-photo {
    height: 150px;
    margin: -22px -22px 20px;
  }

  .inline-photo,
  .summary-photo,
  .team-hero-photo,
  .contact-photo {
    height: 180px;
  }

  .stack-photo,
  .ledger-photo {
    height: 150px;
  }

  .pipeline-photo {
    min-height: 170px;
  }

  .text-panel,
  .process-card,
  .plain-card,
  .contact-card,
  .story-panel,
  .team-card,
  .insight-card,
  .contact-panel {
    padding: 22px;
  }

  .about-opening,
  .development-opening,
  .participation-opening,
  .policy-masthead,
  .team-masthead,
  .catalog-masthead,
  .company-masthead,
  .contact-top {
    padding: 52px 0;
  }

  .development-opening {
    background: var(--gray);
  }

  .footer {
    padding-top: 34px;
  }

  .footer-inner {
    gap: 30px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-bottom {
    display: grid;
    justify-content: start;
  }
}

/* Compact spacing pass */
.site-header .nav-shell {
  min-height: 82px;
}

.brand img {
  width: 138px;
  max-height: 68px;
}

.section,
.page-section {
  padding: 56px 0;
}

.hero,
.page-hero,
.catalog-masthead,
.company-masthead,
.about-opening,
.development-opening,
.participation-opening,
.team-masthead,
.policy-masthead,
.contact-top {
  padding-top: 44px;
  padding-bottom: 44px;
}

.participation-opening-grid,
.team-masthead-grid,
.about-opening-grid,
.catalog-masthead-grid,
.company-masthead-grid,
.policy-masthead-grid,
.development-board,
.split-band,
.capability-grid,
.story-layout,
.contact-layout,
.dark-ledger {
  gap: 36px;
}

.hero h1,
.about-opening h1,
.development-opening h1,
.participation-opening h1,
.team-masthead h1,
.catalog-masthead h1,
.company-masthead h1,
.policy-masthead h1,
.page-hero h1 {
  font-size: clamp(36px, 4.35vw, 58px);
  line-height: 1.04;
}

.hero p,
.about-opening p,
.development-opening p,
.participation-opening p,
.team-masthead p,
.catalog-masthead p,
.company-masthead p,
.policy-masthead p,
.page-hero p {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.5;
}

.hero-actions,
.page-actions,
.participation-tags,
.hero-meta {
  margin-top: 24px;
}

.hero-visual {
  min-height: clamp(300px, 42vh, 440px);
}

.media-panel {
  min-height: 300px;
}

.team-hero-photo,
.summary-photo,
.inline-photo,
.contact-photo {
  height: 170px;
}

.panel-photo,
.stack-photo,
.ledger-photo {
  height: 140px;
}

.pipeline-photo {
  min-height: 160px;
}

.image-ribbon {
  min-height: 180px;
}

.mandate-photo-inner {
  min-height: 150px;
}

.mandate-photo-inner div {
  min-height: 110px;
  padding: 22px;
}

.process-card,
.plain-card,
.contact-card,
.team-card,
.insight-card,
.routing-tile,
.story-panel,
.contact-panel,
.legal-copy section,
.logo-choice {
  padding: 20px 0;
}

.team-card.featured {
  padding: 22px;
}

.service-row {
  padding: 24px 0;
}

.section-head {
  padding-bottom: 20px;
}

.credibility-strip div,
.statement-list li,
.method-strip div,
.ledger-row,
.registry-row,
.board-stack div,
.company-quick-facts div,
.strategy-canvas > div,
.team-role-board div {
  padding-top: 18px;
  padding-bottom: 18px;
}

.scope-panel {
  padding: 22px;
}

.scope-panel .panel-photo {
  margin: -22px -22px 20px;
}

@media (max-width: 1120px) {
  .hero,
  .page-hero,
  .catalog-masthead,
  .company-masthead,
  .about-opening,
  .development-opening,
  .participation-opening,
  .team-masthead,
  .policy-masthead,
  .contact-top {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .page-hero.editorial,
  .page-hero.dark {
    padding-bottom: 180px;
  }

  .hero-visual {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .section,
  .page-section {
    padding: 38px 0;
  }

  .hero,
  .page-hero,
  .catalog-masthead,
  .company-masthead,
  .about-opening,
  .development-opening,
  .participation-opening,
  .team-masthead,
  .policy-masthead,
  .contact-top {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .hero h1,
  .about-opening h1,
  .development-opening h1,
  .participation-opening h1,
  .team-masthead h1,
  .catalog-masthead h1,
  .company-masthead h1,
  .policy-masthead h1,
  .page-hero h1 {
    font-size: 36px;
  }

  .page-hero.editorial,
  .page-hero.dark {
    padding-bottom: 120px;
  }
}


/* Balance split sections after compact pass */
.section.green .split-band,
.section.paper .split-band,
.section.gray .split-band {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 56px;
  align-items: center;
}

.section.green .statement-list {
  border-top-color: rgba(255, 255, 255, 0.52);
  border-bottom: 1px solid rgba(255, 255, 255, 0.52);
}

.section.green .statement-list li {
  padding: 22px 0;
  border-bottom-color: rgba(255, 255, 255, 0.38);
}

.section.green .statement-list li:last-child {
  border-bottom: 0;
}

.section.green .statement-list strong {
  color: var(--gold);
}

.section.green .statement-list span {
  color: rgba(255, 255, 255, 0.82);
}

.section.green .split-band h2,
.section.green .split-band p {
  max-width: 540px;
}

@media (max-width: 1120px) {
  .section.green .split-band,
  .section.paper .split-band,
  .section.gray .split-band {
    max-width: none;
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
/* Layout alignment pass: remove oversized left gutters and normalize page rhythm. */
.section-inner,
.nav-shell,
.footer-inner,
.footer-bottom {
  width: min(1120px, calc(100% - 48px));
}

.hero-grid,
.catalog-masthead-grid,
.company-masthead-grid,
.about-opening-grid,
.development-board,
.participation-opening-grid,
.team-masthead-grid,
.policy-masthead-grid,
.contact-layout,
.catalog-layout,
.registry-block,
.dark-ledger,
.team-structure,
.pipeline,
.split-band,
.section-head {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.hero-grid,
.catalog-masthead-grid,
.company-masthead-grid,
.about-opening-grid,
.development-board,
.participation-opening-grid,
.team-masthead-grid,
.policy-masthead-grid {
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 4.2vw, 54px);
  align-items: center;
}

.catalog-masthead-grid {
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: end;
}

.catalog-label,
.section-kicker {
  justify-self: start;
}

.hero-copy,
.catalog-masthead-grid > :last-child,
.company-masthead-grid > :first-child,
.about-opening-grid > :first-child,
.development-board > :first-child,
.participation-opening-grid > :first-child,
.team-masthead-grid > :first-child,
.policy-masthead-grid > :first-child,
.section-head > :first-child,
.split-band > :first-child {
  min-width: 0;
}

.hero h1,
.page-hero h1,
.catalog-masthead h1,
.company-masthead h1,
.about-opening h1,
.development-opening h1,
.participation-opening h1,
.team-masthead h1,
.policy-masthead h1 {
  max-width: 680px;
}

.hero p,
.page-hero p,
.catalog-masthead p,
.company-masthead p,
.about-opening p,
.development-opening p,
.participation-opening p,
.team-masthead p,
.policy-masthead p,
.section-head p {
  max-width: 640px;
}

.page-hero .section-inner,
.contact-top .section-inner {
  max-width: 1040px;
}

.page-hero.editorial,
.page-hero.dark {
  background-position: right center;
  background-size: min(38vw, 560px) auto;
}

.section,
.page-section {
  padding: 48px 0;
}

.hero,
.page-hero,
.catalog-masthead,
.company-masthead,
.about-opening,
.development-opening,
.participation-opening,
.team-masthead,
.policy-masthead,
.contact-top {
  padding-top: 38px;
  padding-bottom: 38px;
}

.section-head {
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: end;
}

.section.green .split-band,
.section.paper .split-band,
.section.gray .split-band,
.split-band {
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 4.2vw, 52px);
  max-width: 1040px;
  align-items: center;
}

.section.green .statement-list li {
  padding: 18px 0;
}

.image-ribbon {
  min-height: 150px;
}

.media-panel,
.hero-visual {
  min-height: clamp(280px, 36vh, 400px);
}

@media (max-width: 1120px) {
  .hero-grid,
  .catalog-masthead-grid,
  .company-masthead-grid,
  .about-opening-grid,
  .development-board,
  .participation-opening-grid,
  .team-masthead-grid,
  .policy-masthead-grid,
  .section-head,
  .section.green .split-band,
  .section.paper .split-band,
  .section.gray .split-band,
  .split-band {
    max-width: none;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .catalog-label,
  .section-kicker {
    margin-bottom: 0;
  }

  .page-hero.editorial,
  .page-hero.dark {
    padding-bottom: 130px;
    background-size: min(58vw, 520px) auto;
  }
}

@media (max-width: 640px) {
  .section-inner,
  .nav-shell,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 32px, 1120px);
  }

  .section,
  .page-section {
    padding: 34px 0;
  }

  .hero,
  .page-hero,
  .catalog-masthead,
  .company-masthead,
  .about-opening,
  .development-opening,
  .participation-opening,
  .team-masthead,
  .policy-masthead,
  .contact-top {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .page-hero.editorial,
  .page-hero.dark {
    padding-bottom: 96px;
  }
}
/* Masthead cleanup: labels should not create a large empty left column. */
.catalog-masthead-grid {
  max-width: 760px;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}

.catalog-masthead h1,
.catalog-masthead p {
  max-width: 760px;
}

.catalog-label {
  margin-bottom: 0;
}

@media (min-width: 1121px) {
  .page-hero .section-inner,
  .contact-top .section-inner {
    width: min(1040px, calc(100% - 48px));
  }
}
/* Contact page alignment fix. */
.contact-command {
  width: min(1040px, calc(100% - 48px));
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
}

.contact-command .contact-panel {
  min-width: 0;
}

.contact-command .contact-panel h1,
.contact-command .contact-panel h2 {
  overflow-wrap: anywhere;
}

.contact-command .contact-detail {
  grid-template-columns: minmax(88px, 0.34fr) minmax(0, 1fr);
}

.contact-command .contact-detail p,
.contact-command .contact-detail a {
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .contact-command {
    width: min(100% - 32px, 1040px);
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* Contact panel padding fix. */
.contact-command .contact-panel {
  padding: 34px;
  overflow: hidden;
}

.contact-command .contact-panel:first-child h1,
.contact-command .contact-panel:first-child p,
.contact-command .contact-panel:first-child .contact-detail {
  margin-left: 0;
  margin-right: 0;
}

.contact-command .contact-photo {
  margin-left: -34px;
  margin-right: -34px;
  width: calc(100% + 68px);
}

@media (max-width: 640px) {
  .contact-command .contact-panel {
    padding: 24px;
  }

  .contact-command .contact-photo {
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 48px);
  }
}
/* Contact email visibility fix. */
.contact-command .contact-panel:first-child .contact-detail a {
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(215, 170, 80, 0.75);
  text-underline-offset: 3px;
}

.contact-command .contact-panel:first-child .contact-detail a:hover {
  color: var(--gold);
}
/* Header logo size adjustment. */
.site-header .nav-shell {
  min-height: 92px;
}

.site-header .brand img {
  width: 172px;
  max-height: 82px;
}

@media (max-width: 1120px) {
  .site-header .brand img {
    width: 150px;
    max-height: 74px;
  }
}

@media (max-width: 640px) {
  .site-header .nav-shell {
    min-height: 76px;
  }

  .site-header .brand img {
    width: 124px;
    max-height: 62px;
  }
}
/* Header wordmark logo adjustment. */
.site-header .nav-shell {
  min-height: 88px;
}

.site-header .brand img {
  width: 238px;
  max-height: 64px;
  object-fit: contain;
}

@media (max-width: 1120px) {
  .site-header .brand img {
    width: 210px;
    max-height: 58px;
  }
}

@media (max-width: 640px) {
  .site-header .nav-shell {
    min-height: 72px;
  }

  .site-header .brand img {
    width: 168px;
    max-height: 48px;
  }
}
/* Header 768x101 wordmark logo. */
.site-header .nav-shell {
  min-height: 86px;
}

.site-header .brand img {
  width: 300px;
  height: auto;
  max-height: 46px;
  object-fit: contain;
}

@media (max-width: 1120px) {
  .site-header .brand img {
    width: 250px;
    max-height: 40px;
  }
}

@media (max-width: 640px) {
  .site-header .nav-shell {
    min-height: 70px;
  }

  .site-header .brand img {
    width: 190px;
    max-height: 30px;
  }
}
/* Header wide emblem logo. */
.site-header .nav-shell {
  min-height: 88px;
}

.site-header .brand img {
  width: 330px;
  height: auto;
  max-height: 44px;
  object-fit: contain;
}

@media (max-width: 1120px) {
  .site-header .brand img {
    width: 275px;
    max-height: 38px;
  }
}

@media (max-width: 640px) {
  .site-header .nav-shell {
    min-height: 70px;
  }

  .site-header .brand img {
    width: 205px;
    max-height: 30px;
  }
}
/* Header stacked logo, larger header. */
.site-header .nav-shell {
  min-height: 118px;
}

.site-header .brand img {
  width: 150px;
  height: auto;
  max-height: 108px;
  object-fit: contain;
}

@media (max-width: 1120px) {
  .site-header .nav-shell {
    min-height: 104px;
  }

  .site-header .brand img {
    width: 132px;
    max-height: 94px;
  }
}

@media (max-width: 640px) {
  .site-header .nav-shell {
    min-height: 84px;
  }

  .site-header .brand img {
    width: 104px;
    max-height: 74px;
  }
}
/* Header menu readability adjustment. */
.site-header .nav-links {
  font-size: 14px;
  gap: 17px;
}

.site-header .nav-action {
  font-size: 14px;
  padding: 12px 16px;
}

@media (max-width: 1120px) {
  .site-header .nav-links {
    font-size: 13.5px;
    gap: 14px;
  }

  .site-header .nav-action {
    font-size: 13.5px;
  }
}