/* Small, script-free information pages; same warm neutral palette as the salon. */
:root {
  color-scheme: light dark;
  font-family: system-ui, sans-serif;
  line-height: 1.65;
  color: #1c1c1e;
  background: #f4f3f0;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
main {
  max-width: 46rem;
  margin: auto;
  padding: 2.5rem 1.4rem 5rem;
}
nav {
  margin-bottom: 2rem;
}
h1 {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  line-height: 1.2;
}
h2 {
  margin-top: 2rem;
  font-size: 1.25rem;
}
a {
  color: inherit;
  text-underline-offset: 0.2em;
}
a:hover {
  text-decoration-thickness: 0.15em;
}
:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 4px;
}
footer {
  margin-top: 3rem;
  border-top: 1px solid currentColor;
  padding-top: 1rem;
}
@media (prefers-color-scheme: dark) {
  :root {
    color: #f5f5f7;
    background: #1c1c1e;
  }
}

dt {
  font-weight: 600;
}
dd {
  margin: 0 0 0.75rem;
  overflow-wrap: anywhere;
}
