/* Shared styling for the two standalone legal documents (/terms, /privacy).
   These pages sit outside both the app bundle and the landing page, so they
   carry their own type ramp rather than importing either stylesheet. */
@font-face{font-family:'Arkhip';src:url('/fonts/Arkhip.otf') format('opentype');font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:'Louis George Cafe';src:url('/fonts/LouisGeorgeCafe.ttf') format('truetype');font-weight:400;font-style:normal;font-display:swap}

:root{
  --lg-bg:#ecdec8;
  --lg-ink:#2f2823;
  --lg-soft:#6a5c4d;
  --lg-accent:#c8944a;
  --lg-rule:rgba(47,40,35,0.14);
  --lg-card:rgba(255,252,246,0.5);
}

*{box-sizing:border-box}

body{
  margin:0;
  background:var(--lg-bg);
  color:var(--lg-ink);
  font-family:'Louis George Cafe',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  font-size:17px;
  line-height:1.72;
  -webkit-font-smoothing:antialiased;
  -webkit-text-size-adjust:100%;
}

.lg-wrap{max-width:760px;margin:0 auto;padding:64px 28px 120px}

.lg-back{
  display:inline-block;
  margin-bottom:44px;
  color:var(--lg-soft);
  text-decoration:none;
  font-size:14px;
  letter-spacing:0.06em;
  text-transform:uppercase;
}
.lg-back:hover{color:var(--lg-accent)}

h1{
  font-family:'Arkhip',Georgia,serif;
  font-size:38px;
  line-height:1.2;
  font-weight:400;
  margin:0 0 6px;
}

.lg-eyebrow{
  font-size:13px;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--lg-soft);
  margin-bottom:14px;
}

.lg-date{color:var(--lg-soft);font-size:15px;margin:0 0 40px}

h2{
  font-family:'Arkhip',Georgia,serif;
  font-size:22px;
  font-weight:400;
  line-height:1.3;
  margin:52px 0 14px;
  padding-top:22px;
  border-top:1px solid var(--lg-rule);
}

h3{font-size:17px;font-weight:700;margin:28px 0 8px}

p{margin:0 0 16px}
ul{margin:0 0 16px;padding-left:22px}
li{margin-bottom:9px}

a{color:var(--lg-accent)}
a:hover{color:var(--lg-ink)}

strong{font-weight:700}

.lg-summary{
  background:var(--lg-card);
  border:1px solid var(--lg-rule);
  border-radius:14px;
  padding:24px 26px 8px;
  margin-bottom:8px;
}
.lg-summary h2{margin-top:0;padding-top:0;border-top:none;font-size:19px}

.lg-foot{
  margin-top:64px;
  padding-top:22px;
  border-top:1px solid var(--lg-rule);
  color:var(--lg-soft);
  font-size:14px;
}
.lg-foot a{margin-right:14px}

@media (max-width:640px){
  body{font-size:16px}
  .lg-wrap{padding:40px 20px 80px}
  h1{font-size:30px}
  h2{font-size:20px;margin-top:42px}
}
