:root{
  --paper:#f4f1e9;
  --ink:#11110f;
  --muted:#6f6b62;
  --accent:#e39a16;
  --line:rgba(17,17,15,.16);
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:-apple-system,BlinkMacSystemFont,"Helvetica Neue",Helvetica,Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
a:hover{opacity:.62}

.shell{width:min(calc(100% - 40px),var(--max));margin:0 auto}
header{
  position:sticky;top:0;z-index:20;
  backdrop-filter:blur(18px);
  background:rgba(244,241,233,.86);
  border-bottom:1px solid var(--line);
}
.nav{height:76px;display:flex;align-items:center;justify-content:space-between}
.brand{
  font-size:14px;font-weight:800;letter-spacing:.16em;text-transform:uppercase;
}
nav{display:flex;gap:26px;font-size:14px}
.hero{
  min-height:78vh;
  display:grid;align-items:end;
  padding:90px 0 72px;
  border-bottom:1px solid var(--line);
}
.kicker{
  font-size:13px;text-transform:uppercase;letter-spacing:.16em;
  color:var(--muted);margin-bottom:22px;
}
h1{
  max-width:980px;
  font-size:clamp(56px,8vw,118px);
  line-height:.91;
  letter-spacing:-.058em;
  margin:0;
  font-weight:760;
}
.hero-copy{
  max-width:620px;
  font-size:clamp(19px,2vw,26px);
  line-height:1.38;
  margin:44px 0 0 auto;
}
.section{
  padding:88px 0;
  border-bottom:1px solid var(--line);
}
.section-grid{
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:54px;
}
.eyebrow{
  font-size:13px;text-transform:uppercase;letter-spacing:.14em;color:var(--muted)
}
.bigcopy{
  font-size:clamp(30px,4vw,56px);
  line-height:1.03;
  letter-spacing:-.04em;
  margin:0;
}
.product{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:36px;
  align-items:stretch;
}
.product-card,.meta-card{
  border:1px solid var(--line);
  min-height:480px;
}
.product-card{
  padding:34px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  background:var(--ink);
  color:var(--paper);
}
.product-mark{
  display:flex;align-items:center;gap:12px;
  font-size:13px;text-transform:uppercase;letter-spacing:.14em;
}
.dot{width:10px;height:10px;background:var(--accent);border-radius:50%}
.product-title{
  font-size:clamp(52px,7vw,92px);
  letter-spacing:-.055em;line-height:.92;
  margin:0;
}
.product-sub{font-size:20px;line-height:1.4;max-width:500px;color:#d7d2c7}
.meta-card{
  padding:34px;
  display:flex;flex-direction:column;justify-content:space-between;
}
.meta-card p{font-size:20px;line-height:1.5;margin:0;color:#2c2b27}
.meta-bottom{display:flex;justify-content:space-between;gap:24px;align-items:end}
.tag{
  border:1px solid var(--line);padding:10px 13px;border-radius:999px;
  font-size:13px;display:inline-block
}
.cta{
  display:inline-flex;align-items:center;gap:12px;
  font-size:14px;font-weight:700
}
.arrow{font-size:21px}
.facts{
  display:grid;grid-template-columns:repeat(3,1fr);gap:20px;
}
.fact{border-top:1px solid var(--line);padding-top:16px}
.fact strong{display:block;font-size:15px;margin-bottom:8px}
.fact span{font-size:14px;color:var(--muted);line-height:1.5}
footer{padding:38px 0 52px}
.footer{
  display:flex;justify-content:space-between;gap:30px;align-items:flex-end;
}
.footer-links{display:flex;gap:20px;flex-wrap:wrap;font-size:13px;color:var(--muted)}
.legal{
  min-height:70vh;
  padding:90px 0;
}
.legal h1{
  font-size:clamp(46px,6vw,82px);
  margin-bottom:40px;
}
.legal-content{max-width:760px;margin-left:auto}
.legal-content h2{font-size:22px;margin-top:38px}
.legal-content p,.legal-content li{
  font-size:17px;line-height:1.65;color:#3b3934;
}
.contact-block{
  min-height:62vh;
  display:flex;flex-direction:column;justify-content:center;
}
.contact-email{
  font-size:clamp(42px,7vw,92px);
  letter-spacing:-.055em;line-height:1;
  overflow-wrap:anywhere;
}
.small{font-size:13px;color:var(--muted);line-height:1.5}

@media (max-width:780px){
  nav{gap:14px;font-size:12px}
  .section-grid,.product{grid-template-columns:1fr}
  .facts{grid-template-columns:1fr}
  .hero{min-height:70vh}
  .hero-copy{margin-left:0}
  .product-card,.meta-card{min-height:380px}
  .footer{align-items:flex-start;flex-direction:column}
}
