:root {
  color-scheme: light;
  --navy: #0f1e3c;
  --gold: #c4922a;
  --ivory: #faf8f2;
  --sand: #ede9de;
  --muted: #8899aa;
  --border: rgba(15, 30, 60, 0.1);
  --dark-border: rgba(255, 255, 255, 0.09);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--navy);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea {
  font: 400 16px/1.5 var(--sans);
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
}

h1 {
  max-width: 660px;
  font-size: 5.6rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: 3rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  letter-spacing: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 10;
  transform: translateY(-160%);
  border-radius: 4px;
  background: var(--gold);
  color: #fff;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-wrap {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(250, 248, 242, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.announcement {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 8px max(32px, calc((100vw - 1180px) / 2));
  background: var(--navy);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
}

.announcement a {
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
}

.brand-mark {
  color: var(--navy);
  overflow: visible;
}

.brand-mark circle {
  fill: var(--gold);
}

.brand-light,
.brand-light .brand-mark {
  color: var(--ivory);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 34px);
  color: var(--muted);
  font-size: 0.84rem;
}

.nav-links a,
.nav-cta,
.button {
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid var(--border);
  padding: 0 20px;
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 292px;
  gap: clamp(32px, 7vw, 76px);
  align-items: start;
  padding: 86px 0 60px;
}

.eyebrow {
  color: var(--gold);
  display: block;
  margin: 0 0 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow.muted {
  color: rgba(255, 255, 255, 0.38);
}

.lead {
  max-width: 540px;
  margin-top: 24px;
  font-size: 1rem;
  line-height: 1.9;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button-primary {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--ivory);
  padding-inline: 28px;
}

.button-secondary {
  color: var(--muted);
  background: transparent;
}

.button-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  padding-inline: 28px;
}

.hero-status {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-status span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-status i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #3a8a5a;
}

.deliver-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(250, 248, 242, 0.72);
}

.card-kicker {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--sand);
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.deliver-card li {
  padding: 15px 20px;
}

.deliver-card li + li {
  border-top: 1px solid var(--border);
}

.deliver-card strong,
.deliver-card span {
  display: block;
}

.deliver-card strong {
  margin-bottom: 3px;
  font-size: 0.78rem;
  font-weight: 600;
}

.deliver-card span {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.dark-section,
.cta-section {
  background: var(--navy);
  color: var(--ivory);
}

.problem {
  padding: clamp(62px, 9vw, 88px) 0;
}

.problem h2,
.cta-section h2 {
  color: var(--ivory);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 42px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.problem-grid article {
  min-height: 220px;
  padding: 28px 24px;
  background: var(--navy);
}

.problem-grid h3 {
  margin-bottom: 12px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
}

.problem-grid p,
.problem-note {
  color: rgba(250, 248, 242, 0.52);
  font-size: 0.82rem;
  line-height: 1.72;
}

.problem-note {
  max-width: 720px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--serif);
  font-style: italic;
}

.section {
  padding: clamp(62px, 9vw, 88px) 0;
}

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

.section-heading {
  max-width: 680px;
  margin-bottom: 32px;
}

.section-heading p {
  max-width: 640px;
  margin-top: 16px;
  font-size: 0.94rem;
  line-height: 1.85;
}

.split-heading {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}

.split-heading a {
  color: var(--muted);
  flex: 0 0 auto;
  font-size: 0.84rem;
}

.split-heading a:hover {
  color: var(--navy);
}

.split-heading.compact {
  margin-bottom: 28px;
}

.split-heading.compact h2 {
  max-width: 720px;
  font-size: 2.35rem;
}

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

.industry-card,
.model-grid article {
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--ivory);
}

.industry-card {
  display: flex;
  min-height: 296px;
  flex-direction: column;
  padding: 26px;
}

.industry-card h3 {
  margin-bottom: 8px;
  font-size: 1.28rem;
  font-weight: 500;
}

.industry-card p {
  font-size: 0.84rem;
  line-height: 1.75;
}

