:root {
  --header-height: 86px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid #c56f46;
  outline-offset: 3px;
}

body {
 font-family: "Outfit", sans-serif;
  background: #f3eadb;
  color: #183044;
}

.site-header {
  height: var(--header-height);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background: #f3eadb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  box-shadow: 0 1px 0 rgba(24, 48, 68, 0.08);
}

.logo {
  height: 79px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav a {
  color: #183044;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease, font-weight 0.2s ease;
}

nav a:hover {
  color: #c56f46;
}

nav a[aria-current="page"] {
  color: #c56f46;
  font-weight: 600;
}

@media (max-width: 600px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    padding: 0 20px;
  }

  .logo {
    height: 61px;
  }

  nav {
    display: none;
  }
}

.btn-header,
.btn-main {
  background: #c56f46;
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.btn-header {
  padding: 12px 22px;
  border-radius: 24px;
  display: inline-block;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-header:hover {
  background: #d68058;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(197, 111, 70, 0.35);
}

.btn-main {
  padding: 14px 36px;
  border-radius: 24px;
}

.hero {
  height: 75vh;
  margin-top: var(--header-height);
  background-image: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.35)), url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-content h1 {
    font-size: 3.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.05;
}

.hero-content {
    transform: translateY(-35px);
    max-width: 750px;
}

.hero-content p {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 28px;
    margin-bottom: 22px;
}

.hero-content span {
  display: block;
  margin: 0 0 30px;
  font-size: 1rem;
  font-weight: 400;
}

.home-positioning {
  max-width: 920px;
  margin: 0 auto;
  padding: 75px 40px 65px;

  color: #183044;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 400;
  line-height: 1.65;
  text-align: center;
}

.home-positioning strong {
  font-weight: 650;
}

@media (max-width: 700px) {
  .home-positioning {
    padding: 55px 24px 45px;
    font-size: 1.08rem;
    line-height: 1.55;
    text-align: left;
  }
}

/* ===========================
   CARTES D'ACCUEIL
=========================== */

.cards-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 45px 50px 45px;
  scroll-margin-top: var(--header-height);
}

.card {
  height: 460px;
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  display: flex;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.35) 45%,
    rgba(0,0,0,0.08) 80%
  );
  transition: background 0.35s ease;
}

.biplaces-card::before {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.38) 45%,
    rgba(0,0,0,0.24) 100%
  );
}

.card div {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 35px;
  color: white;
  display: flex;
  flex-direction: column;
}

.card h2 {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
  text-shadow:0 2px 8px rgba(0,0,0,.25);
}

.card p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
}

.card span {
  display: block;
  margin-top: 18px;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.4;
}

.card-btn {
    position: absolute;
    right: 35px;
    bottom: 40px;

    color: #C56F46;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;

    transition: all 0.25s ease;
}

/* Positionnement propre carte par carte */

.pilotage-card div {
  justify-content: flex-end;
  padding-bottom: 80px;
}

.biplaces-card div {
  justify-content: flex-end;
  padding-bottom: 80px;
}

.voyages-card div {
  justify-content: flex-end;
  padding-bottom: 80px;
}

/* Effets au survol */

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.card:hover::before {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.42) 45%,
    rgba(0,0,0,0.12) 80%
  );
}

.card:hover .card-btn {
  color: #E58B5D;
  transform: translateX(6px);
  letter-spacing: 0.4px;
}

.card-btn:hover {
    color: #E58B5D;
    transform: translateX(4px);
    font-weight: 700;
}


/*=========================
   PROCHAINS EVENEMENTS
=========================== */

.events-section {
  padding: 55px 50px 110px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 45px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #183044;
}

.section-header p {
  margin-top: 10px;
  font-size: 1rem;
  color: #183044;
  opacity: 0.7;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.events-loading,
.events-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #183044;
  opacity: 0.6;
  font-size: 0.95rem;
  padding: 30px 0;
}

.event-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(24, 48, 68, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(24, 48, 68, 0.16);
}

.event-image {
  height: 190px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.event-date-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #c56f46;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 14px;
  text-align: center;
  line-height: 1.05;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.event-date-badge .event-day {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
}

.event-date-badge .event-month {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.event-content {
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.event-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #183044;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.event-location {
  font-size: 0.85rem;
  font-weight: 600;
  color: #c56f46;
  margin-bottom: 12px;
}

.event-content p {
  font-size: 0.92rem;
  line-height: 1.45;
  color: #183044;
  opacity: 0.85;
  margin-bottom: 18px;
}

.event-btn {
  margin-top: auto;
  align-self: flex-start;
  color: #c56f46;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.25s ease;
}

.event-btn:hover {
  color: #e58b5d;
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 900px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
  .events-section {
    padding: 50px 24px 60px;
  }
}

/*=========================
   FOOTER
=========================== */

.site-footer {
  background: #173246;
  color: #ffffff;
  padding: 34px 50px 0;
  margin-top: 80px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 30px;
  max-width: 1050px;
  margin: 0 auto;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-logo {
  height: 105px;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.95);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 30px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  column-gap: 28px;
  row-gap: 4px;
}

.footer-nav h3 {
  grid-column: 1 / -1;
}

.footer-nav h3,
.footer-contact h3 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 8px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.88rem;
  line-height: 1;
  width: fit-content;
  transition: color 0.2s ease;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.88rem;
  width: fit-content;
  transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: #c56f46;
}

.footer-brand-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 2px !important;
}

