/* ==========================================================================
   Location Vacances Naturistes , LP "location vacances Leucate"
   Charte sobre et factuelle, tons Méditerranée (mer / sable / soleil).
   Le site de reference (location-vacances-soleil.com) est minimaliste et
   clair, sur image de paysage : on garde un theme lumineux, pas de dark.
   Tokens en haut pour re-skin en 1 point.
   ========================================================================== */

:root {
  /* Mer (bleu principal) */
  --sea-50:  #eef6fb;
  --sea-100: #d6ebf6;
  --sea-200: #a9d4ea;
  --sea-300: #6fb6da;
  --sea-400: #3a95c6;
  --sea-500: #1b6ca8;
  --sea-600: #12547f; /* CTA / liens */
  --sea-700: #0e415f;
  --sea-900: #0a2e42;

  /* Sable / soleil (accent chaud) */
  --sand-100: #fbf3e3;
  --sand-300: #f0d59a;
  --sun-400:  #e8a13a;
  --sun-500:  #d98a1c;

  /* Neutres */
  --white: #ffffff;
  --ink:   #16232b;   /* texte principal */
  --grey-700: #3a4a53;
  --grey-500: #5f6f78;
  --grey-400: #8b98a0;
  --grey-200: #dbe2e6;
  --grey-100: #eef2f4;
  --bg-soft:  #f6f9fb;

  /* Typographie */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --container: 1160px;
  --section-pad-y: 88px;
  --section-pad-y-tight: 60px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-card: 0 10px 30px rgba(10, 46, 66, 0.08);
  --shadow-elevated: 0 18px 50px rgba(10, 46, 66, 0.16);
}

/* ============ Reset & base ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--grey-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--sea-600); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  line-height: 1.12;
}
h1 { font-size: clamp(34px, 5.2vw, 54px); }
h2 { font-size: clamp(27px, 3.6vw, 40px); }
h3 { font-size: clamp(20px, 2.4vw, 26px); }
h4 { font-size: 19px; }
p { margin: 0 0 1em; }
strong { color: var(--ink); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: var(--section-pad-y) 0; }
.section--soft { background: var(--bg-soft); }
.section--sea { background: var(--sea-50); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--sea-500);
  margin-bottom: 14px;
}
.section__intro { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section__intro p { color: var(--grey-500); font-size: 18px; }

/* ============ Buttons ============ */
.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding: 15px 24px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  min-height: 48px;
}
.button:hover { text-decoration: none; transform: translateY(-1px); }
.button--primary { background: var(--sun-500); color: var(--white); box-shadow: 0 8px 20px rgba(217, 138, 28, 0.28); }
.button--primary:hover { background: var(--sun-400); }
.button--sea { background: var(--sea-600); color: var(--white); }
.button--sea:hover { background: var(--sea-700); }
.button--outline { background: transparent; color: var(--sea-700); border-color: var(--sea-300); }
.button--outline:hover { background: var(--sea-50); }
.text-link { font-weight: 600; color: var(--sea-600); display: inline-flex; align-items: center; gap: 6px; }
.text-link:hover { color: var(--sea-700); }
.arrow { transition: transform .15s ease; }
.button:hover .arrow, .text-link:hover .arrow { transform: translateX(3px); }

/* ============ Nav ============ */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--grey-200);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 20px; }
.nav__brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--ink); }
.nav__brand:hover { text-decoration: none; }
.nav__brand svg { color: var(--sea-500); }
.nav__links { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav__links a { color: var(--grey-700); font-size: 15px; font-weight: 500; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone { font-weight: 600; color: var(--sea-700); white-space: nowrap; }
@media (max-width: 900px) { .nav__links { display: none; } }
@media (max-width: 560px) { .nav__phone { display: none; } }

/* ============ Hero ============ */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 55%, rgba(255,255,255,0.9) 100%),
    linear-gradient(160deg, var(--sea-100) 0%, var(--sea-200) 45%, var(--sand-100) 100%);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; top: -120px; right: -80px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,161,58,0.45), rgba(232,161,58,0) 70%);
  pointer-events: none;
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
  padding: 72px 0 84px;
}
.hero__copy { position: relative; z-index: 2; }
.hero h1 { color: var(--sea-900); }
.hero__sub { font-size: 19px; color: var(--grey-700); max-width: 560px; margin-bottom: 26px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 26px; }
.hero__badge { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--sea-700); }
.hero__badge svg { color: var(--sun-500); flex: none; }

/* Availability card (formulaire lead ATF) */
.avail {
  position: relative; z-index: 2;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-elevated);
  padding: 26px;
}
.avail h2 { font-size: 22px; margin-bottom: 4px; }
.avail p.avail__note { font-size: 14px; color: var(--grey-500); margin-bottom: 18px; }
.avail__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.avail label { display: block; font-size: 13px; font-weight: 600; color: var(--grey-700); margin-bottom: 6px; }
.avail input {
  width: 100%; padding: 12px 12px; font-size: 15px; font-family: var(--font-body);
  border: 1.5px solid var(--grey-200); border-radius: var(--radius-sm); color: var(--ink); background: var(--white);
  min-height: 46px;
}
.avail input:focus { outline: none; border-color: var(--sea-400); box-shadow: 0 0 0 3px rgba(58,149,198,0.15); }
.avail .button { width: 100%; justify-content: center; margin-top: 4px; }
.avail__alt { text-align: center; font-size: 14px; color: var(--grey-500); margin: 14px 0 0; }

