/* ==========================================================================
   Les Jardins de Kerfouler | refonte 2026
   Design system : bleu #0072bc / #2a87c4, rose #e34599, vert #006649
   Typo : Cormorant Garamond (display) + Outfit (texte et UI)
   ========================================================================== */

:root {
  --paper: #f8faf7;
  --paper-2: #eef3ec;
  --blue-tint: #e9f1f8;
  --card: #ffffff;
  --ink: #16242e;
  --ink-2: #3d5260;
  --ink-3: #5e7484;
  --blue: #0072bc;
  --blue-deep: #005a97;
  --blue-soft: #2a87c4;
  --navy: #0c2d43;
  --navy-2: #0a2436;
  --pink: #e34599;
  --pink-deep: #c22f7f;
  --green: #0f7a4a;
  --green-bg: #e0f2e7;
  --green-ink: #0d6a41;
  --red: #c04434;
  --red-bg: #fcebe7;
  --red-ink: #a4392a;
  --gold: #b98a2f;
  --line: rgba(22, 36, 46, .10);
  --line-strong: rgba(22, 36, 46, .17);
  --shadow-soft: 0 24px 60px -24px rgba(12, 45, 67, .25);
  --shadow-lift: 0 14px 34px -14px rgba(12, 45, 67, .28);
  --shadow-frame: 0 30px 70px -30px rgba(12, 45, 67, .35);
  --r-outer: 26px;
  --r-inner: 18px;
  --r-small: 12px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-2: cubic-bezier(.32, .72, 0, 1);
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Outfit", "Century Gothic", "Avenir Next", sans-serif;
  --head-h: 78px;
  --wrap: 1180px;
  color-scheme: light;
}

/* ---------- Base ---------- */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--font-body);
  font-size: 1.065rem;
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* grain tres subtil, fixe, sans interaction */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: .022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 .5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 5.6vw, 4.1rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); letter-spacing: -.008em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color .22s var(--ease); }
a:hover { color: var(--pink-deep); }

strong, b { color: var(--ink); font-weight: 600; }

::selection { background: rgba(0, 114, 188, .18); }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 300;
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
}
.skip-link:focus { left: 12px; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(20px, 4vw, 36px); }

.section { padding-block: clamp(4.2rem, 9vw, 7.8rem); position: relative; }
.section--tint { background: var(--paper-2); }
.section--blue { background: var(--blue-tint); }

.center { text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
}

.lead { font-size: clamp(1.12rem, 1.6vw, 1.28rem); line-height: 1.72; color: var(--ink-2); }

.muted { color: var(--ink-3); }

.hairline { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* ---------- Icones ---------- */

.ic {
  width: 22px;
  height: 22px;
  flex: none;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ic--lg { width: 27px; height: 27px; }

/* ---------- Boutons ---------- */

.btn {
  --btn-bg: var(--blue);
  --btn-bg-2: var(--blue-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--btn-bg);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  padding: 15px 15px 15px 26px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  touch-action: manipulation;
  box-shadow: 0 10px 24px -12px rgba(0, 90, 151, .55);
  transition: background .28s var(--ease-2), transform .28s var(--ease-2), box-shadow .28s var(--ease-2);
}
.btn:hover { background: var(--btn-bg-2); color: #fff; transform: translateY(-1px); }
.btn:active { transform: scale(.975); }
.btn .btn-ic {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .28s var(--ease-2), background .28s var(--ease-2);
}
.btn .btn-ic .ic { width: 17px; height: 17px; stroke-width: 2; }
.btn:hover .btn-ic { transform: translate(2px, -1px); background: rgba(255, 255, 255, .26); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line-strong);
  padding: 15px 26px;
}
.btn--ghost:hover { background: rgba(22, 36, 46, .05); color: var(--ink); transform: translateY(-1px); }

.btn--light {
  --btn-bg: #fff;
  --btn-bg-2: #f1f6fa;
  color: var(--navy);
  box-shadow: 0 12px 28px -14px rgba(0, 0, 0, .45);
}
.btn--light:hover { color: var(--navy); }
.btn--light .btn-ic { background: rgba(12, 45, 67, .1); }
.btn--light:hover .btn-ic { background: rgba(12, 45, 67, .16); }

.btn--pink { --btn-bg: var(--pink-deep); --btn-bg-2: #a82369; box-shadow: 0 10px 24px -12px rgba(194, 47, 127, .55); }

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}
.link-more .ic { width: 18px; height: 18px; transition: transform .25s var(--ease-2); }
.link-more:hover .ic { transform: translateX(4px); }

/* ---------- Bandeau vente ---------- */

.sale-bar { background: var(--navy-2); color: rgba(255, 255, 255, .92); font-size: .92rem; }
.sale-bar .wrap {
  display: flex;
  align-items: center;
  gap: 10px 20px;
  flex-wrap: wrap;
  padding-block: 10px;
}
.sale-bar .sale-txt { font-weight: 500; }
.sale-bar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ffb3d9;
  font-weight: 600;
  text-decoration: none;
}
.sale-bar a .ic { width: 16px; height: 16px; transition: transform .25s var(--ease-2); }
.sale-bar a:hover { color: #fff; }
.sale-bar a:hover .ic { transform: translateX(3px); }
.sale-bar .sale-x {
  margin-left: auto;
  width: 34px;
  height: 34px;
  flex: none;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  transition: background .2s var(--ease);
}
.sale-bar .sale-x:hover { background: rgba(255, 255, 255, .22); }
.sale-bar .sale-x .ic { width: 15px; height: 15px; }

/* ---------- Header ---------- */

.site-head {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--head-h);
  display: flex;
  align-items: center;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
  background: rgba(248, 250, 247, .82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.site-head.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 12px 34px -22px rgba(12, 45, 67, .35);
}
.site-head .wrap {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.04;
  text-decoration: none;
  color: var(--blue-soft);
  font-weight: 500;
  letter-spacing: .015em;
  flex: none;
}
.brand .b1 { font-size: 1.18rem; }
.brand .b2 { font-size: 1.18rem; }
.brand .b2 span { color: var(--ink-3); font-size: .95rem; font-weight: 400; margin-right: 2px; }
.brand:hover { color: var(--blue); }

.main-nav { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 26px); margin-left: auto; }
.main-nav a {
  position: relative;
  color: var(--ink);
  font-size: .93rem;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 2px;
  white-space: nowrap;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--pink);
  transition: right .3s var(--ease-2);
}
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after { right: 0; }
.main-nav a[aria-current="page"] { color: var(--blue); }
.main-nav a[aria-current="page"]::after { right: 0; background: var(--blue); }

