/* =================================================================
   BOLDIN — clean, monochrome, logo-forward. No decoration.
   One clean grotesque (Geist) that complements the wordmark.
   Polish from spacing, scale, and hierarchy.
   ================================================================= */

:root {
  --bg:      #0A0A0B;
  --bone:    #ECEAE3;
  --bone-2:  #B4B1A9;
  --dim:     #87847C;
  --muted:   #5A574F;
  --line:    rgba(236, 234, 227, 0.12);
  --line-2:  rgba(236, 234, 227, 0.06);

  --ff: 'Geist', system-ui, -apple-system, sans-serif;

  --maxw: 1160px;
  --pad:  clamp(24px, 6vw, 88px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--bone);
  font-family: var(--ff);
  font-size: 18px; font-weight: 400; line-height: 1.65;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--bone); color: var(--bg); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.kicker {
  display: inline-block; font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--dim);
  margin-bottom: 18px;
}

/* =================================================================
   NAV
   ================================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px var(--pad);
  transition: background .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(10,10,11,0.72);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border-bottom-color: var(--line-2);
  padding-top: 16px; padding-bottom: 16px;
}
.nav__logo { height: 18px; width: auto; opacity: .95; }
.nav__links { display: flex; align-items: center; gap: 40px; }
.nav__links a { font-size: 15px; font-weight: 500; color: var(--bone-2); transition: color .25s var(--ease); }
.nav__links a:hover { color: var(--bone); }
.nav__cta {
  color: var(--bone) !important; border: 1px solid var(--line);
  border-radius: 100px; padding: 9px 20px; transition: border-color .3s, background .3s;
}
.nav__cta:hover { border-color: var(--bone-2); background: rgba(236,234,227,0.04); }

.nav__toggle { display: none; flex-direction: column; gap: 6px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 1.5px; background: var(--bone); display: block; transition: transform .35s var(--ease); }
.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child  { transform: translateY(-7px) rotate(-45deg); }

/* =================================================================
   HERO — big centered logo
   ================================================================= */
.hero {
  min-height: 100svh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 140px var(--pad) 100px;
}
.hero__eyebrow {
  font-size: 14px; font-weight: 500; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--dim); margin-bottom: 44px;
}
.hero__logo {
  width: clamp(280px, 56vw, 600px); height: auto; margin-bottom: 48px;
}
.hero__tagline {
  max-width: 600px; font-size: clamp(20px, 2.6vw, 27px); font-weight: 500;
  line-height: 1.45; letter-spacing: -0.018em; color: var(--bone); margin-bottom: 48px;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 600; color: var(--bg); background: var(--bone);
  padding: 15px 30px; border-radius: 100px;
  transition: transform .35s var(--ease), background .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); background: #fff; }

/* =================================================================
   STATEMENT
   ================================================================= */
.statement {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(80px, 13vw, 170px) var(--pad);
  border-top: 1px solid var(--line);
}
.statement__body {
  font-size: clamp(24px, 3.6vw, 42px); font-weight: 500; line-height: 1.34;
  letter-spacing: -0.022em; max-width: 18ch; max-width: 980px;
}

/* =================================================================
   SECTIONS (shared)
   ================================================================= */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(70px, 9vw, 130px) var(--pad); border-top: 1px solid var(--line); }
.section__head { margin-bottom: 56px; }
.section__title { font-size: clamp(28px, 4.4vw, 48px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.05; }

/* capabilities grid */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.card { background: var(--bg); padding: 40px 36px 48px; transition: background .35s var(--ease); }
.card:hover { background: #0E0E10; }
.card h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.25; margin-bottom: 14px; }
.card p { font-size: 16px; color: var(--dim); line-height: 1.58; }

/* approach rows */
.rows { border-top: 1px solid var(--line); }
.row {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: baseline;
  padding: 40px 0; border-bottom: 1px solid var(--line);
}
.row h3 { font-size: clamp(20px, 2.4vw, 26px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; }
.row p { font-size: 17px; color: var(--dim); line-height: 1.6; }

/* firm */
.firm__lede { font-size: clamp(20px, 2.4vw, 26px); font-weight: 500; line-height: 1.45; letter-spacing: -0.018em; max-width: 760px; margin-bottom: 64px; }
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.fact { background: var(--bg); padding: 32px 28px; display: flex; flex-direction: column; gap: 10px; }
.fact span { font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }
.fact strong { font-weight: 500; font-size: 17px; color: var(--bone); }

/* =================================================================
   CONTACT
   ================================================================= */
.contact { max-width: var(--maxw); margin: 0 auto; padding: clamp(100px, 15vw, 210px) var(--pad); border-top: 1px solid var(--line); }
.contact__title { font-size: clamp(34px, 5.5vw, 72px); font-weight: 600; letter-spacing: -0.035em; line-height: 1.04; margin-bottom: 30px; max-width: 16ch; }
.contact__lede { max-width: 520px; font-size: 19px; color: var(--bone-2); line-height: 1.6; margin-bottom: 46px; }
.contact__mail {
  display: inline-block; font-size: clamp(24px, 4vw, 42px); font-weight: 500;
  letter-spacing: -0.025em; padding-bottom: 8px; border-bottom: 1px solid var(--line);
  transition: border-color .3s var(--ease);
}
.contact__mail:hover { border-color: var(--bone); }

/* =================================================================
   FOOTER
   ================================================================= */
.footer { padding: 60px var(--pad) 48px; border-top: 1px solid var(--line); }
.footer__logo { height: 20px; opacity: .8; margin-bottom: 38px; }
.footer__bottom { max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: 14px; color: var(--muted); }

/* =================================================================
   REVEAL
   ================================================================= */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .row { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 720px) {
  body { font-size: 17px; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.is-open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 26px;
    position: fixed; inset: 0 0 auto 0; background: rgba(10,10,11,0.98);
    backdrop-filter: blur(18px); padding: 100px var(--pad) 50px; border-bottom: 1px solid var(--line);
  }
  .nav__links.is-open a { font-size: 22px; }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
