:root{
  --bg:#FAF8F5;
  --paper:#FFFFFF;
  --text:#111111;
  --muted:#595959;
  --line:#E8E8E8;
  --red:#B32222;
  --red-dark:#941B1B;
  --max:1280px;
  --radius:28px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:"Trebuchet MS","Avenir Next",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.65;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.site-header{
  position:sticky;
  top:0;
  z-index:10;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  padding:28px 4vw 22px;
  background:rgba(250,248,245,.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
}
.logo{
  color:var(--red);
  font-weight:800;
  letter-spacing:.06em;
  font-size:clamp(1.35rem,2vw,2rem);
}
.main-nav{
  display:flex;
  align-items:center;
  gap:34px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  font-size:.92rem;
}
.nav-cta,.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 30px;
  border-radius:999px;
  font-weight:800;
  letter-spacing:.03em;
}
.nav-cta,.button.primary{
  background:var(--red);
  color:#fff;
}
.nav-cta:hover,.button.primary:hover{background:var(--red-dark)}
.button.secondary{
  border:1px solid var(--text);
  background:transparent;
}
.button.disabled{opacity:.5;pointer-events:none}
.menu-button{display:none}
.section{
  width:min(var(--max),92vw);
  margin:0 auto;
  padding:110px 0;
}
.hero{
  min-height:calc(100vh - 90px);
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  align-items:center;
  gap:64px;
}
.eyebrow{
  color:var(--red);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:800;
  margin:0 0 18px;
}
h1,h2,h3,p{margin-top:0}
h1{
  color:var(--red);
  font-size:clamp(4rem,9vw,8.5rem);
  line-height:.9;
  letter-spacing:.04em;
  margin-bottom:34px;
}
h2{
  font-size:clamp(2.3rem,5vw,5rem);
  line-height:1.05;
  letter-spacing:.01em;
  margin-bottom:28px;
}
h3{
  font-size:clamp(1.45rem,2.4vw,2.1rem);
  line-height:1.18;
}
.claim{
  font-size:clamp(1.45rem,2.2vw,2.2rem);
  line-height:1.45;
  margin-bottom:34px;
}
.actions{display:flex;gap:16px;flex-wrap:wrap}
.hero-art{
  justify-self:end;
  max-width:620px;
}
.hero-art img,.book-cover img{
  border-radius:var(--radius);
  box-shadow:0 18px 50px rgba(0,0,0,.06);
}
.narrow{
  max-width:850px;
  text-align:center;
}
.narrow p,.split p,.book-copy p{
  font-size:clamp(1.1rem,1.8vw,1.45rem);
  color:var(--muted);
}
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.card,.quote-box{
  background:rgba(255,255,255,.6);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:38px;
}
.card-number{
  display:block;
  color:var(--red);
  font-weight:900;
  margin-bottom:50px;
}
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:54px;
  align-items:center;
}
.quote-box blockquote{
  font-size:clamp(2.5rem,6vw,6rem);
  line-height:1;
  color:var(--red);
  margin:0 0 22px;
  font-weight:900;
}
.tag-list{
  list-style:none;
  padding:0;
  margin:30px 0 0;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.tag-list li{
  border:1px solid var(--line);
  border-radius:999px;
  padding:10px 16px;
  background:#fff;
}
.book{
  display:grid;
  grid-template-columns:.75fr 1fr;
  gap:70px;
  align-items:center;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.book-cover{max-width:420px}
.muted{color:var(--muted);font-size:1rem!important}
.statement{
  text-align:center;
  max-width:980px;
}
.statement p{
  color:var(--red);
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.text-link{
  color:var(--red);
  font-size:1.35rem;
  font-weight:800;
}
.site-footer{
  width:min(var(--max),92vw);
  margin:0 auto;
  padding:46px 0;
  border-top:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  color:var(--muted);
}
.footer-links{display:flex;gap:24px}
@media (max-width:900px){
  .menu-button{
    display:inline-flex;
    border:1px solid var(--line);
    background:#fff;
    border-radius:999px;
    padding:10px 16px;
    font-weight:800;
  }
  .main-nav{
    display:none;
    position:absolute;
    left:4vw;
    right:4vw;
    top:82px;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:20px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:22px;
  }
  .main-nav.open{display:flex}
  .main-nav a{padding:14px}
  .hero,.split,.book,.cards{
    grid-template-columns:1fr;
  }
  .hero{
    padding-top:70px;
    min-height:auto;
  }
  .hero-art{justify-self:start}
  .section{padding:72px 0}
  .site-footer{
    flex-direction:column;
    align-items:flex-start;
  }
}


/* v1: Wordmark from Band-1-Cover for exact brand spelling/feel */
.logo-image{
  display:inline-flex;
  align-items:center;
  line-height:1;
}
.logo-image img{
  height:38px;
  width:auto;
  object-fit:contain;
  mix-blend-mode:multiply;
}
.hero-wordmark{
  margin:0 0 34px;
  line-height:1;
}
.hero-wordmark img{
  width:min(560px,100%);
  height:auto;
  mix-blend-mode:multiply;
}
.footer-logo img{
  height:34px;
}
@media (max-width:900px){
  .logo-image img{height:30px}
  .hero-wordmark img{width:min(440px,100%)}
}
