:root {
  --navy-950: #0a2732;
  --navy-900: #103442;
  --navy-800: #163b4a;
  --ocean-700: #176779;
  --ocean-600: #1d7585;
  --ocean-500: #2a8e9e;
  --aqua-200: #ccebea;
  --aqua-100: #e8f7f5;
  --sand-50: #fdfbf7;
  --sand-100: #f7f2e8;
  --sand-200: #eee4d3;
  --coral-600: #d85f4c;
  --coral-500: #e26d5a;
  --sun-500: #f2c46d;
  --ink: #142f38;
  --muted: #61747a;
  --line: rgba(16, 52, 66, 0.13);
  --white: #ffffff;
  --max: 1240px;
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow-sm: 0 10px 30px rgba(10, 39, 50, 0.08);
  --shadow: 0 24px 70px rgba(10, 39, 50, 0.14);
  --shadow-strong: 0 30px 90px rgba(8, 35, 45, 0.24);
  --ease: cubic-bezier(.2, .75, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--sand-50);
  font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { color: var(--white); background: var(--ocean-600); }

h1, h2, h3, h4 {
  margin-top: 0;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
p { margin-top: 0; }

.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip { position: fixed; top: 12px; left: -9999px; z-index: 9999; padding: 12px 18px; border-radius: 10px; background: var(--white); box-shadow: var(--shadow-sm); }
.skip:focus { left: 12px; }

.scroll-progress { position: fixed; inset: 0 0 auto; z-index: 1000; height: 3px; pointer-events: none; }
.scroll-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--coral-500), var(--sun-500), var(--ocean-500)); box-shadow: 0 0 12px rgba(226, 109, 90, .55); }

.topbar { position: relative; z-index: 140; color: rgba(255, 255, 255, .9); background: var(--navy-950); font-size: .82rem; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 38px; }
.topbar a { transition: color .2s ease, opacity .2s ease; }
.topbar a:hover { color: var(--sun-500); }
.top-actions { display: flex; align-items: center; gap: 7px; white-space: nowrap; }
.top-admin { font-weight: 700; }

