:root{
  --bg:#f4f3ef;
  --text:#171717;
  --muted:#6e6d68;
  --line:#d8d6cf;
  --card:#faf9f6;
  --max:1120px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  -webkit-font-smoothing:antialiased;
}
header,main,footer{
  width:min(calc(100% - 48px),var(--max));
  margin:auto;
}
header{
  height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid var(--line);
}
a{color:inherit;text-decoration:none}
.brand{font-size:18px;font-weight:700;letter-spacing:-.03em}
nav{display:flex;gap:28px;color:var(--muted);font-size:14px}
nav a:hover{color:var(--text)}
.hero{
  min-height:510px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  border-bottom:1px solid var(--line);
}
.eyebrow{
  margin:0 0 18px;
  color:var(--muted);
  font-size:12px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}
h1{
  max-width:800px;
  margin:0;
  font-size:clamp(56px,9vw,118px);
  line-height:.86;
  letter-spacing:-.065em;
  font-weight:650;
}
.lead{
  max-width:540px;
  margin:34px 0 0;
  color:var(--muted);
  font-size:18px;
  line-height:1.55;
}
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  margin:56px 0;
  background:var(--line);
  border:1px solid var(--line);
}
article{
  min-height:260px;
  padding:32px;
  background:var(--card);
  transition:transform .18s ease,background .18s ease;
}
article:hover{
  background:white;
  transform:translateY(-3px);
}
article span{
  color:var(--muted);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.1em;
}
h2{
  margin:58px 0 15px;
  font-size:25px;
  line-height:1.1;
  letter-spacing:-.035em;
}
article p,.about>p{
  margin:0;
  color:var(--muted);
  line-height:1.55;
}
.about{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  padding:100px 0;
  border-top:1px solid var(--line);
}
.about h2{margin:0;font-size:42px}
.about>p{max-width:440px;padding-top:30px}
footer{
  height:110px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:13px;
}
@media(max-width:720px){
  header,main,footer{width:min(calc(100% - 32px),var(--max))}
  header{height:72px}
  .hero{min-height:440px}
  .grid{grid-template-columns:1fr}
  article{min-height:210px}
  h2{margin-top:42px}
  .about{grid-template-columns:1fr;gap:20px;padding:70px 0}
  .about>p{padding:0}
}
