:root {
  --bone: #f9f5ef;
  --ink: #1a1c1a;
  --forest: #3a5645;
  --forest-hover: #2f4739;
  --card: #fffcf8;
  --rule: var(--ink);
  --serif: "Playfair Display", "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --wrap: 1180px;
  --gutter: 48px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

.wrap {
  width: min(100%, var(--wrap));
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
  background: var(--forest);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.72em 1.35em;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.btn:hover {
  background: var(--forest-hover);
}

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

.icon {
  width: 52px;
  height: 52px;
  color: var(--forest);
  flex: 0 0 auto;
}

.icon-person {
  width: 40px;
  height: 40px;
}

/* Header */
.site-header {
  padding: 28px 0 8px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.lockup {
  height: 76px;
  width: auto;
  max-width: min(320px, calc(100% - 148px));
  flex: 0 1 auto;
  position: relative;
  z-index: 0;
  background: transparent;
}

.header-inner .btn {
  flex-shrink: 0;
}

/* Hero */
.hero {
  padding: 64px 0 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.45;
  color: var(--ink);
}

.hero-copy h1 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 3.4vw, 3.35rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.018em;
}

.lede {
  margin: 0 0 28px;
  max-width: 38em;
  font-size: 1.02rem;
  line-height: 1.65;
}

.proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.proof-card {
  border: 1px solid var(--ink);
  border-radius: 18px;
  padding: 36px 16px 32px;
  text-align: center;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 210px;
}

.proof-stat {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 5vw, 4.6rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.proof-caption {
  margin: 14px 0 0;
  font-size: 0.92rem;
  line-height: 1.4;
  max-width: 11.5em;
}

.proof-sentence {
  display: none;
}

.proof-card .icon-mobile {
  display: none;
}

/* Products */
.products {
  padding: 0 0 8px;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--rule);
}

.product {
  padding: 52px 36px 64px 0;
}

.product + .product {
  padding-left: 36px;
  border-left: 1px solid var(--rule);
}

.product .icon-mobile {
  display: none;
}

.product h2 {
  margin: 18px 0 12px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.product p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 32em;
}

/* Team */
.team {
  padding: 28px 0 8px;
}

.team-label {
  margin: 0 0 14px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.team-list {
  list-style: none;
  margin: 0;
  padding: 22px 0 36px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
}

.team-list li {
  padding: 0 14px 0 0;
}

.team-list li + li {
  padding-left: 14px;
  border-left: 1px solid var(--rule);
}

.team-list .icon-mobile {
  display: none;
}

.team-name {
  margin: 0 0 8px;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.35;
}

.team-cred {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 400;
}

/* Footer */
.site-footer {
  padding: 0 0 48px;
}

.site-footer .wrap {
  border-top: 1px solid var(--rule);
  padding-top: 22px;
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Mobile — match approved mobile one-pager */
@media (max-width: 880px) {
  :root {
    --gutter: 22px;
  }

  .site-header {
    padding: 18px 0 6px;
  }

  .lockup {
    height: 56px;
    max-width: min(240px, calc(100% - 120px));
    background: transparent;
  }

  .header-inner .btn {
    padding: 0.58em 1.05em;
    font-size: 0.84rem;
  }

  .hero {
    padding: 28px 0 36px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
  }

  .eyebrow {
    color: var(--forest);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    margin-bottom: 14px;
  }

  .hero-copy h1 {
    font-size: 2.05rem;
    margin-bottom: 16px;
  }

  .lede {
    font-size: 0.98rem;
    margin-bottom: 22px;
  }

  .proof {
    gap: 12px;
  }

  .proof-card {
    background: var(--card);
    min-height: 0;
    padding: 18px 14px 16px;
    border-radius: 14px;
    text-align: left;
    align-items: flex-start;
    gap: 10px;
  }

  .proof-stat,
  .proof-caption {
    display: none;
  }

  .proof-sentence {
    display: block;
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.4;
    font-weight: 500;
  }

  .proof-card .icon-mobile {
    display: block;
    width: 40px;
    height: 40px;
  }

  .products-grid {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--rule);
  }

  .product,
  .product + .product {
    padding: 22px 0;
    border-left: 0;
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }

  .product + .product {
    border-top: 1px solid var(--rule);
  }

  .product .icon-desktop {
    display: none;
  }

  .product .icon-mobile {
    display: block;
    width: 42px;
    height: 42px;
    margin-top: 1px;
  }

  .product h2 {
    display: inline;
    margin: 0;
    font-family: var(--sans);
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0;
  }

  .product h2::after {
    content: ": ";
  }

  .product p {
    display: inline;
    font-size: 0.98rem;
  }

  .team {
    padding: 8px 0 0;
  }

  .team-label {
    font-family: var(--serif);
    font-size: 1.85rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    text-transform: none;
    margin: 18px 0 8px;
  }

  .team-list {
    display: flex;
    flex-direction: column;
    padding: 0 0 8px;
    border-top: 1px solid var(--rule);
  }

  .team-list li,
  .team-list li + li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 0;
    border-left: 0;
  }

  .team-list li + li {
    border-top: 1px solid var(--rule);
  }

  .team-list .icon-mobile {
    display: block;
  }

  .team-name {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }

  .team-cred {
    font-size: 0.86rem;
  }

  .site-footer {
    padding-bottom: 36px;
  }

  .site-footer .wrap {
    padding-top: 20px;
  }

  .site-footer p {
    text-align: center;
    font-size: 0.86rem;
  }
}

@media (max-width: 420px) {
  .hero-copy h1 {
    font-size: 1.85rem;
  }

  .proof-sentence {
    font-size: 0.8rem;
  }
}
