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

.chw-wrap{
  --chw-cream: #FBF5EC;
  --chw-cream-2: #F7EFE1;
  --chw-navy: #16253F;
  --chw-navy-2: #1D3054;
  --chw-gold: #C9A15A;
  --chw-gold-light: #E4C68A;
  --chw-ink: #495363;
  --chw-card-border: #EADFC9;
  --chw-white: #FFFFFF;

  font-family:'Inter', sans-serif;
  background:var(--chw-cream);
  color:var(--chw-navy);
  padding:64px 16px;
  box-sizing:border-box;
}
.chw-wrap *{ box-sizing:border-box; }

.chw-hero{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap:40px;
  align-items:center;
  max-width:1400px;
  margin:0 auto;
}

.chw-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid var(--chw-gold);
  border-radius:999px;
  padding:8px 18px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.12em;
  color:var(--chw-gold);
  background:var(--chw-white);
  margin-bottom:28px;
}
.chw-eyebrow::before{
  content:"";
  width:6px; height:6px;
  border-radius:50%;
  background:var(--chw-gold);
  display:inline-block;
}

.chw-headline{
  font-family:'Playfair Display', serif;
  font-weight:700;
  color:var(--chw-navy);
  font-size:clamp(34px, 5vw, 58px);
  line-height:1.08;
  letter-spacing:-0.01em;
  margin:0;
}

.chw-rule{
  width:64px;
  height:3px;
  background:var(--chw-gold);
  margin:26px 0 22px;
  border-radius:2px;
}

.chw-subhead{
  font-size:17px;
  line-height:1.65;
  color:var(--chw-ink);
  max-width:460px;
  margin:0;
}

