* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background: #f6f4f1;
  color: #221f1a;
  font-family: 'Hanken Grotesk', sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

:focus-visible { outline: 2px solid #8a6d52; outline-offset: 3px; }

.lep-pad { padding-left: 88px; padding-right: 88px; }

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e6e0d7;
  background: #fbfaf8;
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  font-size: 15px;
  letter-spacing: 0.24em;
  font-weight: 600;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 36px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #716b60;
}

.nav a { transition: color .2s; }
.nav a:hover { color: #8a6d52; }

/* Eyebrow */
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #aaa395;
}

/* Hero */
.hero {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 120px;
  padding-bottom: 100px;
}

.hero .eyebrow { margin-bottom: 32px; }

.hero h1 {
  margin: 0;
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 500;
  max-width: 840px;
}

.hero p {
  margin: 38px 0 0;
  font-size: 19px;
  line-height: 1.66;
  color: #716b60;
  max-width: 640px;
}

/* Capabilities */
.capabilities {
  border-top: 1px solid #e6e0d7;
  background: #fbfaf8;
}

.grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.cap {
  padding: 64px 56px;
  border-right: 1px solid #e6e0d7;
  transition: background .25s;
}

.cap:last-child { border-right: none; }
.cap:hover { background: #f1ece4; }

.cap-num {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #8a6d52;
  margin-bottom: 24px;
}

.cap h3 {
  margin: 0 0 18px;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.cap p {
  margin: 0;
  font-size: 15px;
  line-height: 1.68;
  color: #716b60;
}

/* Statement */
.statement { border-top: 1px solid #e6e0d7; }

.statement-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 120px;
  padding-bottom: 120px;
}

.statement p {
  margin: 0;
  font-size: 28px;
  line-height: 1.42;
  font-weight: 400;
  letter-spacing: -0.01em;
  max-width: 840px;
}

/* Contact */
.contact {
  border-top: 1px solid #e6e0d7;
  background: #fbfaf8;
}

.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 28px;
}

.contact .eyebrow { margin-bottom: 16px; }

.contact-cta {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.contact-email {
  font-size: 18px;
  color: #8a6d52;
  border-bottom: 1px solid #d8cdbd;
  padding-bottom: 5px;
  transition: border-color .2s;
}

.contact-email:hover { border-color: #8a6d52; }

/* Footer */
.footer {
  border-top: 1px solid #e6e0d7;
  padding-top: 48px;
  padding-bottom: 72px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.copyright {
  font-size: 13px;
  color: #716b60;
  margin-bottom: 20px;
}

.disclaimer {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.64;
  color: #aaa395;
  max-width: 820px;
}

/* Responsive */
@media (max-width: 860px) {
  .lep-pad { padding-left: 28px; padding-right: 28px; }
  .hero h1 { font-size: 36px; }
  .grid { grid-template-columns: 1fr; }
  .cap { border-right: none; border-bottom: 1px solid #e6e0d7; }
  .cap:last-child { border-bottom: none; }
  .statement p { font-size: 21px; }
  .contact-inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