.header {
  position: sticky;
  top: 0;
  z-index: 120;
  border-bottom: 1px solid transparent;
  background: rgba(253, 251, 247, .92);
  backdrop-filter: blur(18px) saturate(145%);
  transition: box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
.header.is-scrolled { border-color: var(--line); background: rgba(255, 255, 255, .97); box-shadow: 0 10px 40px rgba(10, 39, 50, .09); }
.nav { min-height: 84px; display: flex; align-items: center; gap: 18px; }
.brand { display: flex; align-items: center; flex-shrink: 0; gap: 12px; color: var(--navy-900); font-weight: 900; line-height: 1.05; }
.brand img { width: 70px; height: 56px; object-fit: contain; filter: drop-shadow(0 6px 12px rgba(10, 39, 50, .10)); transition: transform .35s var(--ease); }
.brand:hover img { transform: rotate(-2deg) scale(1.04); }
.brand span { font-size: 1rem; }
.brand small { display: block; margin-top: 6px; color: var(--ocean-600); font-family: "Segoe UI", sans-serif; font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.menu { display: flex; align-items: center; justify-content: flex-end; gap: 2px; margin-left: auto; }
.menu > a, .dropdown > button {
  position: relative;
  padding: 10px 9px;
  border: 0;
  border-radius: 10px;
  color: #294d59;
  background: transparent;
  font-size: .88rem;
  font-weight: 760;
  white-space: nowrap;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.menu > a::after, .dropdown > button::after { content: ""; position: absolute; right: 10px; bottom: 5px; left: 10px; height: 2px; border-radius: 999px; background: var(--coral-500); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.menu > a:hover, .menu > a.active, .dropdown > button:hover, .dropdown.current > button { color: var(--navy-950); background: var(--aqua-100); }
.menu > a:hover::after, .menu > a.active::after, .dropdown > button:hover::after, .dropdown.current > button::after { transform: scaleX(1); }
.dropdown { position: relative; }
.dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: grid;
  min-width: 275px;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px) scale(.98);
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--shadow);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
}
.dropdown:hover .dropdown-panel, .dropdown:focus-within .dropdown-panel, .dropdown.open .dropdown-panel { visibility: visible; opacity: 1; transform: none; }
.dropdown-panel a { padding: 11px 13px; border-radius: 11px; color: #294d59; font-size: .91rem; font-weight: 650; }
.dropdown-panel a:hover { color: var(--navy-950); background: var(--aqua-100); transform: translateX(3px); }
.language-switcher { display: flex; align-items: center; gap: 5px; padding: 3px; margin-left: 5px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); box-shadow: 0 6px 18px rgba(10, 39, 50, .05); }
.language-switcher a { display: inline-flex; align-items: center; gap: 4px; min-width: 43px; padding: 5px 7px; border-radius: 999px; color: var(--muted); font-size: .67rem; font-weight: 900; justify-content: center; transition: transform .2s ease, background .2s ease, color .2s ease; }
.language-switcher a:hover { transform: translateY(-1px); background: var(--aqua-100); color: var(--navy-900); }
.language-switcher a.active { color: var(--white); background: var(--ocean-600); }
.language-flag { font-size: 1.08rem; line-height: 1; }
.language-code { letter-spacing: .04em; }
.mobile-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); border-radius: 13px; background: var(--white); color: var(--navy-900); font-size: 1.25rem; cursor: pointer; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn-primary { color: var(--white); background: linear-gradient(135deg, var(--coral-500), var(--coral-600)); box-shadow: 0 13px 30px rgba(216, 95, 76, .25); }
.btn-primary:hover { box-shadow: 0 18px 38px rgba(216, 95, 76, .34); }
.btn-secondary { color: var(--white); background: linear-gradient(135deg, var(--ocean-600), var(--navy-800)); box-shadow: 0 12px 28px rgba(23, 103, 121, .18); }
.btn-light { color: var(--navy-900); background: var(--white); box-shadow: 0 12px 32px rgba(5, 30, 40, .16); }
.btn-ghost { color: var(--navy-900); border-color: var(--line); background: var(--white); }
.btn-outline-light { color: var(--white); border-color: rgba(255, 255, 255, .55); background: rgba(255, 255, 255, .08); backdrop-filter: blur(8px); }
.btn-outline-light:hover { color: var(--navy-900); background: var(--white); }
.nav-book { flex-shrink: 0; padding-inline: 17px; font-size: .87rem; }

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 80px));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background-position: center calc(50% + var(--hero-shift, 0px));
  background-size: cover;
}
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(7, 34, 44, .94) 0%, rgba(9, 49, 61, .76) 47%, rgba(10, 39, 50, .18) 100%); }
.hero::after { content: ""; position: absolute; right: -12vw; bottom: -40%; z-index: -1; width: 54vw; height: 100%; border-radius: 50%; background: radial-gradient(circle, rgba(42, 142, 158, .28), transparent 67%); filter: blur(4px); }
.hero-content { position: relative; z-index: 2; max-width: 850px; padding: 112px 0 145px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 12px; color: var(--sun-500); font-family: "Segoe UI", sans-serif; font-size: .76rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.hero h1 { max-width: 840px; margin: 12px 0 22px; color: var(--white); font-size: clamp(3.25rem, 7vw, 6.8rem); line-height: .94; letter-spacing: -.055em; text-wrap: balance; text-shadow: 0 8px 40px rgba(0, 0, 0, .20); }
.hero p { max-width: 680px; margin-bottom: 0; color: rgba(255, 255, 255, .9); font-size: clamp(1.05rem, 2vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.hero-highlights { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 35px; }
.hero-highlights span { display: inline-flex; align-items: baseline; gap: 6px; padding: 9px 13px; border: 1px solid rgba(255, 255, 255, .24); border-radius: 999px; color: rgba(255, 255, 255, .84); background: rgba(8, 39, 50, .28); backdrop-filter: blur(10px); font-size: .84rem; }
.hero-highlights b { color: var(--white); }
.hero-scroll { position: absolute; bottom: 44px; left: 50%; width: 28px; height: 47px; border: 1px solid rgba(255, 255, 255, .45); border-radius: 999px; transform: translateX(-50%); }
.hero-scroll span { position: absolute; top: 8px; left: 50%; width: 5px; height: 5px; border-radius: 50%; background: var(--white); transform: translateX(-50%); animation: scroll-dot 1.8s infinite; }
@keyframes scroll-dot { 0% { opacity: 0; transform: translate(-50%, 0); } 25% { opacity: 1; } 75% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 20px); } }

.quick-search { position: relative; z-index: 8; margin-top: -62px; }
.quick-card { display: grid; grid-template-columns: 1fr 1fr 1.1fr .8fr auto; gap: 12px; align-items: end; padding: 18px; border: 1px solid rgba(16, 52, 66, .08); border-radius: 24px; background: rgba(255, 255, 255, .96); box-shadow: var(--shadow-strong); backdrop-filter: blur(18px); }
.quick-card > div { min-width: 0; }
.quick-card label { display: block; margin: 0 0 5px 2px; color: var(--muted); font-size: .7rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.quick-card input, .quick-card select { width: 100%; min-height: 45px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 12px; color: var(--navy-900); background: var(--sand-50); }
.quick-card input:focus, .quick-card select:focus { outline: 3px solid rgba(42, 142, 158, .16); border-color: var(--ocean-500); }
.quick-promise { min-height: 45px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 2px 7px; padding: 7px 12px; border-radius: 12px; background: var(--aqua-100); }
.quick-promise > span { grid-row: 1 / 3; display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; color: var(--white); background: var(--ocean-600); font-weight: 900; }
.quick-promise strong { color: var(--navy-900); font-size: .76rem; line-height: 1.15; }
.quick-promise small { color: var(--muted); font-size: .68rem; }

.section { position: relative; padding: 96px 0; }
.section-sm { position: relative; padding: 62px 0; }
.section-soft { background: linear-gradient(180deg, var(--sand-100), #fbf8f2); }
.kicker { display: inline-block; margin-bottom: 8px; color: var(--coral-600); font-size: .76rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.section h2, .page-intro h1 { margin: .2rem 0 1rem; font-size: clamp(2.2rem, 4.3vw, 4rem); }
.lead { max-width: 790px; color: var(--muted); font-size: 1.12rem; }
.grid-2 { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(42px, 7vw, 90px); align-items: center; }
.content { color: #29444d; font-size: 1.04rem; }
.content h2 { margin: 0 0 1rem; font-size: clamp(2rem, 3vw, 3rem); }
.content h3 { margin: 2rem 0 .7rem; font-size: 1.55rem; }
.content ul { padding-left: 1.15rem; }
.content li { margin: .5rem 0; }
.content a { color: var(--ocean-700); font-weight: 700; text-decoration: underline; text-decoration-color: rgba(29, 117, 133, .35); text-underline-offset: 3px; }
.home-intro p:last-child { margin-bottom: 0; }
.text-link { display: inline-flex; align-items: center; gap: 5px; color: var(--ocean-700); font-weight: 850; transition: gap .2s ease, color .2s ease; }
.text-link:hover { gap: 9px; color: var(--coral-600); }
.external::after { content: ""; }
.image-stack { position: relative; padding: 0 16px 20px 0; }
.image-stack::before { content: ""; position: absolute; right: 0; bottom: 0; width: 75%; height: 76%; border-radius: var(--radius-lg); background: var(--aqua-200); transform: rotate(3deg); }
.image-stack > img { position: relative; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.floating-card { position: absolute; right: -14px; bottom: -12px; z-index: 2; min-width: 180px; padding: 20px 22px; border: 1px solid rgba(16, 52, 66, .08); border-radius: 19px; background: rgba(255, 255, 255, .94); box-shadow: var(--shadow); backdrop-filter: blur(14px); }
.floating-card strong { display: block; color: var(--coral-600); font-family: Georgia, serif; font-size: 2.3rem; line-height: 1; }
.floating-card span { color: var(--muted); font-size: .87rem; }

.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 34px; }
.card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s ease, border-color .35s ease; }
.card:hover { transform: translateY(-10px); border-color: rgba(29, 117, 133, .28); box-shadow: var(--shadow); }
.card-media { display: block; height: 260px; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .card-media img { transform: scale(1.075); }
.card-body { padding: 25px; }
.card h3 { margin-bottom: 10px; font-size: 1.55rem; }
.card p { margin-bottom: 15px; color: var(--muted); }

.features { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 15px; margin-top: 32px; }
.feature { min-height: 150px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: 0 8px 25px rgba(10, 39, 50, .05); transition: transform .3s var(--ease), background .3s ease, box-shadow .3s ease; }
.feature:hover { transform: translateY(-6px); background: var(--aqua-100); box-shadow: var(--shadow-sm); }
.feature-icon { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 15px; border-radius: 14px; background: linear-gradient(145deg, var(--aqua-100), var(--aqua-200)); font-size: 1.35rem; }
.feature strong { display: block; color: var(--navy-900); line-height: 1.35; }

.band { overflow: hidden; color: var(--white); background: linear-gradient(125deg, var(--navy-950), var(--ocean-700)); }
.band::before { content: ""; position: absolute; inset: -120px auto auto -100px; width: 280px; height: 280px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 50%; box-shadow: 0 0 0 45px rgba(255, 255, 255, .03), 0 0 0 90px rgba(255, 255, 255, .02); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { position: relative; z-index: 1; padding: 12px; text-align: center; }
.stat strong { display: block; color: var(--sun-500); font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 3.15rem); line-height: 1; }
.stat span { display: block; margin-top: 8px; color: rgba(255, 255, 255, .82); font-size: .9rem; }

.ranking-card { display: grid; grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr); gap: clamp(35px, 7vw, 80px); align-items: center; padding: clamp(30px, 5vw, 65px); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(135deg, #fff, var(--sand-100)); box-shadow: var(--shadow); }
.ranking-visual { position: relative; min-height: 370px; }
.ranking-magazine { position: absolute; inset: 0 auto auto 6%; width: 67%; max-height: 380px; object-fit: contain; filter: drop-shadow(0 25px 30px rgba(10, 39, 50, .25)); transform: rotate(-5deg); transition: transform .5s var(--ease); }
.ranking-badge { position: absolute; right: 3%; bottom: 4%; width: 43%; filter: drop-shadow(0 18px 25px rgba(10, 39, 50, .18)); transform: rotate(6deg); transition: transform .5s var(--ease); }
.ranking-card:hover .ranking-magazine { transform: rotate(-2deg) translateY(-6px); }
.ranking-card:hover .ranking-badge { transform: rotate(2deg) scale(1.04); }
.ranking-note { display: inline-flex; margin-top: 8px; padding: 8px 12px; border-radius: 999px; color: var(--navy-900); background: var(--aqua-100); font-size: .8rem; font-weight: 800; }

.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 30px; }
.news-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s ease; }
.news-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.news-card > img { width: 100%; height: 220px; object-fit: cover; transition: transform .6s var(--ease); }
.news-card:hover > img { transform: scale(1.05); }
.news-card .inside { padding: 23px; }
.news-card h2, .news-card h3 { margin: 12px 0 9px; font-size: 1.55rem; }
.news-card p { color: var(--muted); }
.tag { display: inline-flex; align-items: center; padding: 6px 10px; border-radius: 999px; color: var(--ocean-700); background: var(--aqua-100); font-size: .72rem; font-weight: 850; }
.section-action, .center-action { margin-top: 30px; text-align: center; }

.gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 230px; gap: 13px; }
.gallery a { position: relative; display: block; overflow: hidden; border-radius: 17px; background: var(--sand-200); box-shadow: 0 8px 24px rgba(10, 39, 50, .08); }
.gallery a:nth-child(1), .gallery a:nth-child(6) { grid-column: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease), filter .4s ease; }
.gallery a::after { content: "+"; position: absolute; top: 50%; left: 50%; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; color: var(--white); background: rgba(10, 39, 50, .68); opacity: 0; transform: translate(-50%, -45%) scale(.8); transition: opacity .3s ease, transform .3s var(--ease); backdrop-filter: blur(8px); font-size: 1.5rem; }
.gallery a:hover img { transform: scale(1.07); filter: brightness(.82); }
.gallery a:hover::after { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.gallery-full { grid-auto-rows: 260px; }
.gallery-full a span { position: absolute; right: 12px; bottom: 12px; left: 12px; z-index: 2; padding: 8px 11px; border-radius: 10px; color: var(--white); background: rgba(10, 39, 50, .72); font-size: .76rem; backdrop-filter: blur(8px); }

.cta { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; overflow: hidden; padding: clamp(35px, 6vw, 62px); border-radius: var(--radius-lg); color: var(--white); background: linear-gradient(125deg, var(--navy-950), var(--ocean-600)); box-shadow: var(--shadow); }
.cta::after { content: ""; position: absolute; right: -90px; top: -110px; width: 330px; height: 330px; border: 1px solid rgba(255, 255, 255, .13); border-radius: 50%; box-shadow: 0 0 0 48px rgba(255, 255, 255, .035), 0 0 0 96px rgba(255, 255, 255, .025); }
.cta > * { position: relative; z-index: 1; }
.cta h2 { margin-bottom: 8px; color: var(--white); }
.cta p { margin: 0; color: rgba(255, 255, 255, .82); }

.page-hero { position: relative; min-height: 460px; display: grid; align-items: end; overflow: hidden; isolation: isolate; color: var(--white); background-position: center; background-size: cover; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(8, 35, 45, .92), rgba(12, 65, 79, .54), rgba(10, 39, 50, .15)); }
.page-hero::after { content: ""; position: absolute; right: -12%; bottom: -70%; z-index: -1; width: 60%; aspect-ratio: 1; border-radius: 50%; background: rgba(42, 142, 158, .28); filter: blur(4px); }
.page-hero-shape { position: absolute; right: 6vw; bottom: -90px; width: 280px; height: 280px; border: 1px solid rgba(255, 255, 255, .17); border-radius: 46% 54% 66% 34% / 41% 42% 58% 59%; animation: float-shape 8s ease-in-out infinite; }
@keyframes float-shape { 0%, 100% { transform: rotate(0deg) translateY(0); } 50% { transform: rotate(8deg) translateY(-10px); } }
.page-intro { max-width: 850px; padding: 105px 0 74px; }
.page-intro h1 { margin-bottom: 14px; color: var(--white); font-size: clamp(2.8rem, 6vw, 5.4rem); text-wrap: balance; }
.page-intro p { max-width: 710px; margin: 0; color: rgba(255, 255, 255, .88); font-size: 1.15rem; }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: clamp(35px, 6vw, 75px); align-items: start; }
.legal-layout { max-width: 920px; }
.side-card { position: sticky; top: 115px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.side-card img { width: 100%; aspect-ratio: 4 / 3; margin-bottom: 20px; object-fit: cover; border-radius: 15px; }
.side-card h3 { margin-bottom: 7px; font-size: 1.45rem; }
.side-card p { color: var(--muted); }
.side-card .btn { width: 100%; margin: 4px 0 8px; }

.tourism-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 32px; }
.tourism-card { display: grid; grid-template-columns: auto 1fr; gap: 17px; padding: 23px; border: 1px solid var(--line); border-radius: 19px; background: var(--white); box-shadow: 0 8px 24px rgba(10, 39, 50, .05); transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease; }
.tourism-card:hover { transform: translateY(-6px); border-color: rgba(29, 117, 133, .28); box-shadow: var(--shadow-sm); }
.tourism-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: var(--aqua-100); font-size: 1.4rem; }
.tourism-card h3 { margin-bottom: 5px; font-size: 1.3rem; }
.tourism-card p { margin-bottom: 9px; color: var(--muted); }
.tourism-card div > span { color: var(--ocean-700); font-size: .82rem; font-weight: 850; }

.rates-page { background: radial-gradient(circle at 8% 10%, rgba(204, 235, 234, .42), transparent 25%), var(--sand-50); }
.featured-rates { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin: 36px 0 28px; }
.featured-rate { position: relative; min-height: 240px; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.featured-rate.recommended { color: var(--white); border-color: transparent; background: linear-gradient(135deg, var(--ocean-700), var(--navy-950)); transform: translateY(-8px); box-shadow: var(--shadow); }
.featured-rate h3 { max-width: 78%; margin: 31px 0 8px; font-size: 1.55rem; }
.featured-rate.recommended h3 { color: var(--white); }
.featured-rate p { color: var(--muted); }
.featured-rate.recommended p, .featured-rate.recommended small { color: rgba(255, 255, 255, .78); }
.featured-rate > strong { display: block; margin-top: 17px; color: var(--coral-600); font-family: Georgia, serif; font-size: 2.25rem; line-height: 1; }
.featured-rate.recommended > strong { color: var(--sun-500); }
.featured-rate small { color: var(--muted); }
.rate-number { position: absolute; top: 20px; right: 23px; color: rgba(16, 52, 66, .11); font-family: Georgia, serif; font-size: 3.2rem; font-weight: 700; line-height: 1; }
.featured-rate.recommended .rate-number { color: rgba(255, 255, 255, .13); }
.rate-nav { position: sticky; top: 96px; z-index: 10; display: flex; gap: 8px; padding: 10px; margin: 38px 0 24px; overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; background: rgba(255, 255, 255, .94); box-shadow: var(--shadow-sm); backdrop-filter: blur(15px); scrollbar-width: thin; }
.rate-nav a { flex: 0 0 auto; padding: 9px 13px; border-radius: 10px; color: var(--navy-900); background: var(--sand-100); font-size: .82rem; font-weight: 800; }
.rate-nav a:hover { color: var(--white); background: var(--ocean-600); }
.rate-category-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.rate-category { scroll-margin-top: 180px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.rate-category-heading { display: flex; align-items: center; gap: 15px; padding: 22px 24px; color: var(--white); background: linear-gradient(120deg, var(--navy-900), var(--ocean-700)); }
.rate-category-heading > span { display: grid; place-items: center; flex: 0 0 auto; width: 48px; height: 48px; border-radius: 15px; background: rgba(255, 255, 255, .13); font-size: 1.5rem; }
.rate-category-heading h2 { margin: 0 0 2px; color: var(--white); font-family: "Segoe UI", sans-serif; font-size: 1.25rem; letter-spacing: -.01em; }
.rate-category-heading p { margin: 0; color: rgba(255, 255, 255, .72); font-size: .82rem; }
.rate-list { display: grid; }
.rate-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 72px; padding: 15px 22px; border-bottom: 1px solid var(--line); transition: background .2s ease; }
.rate-row:last-child { border-bottom: 0; }
.rate-row:hover { background: var(--aqua-100); }
.rate-row strong { display: block; color: var(--navy-900); }
.rate-row span { display: block; margin-top: 2px; color: var(--muted); font-size: .8rem; }
.rate-row b { flex: 0 0 auto; color: var(--coral-600); font-family: Georgia, serif; font-size: 1.35rem; text-align: right; }
.rate-notice { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; margin-top: 25px; padding: 20px; border: 1px solid rgba(29, 117, 133, .18); border-radius: 16px; background: var(--aqua-100); }
.rate-notice > span { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; color: var(--white); background: var(--ocean-600); font-family: Georgia, serif; font-weight: 900; }
.rate-notice p { margin: 0; color: #36555f; }

.facebook-section { display: grid; grid-template-columns: minmax(0, .8fr) minmax(320px, 1.2fr); gap: clamp(35px, 6vw, 75px); align-items: start; }
.section-facebook { background: var(--sand-100); }
.section-facebook-compact { background: var(--white); }
.facebook-copy { position: sticky; top: 120px; }
.facebook-embed { min-height: 500px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.facebook-embed iframe { display: block; width: 100%; max-width: 100%; border: 0; }
.external-consent-card { min-height: 500px; display: grid; place-items: center; align-content: center; gap: 18px; padding: 35px; text-align: center; background: radial-gradient(circle at 50% 20%, var(--aqua-100), var(--white) 60%); }
.external-consent-card p { max-width: 480px; color: var(--muted); }
.external-consent-icon { display: grid; place-items: center; width: 70px; height: 70px; border-radius: 22px; color: var(--white); background: #1877f2; box-shadow: 0 15px 35px rgba(24, 119, 242, .25); font-size: 2.4rem; font-weight: 900; }

.sales-list { display: grid; gap: 32px; }
.sale-card { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); gap: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); }
.sale-gallery { min-width: 0; padding: 18px; background: var(--sand-100); }
.sale-main { display: block; height: 460px; overflow: hidden; border-radius: 18px; }
.sale-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.sale-main:hover img { transform: scale(1.04); }
.sale-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 8px; }
.sale-thumbs a { height: 78px; overflow: hidden; border-radius: 10px; }
.sale-thumbs img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.sale-thumbs a:hover img { transform: scale(1.08); }
.sale-content { padding: clamp(30px, 5vw, 58px); }
.sale-content h2 { margin: 12px 0; font-size: clamp(2rem, 3vw, 3rem); }
.sale-badge { display: inline-flex; padding: 7px 11px; border-radius: 999px; color: var(--white); background: var(--ocean-600); font-size: .74rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.sale-price { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin: 24px 0; padding: 18px 20px; border-radius: 15px; background: var(--aqua-100); }
.sale-price span { color: var(--muted); font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.sale-price strong { color: var(--coral-600); font-family: Georgia, serif; font-size: 2.35rem; line-height: 1; }
.sale-rating { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin: -8px 0 22px; color: var(--muted); font-size: .86rem; }
.sale-rating strong { color: #a65a00; font-size: 1rem; }
.sale-review { margin: 0 0 25px; padding: 20px 22px; border-left: 4px solid var(--sun-500); border-radius: 0 15px 15px 0; background: var(--sand-100); }
.sale-review p { margin: 7px 0 9px; color: var(--navy-900); font-size: 1.02rem; font-style: italic; }
.sale-review footer { color: var(--muted); font-size: .82rem; font-weight: 700; }
.sale-review-stars { color: #a65a00; font-weight: 900; }
.sale-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 16px; padding: 0; list-style: none; }
.sale-specs li { color: #31505a; }
.sale-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.empty-state { max-width: 760px; margin: auto; padding: 55px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); text-align: center; }

.form-card { padding: clamp(25px, 4vw, 42px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.form-card h2 { font-size: 2.15rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--navy-900); font-size: .88rem; font-weight: 800; }
.field input, .field textarea, .field select { width: 100%; min-height: 49px; padding: 12px 14px; border: 1px solid rgba(16, 52, 66, .18); border-radius: 12px; color: var(--ink); background: var(--sand-50); transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-color: var(--ocean-500); background: var(--white); box-shadow: 0 0 0 4px rgba(42, 142, 158, .14); }
.consent-check label { color: var(--muted); font-weight: 500; }
.consent-check input { width: auto; min-height: auto; }
.notice { margin: 0 0 20px; padding: 14px 17px; border-radius: 12px; font-weight: 650; }
.notice.success { color: #17603c; background: #e3f4e9; }
.notice.error { color: #873629; background: #fde9e4; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: clamp(35px, 6vw, 70px); align-items: start; }
.contact-list { display: grid; gap: 13px; }
.contact-item { display: grid; grid-template-columns: auto 1fr; gap: 14px; padding: 17px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); box-shadow: 0 7px 22px rgba(10, 39, 50, .05); }
.contact-item > span { display: grid; place-items: center; width: 43px; height: 43px; border-radius: 13px; background: var(--aqua-100); }
.contact-item a { color: var(--ocean-700); }
.map { width: 100%; min-height: 460px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); }

.footer { position: relative; overflow: hidden; padding: 76px 0 22px; color: rgba(255, 255, 255, .76); background: var(--navy-950); }
.footer::before { content: ""; position: absolute; right: -170px; top: -170px; width: 480px; height: 480px; border: 1px solid rgba(255, 255, 255, .06); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255, 255, 255, .018), 0 0 0 140px rgba(255, 255, 255, .012); }
.footer-grid { position: relative; display: grid; grid-template-columns: 1.35fr .8fr .8fr 1.05fr; gap: 40px; }
.footer h3 { margin-bottom: 16px; color: var(--white); font-family: "Segoe UI", sans-serif; font-size: .95rem; letter-spacing: .03em; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid a, .footer-cookie-link { margin: 4px 0; color: rgba(255, 255, 255, .78); transition: color .2s ease, transform .2s ease; }
.footer-grid a:hover, .footer-cookie-link:hover { color: var(--sun-500); transform: translateX(3px); }
.footer-logo { width: 170px; height: 95px; margin-bottom: 14px; object-fit: contain; filter: none; opacity: 1; }
.social-link { font-weight: 800; }
.footer-cookie-link { padding: 0; border: 0; background: transparent; font: inherit; cursor: pointer; }
.footer-book { margin-top: 15px !important; color: var(--white) !important; }
.footer-book:hover { transform: translateY(-2px) !important; }
.footer-bottom { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .78rem; }
.footer-meta-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 13px; }
.footer-meta-links a { color: rgba(255, 255, 255, .68); }
.footer-meta-links a:hover { color: var(--sun-500); }

.cookie-banner { position: fixed; right: 18px; bottom: 18px; left: 18px; z-index: 800; display: none; grid-template-columns: 1fr auto; gap: 25px; align-items: center; max-width: 1180px; margin: auto; padding: 19px 21px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255, 255, 255, .97); box-shadow: var(--shadow-strong); backdrop-filter: blur(18px); }
.cookie-banner.show { display: grid; animation: cookie-in .45s var(--ease); }
@keyframes cookie-in { from { opacity: 0; transform: translateY(20px); } }
.cookie-banner-copy strong { color: var(--navy-900); font-size: 1.05rem; }
.cookie-banner-copy p { margin: 4px 0 0; color: var(--muted); font-size: .86rem; }
.cookie-banner-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.cookie-banner .btn { min-height: 41px; padding: 9px 14px; font-size: .78rem; }
.cookie-modal { position: fixed; inset: 0; z-index: 900; display: grid; place-items: center; visibility: hidden; padding: 20px; opacity: 0; background: rgba(5, 26, 34, .64); transition: opacity .25s ease, visibility .25s; backdrop-filter: blur(5px); }
.cookie-modal.open { visibility: visible; opacity: 1; }
.cookie-modal-card { position: relative; width: min(560px, 100%); padding: 30px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-strong); transform: translateY(12px) scale(.98); transition: transform .3s var(--ease); }
.cookie-modal.open .cookie-modal-card { transform: none; }
.modal-close { position: absolute; top: 15px; right: 15px; display: grid; place-items: center; width: 38px; height: 38px; border: 0; border-radius: 50%; color: var(--navy-900); background: var(--sand-100); font-size: 1.45rem; cursor: pointer; }
.consent-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin: 10px 0; padding: 15px; border: 1px solid var(--line); border-radius: 13px; }
.consent-row.fixed { background: var(--sand-100); }
.consent-row input { width: 22px; height: 22px; accent-color: var(--ocean-600); }

.lightbox { position: fixed; inset: 0; z-index: 950; display: grid; place-items: center; visibility: hidden; padding: 25px; opacity: 0; background: rgba(4, 20, 27, .91); transition: opacity .25s ease, visibility .25s; backdrop-filter: blur(8px); }
.lightbox.open { visibility: visible; opacity: 1; }
.lightbox img { max-width: min(1200px, 94vw); max-height: 88vh; border-radius: 13px; box-shadow: var(--shadow-strong); transform: scale(.96); transition: transform .3s var(--ease); }
.lightbox.open img { transform: scale(1); }
.lightbox button { position: fixed; top: 18px; right: 18px; display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(255, 255, 255, .28); border-radius: 50%; color: var(--white); background: rgba(255, 255, 255, .1); font-size: 1.8rem; cursor: pointer; }

.maintenance { min-height: 100vh; display: grid; place-items: center; padding: 30px; overflow: hidden; color: var(--white); background: radial-gradient(circle at 80% 20%, rgba(42, 142, 158, .32), transparent 30%), linear-gradient(135deg, var(--navy-950), var(--ocean-700)); }
.maintenance-card { position: relative; width: min(720px, 100%); padding: clamp(35px, 7vw, 75px); overflow: hidden; border: 1px solid rgba(255, 255, 255, .18); border-radius: var(--radius-lg); background: rgba(255, 255, 255, .08); box-shadow: var(--shadow-strong); text-align: center; backdrop-filter: blur(16px); }
.maintenance-card::before { content: ""; position: absolute; top: -120px; right: -120px; width: 300px; height: 300px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 50%; box-shadow: 0 0 0 45px rgba(255, 255, 255, .035); }
.maintenance-card img { position: relative; width: 220px; max-height: 130px; margin: 0 auto 24px; object-fit: contain; filter: brightness(0) invert(1); }
.maintenance-card h1 { position: relative; margin-bottom: 15px; color: var(--white); font-size: clamp(2.5rem, 7vw, 5rem); }
.maintenance-card p { position: relative; color: rgba(255, 255, 255, .83); font-size: 1.1rem; }
.maintenance-actions { position: relative; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 28px; }

/* Animations déclenchées au défilement */
.reveal-ready { opacity: 0; transform: translateY(28px); transition: opacity .72s var(--ease), transform .72s var(--ease); }
.reveal-ready.reveal-left { transform: translateX(-32px); }
.reveal-ready.reveal-right { transform: translateX(32px); }
.reveal-ready.is-visible { opacity: 1; transform: none; }
.reveal-ready[data-reveal-delay="1"] { transition-delay: .08s; }
.reveal-ready[data-reveal-delay="2"] { transition-delay: .16s; }
.reveal-ready[data-reveal-delay="3"] { transition-delay: .24s; }
.reveal-ready[data-reveal-delay="4"] { transition-delay: .32s; }
.hero .eyebrow, .hero h1, .hero p, .hero-actions, .hero-highlights { animation: hero-rise .85s both var(--ease); }
.hero h1 { animation-delay: .08s; }
.hero p { animation-delay: .16s; }
.hero-actions { animation-delay: .24s; }
.hero-highlights { animation-delay: .32s; }
@keyframes hero-rise { from { opacity: 0; transform: translateY(24px); } }

@media (max-width: 1180px) {
  .nav { gap: 11px; }
  .brand span { display: none; }
  .brand img { width: 63px; }
  .menu > a, .dropdown > button { padding-inline: 7px; font-size: .83rem; }
  .language-switcher { margin-left: 2px; }
  .nav-book { padding-inline: 14px; }
  .quick-card { grid-template-columns: repeat(3, 1fr); }
  .quick-promise { grid-column: span 2; }
  .quick-card > .btn { width: 100%; }
}

@media (max-width: 980px) {
  .topbar .container { min-height: 42px; }
  .top-email { display: none; }
  .mobile-toggle { display: grid; place-items: center; margin-left: auto; }
  .nav { min-height: 74px; flex-wrap: wrap; }
  .brand span { display: block; }
  .menu { position: absolute; top: calc(100% + 1px); right: 20px; left: 20px; display: grid; max-height: 0; margin: 0; padding: 0 12px; overflow: hidden; visibility: hidden; border: 1px solid var(--line); border-radius: 0 0 18px 18px; background: rgba(255, 255, 255, .98); box-shadow: var(--shadow); opacity: 0; transition: max-height .4s var(--ease), opacity .25s ease, padding .25s ease, visibility .25s; backdrop-filter: blur(18px); }
  .menu.open { max-height: calc(100vh - 110px); padding: 13px 12px 18px; overflow-y: auto; visibility: visible; opacity: 1; }
  .menu > a, .dropdown > button { width: 100%; padding: 12px 13px; text-align: left; }
  .menu > a::after, .dropdown > button::after { display: none; }
  .dropdown-panel { position: static; display: none; min-width: 0; padding: 4px 8px 8px 16px; visibility: visible; opacity: 1; border: 0; background: var(--sand-100); box-shadow: none; transform: none; }
  .dropdown.open .dropdown-panel { display: grid; }
  .language-switcher { justify-self: start; margin: 8px 0 3px; }
  .nav-book { order: 3; }
  .hero { min-height: 680px; }
  .hero::before { background: linear-gradient(90deg, rgba(7, 34, 44, .94), rgba(9, 49, 61, .63)); }
  .hero-content { padding: 95px 0 140px; }
  .grid-2, .content-layout, .contact-grid, .facebook-section { grid-template-columns: 1fr; }
  .image-stack { width: min(720px, 100%); margin: 20px auto 0; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .ranking-card { grid-template-columns: 1fr; }
  .ranking-visual { min-height: 330px; width: min(500px, 100%); margin: auto; }
  .side-card, .facebook-copy { position: static; }
  .rate-category-grid { grid-template-columns: 1fr; }
  .sale-card { grid-template-columns: 1fr; }
  .sale-main { height: 480px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 30px), var(--max)); }
  .top-address { display: none; }
  .topbar .container { justify-content: center; }
  .top-actions { width: 100%; justify-content: center; }
  .top-admin span { display: none; }
  .brand span { font-size: .92rem; }
  .brand small { font-size: .58rem; }
  .nav-book { display: none; }
  .hero { min-height: 650px; align-items: end; }
  .hero-content { padding: 80px 0 135px; }
  .hero h1 { font-size: clamp(2.9rem, 13vw, 4.8rem); }
  .hero-scroll { display: none; }
  .quick-search { margin-top: -45px; }
  .quick-card { grid-template-columns: 1fr 1fr; padding: 15px; }
  .quick-card > div:nth-child(3) { grid-column: 1 / -1; }
  .quick-promise { grid-column: 1 / -1; }
  .quick-card > .btn { grid-column: 1 / -1; }
  .section { padding: 76px 0; }
  .section-sm { padding: 48px 0; }
  .cards, .news-grid, .featured-rates { grid-template-columns: 1fr; }
  .featured-rate.recommended { transform: none; }
  .features { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 190px; }
  .gallery a:nth-child(1), .gallery a:nth-child(6) { grid-column: span 2; }
  .cta { display: grid; }
  .page-hero { min-height: 410px; }
  .page-intro { padding: 82px 0 58px; }
  .tourism-grid { grid-template-columns: 1fr; }
  .rate-nav { top: 80px; }
  .sale-main { height: 380px; }
  .sale-specs { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 22px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-meta-links { justify-content: flex-start; }
  .cookie-banner { grid-template-columns: 1fr; }
  .cookie-banner-actions { justify-content: flex-start; }
}

@media (max-width: 520px) {
  .topbar { font-size: .74rem; }
  .brand img { width: 58px; height: 49px; }
  .brand span { display: none; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-highlights { gap: 6px; }
  .hero-highlights span { font-size: .75rem; }
  .quick-card { grid-template-columns: 1fr; }
  .quick-card > div:nth-child(3), .quick-promise, .quick-card > .btn { grid-column: auto; }
  .floating-card { right: 0; bottom: -18px; }
  .features { grid-template-columns: 1fr; }
  .feature { min-height: auto; }
  .stats { grid-template-columns: 1fr 1fr; gap: 8px; }
  .ranking-card { padding: 24px; }
  .ranking-visual { min-height: 255px; }
  .gallery { grid-auto-rows: 155px; gap: 8px; }
  .rate-row { align-items: flex-start; flex-direction: column; gap: 7px; }
  .rate-row b { text-align: left; }
  .rate-category-heading { padding: 18px; }
  .sale-main { height: 300px; }
  .sale-thumbs { grid-template-columns: repeat(3, 1fr); }
  .sale-thumbs a { height: 68px; }
  .sale-price { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .cookie-banner { right: 9px; bottom: 9px; left: 9px; padding: 16px; }
  .cookie-banner-actions { display: grid; }
  .cookie-banner-actions .btn { width: 100%; }
  .maintenance-actions { align-items: stretch; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal-ready { opacity: 1 !important; transform: none !important; }
}
/* ==========================================================================
   CAMPING BEAU SÉJOUR — DESIGN V4 — 30/07/2026
   Nouvelle identité littorale : océan, sable, végétation et corail.
   Cette couche remplace visuellement la V3 et corrige le responsive.
   ========================================================================== */

:root {
  --v4-ink: #17383e;
  --v4-muted: #536f74;
  --v4-deep: #07353d;
  --v4-sea: #0d4f5c;
  --v4-sea-2: #147a87;
  --v4-lagoon: #34b7aa;
  --v4-mint: #dff5ef;
  --v4-coral: #ef744f;
  --v4-coral-dark: #d95b39;
  --v4-sand: #f4ecdf;
  --v4-cream: #fbf8f2;
  --v4-white: #fff;
  --v4-line: rgba(13,79,92,.14);
  --v4-line-strong: rgba(13,79,92,.24);
  --v4-shadow: 0 20px 55px rgba(7,53,61,.14);
  --v4-shadow-lg: 0 35px 90px rgba(7,53,61,.22);
  --v4-radius: 24px;
}

html { scroll-padding-top: 120px; }
body.site-body {
  color: var(--v4-ink);
  background: var(--v4-cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
body.site-body::before {
  content: "";
  position: fixed;
  z-index: -10;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 12%, rgba(52,183,170,.08), transparent 26%),
    radial-gradient(circle at 92% 72%, rgba(239,116,79,.06), transparent 24%);
}
.site-body h1,
.site-body h2,
.site-body h3 {
  color: var(--v4-deep);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.035em;
  line-height: 1.08;
}
.site-body h1 { font-size: clamp(2.8rem, 6vw, 5.7rem); }
.site-body h2 { font-size: clamp(2rem, 4vw, 3.55rem); }
.site-body h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); }
.site-body .lead { color: var(--v4-muted); }
.site-body .kicker,
.site-body .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--v4-coral-dark);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.site-body .kicker::before,
.site-body .eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.site-body .topbar {
  color: rgba(255,255,255,.92);
  background: var(--v4-deep);
}
.site-body .topbar a:hover { color: #a7eee4; }

.site-body .header {
  background: rgba(255,255,255,.93);
  border-bottom-color: transparent;
  backdrop-filter: blur(18px) saturate(150%);
}
.site-body .header.is-scrolled {
  background: rgba(255,255,255,.985);
  border-bottom-color: var(--v4-line);
  box-shadow: 0 14px 40px rgba(7,53,61,.1);
}
.site-body .nav { min-height: 84px; }
.site-body .brand img {
  width: 70px;
  height: 54px;
  filter: drop-shadow(0 8px 12px rgba(7,53,61,.12));
}
.site-body .brand > span {
  color: var(--v4-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}
.site-body .brand small {
  color: var(--v4-muted);
  font-family: Inter, sans-serif;
  letter-spacing: .09em;
}
.site-body .menu > a,
.site-body .dropdown > button {
  position: relative;
  min-height: 42px;
  padding-inline: 10px;
  color: var(--v4-ink);
  border-radius: 12px;
  font-size: .82rem;
  font-weight: 850;
}
.site-body .menu > a:hover,
.site-body .dropdown > button:hover,
.site-body .menu > a.active,
.site-body .dropdown.current > button {
  color: var(--v4-sea);
  background: var(--v4-mint);
  transform: translateY(-1px);
}
.site-body .menu > a.active::after,
.site-body .dropdown.current > button::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  border-radius: 99px;
  background: var(--v4-coral);
}
.site-body .dropdown-panel {
  padding: 10px;
  background: rgba(255,255,255,.99);
  border: 1px solid var(--v4-line);
  border-radius: 18px;
  box-shadow: var(--v4-shadow);
}
.site-body .dropdown-panel a {
  padding: 10px 12px;
  color: var(--v4-muted);
  border-radius: 10px;
  font-weight: 750;
}
.site-body .dropdown-panel a:hover {
  color: var(--v4-deep);
  background: var(--v4-mint);
}

/* Drapeaux visibles avec fichiers SVG locaux */
.site-body .language-switcher {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: 6px;
  padding: 4px;
  background: var(--v4-sand);
  border: 1px solid rgba(13,79,92,.1);
  border-radius: 14px;
}
.site-body .language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 51px;
  height: 34px;
  padding: 0 7px;
  color: var(--v4-sea);
  border-radius: 10px;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .05em;
  transition: transform .2s ease, color .2s ease, background .2s ease;
}
.site-body .language-switcher a:hover {
  background: rgba(255,255,255,.9);
  transform: translateY(-1px);
}
.site-body .language-switcher a.active {
  color: #fff;
  background: var(--v4-sea);
  box-shadow: 0 7px 16px rgba(13,79,92,.24);
}
.site-body .language-flag {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.14);
}

.site-body .btn {
  position: relative;
  overflow: hidden;
  min-height: 48px;
  border-radius: 14px;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease;
}
.site-body .btn:hover { transform: translateY(-2px); }
.site-body .btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--v4-coral), var(--v4-coral-dark));
  box-shadow: 0 12px 28px rgba(217,91,57,.26);
}
.site-body .btn-secondary {
  color: #fff;
  background: linear-gradient(135deg, var(--v4-sea-2), var(--v4-deep));
  box-shadow: 0 12px 28px rgba(7,53,61,.2);
}
.site-body .btn-light {
  color: var(--v4-deep);
  background: rgba(255,255,255,.96);
}
.site-body .btn-outline-light {
  color: #fff;
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}
.site-body .text-link {
  color: var(--v4-sea-2);
  font-weight: 900;
  border-bottom-color: currentColor;
}
.site-body .text-link:hover { color: var(--v4-coral-dark); }

