/* LeLiLa – warm, classic, accessible */

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

:root {
  --color-bg: #fdf5ed;
  --color-text: #3a3530;
  --color-muted: #6b6259;
  --color-subtle: #faeee2;
  --color-border: #e8d5c4;
  --color-link: #5a4f43;
  --font-body: Palatino, "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --max-width: 36rem;
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-text);
  color: var(--color-bg);
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip-link:focus {
  left: 0;
}

body {
  font-family: var(--font-body);
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--color-text);
  background: var(--color-bg);
  padding: 3rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

h1 {
  font-size: 2.4rem;
  font-weight: normal;
  letter-spacing: 0.2em;
}

.subtitle {
  font-size: 1.05rem;
  color: var(--color-muted);
  margin-top: 0.3rem;
  letter-spacing: 0.08em;
}

section {
  margin-bottom: 2.5rem;
}

h2 {
  font-size: 1.3rem;
  font-weight: normal;
  color: var(--color-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}

blockquote {
  font-style: italic;
  font-size: 1.25rem;
  text-align: center;
  color: var(--color-muted);
  padding: 1.5rem;
  background: var(--color-subtle);
  border-radius: 2px;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  padding: 0.4rem 0 0.4rem 1.2rem;
  position: relative;
}

li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--color-muted);
}

address {
  font-style: normal;
  margin: 0.5rem 0;
}

a {
  color: var(--color-link);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover,
a:focus {
  color: var(--color-text);
}

a:focus-visible {
  outline: 3px solid var(--color-muted);
  outline-offset: 2px;
}

footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-muted);
}
