:root {
  --ink: #11161a;
  --paper: #f6f2ea;
  --muted: #aeb6b7;
  --gold: #c5a35a;
  --green: #19392f;
  --line: rgba(255, 255, 255, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--paper);
  background: var(--ink);
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px clamp(20px, 5vw, 72px);
  background: linear-gradient(180deg, rgba(10, 13, 15, 0.9), rgba(10, 13, 15, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  color: var(--gold);
}

nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 14px;
}

.client-link {
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 10px 14px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 120px clamp(20px, 6vw, 88px) 72px;
  background-image: url("hero-kronus.png");
  background-size: cover;
  background-position: center right;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 12, 14, 0.96) 0%, rgba(9, 12, 14, 0.82) 36%, rgba(9, 12, 14, 0.34) 72%, rgba(9, 12, 14, 0.2) 100%),
    linear-gradient(0deg, rgba(17, 22, 26, 0.86), rgba(17, 22, 26, 0.12) 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(700px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(52px, 8vw, 112px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 580px;
  color: #d8ded9;
  font-size: 21px;
  line-height: 1.5;
}

.hero-actions, .contact {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.primary-action, .secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--gold);
}

.primary-action {
  background: var(--gold);
  color: #121212;
  font-weight: 700;
}

.secondary-action { color: var(--paper); }

.admin-access {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
}

.band {
  background: #151b20;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.band.light {
  background: #efe8db;
  color: var(--ink);
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

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

h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

.split p, .services p {
  color: #cfd7d4;
  line-height: 1.7;
  font-size: 17px;
}

.band.light .services p { color: #405049; }

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

.metrics div {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.metrics strong {
  display: block;
  color: var(--gold);
  font-size: 28px;
  margin-bottom: 8px;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.services article {
  border-top: 1px solid rgba(17, 22, 26, 0.22);
  padding-top: 22px;
}

.contact {
  justify-content: space-between;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: #aeb6b7;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 820px) {
  nav a:not(.client-link) { display: none; }
  .hero { min-height: 86vh; background-position: 62% center; }
  .split, .metrics, .services { grid-template-columns: 1fr; }
  .section-inner { padding: 54px 0; }
  footer { flex-direction: column; }
}

