/* =============================================================
   PEDRO LUIS ARELLANO — Catálogo de obra
   Sistema visual tomado de Singulart: fondo claro, sans geométrica
   en caja baja, azul de acento, tarjetas limpias, precio visible.
   Tipografía: Onest (sustituto libre de Roobert).
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #ffffff;
  --bg-2:      #f7f6f4;
  --bg-3:      #efedea;
  --ink:       #313131;
  --ink-soft:  #4a4a4a;
  --ink-mute:  #7c7a77;
  --accent:    #0b08c8;
  --accent-dk: #08069a;
  --peach:     #ffaf8d;
  --line:      #e3e0dc;
  --ok:        #1a7f4b;

  --sans: "Onest", "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont,
          "Segoe UI", Helvetica, Arial, sans-serif;

  --r:   6px;
  --r-l: 12px;

  --pad:  clamp(1.1rem, 4vw, 2.6rem);
  --max:  1440px;
  --nav-h: 68px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 2px 14px rgba(30,28,25,.07);
  --shadow-l: 0 10px 40px rgba(30,28,25,.13);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.1px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
ol, ul { list-style: none; padding: 0; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.1rem; background: var(--ink); color: #fff;
  border-radius: var(--r); font-size: .85rem;
}
.skip-link:focus { top: 1rem; }

.wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--pad); }

/* =============================================================
   3. Typography
   ============================================================= */
h1, h2, h3, h4 {
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.6px;
  text-wrap: balance;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.3rem); }
h3 { font-size: 1.05rem; font-weight: 500; letter-spacing: -0.1px; }

.eyebrow {
  font-size: .78rem; font-weight: 500; letter-spacing: .04em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: .7rem;
}
.lead { font-size: clamp(1rem, 1.4vw, 1.12rem); color: var(--ink-soft); max-width: 62ch; }
.muted { color: var(--ink-mute); }

.section { padding-block: clamp(2.8rem, 6vw, 5rem); }
.section-alt { background: var(--bg-2); }
.section-head { margin-bottom: clamp(1.4rem, 3vw, 2.4rem); max-width: 70ch; }
.section-head p { color: var(--ink-mute); margin-top: .6rem; }

/* =============================================================
   4. Buttons & pills
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-size: .95rem; font-weight: 500;
  padding: .85rem 1.5rem;
  border-radius: 100px;
  background: var(--ink); color: #fff;
  border: 1px solid var(--ink);
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  cursor: pointer;
}
.btn:hover, .btn:focus-visible { background: var(--accent); border-color: var(--accent); }

.btn-accent { background: var(--accent); border-color: var(--accent); }
.btn-accent:hover, .btn-accent:focus-visible { background: var(--accent-dk); border-color: var(--accent-dk); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--ink); color: #fff; border-color: var(--ink); }

.btn-wa { background: #25d366; border-color: #25d366; color: #08331a; }
.btn-wa:hover, .btn-wa:focus-visible { background: #1eb457; border-color: #1eb457; color: #fff; }

.btn-sm { padding: .55rem 1.05rem; font-size: .86rem; }

.tag {
  display: inline-flex; align-items: center;
  font-size: .72rem; font-weight: 500;
  padding: .22rem .6rem; border-radius: 100px;
  background: var(--bg-3); color: var(--ink-mute);
}
.tag-ok { background: #e7f4ec; color: var(--ok); }
.tag-sold { background: #f4e7e7; color: #9a2020; }

/* =============================================================
   5. Promo strip + header
   ============================================================= */
.promo {
  background: var(--ink); color: #fff;
  font-size: .82rem; text-align: center;
  padding: .55rem var(--pad);
}
.promo a { border-bottom: 1px solid rgba(255,255,255,.45); }

