:root {
  --navy: #0f2a4a;
  --blue: #1f5fa8;
  --orange: #f28c28;
  --orange-dark: #d9741a;
  --green: #2f8f5b;
  --ink: #17263a;
  --muted: #5b6b7f;
  --bg: #ffffff;
  --tint: #f4f7fb;
  --line: #e3e9f1;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(15, 42, 74, .10);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { line-height: 1.15; margin: 0; letter-spacing: -.02em; color: var(--navy); }
p { margin: 0 0 1rem; }

.wrap { width: min(1120px, 100% - 2rem); margin-inline: auto; }
.muted { color: var(--muted); }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__in { display: flex; align-items: center; justify-content: space-between; min-height: 64px; gap: 1rem; }
.nav__links { display: flex; align-items: center; gap: 1.6rem; font-weight: 600; font-size: .95rem; }
.nav__links a { text-decoration: none; color: var(--ink); }
.nav__links a:not(.btn):hover { color: var(--blue); }

.logo { text-decoration: none; display: inline-flex; align-items: baseline; gap: .35rem; font-weight: 800; letter-spacing: -.02em; }
.logo__i { color: var(--blue); font-size: 1.5rem; }
.logo__d { color: var(--orange); font-size: 1.05rem; letter-spacing: .04em; }
.logo--light .logo__i { color: #fff; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 1.5rem; border-radius: 999px;
  background: var(--orange); color: #fff !important; font-weight: 700; text-decoration: none;
  box-shadow: 0 6px 16px rgba(242, 140, 40, .32);
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn--sm { padding: .55rem 1.1rem; font-size: .9rem; box-shadow: none; }
.btn--ghost { background: transparent; color: var(--navy) !important; box-shadow: inset 0 0 0 2px var(--line); }
.btn--ghost:hover { background: var(--tint); box-shadow: inset 0 0 0 2px var(--blue); }

/* Hero */
.hero {
  background:
    radial-gradient(900px 400px at 85% -10%, rgba(31, 95, 168, .12), transparent 60%),
    radial-gradient(700px 380px at -10% 55%, rgba(242, 140, 40, .12), transparent 60%),
    var(--bg);
  padding-block: clamp(2.5rem, 6vw, 5.5rem);
}
.hero__in { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .4rem .9rem; border-radius: 999px; background: var(--tint);
  font-size: .85rem; font-weight: 600; color: var(--muted); margin-bottom: 1.25rem;
}
.dot { width: .6rem; height: .6rem; border-radius: 50%; background: var(--muted); }
.dot.is-open { background: var(--green); box-shadow: 0 0 0 4px rgba(47, 143, 91, .2); }
.dot.is-closed { background: #c2453a; }
.hero h1 { font-size: clamp(2.2rem, 5.2vw, 3.8rem); font-weight: 800; }
.hero h1 em { font-style: normal; color: var(--orange); }
.lead { font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: var(--muted); margin-top: 1.25rem; max-width: 34em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.75rem; }
.hero__facts { list-style: none; padding: 0; margin: 2.25rem 0 0; display: flex; flex-wrap: wrap; gap: 2rem; }
.hero__facts li { display: flex; flex-direction: column; }
.hero__facts strong { font-size: 1.25rem; color: var(--navy); }
.hero__facts span { font-size: .88rem; color: var(--muted); }

.hero__card {
  background: #fff; border: 1px solid var(--line); border-radius: 26px;
  padding: 2rem; box-shadow: 14px 14px 0 rgba(242, 140, 40, .9); justify-self: center; width: 100%; max-width: 440px;
}
.hero__card dl { margin: 0 0 1.5rem; display: grid; gap: 1.1rem; }
.hero__card dt { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.hero__card dd { margin: .15rem 0 0; font-weight: 600; color: var(--navy); }
.tel { text-decoration: none; font-weight: 800; color: var(--blue); font-size: 1.5rem; letter-spacing: -.01em; }
.tel:hover { color: var(--orange-dark); }
.btn--block { display: flex; width: 100%; }

/* Visuel illustratif (image IA) — bandeau pleine largeur */
.visual { margin-top: clamp(1rem, 3vw, 2rem); }
.visual__fig { margin: 0; position: relative; overflow: hidden; height: clamp(300px, 50vw, 700px); background: var(--navy); }
.visual__fig img {
  width: 100%; height: 100%; object-fit: cover; object-position: 30% 30%;
  transform-origin: 30% 40%; animation: kenburns 1.6s ease-out both;
}
.visual__fig::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(15, 42, 74, 0) 55%, rgba(15, 42, 74, .82) 100%),
    linear-gradient(90deg, rgba(15, 42, 74, 0) 55%, rgba(15, 42, 74, .28) 100%);
}
.visual__badge {
  position: absolute; z-index: 2; top: 18px; right: max(1rem, calc((100% - 1120px) / 2));
  background: rgba(15, 42, 74, .85); color: #fff; font-size: .78rem; font-weight: 700;
  padding: .35rem .8rem; border-radius: 999px; backdrop-filter: blur(6px);
}
.visual__fig figcaption {
  position: absolute; z-index: 2; left: 0; right: 0; bottom: 0;
  padding: 1.25rem max(1rem, calc((100% - 1120px) / 2)) 1.1rem;
  display: flex; align-items: flex-start; gap: .55rem;
  font-size: .85rem; color: rgba(255, 255, 255, .92);
}
.visual__fig figcaption svg { flex: none; margin-top: .2rem; }
@keyframes kenburns { from { transform: scale(1.07); } to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .visual__fig img { animation: none; } }

/* Stat band */
.stat { background: var(--navy); color: #fff; }
.stat__in { display: flex; align-items: center; gap: 2rem; padding-block: 2.25rem; flex-wrap: wrap; }
.stat__num { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; color: var(--orange); margin: 0; letter-spacing: -.03em; line-height: 1; }
.stat__txt { margin: 0; max-width: 40em; font-size: 1.05rem; color: #d5e0ee; flex: 1 1 280px; }

/* Sections */
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--tint { background: var(--tint); }
.kicker { text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 800; color: var(--orange-dark); margin-bottom: .75rem; }
.section h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 800; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: center; }
.two--top { align-items: start; row-gap: 1rem; }
.two--top > div:first-child { grid-row: 1 / span 2; }
.prose p { font-size: 1.08rem; color: #33445a; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.25rem; }
.card { background: #fff; border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow); border: 1px solid var(--line); }
.card h3 { font-size: 1.15rem; margin: 1.1rem 0 .5rem; }
.card p { margin: 0; color: var(--muted); }
.card__ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; }
.card__ic svg { width: 26px; height: 26px; }
.card__ic--green { background: rgba(47, 143, 91, .12); color: var(--green); }
.card__ic--orange { background: rgba(242, 140, 40, .15); color: var(--orange-dark); }
.card__ic--blue { background: rgba(31, 95, 168, .12); color: var(--blue); }

/* Hours */
.hours { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.hours th, .hours td { padding: .9rem 1.25rem; text-align: left; border-bottom: 1px solid var(--line); }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours th { font-weight: 600; }
.hours td { text-align: right; font-variant-numeric: tabular-nums; color: var(--muted); }
.hours td i { font-style: normal; color: var(--line); margin-inline: .2rem; }
.hours td i:last-child, .hours td i:only-child { color: var(--orange-dark); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-left: .4rem; }
.hours tr.closed td { color: #c2453a; font-weight: 600; }
.hours tr.today { background: rgba(242, 140, 40, .1); }
.hours tr.today th, .hours tr.today td { color: var(--navy); font-weight: 800; }
.status { display: inline-block; margin-top: .75rem; padding: .45rem 1rem; border-radius: 999px; font-weight: 700; font-size: .92rem; }
.status.is-open { background: rgba(47, 143, 91, .14); color: #1f6e43; }
.status.is-closed { background: rgba(194, 69, 58, .12); color: #a5352b; }

.note { grid-column: 2; display: flex; align-items: center; gap: .75rem; margin: 0; padding: .9rem 1.25rem; border-radius: 14px; background: rgba(31, 95, 168, .08); color: var(--navy); }
.note svg { flex: none; color: var(--blue); }

/* Access */
.access { display: grid; grid-template-columns: .8fr 1.2fr; gap: 1.5rem; margin-top: 2rem; align-items: stretch; }
.access__info { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); display: flex; flex-direction: column; align-items: flex-start; }
.access__tel { margin: 0 0 1.25rem; }
.access address { font-style: normal; font-size: 1.15rem; margin-bottom: 1rem; }
.map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); min-height: 320px; background: var(--line); }
.map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* Footer */
.foot { background: var(--navy); color: #c9d6e6; padding-block: 2.5rem; }
.foot__in { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 1.75rem 3rem; }
.foot p { margin: 0; font-size: .92rem; }
.foot a { color: #fff; }
.foot__addr { margin-top: .75rem !important; }
.foot__t { font-weight: 700; color: #fff; margin-bottom: .6rem !important; }
.foot__social ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .35rem; font-size: .92rem; }
.foot__social span { display: inline-block; min-width: 5.5rem; color: #8ea3bd; }
.foot__copy { color: #8ea3bd; width: 100%; border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.25rem; }

/* Responsive */
@media (max-width: 860px) {
  .hero__in, .two, .access { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .note { grid-column: 1; }
  .hero__card { max-width: none; }
  .hero__card { box-shadow: 8px 8px 0 rgba(242, 140, 40, .9); }
  .nav__links a:not(.btn) { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