/* ============ Fact banner ============ */
.facts { background: var(--sea-600); color: var(--white); }
.facts__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; padding: 46px 0; }
.fact { text-align: center; }
.fact__num { font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 38px); font-weight: 600; color: var(--white); line-height: 1; margin-bottom: 8px; }
.fact__label { font-size: 14px; color: rgba(255,255,255,0.82); line-height: 1.4; }
@media (max-width: 720px) { .facts__grid { grid-template-columns: 1fr 1fr; gap: 30px 20px; } }

/* ============ Destination / prose ============ */
.prose { max-width: 780px; }
.prose p { color: var(--grey-700); }
.callout {
  background: var(--sand-100); border-left: 4px solid var(--sun-400);
  border-radius: var(--radius-sm); padding: 22px 24px; margin: 26px 0;
}
.callout .callout__big { font-family: var(--font-display); font-size: 30px; color: var(--sea-700); font-weight: 600; }
.callout p { margin: 6px 0 0; font-size: 15px; color: var(--grey-700); }
.callout .src { display: block; margin-top: 8px; font-size: 12.5px; color: var(--grey-400); }

/* ============ Feature blocks ============ */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.feature + .feature { margin-top: 72px; }
.feature--reverse .feature__media { order: -1; }
.feature__copy ul { list-style: none; margin: 18px 0 0; padding: 0; }
.feature__copy li { position: relative; padding-left: 28px; margin-bottom: 11px; color: var(--grey-700); }
.feature__copy li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 16px;
  background: var(--sea-500);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.feature__media {
  border-radius: var(--radius-lg); min-height: 320px; box-shadow: var(--shadow-card);
  display: flex; align-items: flex-end; padding: 26px; color: var(--white);
  position: relative; overflow: hidden;
}
.media--sea { background: linear-gradient(150deg, var(--sea-400), var(--sea-700)); }
.media--sand { background: linear-gradient(150deg, var(--sun-400), var(--sea-500)); }
.media--dune { background: linear-gradient(150deg, var(--sea-300), var(--sea-600)); }
.feature__media .media__tag {
  background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 14px; border-radius: 40px; font-size: 14px; font-weight: 600; backdrop-filter: blur(4px);
}
.feature__media svg.wave { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.22; }

/* ============ Cards (reassurance / acces) ============ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius-md);
  padding: 28px; box-shadow: var(--shadow-card);
}
.card__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--sea-50); color: var(--sea-500); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.card h3 { font-size: 20px; margin-bottom: 8px; }
.card p { font-size: 15.5px; color: var(--grey-500); margin: 0; }

/* ============ FAQ ============ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--grey-200); padding: 6px 0; }
.faq summary {
  cursor: pointer; list-style: none; padding: 16px 40px 16px 0; position: relative;
  font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 12px; font-size: 26px; font-weight: 400;
  color: var(--sea-500); transition: transform .2s ease;
}
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin: 0 0 18px; color: var(--grey-700); }

/* ============ CTA band ============ */
.cta-band { background: linear-gradient(150deg, var(--sea-600), var(--sea-900)); color: var(--white); text-align: center; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.88); max-width: 620px; margin: 0 auto 26px; font-size: 18px; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band__trust { margin-top: 20px; font-size: 14.5px; color: rgba(255,255,255,0.75); }

/* ============ Footer ============ */
.footer { background: var(--sea-900); color: rgba(255,255,255,0.72); padding: 56px 0 30px; }
.footer a { color: rgba(255,255,255,0.72); }
.footer a:hover { color: var(--white); }
.footer__cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 34px; }
.footer__brand { font-family: var(--font-display); font-size: 19px; color: var(--white); font-weight: 600; margin-bottom: 12px; display: inline-block; }
.footer h4 { color: var(--white); font-family: var(--font-body); font-size: 14px; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 9px; font-size: 15px; }
.footer__contact p { font-size: 15px; margin: 0 0 8px; }
.footer__legal {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.12); margin-top: 40px; padding-top: 22px; font-size: 13.5px;
}
.footer__legal a { margin-left: 16px; }

/* ============ Responsive ============ */
@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; gap: 34px; padding: 48px 0 60px; }
  .feature, .feature--reverse .feature__media { grid-template-columns: 1fr; }
  .feature { gap: 28px; }
  .feature--reverse .feature__media { order: 0; }
  .cards { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 520px) {
  :root { --section-pad-y: 60px; }
  .avail__row { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .cta-band__actions { flex-direction: column; }
  .cta-band__actions .button { width: 100%; justify-content: center; }
}