.masthead {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.masthead-inner {
  max-width: var(--max); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0 var(--pad); min-height: var(--nav-h);
}
.brand { display: block; }
.brand-name { display: block; font-size: 1.06rem; font-weight: 600; letter-spacing: -0.4px; line-height: 1.15; }
.brand-sub  { display: block; font-size: .72rem; color: var(--ink-mute); }

.nav { display: none; align-items: center; gap: .3rem; }
@media (min-width: 1000px) { .nav { display: flex; } .nav-toggle { display: none; } }
.nav a {
  font-size: .93rem; padding: .5rem .8rem; border-radius: var(--r);
  transition: background .18s var(--ease), color .18s var(--ease);
}
.nav a:hover, .nav a:focus-visible { background: var(--bg-2); color: var(--accent); }
.nav .nav-cta {
  background: var(--ink); color: #fff; border-radius: 100px;
  padding: .55rem 1.1rem; margin-left: .5rem;
}
.nav .nav-cta:hover, .nav .nav-cta:focus-visible { background: var(--accent); color: #fff; }

.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; border: 1px solid var(--line); border-radius: var(--r);
}
.nav-toggle span { display: block; height: 1.5px; width: 18px; margin: 0 auto; background: var(--ink); transition: transform .25s var(--ease); }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.2px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child  { transform: translateY(-3.2px) rotate(-45deg); }

.nav-mobile { display: none; border-top: 1px solid var(--line); background: var(--bg); }
.nav-mobile.is-open { display: block; }
@media (min-width: 1000px) { .nav-mobile, .nav-mobile.is-open { display: none; } }
.nav-mobile a { display: block; padding: .95rem var(--pad); border-bottom: 1px solid var(--line); font-size: .98rem; }

/* =============================================================
   6. Hero
   ============================================================= */
.hero { position: relative; }
.hero-banner {
  position: relative; overflow: hidden;
  border-radius: 0;
  min-height: clamp(380px, 58vh, 620px);
  display: grid; align-items: end;
}
.hero-banner img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,18,16,.15) 0%, rgba(20,18,16,.10) 40%, rgba(20,18,16,.72) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max); width: 100%; margin-inline: auto;
  padding: var(--pad); padding-bottom: clamp(1.8rem, 4vw, 3.2rem);
  color: #fff;
}
.hero-content h1 { color: #fff; max-width: 17ch; }
.hero-content .lead { color: rgba(255,255,255,.9); margin-top: .9rem; max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }
.hero-content .btn-ghost { color: #fff; border-color: rgba(255,255,255,.55); }
.hero-content .btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* =============================================================
   7. Trust row
   ============================================================= */
.trust { border-bottom: 1px solid var(--line); background: var(--bg); }
.trust-grid {
  display: grid; grid-template-columns: 1fr; gap: 0;
  max-width: var(--max); margin-inline: auto;
}
@media (min-width: 620px)  { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item {
  padding: 1.4rem var(--pad);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 1000px) { .trust-item { border-bottom: 0; border-right: 1px solid var(--line); } .trust-item:last-child { border-right: 0; } }
.trust-item h3 { margin-bottom: .3rem; }
.trust-item p { font-size: .88rem; color: var(--ink-mute); }
.trust-ico { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.6; margin-bottom: .6rem; }

/* =============================================================
   8. Category cards
   ============================================================= */
.cats { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 720px) { .cats { grid-template-columns: repeat(2, 1fr); } }
.cat {
  position: relative; overflow: hidden; border-radius: var(--r-l);
  aspect-ratio: 16 / 9; display: grid; align-items: end;
}
.cat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.cat:hover img { transform: scale(1.05); }
.cat::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(20,18,16,.75) 100%); }
.cat-label { position: relative; z-index: 2; padding: 1.3rem; color: #fff; }
.cat-label h3 { color: #fff; font-size: 1.3rem; font-weight: 500; }
.cat-label p { font-size: .85rem; color: rgba(255,255,255,.82); }

/* =============================================================
   9. Filtros
   ============================================================= */
.filters-bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem;
  margin-bottom: 1.6rem;
}
.filters-label { font-size: .85rem; color: var(--ink-mute); margin-right: .3rem; }
.filter {
  font-size: .87rem; padding: .5rem 1rem;
  border: 1px solid var(--line); border-radius: 100px;
  background: var(--bg); color: var(--ink);
  transition: all .18s var(--ease);
}
.filter:hover { border-color: var(--ink); }
.filter.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.filter-count { color: var(--ink-mute); font-size: .8rem; margin-left: .3rem; }
.filter.is-active .filter-count { color: rgba(255,255,255,.7); }

/* =============================================================
   10. Grid de obras
   ============================================================= */
.works {
  display: grid; gap: clamp(1rem, 2vw, 1.6rem);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 760px)  { .works { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1180px) { .works { grid-template-columns: repeat(4, 1fr); } }

.work { cursor: pointer; display: flex; flex-direction: column; }
.work-media {
  position: relative; overflow: hidden;
  border-radius: var(--r); background: var(--bg-2);
  aspect-ratio: 4 / 5;
}
.work-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s var(--ease);
}
.work:hover .work-media img, .work:focus-within .work-media img { transform: scale(1.045); }
.work-badge {
  position: absolute; top: .6rem; left: .6rem; z-index: 2;
  background: rgba(255,255,255,.94); color: var(--ink);
  font-size: .7rem; font-weight: 500;
  padding: .25rem .6rem; border-radius: 100px;
}
.work[data-estado="vendida"] .work-media img { filter: grayscale(.5); opacity: .85; }

.work-info { padding-top: .75rem; }
.work-title { font-size: .98rem; font-weight: 500; margin-bottom: .1rem; }
.work-artist { font-size: .84rem; color: var(--ink-mute); }
.work-meta { font-size: .82rem; color: var(--ink-mute); margin-top: .25rem; }
.work-price { font-size: .95rem; font-weight: 600; margin-top: .45rem; }
.work-price .muted { font-weight: 400; font-size: .88rem; }

.works-empty { text-align: center; padding: 3rem 0; color: var(--ink-mute); }

/* =============================================================
   11. Artista
   ============================================================= */
.bio { display: grid; grid-template-columns: 1fr; gap: clamp(1.4rem, 3vw, 3rem); align-items: start; }
@media (min-width: 900px) { .bio { grid-template-columns: 380px 1fr; } }
.bio-portrait img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r-l); }
.bio-portrait figcaption { font-size: .8rem; color: var(--ink-mute); margin-top: .6rem; }
.bio-text p { margin-bottom: 1rem; color: var(--ink-soft); max-width: 66ch; }

