/* ═══════════════════════════════════════════════════════════════════
   LES GÎTES DE LA BAIE — Feuille de style principale
   ═══════════════════════════════════════════════════════════════════
   🎨 PERSONNALISATION RAPIDE : modifiez les variables CSS ci-dessous
   ═══════════════════════════════════════════════════════════════════ */

:root {
  /* ── Couleurs ───────────────────────────────────────── */
  --color-sand: #e8dfd0;
  /* sable clair */
  --color-stone: #c9bba6;
  /* grès */
  --color-slate: #3d5166;
  /* bleu ardoise */
  --color-deep: #1e2e3d;
  /* bleu nuit */
  --color-water: #6a8fa8;
  /* bleu eau */
  --color-white: #faf8f5;
  /* blanc cassé */
  --color-text: #2c2c2c;
  --color-muted: #7a7469;
  --color-accent: #b07d4a;
  /* ocre doré */

  /* ── Typographie ────────────────────────────────────── */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', system-ui, sans-serif;

  /* ── Espacements ────────────────────────────────────── */
  --section-py: 4rem;
  --container-max: 1240px;
  --radius: 4px;

  /* ── Ombres ─────────────────────────────────────────── */
  --shadow-card: 0 2px 24px rgba(30, 46, 61, .10);
  --shadow-hover: 0 8px 40px rgba(30, 46, 61, .18);
}

/* ─── Reset & base ─────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ─── Container ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── Typographie ──────────────────────────────────────────────── */
h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

em {
  font-style: italic;
}

.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: .8rem;
}

.section-label.light {
  color: var(--color-stone);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ─── Boutons ──────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .9rem 2.2rem;
  border-radius: var(--radius);
  transition: all .3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--color-slate);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-light {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .6);
  backdrop-filter: blur(4px);
}

.btn-light:hover {
  background: rgba(255, 255, 255, .25);
  border-color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--color-slate);
  border: 1.5px solid var(--color-slate);
}

.btn-outline:hover {
  background: var(--color-slate);
  color: #fff;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ════════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background .4s ease, box-shadow .4s ease;
}

#header.scrolled {
  background: rgba(30, 46, 61, .96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .2);
  padding: 0rem 2rem;
}

#header.scrolled .nav-logo-img {
  height: 64px;
  /* Le logo devient aussi un peu plus petit au scroll */
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.2rem 2rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: .03em;
}

.logo-sub {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--color-stone);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
  position: relative;
  transition: color .3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-stone);
  transition: width .3s;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  padding: .5rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: var(--radius);
  color: #fff !important;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, .1);
}

.nav-cta::after {
  display: none;
}

/* ── Dropdown "Préparez votre séjour" ─────────────────────────── */
.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  font-family: var(--font-sans);
}

.nav-chevron {
  width: 10px;
  height: 10px;
  transition: transform .25s ease;
  flex-shrink: 0;
}

.nav-item-dropdown.open .nav-chevron {
  transform: rotate(180deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--color-deep);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  overflow: hidden;
  min-width: 250px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 200;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-submenu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent rgba(255, 255, 255, .12);
}

.nav-item-dropdown.open .nav-submenu {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-submenu-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: .7rem 1.1rem;
  font-size: .78rem;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .72);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  transition: background .15s, color .15s;
  white-space: nowrap;
}

.nav-submenu li:last-child .nav-submenu-item {
  border-bottom: none;
}

.nav-submenu-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: .55;
  transition: opacity .15s;
}

.nav-submenu-item:hover {
  background: rgba(106, 143, 168, .2);
  color: #fff;
}

.nav-submenu-item:hover svg {
  opacity: 1;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}