/* Accueil totalement différencié */
.site-body .hero {
  --hero-shift: 0px;
  min-height: min(780px, calc(100vh - 70px));
  background-position: center calc(50% + var(--hero-shift));
  isolation: isolate;
}
.site-body .hero::before {
  background:
    linear-gradient(90deg, rgba(4,35,42,.91) 0%, rgba(4,35,42,.67) 43%, rgba(4,35,42,.17) 78%, rgba(4,35,42,.05)),
    linear-gradient(0deg, rgba(4,35,42,.42), transparent 45%);
}
.site-body .hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: -5%;
  right: -5%;
  bottom: -86px;
  height: 148px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: var(--v4-cream);
}
.site-body .hero-content {
  position: relative;
  z-index: 3;
  padding-top: 45px;
  padding-bottom: 120px;
}
.site-body .hero .eyebrow { color: #a7eee4; animation: v4HeroUp .65s ease both; }
.site-body .hero h1 {
  max-width: 830px;
  color: #fff;
  text-shadow: 0 8px 30px rgba(0,0,0,.24);
  animation: v4HeroUp .8s .08s ease both;
}
.site-body .hero p {
  max-width: 700px;
  color: rgba(255,255,255,.88);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  animation: v4HeroUp .8s .16s ease both;
}
.site-body .hero-actions { animation: v4HeroUp .8s .24s ease both; }
.site-body .hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 36px;
  animation: v4HeroUp .8s .32s ease both;
}
.site-body .hero-highlights span {
  padding: 9px 13px;
  color: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(7,53,61,.3);
  backdrop-filter: blur(9px);
}
.site-body .hero-orbit {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  animation: v4Orbit 13s ease-in-out infinite alternate;
}
.site-body .hero-orbit-one {
  width: 370px;
  height: 370px;
  right: 8%;
  top: 14%;
}
.site-body .hero-orbit-two {
  width: 230px;
  height: 230px;
  right: 18%;
  top: 31%;
  animation-delay: -4s;
}
.site-body .hero-scroll {
  z-index: 5;
  bottom: 56px;
}
.site-body .hero-scroll span { animation: v4Scroll 1.7s infinite; }