.facts { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 1.6rem; border-top: 1px solid var(--line); }
@media (min-width: 620px) { .facts { grid-template-columns: repeat(2, 1fr); column-gap: 2rem; } }
.facts div { padding: .8rem 0; border-bottom: 1px solid var(--line); }
.facts dt { font-size: .78rem; color: var(--ink-mute); }
.facts dd { font-size: .95rem; margin-top: .1rem; }

.bleed-figure { margin-top: clamp(1.8rem, 4vw, 3rem); }
.bleed-figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--r-l); }
.bleed-figure figcaption { font-size: .8rem; color: var(--ink-mute); margin-top: .6rem; }

/* =============================================================
   12. Trayectoria
   ============================================================= */
.timeline { border-top: 1px solid var(--line); }
.timeline li {
  display: grid; grid-template-columns: 1fr; gap: .15rem;
  padding: 1rem 0; border-bottom: 1px solid var(--line);
}
@media (min-width: 900px) {
  .timeline li { grid-template-columns: 5rem 1fr 1fr 7.5rem; gap: 1.5rem; align-items: baseline; }
}
.tl-year { font-size: .88rem; color: var(--accent); font-weight: 500; }
.tl-name { font-size: 1rem; font-weight: 500; }
.tl-place { font-size: .9rem; color: var(--ink-mute); }
.tl-kind { font-size: .78rem; color: var(--ink-mute); }
@media (min-width: 900px) { .tl-kind { text-align: right; } }