.footer-role {
  font-size: 0.85rem !important;
  margin-bottom: 2px !important;
}

.footer-location {
  font-size: 0.85rem !important;
  opacity: 0.75;
  margin-bottom: 10px !important;
}

.footer-socials {
  display: flex;
  gap: 22px;
  margin-top: 5px;
}

.footer-social-icon {
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social-icon svg {
  width: 32px;
  height: 32px;
}

.footer-social-icon:hover {
  color: #c56f46;
  transform: translateY(-2px) scale(1.1);
}

.footer-bottom {
  max-width: 1050px;
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.85rem;
  opacity: 0.75;
}

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #c56f46;
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 50px 24px 0;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-contact {
    border-left: none;
    padding-left: 0;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===========================
   PAGE PILOTAGE
=========================== */

.pilotage-hero {
  height: 75vh;
  margin-top: var(--header-height);
  background-image: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.45)), url('images/Pilotage/hero.JPG');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: white;
  padding: 0 70px;
}

.pilotage-hero-content {
  max-width: 760px;
  transform: translateY(60px);
}

.pilotage-hero-btn {
  flex-shrink: 0;
  align-self: flex-end;
  margin-bottom: 60px;
}

.pilotage-hero h1 {
  font-size: 3.2rem;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  position: relative;
  top: 20px;
}

.pilotage-hero p {
  font-size: 1.25rem;
  line-height: 1.5;
  max-width: 650px;
  margin-bottom: 30px;
}

.pilotage-hero .btn-main {
  display: inline-block;
}

.pilotage-intro {
  padding: 90px 70px 60px;
  display: flex;
  justify-content: center;
}

.pilotage-intro div {
  max-width: 850px;
  text-align: center;
}

.pilotage-intro h2,
.pilotage-split h2,
.pilotage-objectifs h2,
.pilotage-banner h2,
.pilotage-faq h2,
.pilotage-contact h2 {
  font-size: 2.4rem;
  color: #183044;
  margin-bottom: 25px;
}

.pilotage-intro p,
.pilotage-text p,
.pilotage-banner p,
.pilotage-contact p,
.faq-grid p,
.objectifs-grid p {
  font-size: 1rem;
  line-height: 1.7;
  color: #183044;
  margin-bottom: 16px;
}

.pilotage-intro p:last-child,
.pilotage-text p:last-child,
.pilotage-banner p:last-child,
.pilotage-contact p:last-child,
.faq-grid p:last-child,
.objectifs-grid p:last-child {
  margin-bottom: 0;
}

.pilotage-section-title {
  padding: 60px 70px 0;
  text-align: center;
}

.pilotage-section-title h2 {
  font-size: 2.4rem;
  color: #183044;
}

.pilotage-section-title + .pilotage-split {
  padding-top: 35px;
}

.pilotage-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 70px;
  scroll-margin-top: var(--header-height);
}

.pilotage-split img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 22px;
}

.section-label {
  display: block;
  color: #C56F46;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  margin-bottom: 18px;
}

.pilotage-objectifs {
  padding: 60px 70px;
  text-align: center;
  background: #f8f3ea;
}

.objectifs-intro {
  max-width: 600px;
  margin: -10px auto 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #183044;
  opacity: 0.75;
}

.objectifs-note {
  max-width: 700px;
  margin: 45px auto 0;
  padding: 28px 32px;
  background: white;
  border-radius: 18px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #183044;
  text-align: center;
}

.objectifs-note strong {
  display: block;
  font-size: 1.2rem;
  color: #183044;
  margin-bottom: 12px;
}

.objectifs-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 45px;
  text-align: left;
}

.objectifs-grid article,
.faq-grid article {
  background: white;
  border-radius: 22px;
  padding: 35px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}

.faq-grid article {
  padding: 28px;
}

.faq-note {
  max-width: 700px;
  margin: 45px auto 0;
  padding: 28px 32px;
  background: white;
  border-radius: 18px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #183044;
  text-align: center;
}

.objectifs-grid h3,
.faq-grid h3 {
  color: #183044;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.pilotage-banner {
  position: relative;
  margin: 70px;
  border-radius: 22px;
  overflow: hidden;
  height: 520px;
  color: white;
}

.pilotage-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pilotage-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.62), rgba(0,0,0,0.15));
}

.pilotage-banner div {
  position: absolute;
  left: 60px;
  bottom: 45px;
  max-width: 600px;
}

.pilotage-banner h2,
.pilotage-banner p {
  color: white;
}

