/* ============================================================
   SMALL GIANTS — Design tokens
   ============================================================ */
:root {
  --ink:        #15191D;   /* near-black warm charcoal — the "noise" backdrop */
  --ink-soft:   #1E242A;
  --paper:      #EEF0EA;   /* pale sage-white — the "quiet" backdrop */
  --paper-tint: #E4E7DF;
  --lagoon:     #3B6B5E;   /* Mauritius lagoon green — secondary accent */
  --lagoon-deep:#2A4C43;
  --brass:      #C99A4A;   /* warm brass/gold — signature accent */
  --brass-soft: rgba(201, 154, 74, 0.16);
  --ash:        #5B6058;   /* body text on paper */
  --mist:       #A7B0A9;   /* muted text on ink */
  --cream:      #F6F4EC;   /* near-white for text on ink */
  --line:       rgba(21, 25, 29, 0.12);
  --line-dark:  rgba(238, 240, 234, 0.14);

  --font-display: 'Big Shoulders Display', sans-serif;
  --font-body: 'Newsreader', serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --max-w: 1180px;
  --pad: clamp(20px, 5vw, 64px);
}

/* ============================================================
   Reset & base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; margin: 0; line-height: 1.02; letter-spacing: 0.01em; }
p { margin: 0 0 1em; }
a { color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }

.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;
}

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--brass); color: var(--ink);
  padding: 10px 16px; z-index: 999; font-family: var(--font-mono); font-size: 13px;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 18px;
}
.eyebrow-dark { color: var(--lagoon-deep); }

.section-title {
  font-size: clamp(30px, 4vw, 46px);
  max-width: 18ch;
  margin-bottom: 28px;
}

.section-intro {
  max-width: 62ch;
  font-size: 20px;
  color: var(--ash);
  margin-bottom: 24px;
}

.inline-quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 19px;
  color: var(--lagoon-deep);
  max-width: 56ch;
  border-left: 3px solid var(--brass);
  padding-left: 20px;
  margin-bottom: 44px;
}

.lede {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.01em;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 15px 26px;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--brass);
  color: var(--ink);
}
.btn-primary:hover { background: #DBAD5C; }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line-dark);
}
.btn-ghost:hover { border-color: var(--brass); color: var(--brass); }

.btn-large { padding: 18px 34px; font-size: 15px; }

.cta-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(21, 25, 29, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid var(--brass);
  color: var(--brass);
  font-family: var(--font-mono);
  font-size: 13px;
  border-radius: 3px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.primary-nav a {
  text-decoration: none;
  color: var(--mist);
  font-family: var(--font-mono);
  font-size: 13.5px;
  letter-spacing: 0.03em;
  transition: color 0.15s ease;
}
.primary-nav a:hover { color: var(--cream); }
.primary-nav .nav-cta {
  color: var(--ink);
  background: var(--brass);
  padding: 9px 16px;
  border-radius: 3px;
}
.primary-nav .nav-cta:hover { color: var(--ink); background: #DBAD5C; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--cream); display: block; }

/* ============================================================
   Hero — the noise field
   ============================================================ */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 120px 0 130px;
  min-height: 640px;
  display: flex;
  align-items: center;
}

.hero-inner { position: relative; z-index: 3; max-width: 700px; }

.hero-title {
  font-size: clamp(42px, 6.4vw, 80px);
  margin-bottom: 26px;
}
.accent-brass { color: var(--brass); }

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(18px, 2vw, 21px);
  color: var(--mist);
  max-width: 46ch;
  margin-bottom: 40px;
}

.noise-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.chip {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--mist);
  border: 1px solid var(--line-dark);
  background: rgba(238, 240, 234, 0.03);
  padding: 7px 14px;
  border-radius: 999px;
  white-space: nowrap;
  animation: drift 9s ease-in-out infinite;
  opacity: 0.85;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) rotate(var(--r, 0deg)); }
  50% { transform: translate(0, -14px) rotate(var(--r, 0deg)); }
}

@media (prefers-reduced-motion: reduce) {
  .chip { animation: none; }
}

/* Chips live strictly right of the 600px text column so they never
   collide with the headline, subhead, or buttons. */
.chip-1  { top: 6%;  left: 68%; --r: -6deg;  animation-delay: 0s;    border-color: var(--brass-soft); }
.chip-2  { top: 16%; left: 84%; --r: 4deg;   animation-delay: 1.1s; }
.chip-3  { top: 27%; left: 66%; --r: -3deg;  animation-delay: 2.3s; }
.chip-4  { top: 37%; left: 88%; --r: 5deg;   animation-delay: 0.6s; }
.chip-5  { top: 47%; left: 70%; --r: -8deg;  animation-delay: 1.8s;  border-color: var(--brass-soft); }
.chip-6  { top: 58%; left: 90%; --r: 3deg;   animation-delay: 0.3s; }
.chip-7  { top: 68%; left: 67%; --r: -4deg;  animation-delay: 2.6s; }
.chip-8  { top: 78%; left: 85%; --r: 6deg;   animation-delay: 1.4s; }
.chip-9  { top: 88%; left: 70%; --r: -5deg;  animation-delay: 3.1s; }
.chip-10 { top: 9%;  left: 92%; --r: 2deg;   animation-delay: 0.9s; }
.chip-11 { top: 62%; left: 78%; --r: -3deg;  animation-delay: 2s;   }
.chip-12 { top: 23%; left: 75%; --r: 4deg;   animation-delay: 1.6s; }

@media (max-width: 1150px) {
  .chip-9, .chip-10, .chip-11, .chip-12 { display: none; }
}
@media (max-width: 900px) {
  .noise-field { display: none; }
}

