/* ============================================================
   BOOKSBYAMA — ACCESSIBILITY STATEMENT PAGE
   ============================================================ */

/* ── HERO ─────────────────────────────────────────────────── */
.a11y-hero {
  background: var(--bg-page);
  padding: 110px 0 70px;
  border-bottom: 1px solid var(--border);
}
.a11y-hero__inner { text-align: center; }
.a11y-hero__text { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 18px; align-items: center; }
.a11y-hero__title {
  font-family: var(--font-head); font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800; color: var(--text-primary); line-height: 1.15; letter-spacing: -.02em; margin: 0;
}
.a11y-hero__title span { color: var(--purple); }
.a11y-hero__sub { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; max-width: 560px; margin: 0; }

/* ── CONTENT ──────────────────────────────────────────────── */
.a11y-content { background: var(--bg-surface); padding: 80px 0; }
.a11y-content__layout {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 56px; align-items: start;
}

/* Sidebar */
.a11y-sidebar {
  position: sticky; top: 96px;
  background: var(--bg-page);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
}
.a11y-sidebar__title {
  font-family: var(--font-head); font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted);
  margin: 0 0 14px;
}
.a11y-sidebar__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.a11y-sidebar__list a {
  display: block; padding: 9px 12px; border-radius: 10px;
  font-size: .86rem; font-weight: 500; color: var(--text-muted); text-decoration: none;
  transition: var(--transition-base);
}
.a11y-sidebar__list a:hover { background: var(--purple-soft); color: var(--purple); }

/* Body */
.a11y-body {
  background: var(--bg-page); border: 1.5px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 48px 56px;
  max-width: 760px;
}
.a11y-body h2 {
  font-family: var(--font-head); font-size: 1.55rem; font-weight: 800;
  color: var(--text-primary); margin: 48px 0 16px; line-height: 1.2;
}
.a11y-body h2:first-child { margin-top: 0; }
.a11y-body p {
  font-size: .97rem; color: var(--text-muted); line-height: 1.75; margin: 0 0 16px;
}
.a11y-body ul { padding-left: 1.25rem; margin: 0 0 16px; }
.a11y-body li { font-size: .95rem; color: var(--text-muted); line-height: 1.75; margin: 0 0 10px; }
.a11y-body strong { color: var(--text-primary); }
.a11y-body em { color: var(--text-light); }

/* Contact */
.a11y-contact { display: flex; gap: 14px; flex-wrap: wrap; margin: 32px 0 8px; }
.a11y-contact .btn--outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 26px; border-radius: 999px; border: 2px solid var(--purple);
  color: var(--purple); background: transparent;
  font-weight: 600; font-size: .9rem; text-decoration: none;
  transition: var(--transition-base);
}
.a11y-contact .btn--outline:hover { background: var(--purple-soft); }
.a11y-updated { margin-top: 24px; font-size: .84rem !important; color: var(--text-light) !important; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .a11y-content__layout { grid-template-columns: 1fr; }
  .a11y-sidebar { position: static; }
  .a11y-body { padding: 32px; }
}

@media (max-width: 640px) {
  .a11y-hero { padding: 80px 0 48px; }
  .a11y-content { padding: 56px 0; }
  .a11y-body { padding: 24px; }
  .a11y-body h2 { font-size: 1.25rem; }
  .a11y-contact .btn { width: 100%; justify-content: center; }
}