.timeline.is-collapsed li:nth-child(n+7) { display: none; }
.tl-more { margin-top: 1.2rem; }

/* =============================================================
   13. Newsletter
   ============================================================= */
.news {
  background: var(--ink); color: #fff;
  border-radius: var(--r-l);
  padding: clamp(1.8rem, 4vw, 3.2rem);
  display: grid; gap: 1.5rem; align-items: center;
}
@media (min-width: 900px) { .news { grid-template-columns: 1.1fr 1fr; } }
.news h2 { color: #fff; }
.news p { color: rgba(255,255,255,.75); margin-top: .6rem; }
.news-form { display: flex; flex-wrap: wrap; gap: .6rem; }
.news-form input {
  flex: 1 1 220px; min-width: 0;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px; padding: .85rem 1.2rem; color: #fff;
}
.news-form input::placeholder { color: rgba(255,255,255,.5); }
.news-form input:focus { outline: none; border-color: #fff; }
.news-form .btn { background: #fff; color: var(--ink); border-color: #fff; }
.news-form .btn:hover { background: var(--peach); border-color: var(--peach); color: var(--ink); }
.news-note { font-size: .78rem; color: rgba(255,255,255,.55); margin-top: .8rem; }

/* =============================================================
   14. Contacto
   ============================================================= */
.contact { display: grid; grid-template-columns: 1fr; gap: clamp(1.6rem, 3vw, 3rem); }
@media (min-width: 900px) { .contact { grid-template-columns: 1fr 1fr; } }
.contact-card {
  background: var(--bg-2); border-radius: var(--r-l);
  padding: clamp(1.4rem, 3vw, 2.2rem);
}
.contact-row { padding: .9rem 0; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: 0; }
.contact-row dt { font-size: .78rem; color: var(--ink-mute); margin-bottom: .15rem; }
.contact-row dd { font-size: .98rem; }
.contact-row a:hover { color: var(--accent); }

.contact-form { display: flex; flex-direction: column; gap: .9rem; }
.contact-form label { display: flex; flex-direction: column; gap: .35rem; font-size: .82rem; color: var(--ink-mute); }
.contact-form input, .contact-form textarea {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r);
  padding: .8rem .95rem; font-size: .95rem; color: var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); }
.contact-form textarea { resize: vertical; }
.contact-form .btn { align-self: flex-start; }
.form-note { font-size: .78rem; color: var(--ink-mute); }

/* =============================================================
   15. Footer
   ============================================================= */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-block: clamp(2.4rem, 5vw, 3.6rem) 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 1.8rem; }