.lang-switch { display: flex; align-items: center; gap: 4px; margin-left: clamp(4px, 1vw, 10px); flex: none; }
.lang-switch a {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--ink-3);
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 999px;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.lang-switch a:hover { color: var(--blue); background: rgba(0, 114, 188, .08); }
.lang-switch a.on { color: #fff; background: var(--blue); }

.burger {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  cursor: pointer;
  position: relative;
  z-index: 260;
  touch-action: manipulation;
}
.burger span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform .35s var(--ease-2), top .35s var(--ease-2), opacity .2s;
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 23px; }
.burger span:nth-child(3) { top: 29px; }
body.menu-open .burger span:nth-child(1) { top: 23px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(248, 250, 247, .96);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px clamp(26px, 8vw, 60px) 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease), visibility 0s .4s;
}
body.menu-open .menu-overlay { opacity: 1; visibility: visible; transition: opacity .4s var(--ease); }
.menu-overlay nav { display: flex; flex-direction: column; gap: 6px; }
.menu-overlay nav a {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 6.4vw, 2.6rem);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s var(--ease), transform .5s var(--ease-2), color .2s;
}
.menu-overlay nav a .ic { width: 24px; height: 24px; color: var(--blue); }
.menu-overlay nav a:hover { color: var(--blue); }
.menu-overlay nav a[aria-current="page"] { color: var(--blue); }
body.menu-open .menu-overlay nav a { opacity: 1; transform: translateY(0); }
body.menu-open .menu-overlay nav a:nth-child(1) { transition-delay: .06s; }
body.menu-open .menu-overlay nav a:nth-child(2) { transition-delay: .11s; }
body.menu-open .menu-overlay nav a:nth-child(3) { transition-delay: .16s; }
body.menu-open .menu-overlay nav a:nth-child(4) { transition-delay: .21s; }
body.menu-open .menu-overlay nav a:nth-child(5) { transition-delay: .26s; }
body.menu-open .menu-overlay nav a:nth-child(6) { transition-delay: .31s; }
.menu-overlay .menu-langs { margin-top: 30px; display: flex; gap: 8px; }
.menu-overlay .menu-langs a {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-decoration: none;
  color: var(--ink-2);
  padding: 9px 15px;
  border-radius: 999px;
  border: 1.5px solid var(--line-strong);
}
.menu-overlay .menu-langs a.on { background: var(--blue); border-color: var(--blue); color: #fff; }
.menu-overlay .menu-foot { margin-top: 26px; font-size: .9rem; color: var(--ink-3); }
.menu-overlay .menu-foot a { color: var(--ink-2); }

/* ---------- Hero accueil ---------- */

.hero {
  padding-top: clamp(2.4rem, 5.5vw, 4.6rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -240px;
  right: -260px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 135, 196, .13), transparent 62%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -300px;
  left: -240px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 69, 153, .07), transparent 60%);
  pointer-events: none;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
  position: relative;
}
.hero-copy h1 { margin-bottom: .55em; }
.hero-copy .lead { max-width: 33em; margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 34px;
  gap: 0;
}
.frame {
  background: rgba(255, 255, 255, .6);
  border: 1px solid rgba(22, 36, 46, .08);
  border-radius: var(--r-outer);
  padding: 9px;
  box-shadow: var(--shadow-frame);
}
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--r-outer) - 9px);
}
.collage .frame { transition: transform .6s var(--ease-2); }
.collage .frame:hover { transform: translateY(-5px); }
.collage .f1 { grid-column: 1 / 9; grid-row: 1 / 12; z-index: 2; }
.collage .f2 { grid-column: 8 / 13; grid-row: 3 / 9; z-index: 3; transform: rotate(1.6deg); }
.collage .f2:hover { transform: rotate(1.6deg) translateY(-5px); }
.collage .f3 { grid-column: 6 / 12; grid-row: 10 / 15; z-index: 4; transform: rotate(-1.2deg); }
.collage .f3:hover { transform: rotate(-1.2deg) translateY(-5px); }

/* ---------- Barre statut du jour ---------- */

.today-bar { border-block: 1px solid var(--line); background: #fff; }
.today-bar .wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-block: 15px;
  font-size: .96rem;
}
.today-bar .t-date { font-weight: 600; color: var(--ink); }
.today-bar .t-sep { width: 1px; height: 20px; background: var(--line-strong); }
.today-bar .t-link { margin-left: auto; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: .93rem;
  padding: 7px 15px;
  border-radius: 999px;
}
.status-pill .dot { width: 9px; height: 9px; border-radius: 50%; background: currentColor; }
.status-pill.is-open { background: var(--green-bg); color: var(--green-ink); }
.status-pill.is-open .dot { box-shadow: 0 0 0 0 rgba(15, 122, 74, .5); animation: pulse 2.4s infinite; }
.status-pill.is-closed { background: var(--red-bg); color: var(--red-ink); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(15, 122, 74, .45); }
  70% { box-shadow: 0 0 0 8px rgba(15, 122, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(15, 122, 74, 0); }
}
.status-next { color: var(--ink-2); }

/* ---------- Sections editoriales ---------- */

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(34px, 5.5vw, 76px); align-items: center; }
.split--rev { grid-template-columns: .95fr 1.05fr; }
.split--rev .split-media { order: -1; }
.split-media .frame { display: block; }
.split-media .frame img { aspect-ratio: 4 / 3; }
.split-media .frame.tall img { aspect-ratio: 3 / 3.6; }
.split-copy h2 { margin-bottom: .6em; }
.split-copy .actions { margin-top: 1.8rem; display: flex; gap: 14px; flex-wrap: wrap; }

.media-duo { position: relative; }
.media-duo .frame + .frame {
  position: absolute;
  width: 52%;
  right: -6%;
  bottom: -13%;
  transform: rotate(2deg);
  border-color: rgba(22, 36, 46, .1);
}

/* ---------- Chiffres ---------- */

.stats { display: flex; flex-wrap: wrap; justify-content: center; }
.stats > div {
  flex: 1 1 200px;
  text-align: center;
  padding: 12px 26px;
  border-left: 1px solid var(--line);
}
.stats > div:first-child { border-left: 0; }
.stats .n { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.3rem, 4vw, 3.2rem); color: var(--blue); line-height: 1.1; }
.stats .l { font-size: .95rem; color: var(--ink-3); }