.hamburger span {
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: all .35s ease;
  display: block;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ════════════════════════════════════════════════════════════════
   HERO + PARALLAX
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ── Hero Slideshow ─────────────────────────────────────────────── */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide.leaving {
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Indicateurs de slide */
.hero-indicators {
  position: absolute;
  bottom: 5.5rem;
  right: 2.5rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.hero-indicator {
  width: 2px;
  height: 20px;
  background: rgba(255, 255, 255, .25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .4s ease, height .4s ease;
  border-radius: 1px;
}

.hero-indicator.active {
  background: rgba(255, 255, 255, .9);
  height: 36px;
}

.hero-indicator:hover:not(.active) {
  background: rgba(255, 255, 255, .55);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(30, 46, 61, .75) 0%,
      rgba(30, 46, 61, .5) 50%,
      rgba(30, 46, 61, .3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 2rem;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  padding-top: 6rem;
}

.hero-eyebrow {
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--color-stone);
  margin-bottom: 1.5rem;
}

.hero-title {
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .3);
}

.hero-desc {
  max-width: 520px;
  font-size: 1.25em;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  color: rgba(255, 255, 255, .6);
  font-size: .9rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: bounceScroll 2s infinite;
}

/* Style pour le nouveau logo dans le Hero */
.hero-logo {
  max-width: 520px;
  /* Taille optimale pour ne pas écraser le titre */
  height: auto;
  margin-bottom: 0.5rem;
  /* Espace entre le logo et le titre */
  opacity: 0.95;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
  /* Aide à la lecture sur fond clair */
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .5), transparent);
}

/* Style pour le logo dans la barre de navigation */
.nav-logo-img {
  height: 95px;
  /* Hauteur idéale pour ne pas agrandir le header */
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.nav-logo-img:hover {
  transform: scale(1.10);
  /* Effet léger au survol */
}

/* Style pour le logo en pied de page */
.footer-logo-img {
  height: 75px;
  width: auto;
}


@keyframes bounceScroll {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(25px);
  }
}

/* ════════════════════════════════════════════════════════════════
   INTRO
═══════════════════════════════════════════════════════════════ */
.intro {
  padding: var(--section-py) 0;
  background: var(--color-white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.intro-text h2 {
  margin-bottom: 1.5rem;
}

.intro-text p {
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.feature {
  padding: 1.5rem;
  border-top: 2px solid var(--color-sand);
}

.feature-header {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .4rem;
}

.feature-header h3 {
  margin-bottom: 0;
}

.feature-icon {
  font-size: 1.2rem;
  color: var(--color-accent);
  flex-shrink: 0;
}

.feature h3 {
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: .05em;
  margin-bottom: .1rem;
}

.feature p {
  font-size: .9rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════════
   GÎTES CARDS
═══════════════════════════════════════════════════════════════ */
.gites-section {
  padding: var(--section-py) 0;
  background: #f3ede4;
}

.gites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gite-card {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .35s ease, box-shadow .35s ease;
}

.gite-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.gite-card.featured {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  outline: 2px solid var(--color-accent);
}

.gite-card.featured:hover {
  transform: translateY(-14px);
}

.card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gite-card:hover .card-image img {
  transform: scale(1.05);
}

.card-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-slate) 0%, var(--color-water) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255, 255, 255, .7);
  font-size: .85rem;
  line-height: 1.6;
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .8rem;
  border-radius: 20px;
}

.card-body {
  padding: 1.8rem;
}

.card-label {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: .4rem;
}

.card-title {
  font-size: 1.7rem;
  margin-bottom: .8rem;
}

.card-desc {
  font-size: .9rem;
  color: var(--color-muted);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1.2rem;
}

.card-meta span {
  font-size: .78rem;
  color: var(--color-muted);
  background: #f3ede4;
  padding: .3rem .7rem;
  border-radius: 20px;
}

.card-price {
  font-size: .9rem;
  color: var(--color-muted);
  margin-bottom: 1.4rem;
}

.card-price strong {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--color-slate);
}

/* ════════════════════════════════════════════════════════════════
   WHY SECTION
═══════════════════════════════════════════════════════════════ */
.why-section {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
}

.why-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/baie-territory.webp');
  background-size: cover;
  background-position: center;
}

.why-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 35, 50, .72);
}

.why-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.why-content h2 {
  color: #fff;
  margin-bottom: 3rem;
  max-width: 600px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.why-item strong {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  margin-bottom: .6rem;
  letter-spacing: .05em;
  color: var(--color-stone);
}

.why-item p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
}

.why-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ════════════════════════════════════════════════════════════════
   TÉMOIGNAGES