.site-body .quick-search {
  z-index: 20;
  margin-top: -75px;
}
.site-body .quick-card {
  grid-template-columns: 1fr 1fr 1.2fr 1fr auto;
  align-items: end;
  gap: 13px;
  padding: 22px;
  background: rgba(255,255,255,.985);
  border: 1px solid var(--v4-line);
  border-radius: 25px;
  box-shadow: var(--v4-shadow-lg);
}
.site-body .quick-card label,
.site-body .field label {
  color: var(--v4-deep);
  font-size: .76rem;
  font-weight: 900;
}
.site-body .quick-card input,
.site-body .quick-card select,
.site-body .field input,
.site-body .field select,
.site-body .field textarea {
  min-height: 48px;
  color: var(--v4-ink);
  background: #fff;
  border: 1px solid var(--v4-line-strong);
  border-radius: 12px;
}
.site-body .quick-card input:focus,
.site-body .quick-card select:focus,
.site-body .field input:focus,
.site-body .field select:focus,
.site-body .field textarea:focus {
  border-color: var(--v4-lagoon);
  box-shadow: 0 0 0 4px rgba(52,183,170,.14);
}
.site-body .quick-promise { color: var(--v4-sea); }
.site-body .quick-promise > span { background: var(--v4-lagoon); }

