/* Fichas Bonaerenses — tokens & reset */
:root {
  --porcelain: #f7f5f1;
  --porcelain-deep: #ebe7e0;
  --navy: #1a2a5a;
  --navy-mid: #24366e;
  --navy-soft: #2e3f6e;
  --ink: #141c2e;
  --muted: #5a6478;
  --accent: #c43036;
  --accent-deep: #a0262c;
  --accent-soft: rgba(196, 48, 54, 0.12);
  --white: #ffffff;
  --line: rgba(26, 42, 90, 0.12);
  --shadow: 0 12px 40px rgba(26, 42, 90, 0.12);
  --shadow-soft: 0 8px 24px rgba(26, 42, 90, 0.08);
  --radius: 16px;
  --radius-pill: 999px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --container: 1120px;
  --font: "DM Sans", "Segoe UI", system-ui, sans-serif;
  --font-display: "DM Sans", "Segoe UI", system-ui, sans-serif;
  --grad-hero: linear-gradient(135deg, #1a2a5a 0%, #2e3f6e 45%, #c43036 140%);
  --grad-cta: linear-gradient(135deg, #c43036 0%, #e04a50 100%);
  --grad-card: linear-gradient(180deg, #ffffff 0%, #f7f5f1 100%);
  --age-h: 36px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--porcelain);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--accent-deep);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 var(--space-4);
}

h1 { font-size: clamp(1.85rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.45rem, 2.5vw, 1.9rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 var(--space-4); max-width: 70ch; }

ul, ol { margin: 0 0 var(--space-4); padding: 0; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Custom list glyphs (chip diamond motif) */
.list-motif {
  list-style: none;
}

.list-motif > li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-3);
}

.list-motif > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55em;
  height: 0.55em;
  background: var(--accent);
  transform: rotate(45deg);
  border-radius: 1px;
}

/* Offset colour block imagery treatment */
.img-offset {
  position: relative;
  display: inline-block;
  margin: var(--space-5) 0;
}

.img-offset::before {
  content: "";
  position: absolute;
  inset: 12px -12px -12px 12px;
  background: var(--navy);
  border-radius: var(--radius);
  z-index: 0;
}

.img-offset img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
}

.img-offset--accent::before {
  background: var(--accent);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
