:root {
  --navy: #0b1f3a;
  --navy-soft: #142d4d;
  --blue: #2868d8;
  --sky: #dceaff;
  --gold: #ffb84d;
  --cream: #f7f4ee;
  --white: #ffffff;
  --ink: #142033;
  --muted: #5d6877;
  --line: #d8dde5;
  --max: 1220px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

a { color: inherit; }

.site-header {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: -.03em;
}

.brand-name {
  color: var(--navy);
  font-size: .77rem;
  line-height: 1.18;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.brand-name strong { font-weight: 800; }

nav { display: flex; align-items: center; gap: 28px; }
nav a { text-decoration: none; font-weight: 600; font-size: .91rem; }
nav a:not(.nav-cta):hover { color: var(--blue); }

.nav-cta {
  padding: 11px 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
}

.hero {
  width: min(var(--max), calc(100% - 48px));
  margin: 24px auto 0;
  min-height: 700px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  border-radius: 4px;
}

.hero-copy {
  padding: clamp(54px, 7vw, 92px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero .eyebrow { color: #8ab8ff; }

h1, h2, h3 {
  margin-top: 0;
  font-family: "Manrope", Arial, sans-serif;
  letter-spacing: -.045em;
}

h1 {
  margin-bottom: 30px;
  font-size: clamp(3rem, 5.6vw, 5.5rem);
  line-height: .98;
  font-weight: 700;
}

h1 span { color: var(--gold); }

.hero-intro {
  max-width: 630px;
  margin: 0;
  color: #dfe8f4;
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.button-primary { background: var(--gold); color: var(--navy); }
.button-primary:hover, .button-light:hover { transform: translateY(-2px); }
.text-link { color: var(--white); font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.text-link span { color: var(--gold); margin-left: 4px; }

.delivery-line {
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.2);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  color: #b9c7da;
  font-size: .91rem;
  font-weight: 600;
}

.delivery-line span::before { content: "—"; color: var(--gold); margin-right: 9px; }

.hero-visual { position: relative; min-height: 700px; background: #96b6db; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 57% center; display: block; }

.result-card {
  position: absolute;
  left: -58px;
  bottom: 38px;
  width: 260px;
  padding: 22px 24px;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 16px 40px rgba(4, 20, 39, .2);
}

.result-card strong { display: block; color: var(--blue); font-family: "Manrope", sans-serif; font-size: 1.35rem; }
.result-card span { display: block; margin-top: 5px; font-size: .84rem; line-height: 1.45; }

.credibility {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 36px 0 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.credibility p { margin: 0; color: var(--muted); font-size: .85rem; }
.experience-list { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px 40px; color: var(--navy); font-weight: 800; }

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0;
}

.section-heading h2, .process-intro h2, .results-lead h2, .delivery h2, .contact h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4.2vw, 4.15rem);
  line-height: 1.06;
  color: var(--navy);
}

.approach { display: grid; grid-template-columns: 1.08fr .92fr; gap: 10%; align-items: start; }
.approach-copy { padding-top: 42px; font-size: 1.08rem; }
.approach-copy p:first-child { font-weight: 600; color: var(--navy); }
.credentials { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 10px; }
.credentials span { padding: 8px 13px; border: 1px solid #bcc7d5; border-radius: 999px; color: var(--navy); font-size: .82rem; font-weight: 700; }

.programmes {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  background: var(--white);
}

.narrow { max-width: 820px; }
.programme-grid { margin-top: 62px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.programme-grid article { min-height: 340px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; }
.programme-grid .number { color: var(--blue); font-weight: 800; font-size: .78rem; }
.programme-grid h3 { margin: auto 0 18px; color: var(--navy); font-size: 1.35rem; line-height: 1.2; }
.programme-grid p { margin: 0; color: var(--muted); font-size: .94rem; }

.process { display: grid; grid-template-columns: .8fr 1.2fr; gap: 10%; }
.process-steps { margin: 0; padding: 0; list-style: none; counter-reset: step; }
.process-steps li { position: relative; padding: 24px 0 24px 68px; border-bottom: 1px solid var(--line); counter-increment: step; }
.process-steps li:first-child { border-top: 1px solid var(--line); }
.process-steps li::before { content: "0" counter(step); position: absolute; left: 0; top: 27px; color: var(--blue); font-weight: 800; font-size: .75rem; }
.process-steps strong { display: block; color: var(--navy); font-family: "Manrope", sans-serif; font-size: 1.25rem; }
.process-steps span { display: block; color: var(--muted); }

.case-studies {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  background: var(--white);
}

.case-heading { max-width: 880px; }
.case-heading > p:last-child { max-width: 690px; margin: 24px 0 0; color: var(--muted); font-size: 1.05rem; }
.case-grid { margin-top: 62px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.case-card { padding: 34px; background: var(--cream); border-top: 5px solid var(--blue); }
.case-card-featured { background: var(--navy); color: var(--white); border-color: var(--gold); }
.case-topline { display: flex; justify-content: space-between; gap: 18px; color: var(--blue); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.case-card-featured .case-topline { color: var(--gold); }
.case-result { min-height: 150px; margin: 45px 0 34px; color: var(--navy); font-family: "Manrope", sans-serif; font-size: clamp(1.45rem, 2.1vw, 2.15rem); font-weight: 700; line-height: 1.18; letter-spacing: -.04em; }
.case-card-featured .case-result { color: var(--white); }
.case-card dl { margin: 0; }
.case-card dl div { padding: 18px 0; border-top: 1px solid var(--line); }
.case-card-featured dl div { border-color: rgba(255,255,255,.18); }
.case-card dt { color: var(--blue); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.case-card-featured dt { color: var(--gold); }
.case-card dd { margin: 5px 0 0; color: var(--muted); font-size: .91rem; line-height: 1.55; }
.case-card-featured dd { color: #d7e0ec; }
.case-note { margin: 24px 0 0; color: var(--muted); font-size: .8rem; }

.results {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  background: var(--sky);
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 7%;
}

.results-copy { color: var(--muted); max-width: 470px; }
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.quotes figure { margin: 0; padding: 28px; background: rgba(255,255,255,.72); display: flex; flex-direction: column; justify-content: space-between; min-height: 250px; }
.quotes figure:nth-child(3n) { background: rgba(255,255,255,.92); }
.quotes .quote-featured { background: var(--navy); color: var(--white); }
.quotes blockquote { margin: 0; font-family: "Manrope", sans-serif; font-size: 1.08rem; font-weight: 600; line-height: 1.5; letter-spacing: -.02em; }
.quotes figcaption { margin-top: 28px; color: var(--blue); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.quotes .quote-featured figcaption { color: var(--gold); }

.delivery { display: grid; grid-template-columns: .75fr 1.25fr; gap: 9%; }
.delivery-options { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.delivery-options article { padding: 34px; background: var(--white); border-top: 4px solid var(--blue); }
.delivery-options article:last-child { border-color: var(--gold); }
.delivery-options span { color: var(--blue); font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.delivery-options h3 { margin: 45px 0 14px; color: var(--navy); font-size: 1.45rem; line-height: 1.22; }
.delivery-options p { margin: 0; color: var(--muted); }

.contact {
  padding: 110px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--blue);
  color: var(--white);
  text-align: center;
}

.contact .eyebrow { color: #c7dcff; }
.contact h2 { max-width: 900px; margin: 0 auto; color: var(--white); }
.contact > p:not(.eyebrow) { max-width: 660px; margin: 26px auto 32px; font-size: 1.08rem; color: #e3edff; }
.button-light { background: var(--white); color: var(--blue); }

footer {
  padding: 48px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--navy);
  color: #aebed2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  font-size: .85rem;
}

.footer-brand .brand-mark { background: var(--white); color: var(--navy); }
.footer-brand .brand-name { color: var(--white); }
footer > a { color: var(--white); }

@media (max-width: 980px) {
  nav a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 620px; }
  .result-card { left: 24px; }
  .approach, .process, .results, .delivery { grid-template-columns: 1fr; gap: 48px; }
  .programme-grid { grid-template-columns: 1fr 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .case-result { min-height: 0; }
}

@media (max-width: 640px) {
  .site-header, .hero, .credibility, .section { width: min(100% - 30px, var(--max)); }
  .site-header { min-height: 78px; }
  .brand-name { display: none; }
  .nav-cta { padding: 10px 14px; font-size: .8rem; }
  .hero { margin-top: 12px; }
  .hero-copy { padding: 50px 25px; }
  h1 { font-size: clamp(2.75rem, 13vw, 4rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-visual { min-height: 480px; }
  .result-card { left: 18px; right: 18px; bottom: 18px; width: auto; }
  .credibility { align-items: flex-start; flex-direction: column; padding: 30px 0 54px; }
  .experience-list { justify-content: flex-start; gap: 8px 22px; }
  .section { padding: 76px 0; }
  .programmes, .case-studies, .results { width: 100%; padding: 76px 20px; }
  .programme-grid, .quotes, .delivery-options { grid-template-columns: 1fr; }
  .programme-grid article { min-height: 280px; }
  .approach-copy { padding-top: 0; }
  .contact { padding-top: 76px; padding-bottom: 76px; }
  footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: no-preference) {
  .button { transition: transform .2s ease; }
}