═══════════════════════════════════════════════════════════════ */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--color-white);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial {
  background: #f3ede4;
  padding: 2rem;
  border-radius: 8px;
  border-left: 3px solid var(--color-accent);
  font-style: normal;
}

.testimonial p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-deep);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.testimonial footer {
  font-size: .8rem;
  color: var(--color-muted);
  letter-spacing: .05em;
}

/* ════════════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════════ */
.contact-section {
  padding: var(--section-py) 0;
  background: var(--color-deep);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.contact-info h2 {
  color: #fff;
  margin-bottom: 1.2rem;
}

.contact-info p {
  color: rgba(255, 255, 255, .7);
  margin-bottom: 2rem;
}

.contact-details {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-item strong {
  display: block;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-stone);
  margin-bottom: .2rem;
}

.contact-item a,
.contact-item span {
  color: rgba(255, 255, 255, .85);
  font-size: .95rem;
}

.contact-item a:hover {
  color: var(--color-stone);
}

.clevacances-btn {
  background: var(--color-accent);
  border: none;
}

.clevacances-btn:hover {
  background: #c48d57;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(176, 125, 74, .3);
}

/* ── Formulaire ─────────────────────────────────────── */

.email-protect::before {
  content: attr(data-user) "@" attr(data-domain);
}

.tel-protect::before {
  content: attr(data-user) attr(data-domain);
}

.contact-form-wrap {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 2.5rem;
  border-radius: 8px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-group label {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius);
  padding: .8rem 1rem;
  color: #fff;
  font-family: var(--font-sans);
  font-size: .95rem;
  transition: border-color .3s, background .3s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, .3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-water);
  background: rgba(255, 255, 255, .1);
}

.form-group select option {
  background: var(--color-deep);
  color: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group.form-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
}

.checkbox-label {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  cursor: pointer;
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
  text-transform: none;
  letter-spacing: 0;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  cursor: pointer;
  margin-top: 2px;
}

.form-error {
  font-size: .75rem;
  color: #f08080;
  display: block;
  min-height: 1em;
}

.form-success {
  background: rgba(100, 180, 100, .15);
  border: 1px solid rgba(100, 180, 100, .4);
  color: #90ee90;
  padding: 1rem;
  border-radius: var(--radius);
  font-size: .9rem;
  text-align: center;
}

.form-notice {
  display: flex;
  align-items: center;
  gap: .65rem;
  background: rgba(106, 143, 168, .12);
  border: 1px solid rgba(106, 143, 168, .35);
  border-left: 3px solid var(--color-water);
  border-radius: var(--radius);
  padding: .7rem 1rem;
  margin-bottom: .5rem;
  font-size: .85rem;
  color: var(--color-white);
  line-height: 1.4;
}

.form-notice svg {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  color: var(--color-water);
}

.form-notice strong {
  color: var(--color-accent);
}

.form-group label small {
  font-size: .72rem;
  color: var(--color-water);
  font-weight: 400;
  margin-left: .3rem;
  letter-spacing: .02em;
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: #111;
  padding: 0.25rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand .logo-main {
  color: #fff;
  font-size: 1rem;
  display: block;
}

.footer-brand p {
  color: #666;
  font-size: .75rem;
  margin-top: .3rem;
}

.footer-nav {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #888;
  transition: color .3s;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-copy {
  font-size: .77rem;
  color: var(--color-white);
  text-align: center;
  line-height: 1.8;
}

.footer-copy a {
  color: var(--color-white);
}

.footer-copy a:hover {
  color: var(--color-sand);
}


/* ════════════════════════════════════════════════════════════════
   PAGES GÎTES — ÉLÉMENTS COMMUNS
═══════════════════════════════════════════════════════════════ */

/* ── Page hero (gites) ──────────────────────────────── */
.page-hero {
  height: 35vh;
  min-height: 420px;
  position: relative;
  display: flex;
  align-items: flex-end;
  clip-path: inset(0);
  /* remplace overflow:hidden */
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-slate), var(--color-water));
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(30, 46, 61, .75) 0%,
      rgba(30, 46, 61, .5) 50%,
      rgba(30, 46, 61, .3) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 3rem 2rem;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

.page-hero-content .breadcrumb {
  font-size: .75rem;
  color: var(--color-stone);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}

.page-hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

/* ── Carrousel ──────────────────────────────────────── */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-slate);
}