.pilotage-faq {
  padding: 60px 70px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pilotage-faq .faq-grid {
  width: 100%;
}

.pilotage-contact {
  padding: 90px 70px 110px;
  text-align: center;
}

.pilotage-contact p {
  margin-bottom: 30px;
}

.pilotage-voyages-note {
  margin-top: 34px;
}

.pilotage-voyages-note .event-btn {
  display: inline-block;
  margin-top: 0;
}

/* ===========================
   PAGE BIPLACES
=========================== */

.biplaces-hero {
  min-height: calc(100vh - var(--header-height));
  margin-top: var(--header-height);
  padding: 70px 5%;
  background: #f3eadb;
  display: grid;
  grid-template-columns: minmax(340px, 1.1fr) minmax(480px, 1.15fr);
  align-items: center;
  gap: clamp(45px, 6vw, 100px);
}

.biplaces-hero-content {
  max-width: 720px;
}

.biplaces-hero-label {
  margin: 0 0 18px;
  color: #c56f46;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.biplaces-hero-content h1 {
  margin: 0;
  color: #183044;
  font-size: clamp(2.39rem, 5.06vw, 4.23rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.biplaces-hero-text {
  max-width: 540px;
  margin: 32px 0 0;
  color: #183044;
  font-size: 1.15rem;
  line-height: 1.6;
}

.biplaces-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  padding: 17px 34px;
  border-radius: 999px;
  background: #c56f46;
  color: white;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

.biplaces-hero-btn:hover {
  background: #df8255;
  transform: translateY(-2px);
}

.biplaces-hero-image {
  aspect-ratio: 1 / 1.15;
  height: auto;
  max-height: 72vh;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(24, 48, 68, 0.12);
}

.biplaces-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.biplaces-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 105px 70px;
  scroll-margin-top: var(--header-height);
}

.biplaces-presentation {
  gap: 55px;
  padding: 75px 70px;
}

.biplaces-presentation img {
  height: 500px;
}

.biplaces-presentation .biplaces-text p {
  margin-bottom: 26px;
}

.biplaces-split img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 22px;
}

.biplaces-text h2 {
  font-size: 2.3rem;
  color: #183044;
  margin-bottom: 22px;
}

.biplaces-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #183044;
  margin-bottom: 16px;
}

.biplaces-text p:last-of-type {
  margin-bottom: 0;
}

.biplaces-steps {
  list-style: none;
  counter-reset: step;
  margin-top: 30px;
}

.biplaces-steps li {
  counter-increment: step;
  font-size: 1rem;
  line-height: 1.6;
  color: #183044;
  padding-left: 48px;
  position: relative;
  margin-bottom: 30px;
}

.biplaces-steps li:last-child {
  margin-bottom: 0;
}

.biplaces-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -3px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #c56f46;
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.biplaces-steps strong {
  color: #183044;
}

.biplaces-experiences {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 70px 80px;
  text-align: center;
  scroll-margin-top: var(--header-height);
}

.biplaces-experiences + .biplaces-split {
  padding-top: 80px;
}

.experiences-intro {
  max-width: 550px;
  margin: 14px auto 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #183044;
  opacity: 0.75;
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  text-align: left;
}

.experience-card {
  position: relative;
  background: white;
  border-radius: 22px;
  padding: 40px 35px;
  box-shadow: 0 14px 32px rgba(24, 48, 68, 0.10);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}

.experience-card.featured {
  transform: translateY(-8px);
  border: 2px solid #c56f46;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.experience-card.featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

.experience-badge {
  position: absolute;
  top: -14px;
  left: 35px;
  background: #c56f46;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.experience-duration {
  display: block;
  color: #c56f46;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 0.8rem;
  margin-bottom: 14px;
}

.experience-card h3 {
  font-size: 1.4rem;
  color: #183044;
  margin-bottom: 14px;
}

.experience-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #183044;
  opacity: 0.85;
  margin-bottom: 26px;
}

.experience-card .btn-main {
  align-self: flex-start;
  margin-top: auto;
  padding: 12px 26px;
}

.biplaces-faq {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 70px 110px;
  text-align: center;
}

.biplaces-transition {
  max-width: 800px;
  margin: 0 auto;
  padding: 10px 70px 40px;
  text-align: center;
}

.biplaces-transition h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #183044;
}

.biplaces-faq-list {
  margin-top: 45px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border-radius: 18px;
  padding: 22px 28px;
  box-shadow: 0 8px 24px rgba(24, 48, 68, 0.06);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: #183044;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: #c56f46;
  font-size: 1.3rem;
  font-weight: 400;
  margin-left: 20px;
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #183044;
  opacity: 0.85;
}

.biplaces-banner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto 90px;
  border-radius: 22px;
  overflow: hidden;
  height: auto;
  aspect-ratio: 16 / 8;
  background: #183044;
  color: white;
}

.biplaces-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.biplaces-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 55%);
}

.biplaces-banner div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 55px;
  text-align: center;
}

.biplaces-banner h2 {
  color: white;
  font-size: 2.4rem;
  margin-bottom: 26px;
}