.site-body .section { padding-block: clamp(72px, 8vw, 118px); }
.site-body .section-soft {
  background:
    radial-gradient(circle at 10% 10%, rgba(52,183,170,.12), transparent 30%),
    linear-gradient(135deg, #eef8f5 0%, #fbf8f2 68%);
}
.site-body .section-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  pointer-events: none;
  background-image: radial-gradient(rgba(13,79,92,.18) .75px, transparent .75px);
  background-size: 24px 24px;
}
.site-body .section-soft > .container { position: relative; }

.site-body .grid-2 {
  gap: clamp(40px, 7vw, 90px);
}
.site-body .image-stack { min-height: 490px; }
.site-body .image-stack::before {
  content: "";
  position: absolute;
  left: -24px;
  top: -24px;
  width: 70%;
  height: 72%;
  border-radius: 42% 58% 63% 37% / 36% 43% 57% 64%;
  background: var(--v4-mint);
  animation: v4Blob 10s ease-in-out infinite alternate;
}
.site-body .image-stack > img {
  position: relative;
  height: 490px;
  border-radius: 42px 10px 42px 10px;
  box-shadow: var(--v4-shadow);
}
.site-body .floating-card {
  right: -20px;
  bottom: 32px;
  color: #fff;
  background: linear-gradient(135deg, var(--v4-sea-2), var(--v4-deep));
  border-radius: 18px;
  box-shadow: var(--v4-shadow);
  animation: v4Float 4s ease-in-out infinite;
}
.site-body .floating-card strong { font-family: Georgia, serif; }

