@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root{
  --paper:#f5f1e8;
  --cream:#fffaf2;
  --ink:#2e2a28;
  --muted:#6b625e;
  --line:rgba(0,0,0,.08);
  --shadow:0 18px 40px rgba(0,0,0,.08);
  --softshadow:0 10px 26px rgba(0,0,0,.06);
  --radius:22px;
  --radius2:16px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:"Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background:var(--paper);
  color:var(--ink);
  line-height:1.55;
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.9}

.wrap{max-width:1100px;margin:0 auto;padding:0 22px}

header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(245,241,232,.88);
  backdrop-filter: blur(8px) saturate(120%);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.2px;
}

.brand img{
  height:34px;
  width:auto;
  display:block;
}

.links a{
  margin-left:16px;
  font-weight:650;
  color:var(--muted);
}
.links a:hover{color:var(--ink);opacity:1}

.hero{
  padding:110px 0 70px;
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(900px 450px at 15% 0%, rgba(255,255,255,.55), transparent 60%),
    radial-gradient(900px 500px at 80% 10%, rgba(0,0,0,.03), transparent 60%),
    radial-gradient(700px 450px at 30% 100%, rgba(255,255,255,.35), transparent 65%);
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:24px;
  align-items:start;
}

.kicker{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12px;
  color:var(--muted);
}

h1{
  font-size:clamp(40px,5vw,64px);
  line-height:1.03;
  margin:10px 0 18px;
  font-weight:800;
}

.lead{
  font-size:18px;
  color:var(--muted);
  max-width:60ch;
  margin:0;
}

.cta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.12);
  font-weight:750;
}
.btn.primary{
  background:var(--ink);
  color:var(--cream);
  border-color:rgba(0,0,0,.12);
}
.btn.ghost{
  background:transparent;
  color:var(--ink);
}

.pills{display:flex;flex-wrap:wrap;gap:10px;margin-top:16px}
.pill{
  background:rgba(255,255,255,.55);
  border:1px solid var(--line);
  border-radius:999px;
  padding:7px 10px;
  font-size:13px;
  color:var(--muted);
}

.card{
  background:var(--cream);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px;
  box-shadow:var(--softshadow);
}

.card strong{font-weight:800}

.list{
  margin:12px 0 0;
  padding-left:18px;
  color:var(--muted);
}

section{padding:80px 0}

.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

h2{
  font-size:28px;
  margin:0 0 14px;
  font-weight:800;
}

.sub{color:var(--muted);margin:0 0 14px}

.menu-item{margin-bottom:12px}
.menu-item b{display:block;font-weight:800}
.menu-item small{color:var(--muted)}

footer{
  border-top:1px solid var(--line);
  padding:26px 0;
  color:var(--muted);
  font-size:14px;
}

@media (max-width:900px){
  .hero-grid{grid-template-columns:1fr}
  .two-col{grid-template-columns:1fr}
  .links a{margin-left:12px}
}