/* Responsive */
@media (max-width: 900px) {
  .biplaces-hero {
    min-height: auto;
    padding: 55px 24px 70px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .biplaces-hero-content {
    max-width: none;
  }

  .biplaces-hero-content h1 {
    font-size: clamp(2.8rem, 11vw, 4.3rem);
  }

  .biplaces-hero-image {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .biplaces-split {
    grid-template-columns: 1fr;
    padding: 90px 40px;
    gap: 40px;
  }

  .biplaces-split img {
    height: 340px;
  }

  .biplaces-split.reverse {
    display: flex;
    flex-direction: column-reverse;
  }

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

  .biplaces-experiences,
  .biplaces-faq {
    padding-left: 40px;
    padding-right: 40px;
  }

  .biplaces-banner {
    margin: 0 40px 90px;
  }
}

/* ===========================
   PAGE VOYAGES
=========================== */

.voyages-hero {
  height: 88vh;
  min-height: 560px;
  margin-top: var(--header-height);
  background-image: linear-gradient(
      90deg,
      rgba(24,48,68,.35) 0%,
      rgba(24,48,68,.18) 26%,
      rgba(24,48,68,.05) 46%,
      rgba(24,48,68,0) 65%
    ), url('images/voyage/hero.JPG');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  color: white;
  padding: 0 6% 8vh;
  scroll-margin-top: var(--header-height);
}

.voyages-hero-content {
  max-width: 560px;
}

.voyages-hero-content .voyages-hero-title {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.voyages-pilotage-note {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 40px 60px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  color: #183044;
  opacity: 0.85;
}

.voyages-pilotage-note .event-btn {
  display: inline-block;
  margin-top: 0;
  margin-left: 6px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.voyages-hero-content p {
  font-size: 1.2rem;
  line-height: 1.55;
  margin-bottom: 34px;
}

.voyages-hero-content .btn-main {
  display: inline-block;
  padding: 18px 44px;
}

.voyages-split {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 175px 70px;
}

.voyages-split-img-portrait {
  width: 100%;
  aspect-ratio: 2020 / 2812;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(24, 48, 68, 0.12);
}

.voyages-text h2 {
  font-size: 2.2rem;
  color: #183044;
  margin-bottom: 22px;
}

.voyages-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #183044;
  margin-bottom: 16px;
}

.voyages-text p:last-of-type {
  margin-bottom: 0;
}

.voyages-values {
  max-width: 980px;
  margin: 0 auto;
  padding: 45px 70px 100px;
  text-align: center;
}

.voyages-values h2 {
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #183044;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 40px;
  background: rgba(24, 48, 68, 0.12);
  border-top: 1px solid rgba(24, 48, 68, 0.12);
  border-bottom: 1px solid rgba(24, 48, 68, 0.12);
}

.stat-card {
  background: #f3eadb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 38px 26px;
  transition: background 0.3s ease;
}

.stat-card:hover {
  background: #ffffff;
}

.stat-index {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #c56f46;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.stat-phrase {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  color: #183044;
  max-width: 220px;
  text-align: center;
  margin-bottom: 10px;
}

.stat-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #183044;
  opacity: 0.75;
  max-width: 240px;
  text-align: center;
}

.voyages-destinations {
  max-width: 1200px;
  margin: 0 auto;
  padding: 65px 70px 175px;
  text-align: center;
  scroll-margin-top: var(--header-height);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 60px;
  text-align: left;
}

.voyage-card {
  position: relative;
  display: flex;
  height: 540px;
  border-radius: 22px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: white;
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 18px 40px rgba(24, 48, 68, 0.1);
}

.voyage-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.08) 75%
  );
  transition: background 0.35s ease;
}

.voyage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 55px rgba(24, 48, 68, 0.2);
}

.voyage-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.42) 45%,
    rgba(0, 0, 0, 0.1) 75%
  );
}

.voyage-card--soon {
  filter: grayscale(0.2) brightness(0.95);
}

.voyage-card--full {
  filter: grayscale(0.4) brightness(0.85);
}

.voyage-status {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 12px;
}

.voyage-status--open {
  background: #c56f46;
  color: white;
}

.voyage-status--soon {
  background: #f3eadb;
  color: #183044;
}

.voyage-status--full {
  background: rgba(255, 255, 255, 0.85);
  color: #5a6672;
}