.carousel-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.carousel-slide {
  min-width: 100%;
  height: 480px;
  overflow: hidden;
  background: var(--color-deep);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.carousel-slide-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-slate) 0%, var(--color-water) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  font-size: .9rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(30, 46, 61, .7);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background .3s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--color-slate);
}

.carousel-btn.prev {
  left: 1rem;
}

.carousel-btn.next {
  right: 1rem;
}

.carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  cursor: pointer;
  border: none;
  transition: background .3s, transform .3s;
}

.carousel-dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* ── Gîte content layout ────────────────────────────── */
.gite-content {
  padding: var(--section-py) 0;
}

.gite-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 5rem;
  align-items: start;
}

.gite-description h2 {
  margin-bottom: 1.2rem;
}

.gite-description p {
  color: var(--color-muted);
  margin-bottom: 1rem;
}

/* ── Équipements ────────────────────────────────────── */
.equipements {
  background: #f3ede4;
  padding: 4rem 0;
}

.equipements h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.equip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.equip-category h4 {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--color-sand);
}

.equip-category ul {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.equip-category li {
  font-size: .88rem;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.equip-category li::before {
  content: '–';
  color: var(--color-accent);
}

/* ── Tarifs ─────────────────────────────────────────── */
.tarifs {
  padding: 4rem 0;
  background: var(--color-white);
}

.tarifs h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.tarifs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}

.tarifs-table thead th {
  font-family: var(--font-sans);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 1rem;
  text-align: left;
  border-bottom: 2px solid var(--color-sand);
}

.tarifs-table tbody td {
  padding: .9rem 1rem;
  border-bottom: 1px solid var(--color-sand);
  color: var(--color-text);
}

.tarifs-table tbody tr:hover {
  background: #faf0e6;
}

.tarifs-table td strong {
  color: var(--color-slate);
  font-size: 1.05rem;
}

.tarifs-note {
  font-size: .83rem;
  color: var(--color-muted);
  margin-top: 1rem;
  text-align: center;
}

/* ── CTA réservation ─────────────────────────────────── */
.cta-reservation {
  padding: 5rem 0;
  background: var(--color-slate);
  text-align: center;
}

.cta-reservation h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-reservation p {
  color: rgba(255, 255, 255, .7);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-clevacances {
  background: var(--color-accent);
  color: #fff;
  font-size: 1rem;
  padding: 1.1rem 3rem;
  border: none;
}

.btn-clevacances:hover {
  background: #c48d57;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(176, 125, 74, .35);
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .gites-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gite-card.featured {
    transform: none;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .gite-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .equip-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Nav hamburger dès tablet */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-deep);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 5rem 0 2rem;
    gap: 0;
    transition: right .4s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, .3);
    z-index: 1001;
    overflow-y: auto;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links>li {
    border-bottom: 1px solid rgba(255, 255, 255, .07);
  }

  .nav-link {
    display: block;
    width: 100%;
    font-size: .85rem;
    color: rgba(255, 255, 255, .85);
    padding: 1rem 2rem;
  }

  .nav-cta {
    margin: 1.5rem 2rem;
    width: auto;
    text-align: center;
  }

  /* Dropdown mobile — accordéon dans le panneau */
  .nav-item-dropdown {
    width: 100%;
  }

  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    font-size: .85rem;
    color: rgba(255, 255, 255, .85);
    padding: 1rem 2rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 400;
    font-family: var(--font-sans);
    line-height: 1.4;
    text-align: left;
  }

  .nav-submenu {
    position: static;
    transform: none !important;
    left: auto;
    opacity: 1;
    pointer-events: auto;
    border: none;
    border-radius: 0;
    background: rgba(0, 0, 0, .2);
    min-width: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    margin-top: 0;
  }

  .nav-submenu::before {
    display: none;
  }

  .nav-item-dropdown.open .nav-submenu {
    max-height: 300px;
  }

  .nav-submenu-item {
    font-size: .82rem;
    padding: .7rem 2rem .7rem 2.5rem;
    white-space: normal;
    letter-spacing: .04em;
  }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --section-py: 4rem;
  }

  /* Hero */
  .hero-content {
    padding: 1.5rem;
    padding-top: 5rem;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero-desc {
    max-width: 100%;
  }

  .hero-logo {
    max-width: 320px;
    margin-bottom: 1.5rem;
  }

  .nav-logo-img {
    height: 35px;
    /* Plus petit sur mobile */
  }

  #header.scrolled .nav-logo-img {
    height: 45px;
  }

  /* Grids */
  .gites-grid {
    grid-template-columns: 1fr;
  }

  .intro-features {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .equip-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-inner {
    display: flex;
    gap: 0.5rem;
  }

  /* .footer-copy { text-align: left; } */

  /* Tarifs */
  .tarifs-table {
    font-size: .82rem;
  }

  .tarifs-table thead th,
  .tarifs-table tbody td {
    padding: .7rem .5rem;
  }

  /* Contact */
  .contact-form-wrap {
    padding: 1.5rem;
  }

  /* Carrousel — images portrait sur mobile */
  .carousel-slide {
    height: 260px;
    background: var(--color-deep);
  }

  .carousel-slide img {
    object-fit: contain;
    object-position: center center;
  }
}

