:root{
  --ink:#151515;
  --muted:#686868;
  --line:#e8e5df;
  --paper:#fbfaf7;
  --white:#fff;
  --warm:#b58a5b;
  --radius:22px;
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:var(--paper);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}
img{display:block;max-width:100%}
a{color:inherit}
.topbar{
  position:sticky;
  top:0;
  z-index:10;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px max(24px,calc((100vw - var(--max))/2));
  background:rgba(251,250,247,.92);
  border-bottom:1px solid rgba(232,229,223,.9);
  backdrop-filter:blur(14px);
}
.brand{
  display:flex;
  align-items:center;
  gap:11px;
  color:inherit;
  text-decoration:none;
}
.brand-mark{
  width:48px;
  height:38px;
  object-fit:contain;
}
.brand span{display:flex;flex-direction:column}
.brand strong{font-size:15px;line-height:1.15}
.brand small{font-size:12px;color:var(--muted);margin-top:3px}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 24px;
  color:#fff;
  background:var(--ink);
  border:1px solid var(--ink);
  border-radius:999px;
  text-decoration:none;
  font-size:15px;
  font-weight:700;
  transition:transform .2s ease,opacity .2s ease;
}
.button:hover{transform:translateY(-2px);opacity:.9}
.button-small{min-height:42px;padding:0 18px;font-size:14px}
.button-outline{color:var(--ink);background:transparent}
main{overflow:hidden}
.hero{
  width:min(var(--max),calc(100% - 48px));
  margin:42px auto 0;
  display:grid;
  grid-template-columns:.84fr 1.16fr;
  gap:52px;
  align-items:center;
  min-height:72vh;
}
.hero-copy{padding:40px 0}
.eyebrow{
  margin:0 0 16px;
  color:var(--warm);
  font-size:12px;
  font-weight:800;
  letter-spacing:.13em;
  text-transform:uppercase;
}
h1,h2,h3,p{margin-top:0}
h1{
  margin-bottom:24px;
  max-width:720px;
  font-size:clamp(48px,6vw,88px);
  line-height:.98;
  letter-spacing:-.055em;
}
h2{
  margin-bottom:20px;
  font-size:clamp(34px,4.3vw,64px);
  line-height:1.02;
  letter-spacing:-.045em;
}
h3{font-size:20px;margin-bottom:8px}
.lead,.intro>p:last-child,.quote>p{
  max-width:640px;
  color:var(--muted);
  font-size:clamp(17px,2vw,21px);
}
.hero .button{margin-top:16px}
.hero-image{
  margin:0;
  overflow:hidden;
  border-radius:var(--radius);
  background:#eee;
}
.hero-image img{
  width:100%;
  height:min(72vh,760px);
  object-fit:cover;
}
.section{
  width:min(var(--max),calc(100% - 48px));
  margin:0 auto;
  padding:128px 0;
}
.intro{border-bottom:1px solid var(--line)}
.intro h2{max-width:900px}
.process{border-bottom:1px solid var(--line)}
.process>h2{max-width:920px}
.steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:58px;
}
.steps article{
  min-height:210px;
  padding:28px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--white);
}
.steps span{
  display:block;
  margin-bottom:46px;
  color:var(--warm);
  font-weight:800;
}
.steps p{color:var(--muted);margin:0}
.gallery h2{max-width:900px}
.gallery-grid{
  margin-top:54px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
}
.gallery-grid figure{
  margin:0;
  overflow:hidden;
  border-radius:var(--radius);
  background:#eee;
}
.gallery-grid .wide{grid-column:1/-1}
.gallery-grid img{
  width:100%;
  height:650px;
  object-fit:cover;
}
.gallery-grid .wide img{height:min(76vw,900px)}
.audience{border-top:1px solid var(--line)}
.audience-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}
.audience article{
  padding:42px;
  border-radius:var(--radius);
  background:var(--white);
  border:1px solid var(--line);
}
.audience h2{font-size:clamp(34px,4vw,54px)}
.audience p{margin:0;color:var(--muted);font-size:18px;line-height:1.8}
.quote{
  text-align:center;
  border-top:1px solid var(--line);
}
.quote-logo{
  width:min(360px,72vw);
  height:180px;
  object-fit:contain;
  margin:0 auto 24px;
}
.quote h2{max-width:920px;margin-left:auto;margin-right:auto}
.quote>p{margin-left:auto;margin-right:auto}
.quote-actions{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
  margin-top:34px;
}
.text-link{
  padding:14px 10px;
  font-weight:700;
  text-underline-offset:4px;
}
footer{
  width:min(var(--max),calc(100% - 48px));
  margin:0 auto;
  padding:34px 0 48px;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:12px 24px;
  color:var(--muted);
  border-top:1px solid var(--line);
  font-size:14px;
}
footer strong{color:var(--ink)}
@media (max-width:850px){
  .hero{
    grid-template-columns:1fr;
    gap:28px;
    margin-top:10px;
    min-height:0;
  }
  .hero-copy{padding:42px 0 0}
  .hero-image img{height:72vh;max-height:720px}
  .steps,.audience-grid{grid-template-columns:1fr}
  .gallery-grid{grid-template-columns:1fr}
  .gallery-grid .wide{grid-column:auto}
  .gallery-grid img,.gallery-grid .wide img{height:auto;aspect-ratio:1/1;object-fit:cover}
  .section{padding:88px 0}
}
@media (max-width:560px){
  .topbar{padding:12px 18px}
  .brand-mark{width:38px;height:31px}
  .brand strong{font-size:13px}
  .brand small{font-size:11px}
  .button-small{min-height:38px;padding:0 14px;font-size:12px}
  .hero,.section,footer{width:calc(100% - 32px)}
  h1{font-size:50px}
  .hero-image img{height:auto;aspect-ratio:1/1.14}
  .steps article,.audience article{padding:24px}
  .quote-actions{flex-direction:column}
  .quote-actions .button,.text-link{width:100%}
}
