:root {
  color-scheme: light;
  --navy-950: #08172d;
  --navy-900: #102746;
  --navy-800: #18395f;
  --gold-600: #c8952f;
  --gold-500: #d6a94f;
  --ink: #172235;
  --muted: #667489;
  --line: #dde3ea;
  --paper: #ffffff;
  --soft: #f6f3ed;
  --mist: #f7f9fb;
  --radius: 8px;
  --shadow: 0 24px 60px rgba(8, 23, 45, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(221, 227, 234, 0.76);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 188px;
  height: 54px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--gold-600);
  border-radius: var(--radius);
  background: var(--gold-600);
  color: #fff;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 26px rgba(200, 149, 47, 0.26);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: #b78322;
  box-shadow: 0 16px 32px rgba(200, 149, 47, 0.3);
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.86rem;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: none;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button-light {
  border-color: #fff;
  background: #fff;
  color: var(--navy-950);
}

.button-light:hover {
  background: #f4efe6;
  color: var(--navy-950);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  min-height: min(820px, calc(100vh - 76px));
  padding: clamp(76px, 10vw, 132px) clamp(18px, 5vw, 64px) clamp(28px, 4vw, 48px);
  overflow: hidden;
  background: var(--navy-950);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 23, 45, 0.94), rgba(8, 23, 45, 0.75) 36%, rgba(8, 23, 45, 0.2) 68%, rgba(8, 23, 45, 0.08)),
    linear-gradient(0deg, rgba(8, 23, 45, 0.72), rgba(8, 23, 45, 0.02) 46%);
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 760px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.8rem, 6.4vw, 5.8rem);
  font-weight: 700;
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy-950);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4.2vw, 4rem);
  font-weight: 700;
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy-950);
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-description {
  max-width: 650px;
  margin-bottom: 30px;
  color: #dbe4ec;
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: clamp(46px, 8vw, 92px);
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1120px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(8, 23, 45, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-panel div {
  min-height: 138px;
  padding: 24px;
}

.hero-panel div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-panel strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.05rem;
}

.hero-panel span {
  color: #cbd6e2;
  font-size: 0.95rem;
  line-height: 1.55;
}

.section {
  padding: clamp(66px, 9vw, 118px) clamp(18px, 5vw, 64px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.65fr);
  gap: clamp(24px, 6vw, 86px);
  align-items: end;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.intro p:last-child,
.section-heading p,
.talent-copy p,
.cta p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.section-heading {
  max-width: 740px;
}

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

.feature-card {
  min-height: 232px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(8, 23, 45, 0.06);
}

.feature-card span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--gold-600);
  font-size: 0.78rem;
  font-weight: 800;
}

.feature-card p,
.talent-list p,
.process-list span {
  color: var(--muted);
  line-height: 1.62;
}

.dark-band {
  background: var(--navy-950);
  color: #fff;
}

.band-inner {
  max-width: 1120px;
}

.dark-band h2 {
  max-width: 900px;
  color: #fff;
}

.dark-band p:not(.eyebrow) {
  max-width: 720px;
  color: #d8e1ec;
  font-size: 1.08rem;
  line-height: 1.72;
}

.role-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.role-row span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.talent-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 0.9fr);
  gap: clamp(28px, 6vw, 86px);
  background: var(--mist);
}

.talent-copy {
  max-width: 680px;
}

.talent-list {
  display: grid;
  gap: 14px;
}

.talent-list div {
  padding: 24px;
  border-left: 4px solid var(--gold-600);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(8, 23, 45, 0.06);
}

.process {
  background: #fff;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 36px 0 0;
  counter-reset: process;
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 220px;
  padding: 72px 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.process-list li::before {
  counter-increment: process;
  content: counter(process);
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--gold-500);
  font-size: 0.9rem;
  font-weight: 800;
}

.process-list strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy-950);
  font-size: 1.1rem;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 clamp(18px, 5vw, 64px) clamp(42px, 7vw, 78px);
  padding: clamp(38px, 6vw, 70px);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: #fff;
}

.cta h2 {
  max-width: 760px;
  color: #fff;
}

.cta p {
  max-width: 660px;
  margin-bottom: 0;
  color: #d8e1ec;
}

.cta .button {
  flex: 0 0 auto;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer span:first-child {
  color: var(--navy-950);
  font-weight: 800;
}

@media (max-width: 1060px) {
  .split,
  .talent-section,
  .intro {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
    gap: 12px;
  }

  .nav-links {
    display: none;
  }

  .brand img {
    width: 158px;
    height: 46px;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 23, 45, 0.95), rgba(8, 23, 45, 0.78)),
      linear-gradient(0deg, rgba(8, 23, 45, 0.78), rgba(8, 23, 45, 0.12));
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-actions .button,
  .cta .button {
    width: 100%;
  }

  .hero-panel,
  .feature-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .hero-panel div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .cta {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 540px) {
  .site-header .button {
    display: none;
  }

  .brand img {
    width: 150px;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 2.35rem;
  }

  .section,
  .cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-panel div,
  .feature-card,
  .talent-list div {
    padding: 20px;
  }
}