/* ---------- Bento jardins ---------- */

.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.tile {
  position: relative;
  border-radius: var(--r-outer);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.tile img { width: 100%; height: 100%; object-fit: cover; flex: 1; min-height: 0; transition: transform 1.1s var(--ease); }
.tile:hover img { transform: scale(1.045); }
.tile figcaption {
  padding: 14px 20px 16px;
  background: #fff;
  border-top: 1px solid var(--line);
}
.tile figcaption .t-name { display: block; font-family: var(--font-display); font-size: 1.28rem; font-weight: 600; color: var(--ink); line-height: 1.2; }
.tile figcaption .t-mood { display: block; font-size: .85rem; color: var(--ink-3); }
.tile.t-a { grid-column: 1 / 6; grid-row: span 2; min-height: 460px; }
.tile.t-b { grid-column: 6 / 10; min-height: 240px; }
.tile.t-c { grid-column: 10 / 13; min-height: 240px; }
.tile.t-d { grid-column: 6 / 9; min-height: 230px; }
.tile.t-e { grid-column: 9 / 13; min-height: 230px; }

.tile--list {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  padding: 26px 28px;
  justify-content: flex-start;
}
.tile--list h3 { color: #fff; margin-bottom: 12px; }
.tile--list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  gap: 26px;
  font-size: .92rem;
  line-height: 1.5;
}
.tile--list li { break-inside: avoid; padding: 4.5px 0; border-bottom: 1px solid rgba(255, 255, 255, .12); color: rgba(255, 255, 255, .88); }
.tile--list li:last-child { border-bottom: 0; }

/* ---------- Bande immersive ---------- */

.band {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding-block: clamp(4.6rem, 10vw, 8.4rem);
}
.band .band-bg { position: absolute; inset: 0; }
.band .band-bg img { width: 100%; height: 100%; object-fit: cover; }
.band .band-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(10, 32, 48, .55) 0%, rgba(10, 32, 48, 0) 42%),
    linear-gradient(100deg, rgba(10, 32, 48, .88) 6%, rgba(10, 32, 48, .55) 46%, rgba(10, 32, 48, .16) 78%);
}
.band .wrap { position: relative; z-index: 2; }
.band-card { max-width: 560px; }
.band-card h2 { color: #fff; }
.band-card p { color: rgba(255, 255, 255, .88); }
.band-card .actions { margin-top: 1.7rem; display: flex; gap: 14px; flex-wrap: wrap; }
.band-meta { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 1.6rem; font-size: .95rem; color: rgba(255, 255, 255, .85); }
.band-meta span { display: inline-flex; align-items: center; gap: 9px; }
.band-meta .ic { color: #9ccbeb; }

/* ---------- Mosaique galerie ---------- */

.mosaic { columns: 3; column-gap: 18px; }
.mosaic a {
  display: block;
  margin-bottom: 18px;
  border-radius: var(--r-inner);
  overflow: hidden;
  position: relative;
  break-inside: avoid;
}
.mosaic img { width: 100%; transition: transform .9s var(--ease), filter .9s var(--ease); }
.mosaic a:hover img { transform: scale(1.04); }

/* ---------- Presse ---------- */

.press { text-align: center; }
.press ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 34px;
}
.press li { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--ink-3); }
.press li a { color: inherit; text-decoration: none; }
.press li a:hover { color: var(--blue); }
.press li .y { font-family: var(--font-body); font-size: .8rem; font-weight: 500; color: var(--ink-3); margin-left: 7px; }

/* ---------- CTA final ---------- */

.cta-final { background: linear-gradient(135deg, var(--navy) 0%, #114a74 60%, #16628f 100%); color: #fff; overflow: hidden; position: relative; }
.cta-final::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -140px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 69, 153, .22), transparent 65%);
}
.cta-final h2 { color: #fff; }
.cta-final .lead { color: rgba(255, 255, 255, .85); }
.cta-final .wrap { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 66px); align-items: center; }
.cta-final .actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 1.9rem; }

/* ---------- Widget statut (carte) ---------- */

.shell {
  background: rgba(22, 36, 46, .045);
  border: 1px solid var(--line);
  border-radius: var(--r-outer);
  padding: 8px;
}
.shell-core {
  background: var(--card);
  border-radius: calc(var(--r-outer) - 8px);
  border: 1px solid rgba(22, 36, 46, .06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
  padding: clamp(20px, 3vw, 30px);
}
.cta-final .shell { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .18); }

.status-card .sc-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.status-card .sc-date { font-weight: 600; color: var(--ink); }
.status-card .sc-next { margin: 4px 0 0; color: var(--ink-2); font-size: .98rem; }