.voyage-card-overlay {
  position: relative;
  z-index: 1;
  margin-top: auto;
  width: 100%;
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.voyage-card-overlay h3 {
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.voyage-place {
  font-size: 0.88rem;
  opacity: 0.9;
  margin-bottom: 14px;
}

.voyage-tagline {
  font-size: 0.88rem;
  line-height: 1.5;
  opacity: 0.92;
  margin-bottom: 16px;
}

.voyage-dates {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.voyage-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  opacity: 0.85;
  margin-bottom: 14px;
}

.voyage-price {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.voyage-btn {
  margin-top: auto;
  color: white;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  transition: gap 0.25s ease, color 0.25s ease;
}

.voyage-card:hover .voyage-btn {
  gap: 11px;
  color: #f0a479;
}

.voyages-human {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 70px 175px;
  text-align: center;
}

.voyages-human-main {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 24px;
  box-shadow: 0 24px 55px rgba(24, 48, 68, 0.16);
  margin: 0 auto;
}

.voyages-human-intro {
  max-width: 640px;
  margin: 24px auto 0;
  font-size: 1.05rem;
  color: #183044;
  line-height: 1.7;
}

.voyages-human-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.voyages-human-strip figure {
  margin: 0;
}

.voyages-human-strip figure:nth-child(2) {
  margin-top: 46px;
}

.voyages-human-strip img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(24, 48, 68, 0.1);
}

.voyages-human-strip figcaption {
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c56f46;
}

.section-marker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.section-marker::before {
  content: "";
  width: 82px;
  height: 2px;
  background: #183044;
}

.section-marker::after {
  content: "";
  width: 24px;
  height: 2px;
  background: #c56f46;
}

.section-marker--center {
  justify-content: center;
}

.section-header--left {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.voyages-journey {
  max-width: 1200px;
  margin: 0 auto;
  padding: 55px 70px 175px;
}

.voyages-journey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.voyages-journey-intro h2 {
  font-size: 2.2rem;
  color: #183044;
  line-height: 1.15;
  margin-bottom: 20px;
}

.voyages-journey-intro p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #183044;
  opacity: 0.85;
}

.voyages-journey-steps {
  border-bottom: 1px solid rgba(24, 48, 68, 0.22);
}

.journey-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid rgba(24, 48, 68, 0.22);
}

.journey-step-number {
  color: #c56f46;
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1;
}

.journey-step-text h3 {
  font-size: 1.15rem;
  color: #183044;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.journey-step-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #183044;
  opacity: 0.8;
}

.voyages-immersive {
  position: relative;
  width: 100%;
  height: 450px;
  margin-bottom: 110px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.voyages-immersive img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voyages-immersive::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 34, 49, 0.42);
}

.voyages-immersive blockquote {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
  color: white;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}

.voyages-cta {
  position: relative;
  width: 100%;
  height: 58vh;
  min-height: 560px;
  max-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: white;
  text-align: left;
  padding: 0 8%;
}

.voyages-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voyages-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(16, 34, 49, 0.35), rgba(16, 34, 49, 0.55));
}

.voyages-cta-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.voyages-cta-content h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.voyages-cta-text {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 34px;
  opacity: 0.92;
}

.voyages-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.voyages-cta-content .btn-main {
  display: inline-block;
  padding: 16px 32px;
  font-size: 0.95rem;
}

.btn-main--outline {
  background: transparent;
  border: 1.5px solid white;
}

.btn-main--outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Responsive */
@media (max-width: 900px) {
  .voyages-split {
    grid-template-columns: 1fr;
    padding: 90px 40px;
    gap: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
  }

  .voyages-human-strip {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .voyages-human-strip figure:nth-child(2) {
    margin-top: 0;
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .voyage-card {
    height: 480px;
  }

  .voyages-destinations,
  .voyages-human,
  .voyages-journey,
  .voyages-values {
    padding-left: 40px;
    padding-right: 40px;
  }

  .voyages-journey-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .voyages-hero {
    padding: 0 24px 8vh;
  }

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

  .stat-card {
    border-bottom: 1px solid rgba(24, 48, 68, 0.12);
  }

  .stat-card:last-child {
    border-bottom: none;
  }

  .voyages-immersive {
    margin-bottom: 70px;
  }

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

  .voyage-card {
    height: 460px;
  }

  .voyages-cta-buttons {
    flex-direction: column;
  }
}

/* ===========================
   PAGE DESTINATION (Andalousie, gabarit)
=========================== */

.dest-hero {
  min-height: calc(100vh - var(--header-height));
  margin-top: var(--header-height);
  padding: 70px 5%;
  background: #f3eadb;
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(520px, 1.35fr);
  align-items: center;
  gap: clamp(45px, 6vw, 100px);
}

.dest-hero-content {
  max-width: 560px;
}

.dest-hero-label {
  margin: 0 0 18px;
  color: #c56f46;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dest-hero-content h1 {
  margin: 0 0 24px;
  color: #183044;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.dest-hero-text {
  max-width: 480px;
  margin: 0 0 34px;
  color: #183044;
  font-size: 1.1rem;
  line-height: 1.6;
}

.dest-hero-image {
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(24, 48, 68, 0.12);
}

.dest-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero .dest-hero-image img {
  object-position: center 25%;
}

.trip-infos-cta {
  margin-top: 55px;
  text-align: center;
}

.dest-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 110px 70px;
}

.dest-split-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(24, 48, 68, 0.12);
}

.dest-text h2 {
  font-size: 2.1rem;
  color: #183044;
  margin-bottom: 22px;
}

.dest-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #183044;
  margin-bottom: 16px;
}

.dest-text p:last-of-type {
  margin-bottom: 0;
}

.dest-block {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 70px 90px;
}

.dest-block#reservation {
  margin-top: var(--header-height);
  padding-top: 90px;
}

.dest-block h2 {
  font-size: 2rem;
  color: #183044;
  margin-bottom: 22px;
}

.dest-block p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #183044;
  margin-bottom: 16px;
}

.dest-block p:last-of-type {
  margin-bottom: 0;
}

.dest-block--muted {
  max-width: 800px;
}

