/* Vitrine OSTAL — https://ostal.xyz
   Palette du kit identite visuelle :
   terracotta #B4552D, anthracite #2B2B2B, gris #8A8A8A */

:root {
  --terracotta: #B4552D;
  --anthracite: #2B2B2B;
  --gris: #8A8A8A;
  --fond: #FDFBF9;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Avenir Next", Avenir, "Segoe UI", system-ui, sans-serif;
  color: var(--anthracite);
  background: var(--fond);
  line-height: 1.65;
}

.site-header {
  max-width: 42rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 1rem;
}

.site-header a {
  border-bottom: none;
}

.logo {
  display: block;
  width: 240px;
  max-width: 60vw;
  height: auto;
}

main {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

section {
  margin: 2.5rem 0;
}

h1 {
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  margin: 0 0 0.25rem;
}

.baseline {
  font-size: 1.15rem;
  color: var(--gris);
  margin: 0 0 1.5rem;
}

.intro {
  font-size: 1.05rem;
}

h2 {
  font-size: 1.3rem;
  margin: 0 0 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 3px solid var(--terracotta);
  display: inline-block;
}

ul {
  padding-left: 1.25rem;
}

li {
  margin: 0.4rem 0;
}

a {
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

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

.site-footer {
  background: var(--anthracite);
  color: #EDEAE6;
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0.35rem 0;
}

.site-footer a {
  color: #EDEAE6;
}

.site-footer a:hover,
.site-footer a:focus {
  color: #FFFFFF;
}

.site-footer .cookies {
  color: var(--gris);
}