.day-track { margin-top: 18px; }
.day-track .dt-bar {
  position: relative;
  height: 12px;
  border-radius: 999px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  overflow: visible;
}
.day-track .dt-fill {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #35a06f, #0f7a4a);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s var(--ease);
}
.day-track.closed .dt-fill { background: linear-gradient(90deg, #d8807a, #c04434); }
.day-track .dt-now {
  position: absolute;
  top: -7px;
  width: 2.5px;
  height: 26px;
  border-radius: 3px;
  background: var(--navy);
  transform: translateX(-50%);
}
.day-track .dt-scale { display: flex; justify-content: space-between; font-size: .8rem; color: var(--ink-3); margin-top: 8px; }

/* ---------- Liste hebdo ---------- */

.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 4px;
  border-bottom: 1px solid var(--line);
  font-size: .99rem;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .d { flex: 1; color: var(--ink-2); }
.hours-list .h { font-weight: 600; font-variant-numeric: tabular-nums; }
.hours-list li.open .h { color: var(--green-ink); }
.hours-list li.closed .h { color: var(--red-ink); font-weight: 500; }
.hours-list li.today { background: var(--blue-tint); border-radius: var(--r-small); padding-inline: 14px; border-bottom-color: transparent; }
.hours-list li.today .d { color: var(--ink); font-weight: 600; }

/* ---------- Calendrier mensuel ---------- */

.cal { user-select: none; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cal-title { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--ink); text-transform: capitalize; }
.cal-nav { display: flex; gap: 8px; }
.cal-nav button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1.5px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s var(--ease), transform .2s var(--ease), opacity .2s;
  touch-action: manipulation;
}
.cal-nav button:hover { background: var(--paper-2); }
.cal-nav button:active { transform: scale(.94); }
.cal-nav button:disabled { opacity: .35; cursor: default; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 7px; }
.cal-dow {
  text-align: center;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-bottom: 6px;
}
.cal-day {
  position: relative;
  min-height: 62px;
  border-radius: var(--r-small);
  padding: 7px 8px;
  font-size: .92rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .25s var(--ease);
}
.cal-day .n { line-height: 1; }
.cal-day .hh { font-size: .68rem; font-weight: 600; letter-spacing: .01em; opacity: .92; }
.cal-day.is-open { background: var(--green-bg); color: var(--green-ink); box-shadow: inset 0 0 0 1px rgba(15, 122, 74, .18); }
.cal-day.is-closed { background: var(--red-bg); color: var(--red-ink); box-shadow: inset 0 0 0 1px rgba(192, 68, 52, .13); }
.cal-day.is-closed .hh { opacity: .75; }
.cal-day.is-out { opacity: 0; pointer-events: none; }
.cal-day.is-past { opacity: .45; }
.cal-day.is-today { box-shadow: inset 0 0 0 2.5px var(--blue); }
.cal-day.is-today::after {
  content: attr(data-today);
  position: absolute;
  top: -9px;
  right: 8px;
  background: var(--blue);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 2.5px 8px;
  border-radius: 999px;
}
.cal-legend { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 18px; font-size: .9rem; color: var(--ink-2); }
.cal-legend span { display: inline-flex; align-items: center; gap: 9px; }
.cal-legend i { width: 15px; height: 15px; border-radius: 5px; }
.cal-legend .lg-open { background: var(--green-bg); box-shadow: inset 0 0 0 1px rgba(15, 122, 74, .3); }
.cal-legend .lg-closed { background: var(--red-bg); box-shadow: inset 0 0 0 1px rgba(192, 68, 52, .25); }

/* ---------- Saisons ---------- */

.season-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.season {
  border-radius: var(--r-outer);
  border: 1px solid var(--line);
  background: #fff;
  padding: 24px 24px 22px;
  box-shadow: var(--shadow-lift);
}
.season.off { background: var(--paper-2); box-shadow: none; }
.season .s-name { font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; color: var(--ink); }
.season .s-days { margin: 8px 0 4px; font-weight: 600; color: var(--green-ink); }
.season.off .s-days { color: var(--red-ink); }
.season .s-hh { color: var(--ink-2); font-size: .96rem; }

/* ---------- Tarifs ---------- */

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price {
  text-align: center;
  padding: 8px;
  background: rgba(22, 36, 46, .045);
  border: 1px solid var(--line);
  border-radius: var(--r-outer);
}
.price .p-core {
  background: #fff;
  border-radius: calc(var(--r-outer) - 8px);
  border: 1px solid rgba(22, 36, 46, .06);
  padding: 26px 20px 24px;
  height: 100%;
}
.price .p-who { font-weight: 600; color: var(--ink); font-size: 1.05rem; }
.price .p-amount { font-family: var(--font-display); font-weight: 600; font-size: 3rem; color: var(--blue); line-height: 1.15; margin: 6px 0 2px; }
.price .p-amount sup { font-size: 1.4rem; }
.price .p-note { font-size: .92rem; color: var(--ink-3); }

/* ---------- Infos pratiques ---------- */

.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 20px; }
.info-grid--3 { grid-template-columns: repeat(3, 1fr); }
.info-item {
  display: flex;
  gap: 16px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-inner);
}
.info-item .ic { color: var(--blue); margin-top: 3px; }
.info-item h3 { font-family: var(--font-body); font-size: 1.02rem; font-weight: 600; margin-bottom: 3px; }
.info-item p { font-size: .96rem; color: var(--ink-2); margin: 0; }

/* ---------- Pages internes : hero reduit ---------- */

.page-hero {
  position: relative;
  min-height: clamp(330px, 46vh, 470px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.page-hero .ph-bg { position: absolute; inset: 0; }
.page-hero .ph-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .ph-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 32, 48, .16) 0%, rgba(10, 32, 48, .68) 100%);
}
.page-hero .wrap { position: relative; z-index: 2; padding-block: clamp(2rem, 4.5vw, 3.4rem); width: 100%; }
.page-hero h1 { color: #fff; margin-bottom: .2em; }
.page-hero .ph-sub { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: rgba(255, 255, 255, .92); max-width: 36em; }
.crumbs { font-size: .85rem; margin-bottom: 12px; color: rgba(255, 255, 255, .8); }
.crumbs a { color: rgba(255, 255, 255, .9); text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs .sep { margin-inline: 8px; opacity: .6; }

/* ---------- Prose (contenu editorial) ---------- */

.prose { max-width: 700px; }
.prose h2 { margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }
.prose ul { padding-left: 1.2em; margin: 0 0 1.15em; }
.prose li { margin-bottom: .45em; }

.article-grid { display: grid; grid-template-columns: 1fr 340px; gap: clamp(34px, 5vw, 70px); align-items: start; }
.article-side { position: sticky; top: calc(var(--head-h) + 24px); display: flex; flex-direction: column; gap: 20px; }
.side-card h3 { font-family: var(--font-body); font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.side-card p { font-size: .97rem; }
.side-card .hours-list li { font-size: .93rem; padding-block: 8px; }

.inline-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 1.6rem 0 2.1rem; }
.inline-gallery a { border-radius: var(--r-small); overflow: hidden; display: block; }
.inline-gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .8s var(--ease); }
.inline-gallery a:hover img { transform: scale(1.05); }

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 9px 17px;
  font-size: .93rem;
  font-weight: 500;
  color: var(--ink-2);
}
.chip .ic { width: 17px; height: 17px; color: var(--green); }

.expo-list { list-style: none; margin: 0; padding: 0; columns: 2; gap: 30px; font-size: .96rem; }
.expo-list li { display: flex; gap: 14px; padding: 7px 0; border-bottom: 1px solid var(--line); break-inside: avoid; }
.expo-list .y { font-weight: 700; color: var(--blue); font-variant-numeric: tabular-nums; }

/* ---------- Gite : options ---------- */