.dest-block--wide {
  max-width: 1080px;
}

.dest-block-note {
  font-size: 0.95rem;
  opacity: 0.7;
  margin-bottom: 26px !important;
}

.dest-sites-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}

.dest-site {
  background: white;
  border-radius: 20px;
  padding: 30px 32px;
}

a.dest-site {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a.dest-site:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(24, 48, 68, 0.12);
}

.dest-site h3 {
  font-size: 1.15rem;
  color: #183044;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.dest-site p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #183044;
  opacity: 0.85;
  margin-bottom: 0 !important;
}

.dest-sites-note {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.7;
  margin-bottom: 0 !important;
}

.dest-callout {
  background: white;
  border-radius: 20px;
  padding: 30px 34px;
  margin-top: 30px;
}

.dest-callout h3 {
  font-size: 1.05rem;
  color: #183044;
  margin-bottom: 10px;
}

.dest-callout p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #183044;
  opacity: 0.85;
  margin-bottom: 0 !important;
}

.dest-provisional {
  background: #f3eadb;
  border-left: 3px solid #c56f46;
  padding: 16px 22px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #183044;
  margin-bottom: 26px !important;
}

.dest-objectives {
  list-style: none;
}

.dest-objectives li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #183044;
}

.dest-objectives li:last-child {
  margin-bottom: 0;
}

.dest-objectives li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c56f46;
}

.dest-included {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.included-col {
  background: white;
  border-radius: 20px;
  padding: 32px 34px;
}

.included-col h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c56f46;
  margin-bottom: 16px;
}

.included-col--not h3 {
  color: #183044;
  opacity: 0.55;
}

.included-col ul {
  list-style: none;
}

.included-col li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #183044;
}

.included-col--not li {
  opacity: 0.6;
}

.dest-dates {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 70px 130px;
  text-align: center;
}

.dest-sessions {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}

.dest-session {
  background: white;
  border-radius: 20px;
  padding: 30px 36px;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: 0 10px 28px rgba(24, 48, 68, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.dest-session:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(24, 48, 68, 0.12);
}

.dest-session-dates {
  font-size: 1.15rem;
  font-weight: 700;
  color: #183044;
  flex: 1 1 220px;
}

.dest-session-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #183044;
}

.dest-session-status {
  font-size: 0.85rem;
  font-weight: 600;
  color: #c56f46;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.dest-session .btn-main {
  padding: 12px 28px;
  margin-left: auto;
}

@media (max-width: 900px) {
  .dest-hero {
    grid-template-columns: 1fr;
    padding: 55px 24px 70px;
    min-height: auto;
    gap: 42px;
  }

  .dest-hero-content {
    max-width: none;
  }

  .dest-hero-image {
    aspect-ratio: 4 / 5;
  }

  .dest-split {
    grid-template-columns: 1fr;
    padding: 90px 40px;
    gap: 40px;
  }

  .dest-split.reverse {
    display: flex;
    flex-direction: column-reverse;
  }

  .dest-block {
    padding-left: 40px;
    padding-right: 40px;
  }

  .dest-included {
    grid-template-columns: 1fr;
  }

  .dest-sites-grid {
    grid-template-columns: 1fr;
  }

  .dest-dates {
    padding-left: 40px;
    padding-right: 40px;
  }

  .dest-session .btn-main {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}

/* ===========================
   PAGE À PROPOS
=========================== */

.about-hero {
  position: relative;
  min-height: 74vh;
  margin-top: var(--header-height);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13, 37, 54, 0.82) 0%,
    rgba(13, 37, 54, 0.56) 38%,
    rgba(13, 37, 54, 0.08) 68%,
    rgba(13, 37, 54, 0) 100%
  );
}

.about-hero__content {
  position: relative;
  z-index: 1;
  width: min(90%, 1200px);
  max-width: 620px;
  margin: 0 auto 0 6%;
  color: #f3eadb;
}

.about-hero__content .section-label {
  color: #c56f46;
}

.about-hero__content h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 22px;
  color: #f3eadb;
}

.about-hero__text {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 34px;
  color: #f3eadb;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 70px;
}

.about-split__media {
  min-height: 460px;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(24, 48, 68, 0.12);
}

.about-split__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-split__media--portrait {
  max-width: 420px;
  margin: 0 auto;
}

.about-martin .about-split__media--portrait img {
  object-position: center 35%;
}

.about-split__content h2 {
  font-size: 2.1rem;
  color: #183044;
  margin-bottom: 22px;
}

.about-split__content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #183044;
  margin-bottom: 16px;
}

.about-split__content p:last-of-type {
  margin-bottom: 0;
}

.about-signature {
  max-width: 700px;
  margin: 20px auto 60px;
  padding: 0 40px;
  text-align: center;
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
  color: #c56f46;
}

.about-signature::before,
.about-signature::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  margin: 0 auto 18px;
  background: rgba(24, 48, 68, 0.2);
}

.about-signature::after {
  margin: 18px auto 0;
}

.about-martin__note {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(24, 48, 68, 0.15);
  font-style: italic;
}

.about-martin .about-split__content h2 {
  margin-bottom: 8px;
}