/* ════════════════════════════════════════════════════════════════
   OVERLAY MOBILE MENU
═══════════════════════════════════════════════════════════════ */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s, visibility .4s;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ════════════════════════════════════════════════════════════════
   ANIMATIONS ENTRÉE
═══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

/* ════════════════════════════════════════════════════════════════
   BANDE PICTOGRAMMES SERVICES
═══════════════════════════════════════════════════════════════ */
.picto-section {
  background: var(--color-white);
  padding: 0;
  /* border-top: 1px solid var(--color-sand); */
  border-bottom: 1px solid var(--color-sand);
}

.picto-banner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

.picto-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1.6rem 1.2rem;
  flex: 1 1 120px;
  position: relative;
  text-align: center;
}

.picto-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--color-sand);
}

.picto-icon {
  flex-shrink: 0;
  color: var(--color-accent);
  width: 30px;
  height: 30px;
}

.picto-label {
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--color-slate);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .picto-item {
    flex: 1 1 100px;
    padding: 1.2rem .6rem;
  }

  .picto-label {
    font-size: .62rem;
  }

  .picto-icon {
    width: 24px;
    height: 24px;
  }
}

/* ── VERSION ACCENT (fond ocre) ── */
.picto-banner.accent {
  background: var(--color-accent);
  border-color: rgba(255, 255, 255, .2);
}

.picto-banner.accent .picto-item:not(:last-child)::after {
  background: rgba(255, 255, 255, .3);
}

.picto-banner.accent .picto-icon {
  color: #fff;
}

.picto-banner.accent .picto-label {
  color: #fff;
}

@media (max-width: 600px) {
  .picto-item {
    padding: .5rem 1rem;
    min-width: 110px;
  }

  .picto-label {
    font-size: .7rem;
  }
}

/* ── Carte Google Maps (section contact) ─────────────────────── */
.contact-map {
  /* margin-top: 1.25rem; */
  border-radius: var(--radius);
  overflow: hidden;
  opacity: 0.85;
  transition: opacity .3s ease;
  box-shadow: 0 2px 12px rgba(30, 46, 61, .12);
}

.contact-map:hover {
  opacity: 1;
}

/* ════════════════════════════════════════════════════════════════
   Gites — Page individuelle
═══════════════════════════════════════════════════════════════ */
.gite-quick-info {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.2rem;
}

.quick-info-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: #f3ede4;
  padding: .5rem 1rem;
  border-radius: 20px;
  font-size: .83rem;
  color: #3d5166;
}

.qi-icon {
  font-size: 1rem;
}