.opt-list { list-style: none; margin: 0; padding: 0; }
.opt-list li { display: flex; justify-content: space-between; gap: 18px; padding: 12px 2px; border-bottom: 1px solid var(--line); font-size: .98rem; }
.opt-list li:last-child { border-bottom: 0; }
.opt-list .v { font-weight: 600; color: var(--ink); white-space: nowrap; font-variant-numeric: tabular-nums; }

.notice {
  background: var(--blue-tint);
  border: 1px solid rgba(0, 114, 188, .2);
  border-radius: var(--r-inner);
  padding: 18px 22px;
  font-size: .96rem;
}
.notice.warm { background: #fdf3e4; border-color: rgba(185, 138, 47, .3); }

details.fold { border: 1px solid var(--line); border-radius: var(--r-inner); background: #fff; margin-bottom: 12px; overflow: hidden; }
details.fold summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 17px 22px;
  font-weight: 600;
  color: var(--ink);
}
details.fold summary::-webkit-details-marker { display: none; }
details.fold summary .ic { transition: transform .3s var(--ease); color: var(--blue); }
details.fold[open] summary .ic { transform: rotate(45deg); }
details.fold .fold-body { padding: 0 22px 20px; font-size: .97rem; }

/* ---------- Contact ---------- */

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4.5vw, 60px); align-items: start; }

.c-cards { display: grid; gap: 14px; }
.c-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-inner);
  padding: 19px 22px;
  text-decoration: none;
  color: inherit;
  transition: transform .3s var(--ease-2), box-shadow .3s var(--ease-2), border-color .3s;
}
a.c-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: rgba(0, 114, 188, .35); color: inherit; }
.c-card .ci {
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 14px;
  background: var(--blue-tint);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.c-card .cl { font-size: .82rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-3); }
.c-card .cv { font-weight: 600; color: var(--ink); font-size: 1.06rem; line-height: 1.4; }

.form { display: grid; gap: 18px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .92rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line-strong);
  border-radius: 13px;
  padding: 13px 16px;
  min-height: 50px;
  width: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 114, 188, .14);
}
.field .hint { font-size: .85rem; color: var(--ink-3); }

.map-frame { border-radius: var(--r-outer); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-lift); }
.map-frame iframe { display: block; width: 100%; height: 380px; border: 0; }
.map-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }

/* ---------- Hotes ---------- */

.hosts { display: flex; align-items: center; gap: 26px; }
.hosts .frame { width: 210px; flex: none; }
.hosts .frame img { aspect-ratio: 1; }

/* ---------- Footer ---------- */

.site-foot { background: var(--navy); color: rgba(255, 255, 255, .82); font-size: .96rem; }
.site-foot a { color: rgba(255, 255, 255, .88); text-decoration: none; }
.site-foot a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.foot-main { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1.15fr; gap: clamp(28px, 4vw, 54px); padding-block: clamp(3.2rem, 6vw, 4.6rem); }
.foot-brand .brand { color: #9ccbeb; margin-bottom: 14px; }
.foot-brand .brand .b2 span { color: rgba(255, 255, 255, .5); }
.foot-brand p { color: rgba(255, 255, 255, .72); font-size: .93rem; }
.foot-badge { display: flex; align-items: center; gap: 13px; margin-top: 18px; }
.foot-badge img { width: 56px; height: auto; border-radius: 9px; background: #fff; padding: 5px; }
.foot-badge span { font-size: .86rem; color: rgba(255, 255, 255, .8); max-width: 180px; line-height: 1.45; }
.site-foot h3 { color: #fff; font-family: var(--font-body); font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.site-foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.foot-status { margin-top: 14px; }
.foot-hours li { display: flex; justify-content: space-between; gap: 14px; font-size: .9rem; }
.foot-hours .fh { color: rgba(255, 255, 255, .6); }
.foot-bottom { border-top: 1px solid rgba(255, 255, 255, .14); padding-block: 20px; display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: center; font-size: .86rem; color: rgba(255, 255, 255, .6); }
.foot-bottom .langs { margin-left: auto; display: flex; gap: 14px; }
.foot-bottom .demo { color: rgba(255, 255, 255, .45); }

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(8, 20, 30, .93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility 0s .35s;
}
.lightbox.on { opacity: 1; visibility: visible; transition: opacity .35s var(--ease); }
.lightbox img {
  max-width: min(92vw, 1300px);
  max-height: 86vh;
  border-radius: 14px;
  box-shadow: 0 40px 120px -30px rgba(0, 0, 0, .8);
  transform: scale(.96);
  transition: transform .35s var(--ease-2);
}
.lightbox.on img { transform: scale(1); }
.lightbox button {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
  touch-action: manipulation;
}
.lightbox button:hover { background: rgba(255, 255, 255, .18); }
.lightbox button:active { transform: scale(.93); }
.lightbox .lb-close { top: 22px; right: 22px; }
.lightbox .lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-count { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255, 255, 255, .75); font-size: .9rem; letter-spacing: .06em; }

/* ---------- Complements ---------- */

.section--slim { padding-block: clamp(2.6rem, 5vw, 3.8rem); }

.sec-head { max-width: 660px; margin: 0 auto 2.8rem; text-align: center; }
.sec-head .lead { margin-bottom: 0; }
.sec-head--left { text-align: left; margin-left: 0; }

.btn--ghost-inv {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .45);
  padding: 15px 26px;
}
.btn--ghost-inv:hover { background: rgba(255, 255, 255, .13); color: #fff; transform: translateY(-1px); }

.side-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-inner);
  padding: 22px 24px;
  box-shadow: var(--shadow-lift);
}