.site-body .card,
.site-body .feature,
.site-body .news-card,
.site-body .tourism-card,
.site-body .featured-rate,
.site-body .rate-category,
.site-body .form-card,
.site-body .contact-grid > aside {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  border-color: var(--v4-line);
  box-shadow: 0 9px 28px rgba(7,53,61,.07);
}
.site-body .card::after,
.site-body .feature::after,
.site-body .news-card::after,
.site-body .tourism-card::after,
.site-body .featured-rate::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(52,183,170,.17), transparent 38%);
  transition: opacity .25s ease;
}
.site-body .card:hover::after,
.site-body .feature:hover::after,
.site-body .news-card:hover::after,
.site-body .tourism-card:hover::after,
.site-body .featured-rate:hover::after { opacity: 1; }

.site-body .cards { gap: 24px; }
.site-body .card {
  overflow: hidden;
  background: #fff;
  border-radius: 27px;
  transition: transform .28s ease, box-shadow .28s ease;
}
.site-body .card:hover {
  transform: translateY(-8px);
  box-shadow: var(--v4-shadow);
}
.site-body .card-media { height: 255px; }
.site-body .card-media img { transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.site-body .card:hover .card-media img { transform: scale(1.07); }
.site-body .card-body { position: relative; z-index: 2; padding: 25px; }

.site-body .features {
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 15px;
}
.site-body .feature {
  min-height: 128px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  transition: transform .22s ease, border-color .22s ease;
}
.site-body .feature:hover {
  transform: translateY(-5px) rotate(-.35deg);
  border-color: rgba(52,183,170,.5);
}
.site-body .feature-icon {
  width: 46px;
  height: 46px;
  background: var(--v4-mint);
  border-radius: 14px;
}

.site-body .band {
  color: #fff;
  background: var(--v4-deep);
  overflow: hidden;
}
.site-body .band::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .24;
  background: repeating-linear-gradient(115deg, transparent 0 60px, rgba(255,255,255,.08) 61px 62px);
}
.site-body .stats { position: relative; }
.site-body .stat strong {
  color: #a7eee4;
  font-family: Georgia, serif;
}
.site-body .stat { border-color: rgba(255,255,255,.17); }

.site-body .ranking-section { background: var(--v4-sand); }
.site-body .ranking-card {
  position: relative;
  gap: clamp(30px, 6vw, 84px);
  padding: clamp(30px, 5vw, 62px);
  background: #fff;
  border: 1px solid var(--v4-line);
  border-radius: 38px;
  box-shadow: var(--v4-shadow);
  overflow: hidden;
}
.site-body .ranking-card::after {
  content: "TOP 60";
  position: absolute;
  right: -20px;
  bottom: -42px;
  color: rgba(13,79,92,.045);
  font-family: Georgia, serif;
  font-size: clamp(5rem, 14vw, 11rem);
  font-weight: 800;
  line-height: 1;
}
.site-body .ranking-magazine {
  transform: rotate(-5deg);
  box-shadow: 0 24px 55px rgba(7,53,61,.23);
  transition: transform .35s ease;
}
.site-body .ranking-card:hover .ranking-magazine {
  transform: rotate(-2deg) translateY(-5px);
}
.site-body .ranking-badge {
  animation: v4Badge 4s ease-in-out infinite;
}
.site-body .ranking-note,
.site-body .tag,
.site-body .sale-badge {
  color: var(--v4-sea);
  background: var(--v4-mint);
  border-radius: 999px;
}

.site-body .news-grid { gap: 22px; }
.site-body .news-card {
  overflow: hidden;
  background: #fff;
  border-radius: 24px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.site-body .news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--v4-shadow);
}
.site-body .news-card > img { height: 230px; }
.site-body .news-card .inside { position: relative; z-index: 2; padding: 23px; }

