:root {
  /* Derived visually from the reference swatch image — the printed labels on
     the bottom three swatches were duplicated/invalid, so those three were
     picked by eye off the actual rendered color, not the text. */
  --navy: #00002a;   /* swatch 1 — midnight navy */
  --slate: #1a3f75;  /* swatch 2 — deep slate blue */
  --steel: #4e6e8b;  /* swatch 3 — muted steel blue */
  --light: #93afc4;  /* swatch 4 — light desaturated blue */
  --pale: #d7e4ec;   /* swatch 5 — palest blue */
  --mist: #f2f7fa;   /* lightened extension of --pale, for Principles */

  --ink: var(--navy);
  --ink-soft: #3f5b78;
  --on-dark: #eef4f9;
  --on-dark-soft: #b8c8d8;

  --serif-display: 'Archivo', 'Inter', sans-serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--mist);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Grain overlay */
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Floating nav pills */
.nav-pill {
  position: fixed;
  top: 24px;
  z-index: 20;
  background: var(--mist);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 12px 20px;
  border-radius: 100px;
  box-shadow: 0 2px 12px rgba(0, 0, 42, 0.12);
  transition: transform .2s ease, box-shadow .2s ease;
}

.nav-pill-left { left: 24px; letter-spacing: 0.08em; }
.nav-pill-right { right: 24px; }

.nav-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 42, 0.18);
}

.nav-pill:focus-visible {
  outline: 2px solid var(--slate);
  outline-offset: 3px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
  padding: 100px 24px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.kinetic-word {
  font-family: var(--serif-display);
  font-weight: 900;
  color: var(--on-dark);
  font-size: clamp(56px, 13vw, 168px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  margin: 0;
  white-space: nowrap;
  will-change: transform;
}

.word-motive { color: rgba(238, 244, 249, 0.5); }

.hero-statement {
  margin: 40px 0 0;
  font-family: var(--sans);
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--on-dark);
}

/* Sections */
.section {
  position: relative;
  padding: 160px 24px;
}

.section-inner {
  max-width: 720px;
  margin: 0 auto;
}

.section-company {
  background: var(--pale);
  overflow: hidden;
  padding: 200px 24px;
}

.watermark {
  position: absolute;
  top: 50%;
  right: -4%;
  transform: translateY(-50%);
  z-index: 0;
  font-family: var(--serif-display);
  font-weight: 900;
  font-size: clamp(220px, 34vw, 480px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--steel);
  opacity: 0.1;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.company-grid {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
}

.kicker-left {
  margin: 6px 0 0;
  text-align: left;
}

.company-copy {
  font-family: var(--serif-display);
  line-height: 1.22;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
  max-width: 780px;
}

.company-copy-strong {
  display: block;
  font-weight: 800;
  font-size: clamp(32px, 4.6vw, 56px);
}

.company-copy-soft {
  display: block;
  margin-top: 6px;
  margin-left: clamp(0px, 8vw, 120px);
  font-weight: 500;
  font-size: clamp(24px, 3.4vw, 40px);
  color: var(--steel);
}

.section-principles {
  background: var(--mist);
  overflow: hidden;
  padding-top: 200px;
  padding-bottom: 200px;
}

.section-principles > .kicker-left {
  max-width: 1040px;
  margin: 0 auto 72px;
}

.kicker {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 56px;
}

.principles-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.principle-row {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: baseline;
  gap: 24px;
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 42, 0.12);
  transition: opacity .2s ease;
}

.principle-row:last-child { border-bottom: 1px solid rgba(0, 0, 42, 0.12); }

.principle-row--indent { margin-left: clamp(0px, 9vw, 108px); }
.principle-row--indent-sm { margin-left: clamp(0px, 4.5vw, 54px); }

.principle-ghost {
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  z-index: 0;
  font-family: var(--serif-display);
  font-weight: 900;
  font-size: clamp(90px, 12vw, 180px);
  color: var(--light);
  opacity: 0.25;
  pointer-events: none;
  user-select: none;
}

.principle-num {
  position: relative;
  z-index: 1;
  font-family: var(--serif-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--slate);
}

.principle-text {
  position: relative;
  z-index: 1;
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(19px, 2.4vw, 26px);
  letter-spacing: -0.005em;
  color: var(--ink);
}

.principle-row--lg .principle-text {
  font-weight: 700;
  font-size: clamp(22px, 3vw, 34px);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.section-contact {
  background: var(--slate);
  text-align: center;
  overflow: hidden;
}

.contact-lead {
  font-family: var(--serif-display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 56px);
  color: var(--on-dark);
  margin: 0 0 24px;
  position: relative;
  z-index: 1;
}

.contact-email {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: clamp(20px, 3vw, 30px);
  color: var(--on-dark);
  border-bottom: 2px solid rgba(238, 244, 249, 0.4);
  padding-bottom: 6px;
  transition: border-color .2s ease, opacity .2s ease;
}

.contact-email:hover {
  border-color: var(--on-dark);
}

.contact-email:focus-visible {
  outline: 2px solid var(--on-dark);
  outline-offset: 6px;
}

/* Footer */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 24px;
  background: var(--navy);
  color: var(--on-dark-soft);
  font-size: 12px;
  letter-spacing: 0.04em;
}

/* Mobile-specific composition */
@media (max-width: 640px) {
  .nav-pill {
    top: 16px;
    padding: 10px 16px;
    font-size: 12px;
  }
  .nav-pill-left { left: 16px; }
  .nav-pill-right { right: 16px; }

  .hero { padding: 90px 20px; }

  .kinetic-word { line-height: 0.98; }

  .section { padding: 96px 20px; }

  .section-company,
  .section-principles {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .watermark {
    font-size: clamp(140px, 60vw, 220px);
    opacity: 0.08;
    right: -8%;
  }

  .company-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .company-copy-soft {
    margin-left: 0;
  }

  .section-principles > .kicker-left {
    margin-bottom: 48px;
  }

  .principle-row,
  .principle-row--indent,
  .principle-row--indent-sm {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
    margin-left: 0;
  }

  .principle-ghost {
    font-size: 72px;
    opacity: 0.12;
    right: 0;
  }

  .principle-num {
    font-size: 15px;
  }

  .principle-text {
    padding-left: 2px;
  }

  .principle-row--lg .principle-text {
    font-size: clamp(20px, 6vw, 26px);
  }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .kinetic-word { transform: none !important; }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