.engagements {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.engagements > span,
.model-grid span {
  display: block;
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.engagements li {
  position: relative;
  padding: 4px 0 4px 18px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.engagements li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.how-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: clamp(34px, 7vw, 72px);
  align-items: start;
}

.how-grid > div > p,
.faq-grid > div > p,
.contact-grid > div > p {
  margin-top: 18px;
  font-size: 0.94rem;
  line-height: 1.85;
}

.how-grid > div > p + p {
  margin-top: 14px;
}

.pipeline {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--ivory);
}

.pipeline li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  padding: 21px 24px;
}

.pipeline li + li {
  border-top: 1px solid var(--border);
}

.step-number {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--sand);
  color: var(--navy);
  font-size: 0.62rem;
  font-weight: 700;
}

.step-number.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.pipeline h3 {
  margin-bottom: 4px;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 700;
}

.pipeline p {
  margin-bottom: 7px;
  font-size: 0.76rem;
  line-height: 1.62;
}

.pipeline small {
  color: var(--gold);
  font-size: 0.68rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.service-grid article {
  display: grid;
  min-height: 120px;
  align-content: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 18px 14px;
  text-align: center;
}

.service-grid span {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
}

.service-grid strong {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.35;
}

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

.model-grid article {
  padding: 26px;
}

.model-grid h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
  font-weight: 500;
}

.model-grid p {
  font-size: 0.82rem;
  line-height: 1.72;
}

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

.faq-list details {
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.faq-list summary {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 20px 36px 18px 0;
  font-family: var(--serif);
  font-size: 0.98rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 20px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 1.05rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 760px;
  padding: 0 32px 22px 0;
  font-size: 0.82rem;
  line-height: 1.78;
}

.cta-section {
  padding: clamp(62px, 9vw, 88px) 0 28px;
}

.cta-section .eyebrow {
  color: var(--gold);
}

.cta-section p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.52);
}

.cta-section .button {
  margin-top: 30px;
}

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

.enquiry-grid article {
  min-height: 132px;
  border: 1px solid var(--dark-border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
  padding: 20px;
}

.enquiry-grid h3 {
  margin-bottom: 7px;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
}

.enquiry-grid p {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.74rem;
  line-height: 1.6;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--dark-border);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.72rem;
}

@media (max-width: 980px) {
  h1 {
    font-size: 4.5rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero,
  .how-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .deliver-card,
  .pipeline,
  .faq-list {
    width: 100%;
  }

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

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

  .nav {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 18px 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: 3.25rem;
  }

  h2,
  .split-heading.compact h2 {
    font-size: 2rem;
  }

  .section-wrap,
  .nav {
    width: min(100% - 32px, 1180px);
  }

  .announcement {
    display: none;
  }

  .site-header {
    position: static;
  }

  .nav {
    min-height: 0;
    gap: 14px;
  }

  .nav-cta {
    min-height: 42px;
    padding-inline: 14px;
  }

  .hero {
    gap: 28px;
    padding: 38px 0 34px;
  }

  .lead {
    margin-top: 18px;
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .button-row {
    width: 100%;
    gap: 10px;
    margin-top: 24px;
  }

  .button-row .button {
    flex: 1 1 148px;
    padding-inline: 14px;
  }

  .hero-status {
    gap: 10px 18px;
    margin-top: 18px;
  }

  .deliver-card ul {
    display: flex;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .deliver-card li {
    min-width: 176px;
    min-height: 86px;
    padding: 13px 14px;
  }

  .deliver-card li + li {
    border-top: 0;
    border-left: 1px solid var(--border);
  }

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

  .industry-grid,
  .problem-grid,
  .model-grid,
  .enquiry-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid article {
    min-height: auto;
  }

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

  .industry-card {
    min-height: auto;
  }

  .pipeline li {
    padding: 20px;
  }

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

@media (max-width: 430px) {
  h1 {
    font-size: 2.75rem;
  }

  .nav-links {
    gap: 18px;
    font-size: 0.78rem;
  }

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