/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, h5, h6, p, ol, ul, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}
figure { margin: 0; }   /* PIEGE PROD #5 */
[hidden] { display: none !important; }   /* PIEGE PROD #8 */

html {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h-mobile) + 8px);
}
@media (min-width: 768px) {
  html { scroll-padding-top: calc(var(--header-h) + 8px); }
}

body {
  min-height: 100dvh;
  background: var(--bg);
  overflow-x: clip;       /* PIEGE PROD #11 — clip et pas hidden, overscroll-behavior reste auto */
  max-width: 100vw;
}

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

a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--accent); }

button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

ul, ol { list-style: none; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 500;
  color: var(--text);
  line-height: 1.15;
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 6vw, 4rem); line-height: 1.05; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); letter-spacing: -0.005em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
p  { color: var(--text-2); font-size: 1rem; }

em { font-style: italic; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .container { padding-inline: 40px; }
}

section { padding: 48px 0; }
@media (min-width: 768px) { section { padding: 80px 0; } }

/* eyebrow uppercase */
.eyebrow {
  font-family: var(--ff-ui);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}

/* lien google maps texte */
.txt-link {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
}
.txt-link:hover { border-bottom-color: var(--accent); }

.section-head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head p { margin-top: 14px; font-size: 1.05rem; max-width: 56ch; }