.glist { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; counter-reset: g; }
.glist li {
  counter-increment: g;
  display: flex;
  align-items: center;
  gap: 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-small);
  padding: 12px 16px;
  font-weight: 500;
  color: var(--ink);
  font-size: .95rem;
  transition: transform .3s var(--ease-2), box-shadow .3s var(--ease-2);
}
.glist li:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.glist li::before {
  content: counter(g, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--blue-soft);
  flex: none;
}
@media (max-width: 980px) { .glist { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .glist { grid-template-columns: 1fr; } }

@keyframes calin { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.cal-grid.cal-anim { animation: calin .4s var(--ease); }

/* ---------- Reveal ---------- */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .85s var(--ease), transform .85s var(--ease-2); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- 404 ---------- */

.err-wrap { min-height: 72vh; display: grid; place-items: center; text-align: center; padding-top: var(--head-h); }
.err-wrap .n404 { font-family: var(--font-display); font-size: clamp(5rem, 14vw, 9rem); color: var(--blue); font-weight: 600; line-height: 1; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
  .main-nav { gap: 14px; }
  .main-nav a { font-size: .88rem; }
}

@media (max-width: 980px) {
  :root { --head-h: 66px; }
  .main-nav, .site-head .lang-switch { display: none; }
  .burger { display: block; }

  .hero .wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { text-align: left; }
  .collage { max-width: 620px; }

  .split, .split--rev { grid-template-columns: 1fr; gap: 30px; }
  .split--rev .split-media { order: 0; }
  .cta-final .wrap { grid-template-columns: 1fr; }

  .bento { grid-template-columns: 1fr 1fr; }
  .tile.t-a { grid-column: 1 / 3; grid-row: auto; min-height: 340px; }
  .tile.t-b, .tile.t-c, .tile.t-d, .tile.t-e { grid-column: auto; min-height: 240px; }

  .article-grid { grid-template-columns: 1fr; }
  .article-side { position: static; }

  .season-grid { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .info-grid, .info-grid--3 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .mosaic { columns: 2; }
  .foot-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .section { padding-block: 3.4rem; }

  .hero { padding-top: calc(var(--head-h) + 2rem); }
  .hero-cta .btn { width: 100%; justify-content: space-between; }
  .hero-cta .btn--ghost { justify-content: center; }

  .collage { grid-auto-rows: 26px; }

  .today-bar .wrap { gap: 10px 14px; font-size: .9rem; }
  .today-bar .t-sep { display: none; }
  .today-bar .t-link { margin-left: 0; flex-basis: 100%; }

  .stats > div { flex-basis: 40%; border-left: 0; padding: 10px 12px; }

  .bento { grid-template-columns: 1fr; }
  .tile.t-a { grid-column: auto; }
  .tile--list ul { columns: 1; }

  .mosaic { columns: 2; column-gap: 10px; }
  .mosaic a { margin-bottom: 10px; border-radius: 10px; }

  .inline-gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
  .inline-gallery a:nth-child(3):last-child { grid-column: 1 / -1; }
  .inline-gallery a:nth-child(3):last-child img { aspect-ratio: 16 / 9; }
  .cal-day.is-today::after { font-size: .5rem; padding: 2px 6px; top: -8px; right: 1px; letter-spacing: .03em; }
  .sale-bar { font-size: .84rem; }
  .sale-bar .wrap { gap: 6px 14px; padding-block: 9px; }
  .expo-list { columns: 1; }
  .season-grid { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .map-frame iframe { height: 300px; }
  .hosts { flex-direction: column; align-items: flex-start; }
  .foot-main { grid-template-columns: 1fr; gap: 30px; }
  .foot-bottom .langs { margin-left: 0; }
  .cal-day { min-height: 52px; padding: 5px 6px; }
  .cal-day .hh { display: none; }
  .cal-day.is-open::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); position: absolute; bottom: 7px; left: 8px; }
  .media-duo .frame + .frame { display: none; }
}

@media (max-width: 420px) {
  h1 { font-size: 2.15rem; }
  .brand .b1, .brand .b2 { font-size: 1.05rem; }
}

/* ==========================================================================
   V2 : logo reel, drapeaux, histoire, cartes, semaines, effets
   ========================================================================== */

:root { --head-h: 96px; }

.brand--img { flex: none; display: flex; align-items: center; }
.brand-logo { height: 72px; width: auto; }
.head-jr { height: 54px; width: auto; flex: none; margin-left: 4px; }

.fl { width: 17px; height: 12px; border-radius: 2.5px; flex: none; box-shadow: 0 0 0 1px rgba(22, 36, 46, .12); }
.lang-switch a { display: inline-flex; align-items: center; gap: 6px; }
.menu-overlay .menu-langs a { display: inline-flex; align-items: center; gap: 7px; }

@media (max-width: 1180px) {
  .main-nav { gap: 10px; }
  .main-nav a { font-size: .85rem; }
  .brand-logo { height: 60px; }
}
@media (max-width: 1080px) {
  :root { --head-h: 76px; }
  .main-nav, .site-head .lang-switch { display: none; }
  .burger { display: block; }
  .brand-logo { height: 52px; }
  .head-jr { height: 40px; }
}

/* mini carte croquis (hero accueil) */
.hero-loc { display: flex; align-items: center; gap: 16px; margin-top: 30px; }
.minimap { width: 168px; height: auto; flex: none; overflow: visible; }
.mm-land { fill: var(--paper-2); stroke: #b6c6bd; stroke-width: 2; }
.mm-dot { fill: var(--pink-deep); }
.mm-ring { fill: none; stroke: var(--pink-deep); stroke-width: 1.5; opacity: .45; animation: mmpulse 2.6s infinite; transform-box: fill-box; transform-origin: center; }
@keyframes mmpulse { 0% { transform: scale(.6); opacity: .55; } 80% { transform: scale(1.25); opacity: 0; } 100% { opacity: 0; } }
.mm-arrow { fill: none; stroke: var(--pink-deep); stroke-width: 2; stroke-dasharray: 5 6; stroke-linecap: round; }
.loc-here { font-family: "Caveat", cursive; font-size: 1.5rem; color: var(--pink-deep); line-height: 1; }
.loc-sub { font-size: .9rem; color: var(--ink-3); }

/* plan illustre du parcours */
.plan-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(22px, 3.5vw, 44px); align-items: start; }
.plan-svg { width: 100%; height: auto; display: block; filter: drop-shadow(0 18px 34px rgba(12, 45, 67, .14)); }
.plan-bg { fill: #f8fbf4; stroke: var(--line); }
.plan-road { fill: #dde3e6; }
.pl-road { font: 600 12px var(--font-body); fill: var(--ink-3); letter-spacing: .12em; }
.plan-field { fill: #edf4e5; stroke: #a9c697; stroke-width: 1.6; stroke-dasharray: 8 8; }
.pg { fill: #dcebcb; }
.plan-pond { fill: #bfdbee; stroke: #7fb3d8; stroke-width: 1.6; }
.plan-farm { fill: var(--navy); }
.plan-gite { fill: var(--blue-soft); }
.plan-entry { fill: var(--pink-deep); stroke: #fff; stroke-width: 2.5; }
.plan-path { fill: none; stroke: var(--pink-deep); stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: .5 10; }
.stop circle { fill: var(--green); stroke: #fff; stroke-width: 2.2; }
.stop text { font: 700 10.5px var(--font-body); fill: #fff; text-anchor: middle; }
.pl-name { font: 600 19px "Caveat", cursive; fill: var(--ink-2); text-anchor: middle; }
.pl-entry { text-anchor: start; fill: var(--pink-deep); }
.plan-legend { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 16px; font-size: .92rem; color: var(--ink-2); }
.plan-legend .pl { display: inline-flex; align-items: center; gap: 8px; }
.plan-legend .pl::before { content: ""; width: 13px; height: 13px; border-radius: 4px; }
.plan-legend .pl-0::before { background: var(--pink-deep); border-radius: 50%; }
.plan-legend .pl-1::before { background: var(--navy); }
.plan-legend .pl-2::before { background: var(--blue-soft); }
.plan-legend .pl-3::before { background: #bfdbee; }
.map-frame--sat iframe { height: 300px; }

/* carte du Tregor */
.tregor-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(22px, 3.5vw, 44px); align-items: start; }
.tregor { width: 100%; height: auto; display: block; filter: drop-shadow(0 18px 34px rgba(12, 45, 67, .14)); }
.tg-land { fill: #f4f7ee; stroke: var(--line); }
.tg-sea { fill: #d9ebf8; }
.tg-coast { fill: none; stroke: #8fbede; stroke-width: 2.5; stroke-linecap: round; }
.tg-river { fill: none; stroke: #8fbede; stroke-width: 3; opacity: .75; }
.tg-rose { fill: #e8a0c4; }
.tg-sealbl { font: 600 26px "Caveat", cursive; fill: #6fa4c9; }
.tg-lbl { font: 600 24px "Caveat", cursive; fill: #93ab84; }
.poi { cursor: pointer; }
.poi:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 6px; }
.poi-dot { fill: var(--blue); stroke: #fff; stroke-width: 2.2; transform-box: fill-box; transform-origin: center; transition: transform .25s var(--ease-2), fill .2s; }
.poi-ring { fill: var(--blue); opacity: 0; transition: opacity .25s; transform-box: fill-box; transform-origin: center; }
.poi text { font: 600 13px var(--font-body); fill: var(--ink-2); text-anchor: middle; paint-order: stroke; stroke: rgba(244, 247, 238, .9); stroke-width: 4px; }
.poi:hover .poi-dot { transform: scale(1.3); }
.poi.active .poi-dot { fill: var(--pink-deep); transform: scale(1.3); }
.poi.active .poi-ring { opacity: .16; fill: var(--pink-deep); }
.poi--home .poi-dot { fill: var(--pink-deep); }
.poi--home text { font-weight: 700; fill: var(--ink); }
.poi-card .poi-dist {
  display: inline-block;
  background: var(--blue-tint);
  color: var(--blue-deep);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

/* bande des 52 semaines */
.wk-wrap { margin-top: 18px; }
.wk-months { display: grid; grid-template-columns: repeat(52, 1fr); gap: 3px; font-size: .7rem; color: var(--ink-3); margin-bottom: 5px; }
.wk-months .wm { white-space: nowrap; overflow: visible; }
.wk-strip { display: grid; grid-template-columns: repeat(52, 1fr); gap: 3px; }
.wk { height: 40px; border-radius: 6px; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 3px; }
.wk i { font-style: normal; font-size: .6rem; font-weight: 600; opacity: .75; }
.wk-low { background: #dcebf6; color: #1b5c8c; }
.wk-mid { background: #a3c9e6; color: #0c3f66; }
.wk-high { background: var(--blue); color: #fff; }
.wk-legend { display: flex; gap: 10px 22px; flex-wrap: wrap; margin-top: 14px; font-size: .93rem; color: var(--ink-2); }
.wk-leg { display: inline-flex; align-items: center; gap: 9px; }
.wk-leg .wk { width: 16px; height: 16px; padding: 0; border-radius: 5px; }

/* page histoire */
.tl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.tl { background: #fff; border: 1px solid var(--line); border-radius: var(--r-outer); padding: 26px 24px; box-shadow: var(--shadow-lift); }
.tl-y { font-family: var(--font-display); font-size: 2.3rem; font-weight: 600; color: var(--blue); line-height: 1; }
.tl-t { font-weight: 600; color: var(--ink); margin: 8px 0 6px; }
.tl p { font-size: .95rem; margin: 0; }
.bigquote { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: clamp(1.4rem, 2.6vw, 2.05rem); color: var(--ink); max-width: 30em; margin: 0 auto; line-height: 1.45; }
.bigquote cite { display: block; font-family: var(--font-body); font-style: normal; font-size: .92rem; color: var(--ink-3); margin-top: 16px; }

.foot-bottom .demo a { color: rgba(255, 255, 255, .72); text-decoration: underline; text-underline-offset: 3px; }

/* effets waouh : parallaxe au scroll (progressif) */
@supports (animation-timeline: view()) {
  .collage .f1 { animation: parA linear both; animation-timeline: view(); animation-composition: add; }
  .collage .f2 { animation: parB linear both; animation-timeline: view(); animation-composition: add; }
  .collage .f3 { animation: parC linear both; animation-timeline: view(); animation-composition: add; }
  .band .band-bg img { animation: parZoom linear both; animation-timeline: view(); }
  .page-hero .ph-bg img { animation: parHero linear both; animation-timeline: view(); }
  .media-duo .frame + .frame { animation: parB linear both; animation-timeline: view(); animation-composition: add; }
}
@keyframes parA { from { transform: translateY(22px); } to { transform: translateY(-22px); } }
@keyframes parB { from { transform: translateY(38px); } to { transform: translateY(-38px); } }
@keyframes parC { from { transform: translateY(54px); } to { transform: translateY(-54px); } }
@keyframes parZoom { from { transform: scale(1.16) translateY(-16px); } to { transform: scale(1.03) translateY(16px); } }
@keyframes parHero { from { transform: translateY(0) scale(1.08); } to { transform: translateY(42px) scale(1.08); } }

.tile { transform-style: preserve-3d; transition: transform .45s var(--ease-2), box-shadow .45s var(--ease-2); }
.tile.tilting { transition: transform .08s linear; }

@media (max-width: 980px) {
  .plan-grid, .tregor-grid { grid-template-columns: 1fr; }
  .tl-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .tl-grid { grid-template-columns: 1fr; }
  .wk-months { display: none; }
  .wk-strip { grid-template-columns: repeat(26, 1fr); gap: 2.5px; }
  .wk { height: 30px; border-radius: 4px; }
  .wk i { font-size: .52rem; }
  .hero-loc { gap: 12px; }
  .minimap { width: 130px; }
  .head-jr { height: 36px; }
}

/* ==========================================================================
   V3 : precision cartes, presse, meteo, vivant
   ========================================================================== */

/* diaporama vivant du hero */
.fader { position: relative; width: 100%; height: 100%; overflow: hidden; border-radius: calc(var(--r-outer) - 9px); }
.fader img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 0; opacity: 0; }
.fader img:first-child { position: relative; opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .fader img { animation: kenfade 26s infinite; }
  .fader img:nth-child(1) { animation-delay: 0s; }
  .fader img:nth-child(2) { animation-delay: 6.5s; }
  .fader img:nth-child(3) { animation-delay: 13s; }
  .fader img:nth-child(4) { animation-delay: 19.5s; }
}
@keyframes kenfade {
  0% { opacity: 0; transform: scale(1.02); z-index: 2; }
  5% { opacity: 1; }
  27% { opacity: 1; transform: scale(1.1); z-index: 2; }
  34% { opacity: 0; transform: scale(1.12); z-index: 1; }
  100% { opacity: 0; }
}

/* mini-carte Cotes-d'Armor */
.mm-town circle { fill: var(--ink-3); }
.mm-town text { font: 500 9.5px var(--font-body); fill: var(--ink-3); text-anchor: middle; }
.mm-river { fill: none; stroke: #9dc3de; stroke-width: 1.6; }
.minimap { width: 186px; }

/* presse : wordmarks */
.press ul { align-items: center; gap: 18px 40px; }
.press li { font-family: var(--font-body); }
.press .pm-mark { display: inline-block; }
.press .y { display: block; text-align: center; font-size: .74rem; font-weight: 500; color: var(--ink-3); margin-top: 4px; margin-left: 0; }
.pm-of .pm-mark { background: #e30613; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; padding: 3px 14px 5px; border-radius: 4px; }
.pm-tel .pm-mark { color: #e2001a; font-weight: 800; font-size: 1.2rem; letter-spacing: -.01em; }
.pm-echo .pm-mark { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: #b01116; }
.pm-adj .pm-mark { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 1.3rem; color: #2e5d3a; }
.pm-eden .pm-mark { letter-spacing: .3em; font-weight: 600; font-size: 1.05rem; color: #1c4632; text-transform: uppercase; }
.pm-mjm .pm-mark { color: #d05a4e; font-weight: 700; font-size: 1.12rem; text-transform: lowercase; }
.pm-tuin4 .pm-mark { color: #3a7d44; font-weight: 600; font-size: 1.08rem; }
.pm-tl .pm-mark { color: #0f4c81; font-weight: 800; font-size: 1.15rem; }
.press li a { text-decoration: none; }
.press li a:hover .pm-mark { opacity: .75; }

/* plan : nouvelles textures */
.plan-earth { fill: #ecdfc4; }
.plan-barn { fill: #55707f; }
.plan-north circle { fill: #fff; stroke: var(--line-strong); }
.plan-north path { fill: none; stroke: var(--ink-2); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.plan-north text { font: 700 11px var(--font-body); fill: var(--ink-2); text-anchor: middle; }

/* carte tregor v3 */
.tg-isle { fill: #f4f7ee; stroke: #8fbede; stroke-width: 2; }
.poi-photo { margin: -6px -6px 12px; border-radius: 12px; overflow: hidden; }
.poi-photo img { width: 100%; aspect-ratio: 16 / 8.5; object-fit: cover; }

/* meteo */
.weather .w-head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 10px; }
.weather .w-head h3 { font-family: var(--font-body); font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin: 0; }
.w-now { display: flex; align-items: center; gap: 16px; }
.w-ic { width: 54px; height: 54px; flex: none; color: var(--gold); }
.w-ic svg { width: 100%; height: 100%; stroke-width: 1.5; }
.w-temp { font-family: var(--font-display); font-weight: 600; font-size: 2.6rem; color: var(--ink); line-height: 1; }
.w-more { font-size: .95rem; }
.w-days { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.w-day { text-align: center; font-size: .85rem; color: var(--ink-2); }
.w-day .ic { width: 26px; height: 26px; color: var(--blue-soft); margin: 2px auto; display: block; }
.w-day b { color: var(--ink); }

/* semaine courante */
.wk.wk-now { box-shadow: 0 0 0 2.5px var(--navy); position: relative; z-index: 2; transform: scale(1.12); border-radius: 7px; }

/* hotes */
.hosts-strip { display: flex; align-items: center; gap: 14px; margin-top: 18px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 10px 22px 10px 10px; box-shadow: var(--shadow-lift); }
.hosts-strip img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; flex: none; }
.hosts-strip span { font-size: .95rem; color: var(--ink-2); }
.hosts-flex { display: grid; grid-template-columns: 1fr 215px; gap: 22px; align-items: start; }
.hosts-photo { padding: 7px; }
.hosts-photo img { border-radius: calc(var(--r-outer) - 7px); }

/* frise animee */
.tl-wrap { position: relative; padding-top: 34px; }
.tl-line { position: absolute; top: 16px; left: 3%; right: 3%; height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--blue), var(--pink)); transform-origin: left; }
.tl { position: relative; }
.tl::before { content: ""; position: absolute; top: -26px; left: 50%; transform: translateX(-50%); width: 15px; height: 15px; border-radius: 50%; background: var(--blue); border: 3.5px solid var(--paper); box-shadow: 0 0 0 2px var(--blue); }
.tl:last-child::before { background: var(--pink-deep); box-shadow: 0 0 0 2px var(--pink-deep); }
@supports (animation-timeline: view()) {
  .tl-line { animation: tlgrow linear both; animation-timeline: view(); animation-range: entry 20% entry 90%; }
}
@keyframes tlgrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@media (max-width: 980px) {
  .tl-wrap { padding-top: 0; }
  .tl-line { display: none; }
  .tl::before { display: none; }
  .hosts-flex { grid-template-columns: 1fr; }
  .hosts-photo { max-width: 300px; }
}

/* ---------- Mouvement reduit ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