.chw-book-stage{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}
.chw-book-glow{
  position:absolute;
  width:360px; height:360px;
  border-radius:50%;
  border:1px solid var(--chw-gold-light);
  opacity:.5;
  top:2%;
}
.chw-book-glow.chw-small{
  width:250px; height:250px;
  top:14%;
  opacity:.3;
}
.chw-book-glow.chw-small::after{
  content:"";
  position:absolute;
  inset:-40px;
  background-image: radial-gradient(circle, rgba(201,161,90,.35) 1px, transparent 1px);
  background-size:14px 14px;
  border-radius:50%;
  -webkit-mask-image: radial-gradient(circle, black 55%, transparent 78%);
  mask-image: radial-gradient(circle, black 55%, transparent 78%);
}
.chw-book{
  position:relative;
  width:230px;
  z-index:2;
  filter: drop-shadow(0 34px 44px rgba(22,37,63,.25));
}
.chw-book-image img{
  width:100%;
  display:block;
  border-radius:2px 10px 10px 2px;
}
.chw-book-cover{
  background: linear-gradient(100deg, #F3F0EA 0%, #FFFFFF 12%, #FFFFFF 92%, #E9E5DC 100%);
  border-radius: 2px 10px 10px 2px;
  padding:30px 24px 26px;
  color:var(--chw-navy);
  position:relative;
  box-shadow:
    inset 6px 0 14px rgba(0,0,0,.05),
    inset -1px 0 0 rgba(0,0,0,.06),
    0 1px 0 rgba(0,0,0,.04);
  min-height:340px;
  overflow:hidden;
}
.chw-book-cover::before{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width:10px;
  background: linear-gradient(90deg, rgba(0,0,0,.12), rgba(0,0,0,0));
}
.chw-book-eyebrow{
  font-size:13px;
  letter-spacing:.22em;
  color:var(--chw-navy);
  font-weight:700;
  margin-bottom:6px;
  text-align:center;
}
.chw-book-number{
  font-family:'Playfair Display', serif;
  font-weight:800;
  font-size:56px;
  line-height:1;
  text-align:center;
  background: linear-gradient(180deg, #D9B36C 0%, #A97C36 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  margin-bottom:4px;
}
.chw-book-title{
  font-family:'Playfair Display', serif;
  font-weight:700;
  font-size:21px;
  line-height:1.2;
  text-transform:uppercase;
  letter-spacing:.02em;
  text-align:center;
  color: #B8923F;
}
.chw-book-sub{
  font-size:10px;
  letter-spacing:.1em;
  color:var(--chw-navy);
  margin-top:12px;
  text-transform:uppercase;
  line-height:1.6;
  text-align:center;
  font-weight:600;
}
.chw-stairs{
  margin:30px 0 6px;
  display:flex;
  flex-direction:column;
  gap:0;
}
.chw-stair{
  height:11px;
  background: linear-gradient(90deg, #8A661E 0%, #D9B36C 45%, #F0D9A0 75%, #D9B36C 100%);
  border-top:1px solid rgba(255,255,255,.35);
  box-sizing:border-box;
}
.chw-book-author{
  font-size:12px;
  letter-spacing:.2em;
  text-align:center;
  color:var(--chw-navy);
  margin-top:14px;
  font-weight:600;
}
.chw-book-pedestal{
  width:260px;
  height:26px;
  background: radial-gradient(ellipse at center, #E9E1D0 0%, transparent 75%);
  border-radius:50%;
  margin-top:-10px;
  z-index:1;
}
.chw-pedestal-ring{
  width:230px;
  height:16px;
  border:1px solid var(--chw-gold-light);
  border-radius:50%;
  margin-top:-14px;
  opacity:.5;
}
.chw-cta-btn{
  margin-top:22px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:var(--chw-navy);
  color:var(--chw-white);
  border:none;
  padding:14px 24px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  letter-spacing:.03em;
  cursor:pointer;
  text-decoration:none;
  z-index:3;
}
.chw-cta-btn svg{width:14px; height:14px;}
.chw-cta-btn:hover{ opacity:.9; color:var(--chw-white); }

.chw-cards{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
  margin-top:64px;
  max-width:1400px;
  margin-left:auto;
  margin-right:auto;
}
.chw-card{
  background:var(--chw-white);
  border:1px solid var(--chw-card-border);
  border-top:3px solid var(--chw-gold);
  border-radius:6px;
  padding:34px 22px 30px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.chw-card-icon{
  width:66px; height:66px;
  border-radius:50%;
  background: radial-gradient(circle, #F6EAD1 0%, #F3E4C4 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 16px;
}
.chw-card-icon svg, .chw-card-icon i{
  font-size:24px;
  width:26px; height:26px;
  color:var(--chw-gold);
}
.chw-card-num{
  font-size:11px;
  letter-spacing:.2em;
  color:var(--chw-gold);
  font-weight:700;
  margin-bottom:10px;
}
.chw-card-num::before, .chw-card-num::after{
  content:"—";
  margin:0 6px;
  color:var(--chw-gold-light);
}
.chw-card-title{
  font-family:'Playfair Display', serif;
  font-size:19px;
  font-weight:700;
  color:var(--chw-navy);
  margin:0 0 6px;
}
.chw-card-underline{
  width:24px; height:2px;
  background:var(--chw-gold-light);
  margin:0 auto 14px;
}
.chw-card p{
  font-size:13.5px;
  line-height:1.6;
  color:var(--chw-ink);
  margin:0;
}

.chw-quote-bar{
  margin:24px auto 0;
  max-width:1400px;
  background:var(--chw-cream-2);
  border:1px solid var(--chw-card-border);
  border-radius:8px;
  padding:26px 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.chw-quote-left{
  display:flex;
  align-items:flex-start;
  gap:14px;
}
.chw-quote-mark{
  font-family:'Playfair Display', serif;
  font-size:44px;
  color:var(--chw-gold);
  line-height:1;
  font-weight:800;
}
.chw-quote-text p{
  font-size:15px;
  color:var(--chw-navy-2);
  line-height:1.5;
  margin:0;
}
.chw-quote-author{
  font-size:12.5px;
  color:var(--chw-ink);
  margin-top:6px;
}
.chw-quote-cta{
  background:var(--chw-gold);
  color:var(--chw-navy);
  border:none;
  padding:14px 22px;
  border-radius:999px;
  font-size:12.5px;
  font-weight:700;
  letter-spacing:.03em;
  white-space:nowrap;
  cursor:pointer;
  text-decoration:none;
}
.chw-quote-cta:hover{ opacity:.9; color:var(--chw-navy); }

@media (max-width:860px){
  .chw-hero{grid-template-columns:1fr; text-align:center;}
  .chw-subhead{margin:0 auto;}
  .chw-rule{margin-left:auto; margin-right:auto;}
  .chw-cards{grid-template-columns:repeat(2,1fr);}
  .chw-quote-bar{flex-direction:column; text-align:center;}
  .chw-quote-left{flex-direction:column; align-items:center;}
}
@media (max-width:520px){
  .chw-cards{grid-template-columns:1fr;}
}