.gite-highlights {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.gite-highlights li {
  font-size: .9rem;
  color: #3d5166;
  padding: .3rem 0;
  border-bottom: 1px solid #e8dfd0;
}

/* ════════════════════════════════════════════════════════════════
       Mentions légales
    ═══════════════════════════════════════════════════════════════ */

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
}

.legal-content h1 {
  margin-bottom: 3rem;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin: 2.5rem 0 .8rem;
  color: var(--color-slate);
}

.legal-content p,
.legal-content li {
  color: var(--color-muted);
  margin-bottom: .6rem;
  font-size: .95rem;
}

.legal-content a {
  color: var(--color-slate);
  text-decoration: underline;
}

/* ════════════════════════════════════════════════════════════════
       SOMMAIRE — Navigation rapide page préparer
    ═══════════════════════════════════════════════════════════════ */
.sommaire-section {
  background: #f3ede4;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-sand);
}

.sommaire-title {
  font-family: var(--font-sans);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.sommaire-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.sommaire-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  background: var(--color-white);
  border: 1px solid var(--color-sand);
  border-radius: 40px;
  padding: .55rem 1.4rem;
  font-size: .85rem;
  color: var(--color-slate);
  transition: all .25s ease;
  text-decoration: none;
}

.sommaire-item:hover {
  background: var(--color-slate);
  color: #fff;
  border-color: var(--color-slate);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(61, 81, 102, .18);
}

.sommaire-item .si-icon {
  font-size: 1.1rem;
}

/* ════════════════════════════════════════════════════════════════
   PAGE PRÉPARER — Sections catégories
═══════════════════════════════════════════════════════════════ */
.cat-section {
  padding: 5rem 0 6rem;
}

.cat-section:nth-child(odd) {
  background: var(--color-white);
}

.cat-section:nth-child(even) {
  background: #f9f5f0;
}

.cat-header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3.5rem;
  padding: 3rem 3.5rem;
  background: var(--color-water);
  border-radius: 12px;
  overflow: hidden;
}

/* Trait décoratif latéral gauche */
.cat-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: var(--color-deep);
  border-radius: 12px 0 0 12px;
}

/* Fond ornemental — grand numéro en filigrane */
.cat-header::after {
  content: attr(data-num);
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: 17rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.075);
  pointer-events: none;
  user-select: none;
}

.cat-num {
  font-family: var(--font-serif);
  font-size: 7.5rem;
  line-height: 1;
  color: var(--color-deep);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  /* Séparateur vertical entre numéro et texte */
  padding-right: 3rem;
  border-right: 2px solid rgba(255, 255, 255, .075);
}

.cat-label {
  font-family: var(--font-sans);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: .5rem;
  display: block;
}

.cat-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  margin-bottom: .6rem;
}

.cat-header p {
  color: rgba(255, 255, 255, .65);
  font-size: .95rem;
  max-width: 600px;
  line-height: 1.7;
}

.cat-header-text {
  position: relative;
  z-index: 1;
}

/* ── Bloc item (photo + texte, alternance gauche/droite) ── */
.item-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--color-sand);
}

.item-block:last-child {
  border-bottom: none;
}

.item-block:nth-child(even) .item-visual {
  order: 2;
}

.item-block:nth-child(even) .item-text {
  order: 1;
}

.item-visual {
  position: relative;
}

.item-illus {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-hover);
}

.item-illus img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.item-illus:hover img {
  transform: scale(1.04);
}

/* Placeholder si pas encore d'image */
.item-illus-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .65);
  text-align: center;
  padding: 1rem;
}

.illus-emoji {
  font-size: 4rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .3));
}