.site-body .section-facebook { background: linear-gradient(135deg, #eef8f5, #fff); }
.site-body .section-facebook-compact {
  color: #fff;
  background: var(--v4-deep);
}
.site-body .section-facebook-compact h2,
.site-body .section-facebook-compact .lead { color: #fff; }
.site-body .facebook-section {
  grid-template-columns: minmax(0,.75fr) minmax(360px,1.25fr);
  gap: clamp(30px, 6vw, 72px);
}
.site-body .facebook-copy { position: sticky; top: 125px; }
.site-body .facebook-embed {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--v4-line);
  border-radius: 25px;
  box-shadow: var(--v4-shadow);
}
.site-body .external-consent-card {
  background: radial-gradient(circle at top, var(--v4-mint), #fff 58%);
}
.site-body .external-consent-icon {
  border-radius: 20px;
  box-shadow: 0 16px 32px rgba(24,119,242,.22);
}

.site-body .gallery {
  grid-auto-rows: 120px;
  gap: 12px;
}
.site-body .gallery a {
  overflow: hidden;
  border-radius: 18px;
}
.site-body .gallery img { transition: transform .7s ease, opacity .35s ease; }
.site-body .gallery a:hover img {
  transform: scale(1.08);
  opacity: .84;
}
.site-body .gallery a:nth-child(6n+1) { grid-column: span 5; grid-row: span 3; }
.site-body .gallery a:nth-child(6n+2),
.site-body .gallery a:nth-child(6n+3) { grid-column: span 3; grid-row: span 2; }
.site-body .gallery a:nth-child(6n+4),
.site-body .gallery a:nth-child(6n+5) { grid-column: span 2; grid-row: span 2; }
.site-body .gallery a:nth-child(6n+6) { grid-column: span 7; grid-row: span 1; }

.site-body .cta {
  position: relative;
  padding: clamp(32px, 5vw, 58px);
  color: #fff;
  background: linear-gradient(120deg, var(--v4-deep), var(--v4-sea-2));
  border-radius: 32px;
  box-shadow: var(--v4-shadow);
  overflow: hidden;
}
.site-body .cta::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -70px;
  top: -110px;
  border: 42px solid rgba(255,255,255,.08);
  border-radius: 50%;
}
.site-body .cta > * { position: relative; z-index: 2; }
.site-body .cta h2 { color: #fff; }

/* Pages intérieures */
.site-body .page-hero {
  min-height: 480px;
  isolation: isolate;
}
.site-body .page-hero::before {
  background: linear-gradient(90deg, rgba(4,35,42,.91), rgba(4,35,42,.5) 66%, rgba(4,35,42,.17));
}
.site-body .page-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: -4%;
  right: -4%;
  bottom: -80px;
  height: 138px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: var(--v4-cream);
}
.site-body .page-hero-grid {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000, transparent 76%);
}
.site-body .page-hero-shape {
  border-color: rgba(255,255,255,.2);
  animation: v4Blob 9s ease-in-out infinite alternate;
}
.site-body .page-intro {
  position: relative;
  z-index: 3;
  padding-bottom: 105px;
}
.site-body .page-intro h1 {
  color: #fff;
  text-shadow: 0 8px 28px rgba(0,0,0,.22);
  animation: v4HeroUp .75s ease both;
}
.site-body .page-intro p {
  color: rgba(255,255,255,.86);
  animation: v4HeroUp .75s .1s ease both;
}

.site-body .content-layout {
  gap: clamp(36px, 6vw, 78px);
}
.site-body .content { color: var(--v4-muted); }
.site-body .content h2,
.site-body .content h3,
.site-body .content strong { color: var(--v4-deep); }
.site-body .content a { color: var(--v4-sea-2); }
.site-body .side-card {
  top: 125px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--v4-line);
  border-radius: 25px;
  box-shadow: var(--v4-shadow);
}
.site-body .side-card img { border-radius: 18px; }

.site-body .tourism-grid { gap: 17px; }
.site-body .tourism-card {
  padding: 22px;
  background: #fff;
  border-radius: 21px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-body .tourism-card:hover {
  transform: translateY(-5px);
  border-color: rgba(52,183,170,.55);
  box-shadow: var(--v4-shadow);
}
.site-body .tourism-icon {
  width: 52px;
  height: 52px;
  background: var(--v4-mint);
  border-radius: 16px;
}

/* Nouvelle page tarifs */
.site-body .rates-page {
  background: linear-gradient(180deg, var(--v4-cream), #fff 18%, #fff 80%, var(--v4-sand));
}
.site-body .featured-rates {
  gap: 18px;
  margin-block: 36px 30px;
}
.site-body .featured-rate {
  min-height: 280px;
  padding: 27px;
  background: #fff;
  border: 1px solid var(--v4-line);
  border-radius: 27px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.site-body .featured-rate:hover {
  transform: translateY(-6px);
  box-shadow: var(--v4-shadow);
}
.site-body .featured-rate.recommended {
  color: #fff;
  background: linear-gradient(145deg, var(--v4-sea-2), var(--v4-deep));
  border-color: transparent;
  transform: translateY(-10px);
}
.site-body .featured-rate.recommended h3,
.site-body .featured-rate.recommended p { color: #fff; }
.site-body .rate-number {
  color: rgba(13,79,92,.08);
  font-family: Georgia, serif;
  font-size: 4.5rem;
}
.site-body .recommended .rate-number { color: rgba(255,255,255,.1); }
.site-body .featured-rate > strong {
  color: var(--v4-coral-dark);
  font-family: Georgia, serif;
  font-size: 2.1rem;
}
.site-body .featured-rate.recommended > strong { color: #a7eee4; }
.site-body .rate-nav {
  position: sticky;
  z-index: 30;
  top: 96px;
  padding: 10px;
  background: rgba(255,255,255,.95);
  border: 1px solid var(--v4-line);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(7,53,61,.09);
  backdrop-filter: blur(12px);
}
.site-body .rate-nav a {
  color: var(--v4-sea);
  background: var(--v4-mint);
  border-radius: 10px;
  transition: transform .2s ease, color .2s ease, background .2s ease;
}
.site-body .rate-nav a:hover {
  color: #fff;
  background: var(--v4-sea-2);
  transform: translateY(-2px);
}
.site-body .rate-category-grid { gap: 22px; }
.site-body .rate-category {
  scroll-margin-top: 170px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--v4-line);
  border-radius: 27px;
}
.site-body .rate-category-heading {
  color: #fff;
  background: linear-gradient(135deg, var(--v4-sea), var(--v4-deep));
}
.site-body .rate-category-heading h2 { color: #fff; }
.site-body .rate-category-heading > span {
  background: rgba(255,255,255,.12);
  border-radius: 15px;
}
.site-body .rate-list { padding-inline: 22px; }
.site-body .rate-row { border-bottom-color: var(--v4-line-strong); }
.site-body .rate-row strong { color: var(--v4-deep); }
.site-body .rate-row span { color: var(--v4-muted); }
.site-body .rate-row b {
  color: var(--v4-coral-dark);
  font-family: Georgia, serif;
}
.site-body .rate-notice {
  color: var(--v4-sea);
  background: var(--v4-mint);
  border-radius: 18px;
}
.site-body .rate-notice > span { background: var(--v4-sea-2); }

/* Vente mobil-home */
.site-body .sale-card {
  grid-template-columns: minmax(0,1.08fr) minmax(360px,.92fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--v4-line);
  border-radius: 33px;
  box-shadow: var(--v4-shadow);
}
.site-body .sale-gallery { background: var(--v4-sand); }
.site-body .sale-main { border-radius: 23px; }
.site-body .sale-main img { transition: transform .7s ease; }
.site-body .sale-main:hover img { transform: scale(1.05); }
.site-body .sale-price {
  border-color: var(--v4-line);
}
.site-body .sale-price strong {
  color: var(--v4-coral-dark);
  font-family: Georgia, serif;
}
.site-body .sale-specs li { color: var(--v4-sea); }

/* Formulaires */
.site-body .form-card,
.site-body .contact-grid > aside {
  padding: clamp(25px, 4vw, 43px);
  background: #fff;
  border: 1px solid var(--v4-line);
  border-radius: 28px;
}
.site-body .contact-item {
  background: var(--v4-cream);
  border-color: rgba(13,79,92,.09);
  border-radius: 17px;
}
.site-body .contact-item > span {
  background: var(--v4-mint);
  border-radius: 13px;
}
.site-body .contact-item a { color: var(--v4-sea-2); }
.site-body .map {
  border-radius: 27px;
  box-shadow: var(--v4-shadow);
}

/* Pied de page et administration */
.site-body .footer {
  color: rgba(255,255,255,.73);
  background: var(--v4-deep);
}
.site-body .footer::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -190px;
  top: -250px;
  border: 75px solid rgba(255,255,255,.035);
  border-radius: 50%;
}
.site-body .footer h3 { color: #fff; }
.site-body .footer-logo {
  padding: 10px;
  background: #fff;
  border-radius: 17px;
  filter: none !important;
  opacity: 1;
}
.site-body .footer-grid > div > a:hover,
.site-body .footer-cookie-link:hover { color: #a7eee4; }
.site-body .footer-bottom { border-top-color: rgba(255,255,255,.12); }

.site-body .floating-admin-link {
  position: fixed;
  z-index: 850;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px 9px 9px;
  color: #fff;
  background: rgba(7,53,61,.93);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(7,53,61,.3);
  backdrop-filter: blur(10px);
  font-size: .75rem;
  transition: transform .2s ease, background .2s ease;
}
.site-body .floating-admin-link span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.13);
  border-radius: 50%;
}
.site-body .floating-admin-link:hover {
  color: #fff;
  background: var(--v4-sea-2);
  transform: translateY(-3px);
}

/* Fenêtres, cookies et maintenance */
.site-body .cookie-banner {
  background: rgba(255,255,255,.985);
  border: 1px solid var(--v4-line);
  border-radius: 23px;
  box-shadow: var(--v4-shadow-lg);
  backdrop-filter: blur(14px);
}
.site-body .cookie-modal {
  background: rgba(4,35,42,.7);
  backdrop-filter: blur(8px);
}
.site-body .cookie-modal-card {
  border-radius: 25px;
  box-shadow: var(--v4-shadow-lg);
}
.site-body .consent-row {
  background: var(--v4-cream);
  border-color: var(--v4-line);
  border-radius: 14px;
}
.site-body .consent-row input { accent-color: var(--v4-sea-2); }

.maintenance {
  color: #fff;
  background: radial-gradient(circle at 30% 20%, var(--v4-sea-2), var(--v4-deep) 58%);
}
.maintenance-card {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.18);
  border-radius: 35px;
  box-shadow: var(--v4-shadow-lg);
  backdrop-filter: blur(17px);
}
.maintenance-card h1 { color: #fff; }
.maintenance-card img {
  padding: 12px;
  background: #fff;
  border-radius: 19px;
}

/* Animations au défilement */
.site-body .reveal-ready {
  opacity: 0;
  transform: translateY(28px) scale(.985);
  transition:
    opacity .72s cubic-bezier(.2,.7,.2,1),
    transform .72s cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--reveal-delay, 0) * 90ms);
}
.site-body .reveal-ready.reveal-left { transform: translateX(-34px); }
.site-body .reveal-ready.reveal-right { transform: translateX(34px); }
.site-body .reveal-ready.is-visible {
  opacity: 1;
  transform: none;
}
.site-body [data-reveal-delay="1"] { --reveal-delay: 1; }
.site-body [data-reveal-delay="2"] { --reveal-delay: 2; }
.site-body [data-reveal-delay="3"] { --reveal-delay: 3; }
.site-body [data-reveal-delay="4"] { --reveal-delay: 4; }

.site-body.is-v4-loaded .header { animation: v4HeaderIn .45s ease both; }

@keyframes v4HeroUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: none; }
}
@keyframes v4HeaderIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: none; }
}
@keyframes v4Orbit {
  from { transform: translate3d(0,0,0) rotate(0); border-radius: 50%; }
  to { transform: translate3d(20px,-18px,0) rotate(22deg); border-radius: 43% 57% 62% 38% / 38% 42% 58% 62%; }
}
@keyframes v4Scroll {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(15px); }
}
@keyframes v4Blob {
  from { border-radius: 42% 58% 63% 37% / 36% 43% 57% 64%; transform: rotate(0); }
  to { border-radius: 56% 44% 37% 63% / 55% 62% 38% 45%; transform: rotate(5deg); }
}
@keyframes v4Float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-9px) rotate(1deg); }
}
@keyframes v4Badge {
  0%, 100% { transform: scale(1) rotate(3deg); }
  50% { transform: scale(1.04) rotate(-1deg); }
}