.about-martin__subtitle {
  font-size: 1.05rem;
  font-weight: 500;
  color: #c56f46;
  margin-bottom: 24px !important;
}

.about-principles {
  display: grid;
  gap: 26px;
  margin-top: 30px;
}

.about-principle {
  padding-left: 22px;
  border-left: 3px solid #c56f46;
}

.about-principle h3 {
  font-size: 1.1rem;
  color: #183044;
  margin-bottom: 6px;
}

.about-principle p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #183044;
  opacity: 0.85;
  margin-bottom: 0;
}

.about-values {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 70px 110px;
  text-align: center;
}

.about-values__label {
  text-align: center;
}

.about-values h2 {
  font-size: 2.2rem;
  color: #183044;
  margin-bottom: 0;
}

.about-values .stats-grid {
  margin-top: 45px;
}

.about-cta {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
  text-align: center;
}

.about-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.about-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(16, 34, 49, 0.4), rgba(16, 34, 49, 0.6));
}

.about-cta__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 0 40px;
}

.about-cta__content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 22px;
}

.about-cta__content p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 34px;
  opacity: 0.92;
}

.about-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.trip-final-cta .about-cta__content p {
  font-size: 1.12rem;
  line-height: 1.75;
}

.about-cta__buttons .btn-main {
  padding: 15px 30px;
}

@media (max-width: 900px) {
  .about-hero {
    min-height: auto;
    padding: 90px 24px 60px;
    align-items: flex-end;
  }

  .about-hero__content {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .about-split {
    grid-template-columns: 1fr;
    padding: 70px 40px;
    gap: 36px;
  }

  .about-split.reverse {
    display: flex;
    flex-direction: column-reverse;
  }

  .about-split__media {
    min-height: 340px;
  }

  .about-split__media--portrait {
    max-width: 320px;
  }

  .about-values {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 600px) {
  .about-hero {
    min-height: 78svh;
  }

  .about-hero::after {
    background: linear-gradient(
      0deg,
      rgba(13, 37, 54, 0.88) 0%,
      rgba(13, 37, 54, 0.54) 48%,
      rgba(13, 37, 54, 0.05) 82%
    );
  }

  .about-hero__text {
    font-size: 1rem;
  }

  .about-cta__buttons {
    flex-direction: column;
    width: 100%;
  }

  .about-cta__buttons .btn-main {
    width: 100%;
    text-align: center;
  }
}

/*=========================
   TRIP TEMPLATE
   Composants réutilisables pour les pages destination
   (Maroc, Andalousie, Dolomites, Colombie, etc.)
   Réutilise .btn-main, .btn-main--outline, .section-label,
   .dest-text, .dest-site, .dest-included/.included-col et
   .about-cta déjà définis plus haut.
=========================== */

.trip-hero {
  position: relative;
  min-height: 85vh;
  margin-top: var(--header-height);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #f3eadb;
}

.trip-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trip-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13, 37, 54, 0.78) 0%,
    rgba(13, 37, 54, 0.48) 34%,
    rgba(13, 37, 54, 0.08) 62%,
    rgba(13, 37, 54, 0) 85%
  );
}

.trip-hero-content {
  position: relative;
  z-index: 1;
  max-width: 550px;
  margin-left: max(24px, calc((100vw - 1200px) / 2 + 70px));
  margin-right: 24px;
  text-align: left;
}

.trip-hero-label {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.trip-hero-dates {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-bottom: 28px;
}

.trip-hero-dates-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #f0b190;
  margin-bottom: 6px;
}

.trip-hero-date {
  font-size: 0.98rem;
  opacity: 0.92;
}

.trip-hero-content h1 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
  margin-bottom: 38px;
}

.trip-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 18px;
}

/* Section — Le séjour */
.trip-stay {
  max-width: 1200px;
  margin: 0 auto;
  padding: 130px 70px;
  scroll-margin-top: var(--header-height);
}

.trip-stay-cards + .about-signature {
  margin: 45px auto 0;
}

.trip-stay-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.trip-stay-header h2 {
  font-size: 2.2rem;
  color: #183044;
}

.trip-stay-text {
  max-width: 640px;
  margin-bottom: 60px;
}

.trip-stay-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.trip-stay-card {
  background: white;
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(24, 48, 68, 0.10);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.trip-stay-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}

.trip-stay-card-media {
  overflow: hidden;
  aspect-ratio: 4 / 4.5;
}

.trip-stay-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.trip-stay-card:hover .trip-stay-card-media img {
  transform: scale(1.06);
}

.trip-stay-card-body {
  padding: 16px 22px 20px;
}

.trip-stay-card-body h3 {
  font-size: 1.15rem;
  color: #183044;
  margin-bottom: 6px;
}

.trip-stay-card-body p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #183044;
  opacity: 0.85;
}

/* Section — Informations pratiques */
.trip-infos {
  max-width: 1200px;
  margin: 0 auto;
  padding: 130px 70px;
  text-align: center;
  scroll-margin-top: var(--header-height);
}

.trip-infos h2 {
  font-size: 2.1rem;
  color: #183044;
}

