/* ---------- terms page ---------- */
.terms-hero{
  padding:150px 0 60px;
  background:var(--forest-deep);
  color:var(--cream);
}
.terms-hero .eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family:'JetBrains Mono',monospace; font-size:12px; letter-spacing:.22em;
  color:var(--leaf-bright); margin-bottom:22px;
}
.terms-hero .eyebrow::before{ content:""; width:28px; height:1px; background:var(--leaf-bright); }
.terms-hero h1{
  font-size:clamp(30px,4.4vw,46px); font-weight:700; letter-spacing:.02em;
}
.terms-hero .lead{
  margin-top:18px; max-width:560px; font-size:15px; line-height:2;
  color:rgba(255,253,247,.86);
}

.terms-body{ padding:80px 0 60px; background:var(--cream); }
.terms-wrap{ max-width:840px; }

.terms-doc h2{
  font-family:'Shippori Mincho', serif;
  font-size:clamp(20px,2.6vw,26px); font-weight:700; color:var(--forest-deep);
  margin:64px 0 24px; padding-bottom:14px; border-bottom:1px solid var(--line);
}
.terms-doc h2:first-child{ margin-top:0; }
.terms-doc h3{
  font-family:'Zen Kaku Gothic New', sans-serif;
  font-size:16px; font-weight:700; color:var(--forest-deep);
  margin:34px 0 12px;
}
.terms-doc p{
  font-size:14.5px; line-height:2; color:var(--ink); margin-bottom:14px;
}
.terms-doc .term-note{
  font-size:13px; color:color-mix(in srgb, var(--ink) 68%, transparent);
}
.terms-doc .term-enforce{
  margin-top:28px; font-weight:700; color:var(--forest-deep);
}

.term-list{
  margin:0 0 18px; padding-left:0; list-style:none; counter-reset:term-counter;
}
.term-list li{
  position:relative; padding-left:32px; margin-bottom:10px;
  font-size:14.5px; line-height:1.9; color:var(--ink);
}
.term-list li::before{
  counter-increment:term-counter; content:"(" counter(term-counter) ")";
  position:absolute; left:0; top:0; font-family:'JetBrains Mono',monospace;
  font-size:12.5px; color:var(--leaf); font-weight:500;
}
.term-list--plain li::before{ content:"―"; font-family:inherit; }

.terms-back{ margin-top:56px; text-align:center; }

@media (max-width:560px){
  .terms-hero{ padding:130px 0 44px; }
  .terms-body{ padding:56px 0 40px; }
  .terms-doc h2{ margin:48px 0 20px; }
}