@media (max-width: 1180px) {
  .site-body .language-switcher a { min-width: 43px; }
  .site-body .language-code { display: none; }
  .site-body .quick-card { grid-template-columns: repeat(3,1fr); }
  .site-body .quick-promise { display: none; }
  .site-body .quick-card .btn { grid-column: span 3; }
}

@media (max-width: 980px) {
  .site-body .nav { min-height: 74px; }
  .site-body .menu {
    background: rgba(255,255,255,.99);
    border: 1px solid var(--v4-line);
    border-radius: 21px;
    box-shadow: var(--v4-shadow-lg);
  }
  .site-body .dropdown-panel { background: var(--v4-cream); }
  .site-body .language-switcher {
    margin: 8px 0 0;
    justify-content: center;
  }
  .site-body .language-switcher a {
    width: 31%;
    min-width: 0;
  }
  .site-body .language-code { display: inline; }
  .site-body .quick-card { grid-template-columns: repeat(2,1fr); }
  .site-body .quick-card > div:nth-child(3) { grid-column: span 2; }
  .site-body .quick-card .btn { grid-column: span 2; }
  .site-body .content-layout,
  .site-body .contact-grid,
  .site-body .sale-card,
  .site-body .facebook-section,
  .site-body .ranking-card { grid-template-columns: 1fr; }
  .site-body .facebook-copy,
  .site-body .side-card { position: static; }
  .site-body .features { grid-template-columns: repeat(2,1fr); }
  .site-body .ranking-visual {
    width: min(100%, 470px);
    margin-inline: auto;
  }
  .site-body .gallery a:nth-child(n) {
    grid-column: span 6;
    grid-row: span 2;
  }
  .site-body .gallery a:nth-child(3n+1) {
    grid-column: span 12;
    grid-row: span 3;
  }
}

@media (max-width: 720px) {
  .site-body .topbar { display: none; }
  .site-body .brand img { width: 59px; height: 46px; }
  .site-body .hero { min-height: 700px; }
  .site-body .hero h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .site-body .hero-actions .btn { width: 100%; }
  .site-body .hero-orbit { display: none; }
  .site-body .quick-search { margin-top: -59px; }
  .site-body .quick-card {
    grid-template-columns: 1fr;
    padding: 17px;
  }
  .site-body .quick-card > div:nth-child(3),
  .site-body .quick-card .btn { grid-column: auto; }
  .site-body .image-stack { min-height: 390px; }
  .site-body .image-stack > img {
    height: 390px;
    border-radius: 29px 8px 29px 8px;
  }
  .site-body .floating-card {
    right: -5px;
    bottom: 18px;
  }
  .site-body .features,
  .site-body .stats,
  .site-body .featured-rates,
  .site-body .rate-category-grid,
  .site-body .tourism-grid,
  .site-body .form-grid { grid-template-columns: 1fr; }
  .site-body .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }
  .site-body .page-hero { min-height: 415px; }
  .site-body .page-intro { padding-bottom: 78px; }
  .site-body .page-hero-shape { display: none; }
  .site-body .featured-rate.recommended { transform: none; }
  .site-body .rate-nav {
    position: static;
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .site-body .rate-nav a { flex: 0 0 auto; }
  .site-body .sale-main { height: 300px; }
  .site-body .sale-specs { grid-template-columns: 1fr; }
  .site-body .gallery { grid-auto-rows: 106px; }
  .site-body .gallery a:nth-child(n) {
    grid-column: span 6;
    grid-row: span 2;
  }
  .site-body .gallery a:nth-child(3n+1) {
    grid-column: span 12;
    grid-row: span 2;
  }
  .site-body .cta {
    align-items: stretch;
    flex-direction: column;
    border-radius: 25px;
  }
  .site-body .cta .btn { width: 100%; }
  .site-body .floating-admin-link { padding: 8px; }
  .site-body .floating-admin-link strong { display: none; }
}

@media (max-width: 460px) {
  .site-body .brand > span { display: none; }
  .site-body .language-switcher a { width: 32%; }
  .site-body .hero-highlights span:last-child { display: none; }
}

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

.site-body .v4-ripple{position:absolute;z-index:0;pointer-events:none;border-radius:50%;background:rgba(255,255,255,.28);transform:scale(0);animation:v4Ripple .62s ease-out forwards}.site-body .btn>*{position:relative;z-index:1}@keyframes v4Ripple{to{transform:scale(1);opacity:0}}


/* Google Cloud Fraud Defense — formulaires de contact et réservation */
.fraud-defense-status {
    min-height: 22px;
    margin-top: -4px;
    color: var(--muted, #5f6f70);
    font-size: .9rem;
    font-weight: 700;
}
.fraud-defense-status:empty {
    display: none;
}
.fraud-defense-status.is-error {
    display: block;
    padding: 12px 14px;
    border: 1px solid rgba(185, 28, 28, .22);
    border-radius: 12px;
    background: rgba(254, 226, 226, .72);
    color: #991b1b;
}
.form-grid button[type="submit"]:disabled {
    cursor: wait;
    opacity: .68;
    transform: none !important;
}


/* V4.8 — cartes Facebook synchronisées via l’API Graph */
.facebook-modern-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 28px;
}
.facebook-modern-heading > div { max-width: 760px; }
.btn-facebook {
    flex: 0 0 auto;
    color: #fff !important;
    background: #1877f2 !important;
    border-color: #1877f2 !important;
}
.btn-facebook span {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    margin-right: 4px;
    border-radius: 50%;
    color: #1877f2;
    background: #fff;
    font: 900 1rem/1 Arial, sans-serif;
}
.facebook-post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.facebook-post-card {
    overflow: hidden;
    border: 1px solid rgba(16, 51, 44, .11);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 15px 38px rgba(20, 61, 52, .09);
    transition: transform .25s ease, box-shadow .25s ease;
}
.facebook-post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(20, 61, 52, .15);
}
.facebook-post-media {
    display: block;
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #1877f2, #0f4ea5);
}
.facebook-post-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.facebook-post-card:hover .facebook-post-media img { transform: scale(1.045); }
.facebook-post-media.no-image {
    display: grid;
    place-items: center;
    color: #fff;
    font: 900 5rem/1 Arial, sans-serif;
}
.facebook-post-content { padding: 20px 20px 22px; }
.facebook-post-meta {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
    color: #697b78;
    font-size: .88rem;
    font-weight: 750;
}
.facebook-mark {
    display: inline-grid;
    place-items: center;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    color: #fff;
    background: #1877f2;
    font: 900 1rem/1 Arial, sans-serif;
}
.facebook-post-content p {
    margin: 0 0 17px;
    color: #263c37;
    line-height: 1.65;
}
.facebook-post-link {
    color: #1668ca;
    font-weight: 850;
    text-decoration: none;
}
.facebook-post-link:hover { text-decoration: underline; }

@media (max-width: 980px) {
    .facebook-post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
    .facebook-modern-heading { align-items: stretch; flex-direction: column; }
    .facebook-post-grid { grid-template-columns: 1fr; }
    .facebook-modern-heading .btn { width: 100%; }
}
