:root{
  --misty:#F7F5F2;
  --ink:#151515;
  --muted:rgba(21,21,21,.62);
  --line:rgba(0,0,0,.08);
  --shadow:0 12px 28px rgba(0,0,0,.08);
  --accent:#ff3b1f;
  --sidew: 240px;
}

body.page--legal .main{ background: var(--misty); }

.legal-hero{
  padding: 44px 0 90px;
  background: var(--misty);
}

.legal-wrap{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-grid{
  display:grid;
  grid-template-columns: var(--sidew) 1fr;
  gap: 26px;
  align-items:start;
}

/* side */
.legal-side__card{
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,.05);
}

.legal-side__title{
  display:none; /* desktopta gizli, mobilde açılır */
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  border: 0;
  background: rgba(255,255,255,.86);
  border-radius: 14px;
  padding: 12px;
  cursor: pointer;

  font-family: "Nata", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: rgba(21,21,21,.82);
  text-align:left;
}

.legal-side__chev{
  width: 30px; height: 30px;
  border-radius: 999px;
  background: rgba(0,0,0,.06);
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
}
.legal-side__chev svg{
  width: 14px; height: 14px;
  transition: transform .18s ease;
}

.legal-nav{
  display:flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style:none;
}

.legal-nav a{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;

  font-family: "Nata", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(21,21,21,.70);
}

.legal-nav a::before{
  content:"";
  width: 6px; height: 6px;
  border-radius: 999px;
  background: rgba(21,21,21,.22);
  flex: 0 0 auto;
}

.legal-nav a.is-active{
  color: rgba(21,21,21,.90);
  background: rgba(0,0,0,.04);
}
.legal-nav a.is-active::before{
  background: var(--accent);
}

/* main */
.legal-main{
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.legal-h1{
  margin: 0;
  font-family: "Nata", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: rgba(21,21,21,.86);
  letter-spacing: -0.02em;
}

.legal-lead{
  margin: 10px 0 0;
  max-width: 760px;
  font-family: "Nata", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(21,21,21,.62);
  line-height: 1.45;
}

.legal-section{ margin-top: 18px; }

.legal-h2{
  margin: 16px 0 6px;
  font-family: "Nata", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: rgba(21,21,21,.84);
}

.legal-p{
  margin: 0 0 10px;
  font-family: "Nata", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(21,21,21,.72);
  line-height: 1.55;
}

.legal-ol{
  margin: 8px 0 0 18px;
  padding: 0;
  font-family: "Nata", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(21,21,21,.72);
  line-height: 1.55;
}
.legal-ol li{ margin: 6px 0; }

/* Responsive */
@media (max-width: 860px){
  .legal-grid{ grid-template-columns: 1fr; gap: 14px; }
  .legal-side__card{ padding: 10px; }
  .legal-side__title{ display:flex; }
  .legal-nav{ display:none; padding-top: 10px; }
  .legal-side.is-open .legal-nav{ display:flex; }
  .legal-main{ padding: 18px 14px; }
}

@media (max-width: 620px){
  .legal-wrap{ padding: 0 14px; }
  .legal-hero{ padding: 32px 0 74px; }
  .legal-h1{ font-size: 16px; }
}