.contact-infos h2 {
  font-size: 2.6rem;
  margin-top: 14px;
}

.trip-infos-intro {
  max-width: 620px;
  margin: 20px auto 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #183044;
  opacity: 0.8;
}

.trip-infos-editorial {
  max-width: 900px;
  margin: 60px auto 0;
  padding: 50px 0;
  border-top: 1px solid rgba(24, 48, 68, 0.16);
  border-bottom: 1px solid rgba(24, 48, 68, 0.16);
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: left;
}

.trip-infos-col {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.trip-infos-col:first-child {
  border-right: 1px solid rgba(24, 48, 68, 0.14);
  padding-right: 50px;
}

.trip-infos-col:last-child {
  padding-left: 50px;
}

.trip-infos-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #183044;
  margin-bottom: 12px;
}

.trip-infos-item p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #183044;
  opacity: 0.75;
  margin-bottom: 4px;
}

.trip-infos-item p:last-child {
  margin-bottom: 0;
}

.trip-infos-formula {
  margin-bottom: 16px;
}

.trip-infos-formula:last-of-type {
  margin-bottom: 0;
}

.trip-infos-item p.trip-infos-price {
  font-weight: 600;
  opacity: 1;
}

.trip-infos-item p.trip-infos-note {
  margin-top: 16px;
  font-size: 0.85rem;
  opacity: 0.55;
}

/* Section — Au-delà du parapente */
.trip-beyond {
  padding-bottom: 260px;
}

.trip-beyond-header {
  max-width: 620px;
  margin: 0 auto 75px;
  padding: 0 70px;
  text-align: center;
}

.trip-beyond-header h2 {
  font-size: 2.2rem;
  color: #183044;
  margin-bottom: 18px;
}

.trip-beyond-header p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #183044;
  opacity: 0.85;
}

.trip-beyond-triptych {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 70px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 85vh;
  min-height: 560px;
  max-height: 840px;
}

.trip-beyond-triptych img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

.trip-beyond-triptych-main {
  grid-row: 1 / 3;
}

/* Responsive */
@media (max-width: 900px) {
  .trip-hero {
    min-height: auto;
    padding: 90px 24px 60px;
    align-items: flex-end;
  }

  .trip-hero-content {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .trip-stay {
    padding: 90px 40px;
  }

  .trip-stay-cards {
    gap: 24px;
  }

  .trip-infos {
    padding: 90px 40px;
  }

  .trip-infos-editorial {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .trip-infos-col:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(24, 48, 68, 0.14);
    padding-right: 0;
    padding-bottom: 44px;
  }

  .trip-infos-col:last-child {
    padding-left: 0;
  }

  .trip-beyond-header,
  .trip-beyond-triptych {
    padding: 0 40px;
  }

  .trip-beyond-triptych {
    height: 72vh;
  }
}

@media (max-width: 600px) {
  .trip-hero {
    min-height: 78svh;
  }

  .trip-hero::before {
    background: linear-gradient(
      0deg,
      rgba(13, 37, 54, 0.88) 0%,
      rgba(13, 37, 54, 0.54) 48%,
      rgba(13, 37, 54, 0.05) 82%
    );
  }

  .trip-hero-content h1 {
    font-size: 1.7rem;
  }

  .trip-hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .trip-hero-buttons .btn-main {
    width: 100%;
    text-align: center;
  }

  .trip-stay,
  .trip-infos {
    padding: 70px 24px;
  }

  .trip-stay-cards {
    grid-template-columns: 1fr;
  }

  .trip-beyond-header,
  .trip-beyond-triptych {
    padding: 0 24px;
  }

  .trip-beyond-triptych {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    height: auto;
    max-height: none;
    gap: 12px;
  }

  .trip-beyond-triptych-main {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .trip-beyond-triptych img:not(.trip-beyond-triptych-main) {
    aspect-ratio: 16 / 9;
    height: auto;
  }
}

/*=========================
   FORMULAIRES (réservation biplace / stage-voyage)
=========================== */

.contact-form-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 70px 150px;
}

.contact-form {
  max-width: 640px;
  margin: 55px auto 0;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

.contact-form-row {
  margin-bottom: 24px;
}

.contact-form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #183044;
  margin-bottom: 8px;
}

.contact-form-row .contact-form-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.55;
}

.contact-form-row input,
.contact-form-row select,
.contact-form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(24, 48, 68, 0.18);
  border-radius: 10px;
  background: white;
  font-family: inherit;
  font-size: 1rem;
  color: #183044;
  transition: border-color 0.2s ease;
}

.contact-form-row input:focus,
.contact-form-row select:focus,
.contact-form-row textarea:focus {
  outline: none;
  border-color: #c56f46;
}

.contact-form-row textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form-submit {
  margin-top: 8px;
  text-align: center;
}

.contact-form-submit .btn-main {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.contact-form-note {
  max-width: 640px;
  margin: 20px auto 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #183044;
  opacity: 0.6;
  text-align: center;
}

@media (max-width: 600px) {
  .contact-form-section {
    padding: 70px 24px 100px;
  }

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

