:root {
  --ink: #1f2a35;
  --ink-2: #2e3a46;
  --muted: #717b87;
  --orange: #ef6b1a;
  --orange-dark: #ce5512;
  --gold: #d3a43f;
  --cream: #f7f4ef;
  --paper: #fffdf9;
  --line: #e9e2d9;
  --shadow: 0 18px 45px rgba(31, 42, 53, .12);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--orange); }
img { max-width: 100%; display: block; }

.site-header {
  background:
    linear-gradient(90deg, rgba(31,42,53,.05), transparent 35%),
    var(--paper);
  min-height: 100vh;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  backdrop-filter: blur(16px);
  background: rgba(255, 253, 249, .88);
  border-bottom: 1px solid rgba(233, 226, 217, .85);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .07em;
  color: var(--ink);
}
.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
  background: white;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
}
.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--ink-2);
}
.nav-links a:hover { background: var(--cream); color: var(--orange); }
.nav-cta {
  background: var(--ink);
  color: #fff !important;
}
.nav-cta:hover { background: var(--orange) !important; color: #fff !important; }
.nav-toggle {
  display: none;
  appearance: none;
  border: 0;
  background: var(--ink);
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 22px;
}

.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: minmax(300px, 34%) 1fr;
}
.hero-logo-panel {
  position: relative;
  background: var(--ink);
  display: grid;
  place-items: center;
  padding: 70px 38px;
}
.hero-logo-panel::after {
  content: "";
  position: absolute;
  top: 0;
  right: -14px;
  width: 14px;
  height: 100%;
  background: var(--orange);
}
.logo-card {
  width: min(280px, 72%);
  aspect-ratio: 1 / 1.08;
  display: grid;
  place-items: center;
  background: #fff;
  padding: 18px;
  box-shadow: var(--shadow);
}
.logo-card img { width: 100%; height: 100%; object-fit: contain; }
.hero-content {
  max-width: 920px;
  padding: clamp(58px, 8vw, 130px) clamp(34px, 8vw, 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 13px;
}
h1, h2, h3 { line-height: 1.12; margin: 0; }
h1 {
  font-size: clamp(42px, 6.4vw, 76px);
  letter-spacing: -.055em;
  max-width: 860px;
}
h2 {
  font-size: clamp(28px, 3.7vw, 48px);
  letter-spacing: -.04em;
}
h3 { font-size: 21px; letter-spacing: -.025em; }
.hero-subtitle {
  margin: 26px 0 0;
  font-size: clamp(20px, 2.2vw, 30px);
  color: var(--ink);
}
.hero-copy { color: var(--muted); font-size: 18px; margin: 20px 0 0; }
.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 56px 0 0;
}
.hero-badges span,
.value-tags span,
.criteria-grid span {
  border-radius: 9px;
  padding: 14px 18px;
  text-align: center;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 8px 18px rgba(31, 42, 53, .08);
}
.hero-badges span:nth-child(1) { background: var(--orange); }
.hero-badges span:nth-child(2) { background: var(--gold); }
.hero-badges span:nth-child(3) { background: var(--ink); }
.hero-address { margin-top: auto; padding-top: 70px; font-size: 13px; color: var(--muted); }

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 22px;
}
.section-heading {
  margin-bottom: 34px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--orange);
}
.section-heading.light { border-color: rgba(255,255,255,.28); }
.section-heading.light .eyebrow { color: #ffc26d; }
.small-heading { margin-top: 70px; }
.info-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 24px;
}
.info-card,
.summary-card,
.service-card,
.list-card,
.team-grid article,
.project-card,
.program-card,
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.info-card { padding: 30px; }
.info-card.accent {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.info-card.accent h3 { color: #fff; }
.data-list,
.project-data {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}
.data-list div,
.project-data div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .07em;
}
dd { margin: 0; font-weight: 700; }
.presentation-panel {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 26px;
  align-items: start;
  padding: 34px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.pillars { display: grid; gap: 16px; }
.pillars article {
  background: #fff;
  border-left: 5px solid var(--orange);
  border-radius: 16px;
  padding: 20px;
}
.pillars p { margin-bottom: 0; color: var(--muted); }

.values-section,
.criteria-section {
  max-width: none;
  background: var(--ink);
  color: #fff;
  padding-left: max(22px, calc((100vw - var(--max)) / 2 + 22px));
  padding-right: max(22px, calc((100vw - var(--max)) / 2 + 22px));
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mission-grid article {
  border-radius: var(--radius);
  padding: 30px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.mission-grid p, .criteria-section .section-note { color: rgba(255,255,255,.78); }
.value-tags,
.criteria-grid {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.value-tags span,
.criteria-grid span {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
}
.cards.four,
.split-lists,
.stats-grid,
.team-grid {
  display: grid;
  gap: 22px;
}
.cards.four { grid-template-columns: repeat(4, 1fr); }
.service-card,
.list-card,
.summary-card,
.team-grid article { padding: 26px; }
ul { padding-left: 20px; }
li { margin: 8px 0; }
.service-card h3,
.list-card h3 { margin-bottom: 16px; color: var(--ink); }
.service-card { border-top: 8px solid var(--orange); }
.service-card:nth-child(2) { border-top-color: var(--gold); }
.service-card:nth-child(3) { border-top-color: var(--ink); }
.service-card:nth-child(4) { border-top-color: var(--orange-dark); }
.process-section { background: linear-gradient(180deg, transparent, var(--cream)); }
.process-list {
  list-style: none;
  counter-reset: steps;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}
.process-list li {
  counter-increment: steps;
  position: relative;
  margin: 0;
  min-height: 230px;
  padding: 74px 18px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 26px rgba(31, 42, 53, .08);
}
.process-list li::before {
  content: counter(steps);
  position: absolute;
  top: 18px;
  left: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: white;
  font-weight: 900;
}
.process-list strong { display: block; line-height: 1.2; margin-bottom: 12px; }
.process-list span { color: var(--muted); font-size: 14px; }
.split-lists { grid-template-columns: 1fr 1fr; }
.criteria-grid span { text-align: left; }
.stats-grid { grid-template-columns: repeat(4, 1fr); margin-bottom: 24px; }
.stats-grid article {
  background: var(--cream);
  border-radius: 20px;
  padding: 26px;
  border: 1px solid var(--line);
}
.stats-grid strong {
  display: block;
  font-size: clamp(34px, 4vw, 54px);
  color: var(--orange);
  line-height: 1;
}
.stats-grid span { display: block; margin-top: 10px; font-weight: 800; }
.summary-card h3 { margin-bottom: 10px; }
.summary-card.capacity { margin-top: 24px; background: var(--cream); }
.table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}
table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  font-size: 14px;
}
th {
  background: var(--orange);
  color: #fff;
  text-align: left;
  padding: 16px;
  font-weight: 900;
}
td {
  padding: 15px 16px;
  border-top: 1px solid var(--line);
  vertical-align: top;
}
tbody tr:nth-child(even) td { background: #fcf3e9; }
.program-card {
  margin: 36px 0;
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 28px;
  padding: 32px;
  align-items: center;
}
.program-card aside {
  min-height: 220px;
  border-radius: 20px;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
}
.program-card aside strong { display: block; font-size: 74px; color: var(--orange); line-height: 1; }
.program-card aside span { font-weight: 900; }
.featured-section { padding-top: 30px; }
.project-card {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  padding: 30px;
  margin-bottom: 28px;
  align-items: center;
}
.project-card.reverse .project-copy { order: 2; }
.project-card.reverse .gallery { order: 1; }
.project-copy p:last-child { margin-bottom: 0; }
.project-data div { grid-template-columns: 155px 1fr; }
.gallery {
  display: grid;
  gap: 12px;
}
.gallery.three { grid-template-columns: repeat(3, 1fr); }
.gallery.two { grid-template-columns: repeat(2, 1fr); }
.gallery img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--cream);
}
.team-grid { grid-template-columns: repeat(4, 1fr); }
.team-grid article { background: var(--cream); box-shadow: none; }
.team-grid h3 { font-size: 19px; }
.role {
  display: inline-block;
  margin: 14px 0 10px;
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  font-size: 12px;
}
.section-note { margin-top: 24px; color: var(--muted); font-weight: 700; }
.docs-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 24px;
  align-items: start;
}
.doc-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.doc-gallery img {
  height: 290px;
  object-fit: contain;
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 10px 25px rgba(31,42,53,.08);
}
.contact-section {
  background: var(--ink);
  padding: 92px 22px;
}
.contact-card {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 34px;
  padding: 42px;
  align-items: center;
  background: #fff;
}
.contact-card img {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
}
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0; }
.contact-actions a {
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  padding: 13px 18px;
  border-radius: 999px;
}
.contact-actions a:nth-child(2) { background: var(--ink); }
.footer {
  background: #141c24;
  color: rgba(255,255,255,.78);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px max(22px, calc((100vw - var(--max)) / 2 + 22px));
  font-size: 14px;
}
.footer p { margin: 0; }
.footer a { color: #fff; font-weight: 900; }

@media (max-width: 1100px) {
  .cards.four { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .process-list li { min-height: 180px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card, .project-card.reverse { grid-template-columns: 1fr; }
  .project-card.reverse .project-copy, .project-card.reverse .gallery { order: initial; }
  .gallery img { height: 260px; }
}
@media (max-width: 860px) {
  .nav-toggle { display: grid; place-items: center; }
  .nav-links {
    position: absolute;
    top: 76px;
    right: 22px;
    left: 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-logo-panel { min-height: 300px; }
  .hero-logo-panel::after { right: 0; bottom: -10px; top: auto; width: 100%; height: 10px; }
  .hero-badges { grid-template-columns: 1fr; margin-top: 32px; }
  .hero-address { padding-top: 38px; }
  .info-grid, .presentation-panel, .mission-grid, .split-lists, .program-card, .docs-layout, .contact-card { grid-template-columns: 1fr; }
  .data-list div, .project-data div { grid-template-columns: 1fr; gap: 4px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery.three, .gallery.two, .doc-gallery { grid-template-columns: 1fr; }
  .gallery img { height: auto; max-height: 420px; }
}
@media (max-width: 560px) {
  .section { padding: 64px 18px; }
  .cards.four, .process-list, .stats-grid, .team-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 54px 24px; }
  .presentation-panel, .program-card, .project-card, .contact-card { padding: 22px; }
  table { font-size: 13px; min-width: 760px; }
  th, td { padding: 12px; }
}