@media (min-width: 620px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer h4 { font-size: .85rem; font-weight: 600; margin-bottom: .8rem; }
.footer ul li { margin-bottom: .5rem; }
.footer a { font-size: .9rem; color: var(--ink-mute); }
.footer a:hover { color: var(--accent); }
.footer-about p { font-size: .9rem; color: var(--ink-mute); max-width: 42ch; }
.footer-brand { font-size: 1.05rem; font-weight: 600; letter-spacing: -0.4px; margin-bottom: .5rem; }
.footer-bottom {
  margin-top: 2.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; justify-content: space-between;
  font-size: .82rem; color: var(--ink-mute);
}

/* =============================================================
   16. Ficha ampliada (dialog)
   ============================================================= */
.sheet {
  position: relative;
  border: 0; padding: 0; background: var(--bg); color: var(--ink);
  border-radius: var(--r-l);
  max-width: min(1180px, 95vw); width: 100%; max-height: 92vh;
  box-shadow: var(--shadow-l);
}
.sheet[open] { margin: auto; }
.sheet::backdrop { background: rgba(25,23,20,.72); backdrop-filter: blur(3px); }
.sheet-inner { display: grid; grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
@media (min-width: 900px) { .sheet-inner { grid-template-columns: 1.25fr 1fr; overflow: hidden; } }
.sheet-media { background: var(--bg-2); display: grid; place-items: center; padding: 1.2rem; }
.sheet-media img { max-height: 84vh; width: auto; max-width: 100%; object-fit: contain; border-radius: var(--r); }
.sheet-info { padding: clamp(1.3rem, 3vw, 2.2rem); overflow-y: auto; }
.sheet-info h3 { font-size: clamp(1.35rem, 2.4vw, 1.9rem); font-weight: 400; letter-spacing: -0.6px; margin-bottom: .2rem; }
.sheet-artist { color: var(--ink-mute); font-size: .92rem; margin-bottom: 1rem; }
.sheet-price { font-size: 1.35rem; font-weight: 600; margin-bottom: 1.2rem; }
.sheet-dl { border-top: 1px solid var(--line); margin-bottom: 1.3rem; }
.sheet-dl > div { display: grid; grid-template-columns: 8.5rem 1fr; gap: 1rem; padding: .6rem 0; border-bottom: 1px solid var(--line); }
.sheet-dl dt { font-size: .82rem; color: var(--ink-mute); }
.sheet-dl dd { font-size: .92rem; }
.sheet-desc { color: var(--ink-soft); margin-bottom: 1.4rem; font-size: .95rem; }
.sheet-cta { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.4rem; }
.sheet-trust { border-top: 1px solid var(--line); padding-top: 1rem; }
.sheet-trust li { font-size: .84rem; color: var(--ink-mute); padding: .25rem 0 .25rem 1.4rem; position: relative; }
.sheet-trust li::before {
  content: ""; position: absolute; left: 0; top: .62rem;
  width: 12px; height: 7px; border-left: 1.6px solid var(--ok); border-bottom: 1.6px solid var(--ok);
  transform: rotate(-45deg);
}
.sheet-close {
  position: absolute; top: .7rem; right: .7rem; z-index: 5;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.94); color: var(--ink);
  display: grid; place-items: center; font-size: 1rem;
  box-shadow: var(--shadow);
}
.sheet-close:hover { background: var(--ink); color: #fff; }
.sheet-nav { display: flex; gap: .5rem; margin-top: 1.2rem; }
.sheet-nav button {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 1rem;
}
.sheet-nav button:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* =============================================================
   17. Cookies
   ============================================================= */
.cookies {
  position: fixed; z-index: 9500; left: 1rem; right: 1rem; bottom: 1rem;
  max-width: 460px;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-l);
  box-shadow: var(--shadow-l);
  padding: 1.3rem;
  transform: translateY(140%);
  transition: transform .45s var(--ease);
}
.cookies.is-open { transform: none; }
.cookies h3 { margin-bottom: .5rem; }
.cookies p { font-size: .87rem; color: var(--ink-mute); margin-bottom: 1rem; }
.cookies p a { color: var(--accent); text-decoration: underline; }
.cookies-actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookies-opts { margin: 0 0 1rem; border-top: 1px solid var(--line); }
.cookies-opts label {
  display: flex; gap: .7rem; align-items: flex-start;
  padding: .8rem 0; border-bottom: 1px solid var(--line);
  font-size: .87rem;
}
.cookies-opts input { margin-top: .25rem; accent-color: var(--accent); }
.cookies-opts span { display: block; font-size: .8rem; color: var(--ink-mute); }
.cookies-opts strong { font-weight: 500; }
[hidden] { display: none !important; }

/* =============================================================
   18. Reveals
   ============================================================= */
.js-on .reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.js-on .reveal.is-visible { opacity: 1; transform: none; }

/* =============================================================
   19. Página de privacidad
   ============================================================= */
.legal { max-width: 74ch; }
.legal h2 { margin-top: 2.2rem; margin-bottom: .7rem; font-size: 1.3rem; }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: .8rem; font-size: .95rem; }
.legal ul { list-style: disc; padding-left: 1.3rem; }
.legal a { color: var(--accent); text-decoration: underline; }