/* ============================================================
   Sections — generic
   ============================================================ */
.section { padding: 108px 0; }
.section-tint { background: var(--paper-tint); }



/* Who we serve */
.who-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  margin-bottom: 48px;
}
.who-copy p { font-size: 19px; color: var(--ash); }
.fit-line {
  font-size: 16px !important;
  color: var(--lagoon-deep) !important;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 8px;
}

.persona-list li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 17px;
}
.persona-list li:last-child { border-bottom: 1px solid var(--line); }
.persona-list strong { font-family: var(--font-display); font-weight: 700; font-size: 18px; }

.callout {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--lagoon-deep);
  max-width: 22ch;
  line-height: 1.25;
  border-top: 2px solid var(--brass);
  padding-top: 30px;
}

.pull-quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.35;
  color: var(--ink);
  background: var(--ink);
  color: var(--cream);
  padding: 40px;
  border-left: 4px solid var(--brass);
  margin: 0;
}

.pull-quote-large {
  font-size: clamp(26px, 3.4vw, 38px);
  max-width: 26ch;
  margin: 56px auto;
  text-align: left;
  padding: 48px;
}

/* Problem */
.problem-copy { max-width: 62ch; font-size: 19px; color: var(--ash); margin-bottom: 48px; }

.options-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  margin-bottom: 40px;
}
.option {
  background: var(--paper);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.option-mark { font-family: var(--font-mono); font-size: 20px; }
.option-bad .option-mark { color: #A65B4E; }
.option-bad p { color: var(--ash); text-decoration: line-through; text-decoration-color: rgba(91,96,88,0.4); margin: 0; }
.option-good { background: var(--ink); color: var(--cream); }
.option-good .option-mark { color: var(--brass); }
.option-good p { margin: 0; font-family: var(--font-display); font-size: 19px; font-weight: 600; }

.problem-resolution {
  max-width: 62ch;
  font-size: 19px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
}

/* What we do */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}
.offer-card {
  background: var(--paper-tint);
  padding: 40px;
}
.offer-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--brass);
  margin-bottom: 14px;
}
.offer-card h3 { font-size: 24px; margin-bottom: 12px; }
.offer-card p { color: var(--ash); font-size: 16.5px; margin-bottom: 0; }
.optional-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lagoon);
  margin-bottom: 10px !important;
}

/* How it works — timeline */
.timeline { max-width: 780px; }
.timeline li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.timeline li:last-child { border-bottom: 1px solid var(--line); }
.tl-num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--brass);
  line-height: 1;
}
.timeline h3 { font-size: 21px; margin-bottom: 8px; }
.timeline p { color: var(--ash); font-size: 16.5px; margin: 0; }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.value-card {
  grid-column: span 2;
  background: var(--paper);
  padding: 36px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
/* 3 cards span 2/6 on row one, the remaining 2 span 3/6 on row two,
   so both rows fill the grid completely with no empty cell. */
.value-card:nth-child(4), .value-card:nth-child(5) { grid-column: span 3; }
.value-card:nth-child(3) { border-right: none; }
.value-card:nth-child(5) { border-right: none; }
.value-card:nth-last-child(-n+2) { border-bottom: none; }
.value-card h3 { font-size: 20px; margin-bottom: 12px; color: var(--lagoon-deep); }
.value-card p { color: var(--ash); font-size: 16px; margin: 0; }

/* Founders */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-bottom: 8px;
}
.founder-card h3 { font-size: 22px; margin-bottom: 10px; }
.founder-card p { color: var(--ash); font-size: 17px; margin: 0; }
.founders-copy { max-width: 64ch; font-size: 18px; color: var(--ash); }

/* Final CTA */
.final-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 130px 0;
  text-align: left;
}
.final-cta .eyebrow { color: var(--brass); }
.final-title {
  font-size: clamp(34px, 5vw, 58px);
  max-width: 16ch;
  margin-bottom: 22px;
}
.final-sub {
  max-width: 52ch;
  color: var(--mist);
  font-size: 19px;
  margin-bottom: 40px;
}
.final-note {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--mist);
  letter-spacing: 0.04em;
  margin-top: 18px;
}

/* Footer */
.site-footer {
  background: var(--ink-soft);
  color: var(--mist);
  padding: 56px 0;
  border-top: 1px solid var(--line-dark);
}
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 32px; }
.footer-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; color: var(--cream); font-size: 16px;
  margin-right: auto;
}
.footer-tag { font-family: var(--font-mono); font-size: 12.5px; color: var(--mist); margin: 0; }
.footer-links { display: flex; gap: 22px; font-family: var(--font-mono); font-size: 13px; }
.footer-links a { text-decoration: none; color: var(--mist); }
.footer-links a:hover { color: var(--brass); }
.footer-copy { width: 100%; font-family: var(--font-mono); font-size: 11.5px; color: rgba(167,176,169,0.55); margin: 20px 0 0; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .who-grid, .fit-grid, .founders-grid { grid-template-columns: 1fr; }
  .options-row { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { border-right: none !important; }
  .value-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .value-card:last-child { border-bottom: none; }
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }

  .site-header.nav-open .primary-nav {
    display: flex;
    position: absolute;
    top: 74px; left: 0; right: 0;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px var(--pad) 30px;
    gap: 20px;
    border-bottom: 1px solid var(--line-dark);
  }
}

@media (max-width: 560px) {
  .section { padding: 76px 0; }
  .values-grid { grid-template-columns: 1fr; }
  .options-row { grid-template-columns: 1fr; }
  .pull-quote, .pull-quote-large { padding: 28px; }
  .hero { padding: 100px 0 90px; min-height: 0; }
}