/* Palettes de fond par lieu */
.illus-sv-port {
  background: linear-gradient(135deg, #1e2e3d, #3d6580);
}

.illus-sv-tours {
  background: linear-gradient(135deg, #2e2218, #6a4a28);
}

.illus-sv-nevers {
  background: linear-gradient(135deg, #1e2a30, #3a5a60);
}

.illus-sv-calvaire {
  background: linear-gradient(135deg, #1a1e2e, #3a4068);
}

.illus-sv-pecheurs {
  background: linear-gradient(135deg, #1a2a1e, #3a6040);
}

.illus-sv-medievale {
  background: linear-gradient(135deg, #2a1e18, #6a3820);
}

.illus-sv-train {
  background: linear-gradient(135deg, #2a3a50, #5a7a90);
}

.illus-al-crotoy {
  background: linear-gradient(135deg, #1a3040, #3a7080);
}

.illus-al-char {
  background: linear-gradient(135deg, #2a2a3a, #5a6090);
}

.illus-al-phoques {
  background: linear-gradient(135deg, #1a2a2a, #3a6868);
}

.illus-al-rando {
  background: linear-gradient(135deg, #283820, #507040);
}

.illus-cadeau-pass {
  background: linear-gradient(135deg, #3a2030, #804060);
}

/* Texte item */
.item-text {
  padding: 1rem 0;
}

.item-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: .5rem;
}

.item-text h3 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  color: var(--color-deep);
  margin-bottom: .9rem;
}

.item-text p {
  color: var(--color-muted);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: .8rem;
}

.item-text .item-sous-titre {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--color-slate);
  margin-top: 1.4rem;
  margin-bottom: .4rem;
  display: block;
}

.item-infos {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.4rem;
  margin-bottom: 1.4rem;
}

.item-info-pill {
  background: #f3ede4;
  border-radius: 20px;
  padding: .35rem .9rem;
  font-size: .78rem;
  color: var(--color-slate);
  display: flex;
  align-items: center;
  gap: .3rem;
}

.cat-section:nth-child(even) .item-info-pill {
  background: var(--color-white);
}

/* ── Encart cadeau ─────────────────────────────────────── */
.cadeau-highlight {
  background: var(--color-deep);
  border-radius: 12px;
  padding: 3rem;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  margin-top: 3rem;
}

.cadeau-highlight h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #fff;
  margin-bottom: .8rem;
}

.cadeau-highlight p {
  color: rgba(255, 255, 255, .75);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: .5rem;
}

.cadeau-gift-icon {
  font-size: 5rem;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, .4));
  text-align: center;
}

/* ── Pass d'un Instant — étapes ───────────────────────── */
.pass-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.2rem;
}

.pass-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pass-step-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.pass-step-label {
  font-family: var(--font-sans);
  font-weight: 500;
  display: block;
}

.pass-step p {
  margin: 0;
}

/* ── Pass d'un Instant — grille catégories ─────────────── */
.pass-categories {
  margin-top: 3rem;
}

.pass-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.pass-cat-item {
  background: var(--color-white);
  border: 1px solid var(--color-sand);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  gap: .9rem;
}

.pass-cat-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.pass-cat-name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: .95rem;
  display: block;
}

.pass-cat-desc {
  font-size: .82rem;
  color: var(--color-muted);
  margin: 0;
}

/* ── Pass d'un Instant — carte partenaires ─────────────── */
.pass-map-block {
  margin-top: 3.5rem;
}

.pass-map-title {
  margin-bottom: .6rem;
}

.pass-map-intro {
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.pass-map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.pass-map-frame iframe {
  display: block;
}

.pass-map-caption {
  font-size: .82rem;
  color: var(--color-muted);
  margin-top: .8rem;
  text-align: center;
}

.pass-map-caption a {
  color: var(--color-accent);
  text-decoration: underline;
}

/* ── CTA bas de page préparer ──────────────────────────── */
.preparer-cta {
  background: var(--color-slate);
  padding: 5rem 0;
  text-align: center;
}

.preparer-cta h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.preparer-cta p {
  color: rgba(255, 255, 255, .7);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

/* ── Responsive page préparer ──────────────────────────── */
@media (max-width: 900px) {
  .cat-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 2rem;
  }

  .cat-num {
    font-size: 3rem;
    padding-right: 0;
    padding-bottom: 1rem;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    width: 100%;
  }

  .item-block {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .item-block:nth-child(even) .item-visual {
    order: 0;
  }

  .item-block:nth-child(even) .item-text {
    order: 0;
  }

  .cadeau-highlight {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cadeau-highlight .btn {
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .cat-section {
    padding: 3rem 0 4rem;
  }

  .item-block {
    padding: 2.5rem 0;
  }
}