/* Cap Skirring Travel Voyage — feuille de style unique.
   Reprise de l'identite du site : en-tete blanc, accent vert #1a8402,
   ambre #fcb03a, titres Poppins, texte Raleway. */

:root {
  --green:      #1a8402;
  --green-d:    #145c05;
  --green-dd:   #0f4604;
  --amber:      #fcb03a;
  --yellow:     #fdf27a;

  --head:       #303030;
  --ink:        #444444;
  --muted:      #8f8f8f;
  --line:       #e8e8e8;
  --bg:         #f8f8f8;
  --bg2:        #f9f9f9;
  --bg3:        #f4f4f4;
  --paper:      #ffffff;
  --wa:         #25d366;

  --gut:        clamp(1rem, 4vw, 2.5rem);
  --max:        73rem;
  --title:      "Poppins", "Helvetica Neue", Arial, sans-serif;
  --body:       "Raleway", "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--body); font-size: .95rem; line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }

h1, h2, h3, h4 { font-family: var(--title); color: var(--head); font-weight: 700; line-height: 1.25; margin: 0 0 .5em; text-wrap: balance; }
h1 { font-size: clamp(2rem, 4.6vw, 2.9rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.55rem); }
p  { margin: 0 0 1.1em; max-width: 72ch; }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.skip { position: absolute; left: -9999px; background: var(--green); color: #fff; padding: .7rem 1.1rem; z-index: 300; }
.skip:focus { left: .75rem; top: .75rem; }

/* ---------- En-tete blanc ---------- */

.site-header { position: sticky; top: 0; z-index: 100; background: var(--paper); box-shadow: 0 1px 0 rgba(0,0,0,.07); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 68px; }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand img { height: 46px; width: auto; }
.brand span { font-family: var(--title); font-weight: 600; font-size: .66rem; text-transform: uppercase; letter-spacing: .13em; color: var(--head); max-width: 9ch; line-height: 1.3; }

.nav { display: flex; align-items: center; gap: 1.9rem; }
.nav a {
  font-family: var(--title); font-size: .72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .11em; color: var(--head); text-decoration: none; transition: color .18s ease;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--green); }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; width: 42px; height: 42px; }
.burger span { display: block; height: 2px; background: var(--head); margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 720px) {
  .burger { display: block; }
  .nav { position: absolute; inset: 68px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); padding: .25rem var(--gut) 1rem; box-shadow: 0 8px 16px rgba(0,0,0,.08); }
  .nav[hidden] { display: none; }
  .nav a { padding: .9rem 0; border-bottom: 1px solid var(--line); font-size: .82rem; }
}

/* ---------- Bandeau d'accueil ---------- */

.intro { background: var(--bg2); padding-block: 10px; }
.intro__grid { display: grid; grid-template-columns: minmax(0, 47%) minmax(0, 1fr); gap: 14px; align-items: stretch; }
.intro__logo { background: var(--paper); display: grid; place-items: center; padding: 8px; }
.intro__logo img { width: 100%; height: 100%; object-fit: contain; }
.intro__right { display: grid; grid-template-rows: auto 1fr; gap: 14px; }
.intro__card { background: var(--paper); padding: clamp(1.25rem, 3vw, 2.25rem); display: flex; flex-direction: column; justify-content: center; }
.intro__card h1 { font-size: clamp(1.4rem, 2.8vw, 2rem); margin-bottom: .4rem; }
.intro__card p { color: var(--muted); font-size: .86rem; font-style: italic; margin: 0; }

.promos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.promo { display: flex; flex-direction: column; text-decoration: none; color: var(--head); border: 1px solid var(--line); background: var(--paper); overflow: hidden; transition: box-shadow .2s ease; }
.promo:hover { box-shadow: 0 8px 20px rgba(0,0,0,.12); }
.promo__cap { padding: .7rem .9rem; text-align: center; font-family: var(--title); line-height: 1.25; }
.promo__cap b { display: block; font-weight: 700; font-size: .95rem; letter-spacing: .01em; }
.promo__cap span { display: block; font-weight: 600; font-size: .92rem; }
.promo--jaune .promo__cap { background: var(--yellow); }
.promo img { width: 100%; height: 100%; min-height: 130px; object-fit: cover; flex: 1; }

@media (max-width: 860px) {
  .intro__grid { grid-template-columns: 1fr; }
  .intro__logo { padding: 1rem; }
}
@media (max-width: 520px) { .promos { grid-template-columns: 1fr; } }

/* ---------- Section « Nos meilleurs tours » ---------- */

.best { background: var(--bg); padding-block: 50px 90px; }
.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-head h2 { text-transform: uppercase; letter-spacing: .01em; }
.section-head p { color: var(--muted); max-width: 42rem; margin: 0 auto; font-size: .9rem; }

.carousel { position: relative; }
.carousel__track {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(0, calc((100% - 3rem) / 3));
  gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; padding-bottom: .25rem;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track > * { scroll-snap-align: start; }
.carousel__btn {
  position: absolute; top: 38%; width: 38px; height: 38px; border: 0; background: none;
  color: var(--muted); font-size: 2rem; line-height: 1; cursor: pointer; z-index: 2;
}
.carousel__btn:hover { color: var(--head); }
.carousel__btn--prev { left: -2.4rem; }
.carousel__btn--next { right: -2.4rem; }
@media (max-width: 1200px) { .carousel__btn { display: none; } }
@media (max-width: 980px) { .carousel__track { grid-auto-columns: minmax(0, calc((100% - 1.5rem) / 2)); } }
@media (max-width: 620px) { .carousel__track { grid-auto-columns: 84%; } }

.tcard { background: var(--paper); display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.tcard__img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.tcard__body { padding: 1.1rem 1.15rem 1.25rem; flex: 1; }
.tcard__top { display: flex; align-items: flex-start; justify-content: space-between; gap: .8rem; margin-bottom: .6rem; }
.tcard__name { font-family: var(--title); font-weight: 700; font-size: .98rem; color: var(--head); line-height: 1.35; }
.tcard__prices { white-space: nowrap; font-family: var(--title); font-weight: 700; font-size: .95rem; }
.tcard__was { color: var(--muted); text-decoration: line-through; font-weight: 400; font-size: .85rem; margin-right: .25rem; }
.tcard__now { color: var(--green); }
.tcard__quote { color: var(--muted); font-size: .82rem; font-style: italic; line-height: 1.6; margin: 0; }
.tcard__meta { background: var(--green-d); color: #fff; display: flex; gap: 1.4rem; padding: .75rem 1.15rem; font-size: .8rem; }
.tcard__meta span { display: inline-flex; align-items: center; gap: .4rem; }
.tcard__meta svg { width: 14px; height: 14px; fill: currentColor; opacity: .9; }

/* ---------- Bande parallax : le guide ---------- */

.saliou { position: relative; background: var(--bg2); }
.saliou__bg { position: absolute; inset: 0; background-position: center; background-size: cover; }
.saliou__grid { position: relative; display: grid; grid-template-columns: minmax(0, 44%) minmax(0, 1fr); align-items: stretch; }
.saliou__photo { margin: -57px 0; position: relative; z-index: 2; }
.saliou__photo img { width: 100%; height: 100%; object-fit: cover; }
.saliou__text { padding: clamp(2rem, 4vw, 3.25rem) clamp(1.25rem, 3vw, 2.5rem); color: #fff; }
.saliou__text h2 { color: #fff; font-size: clamp(1.25rem, 2.4vw, 1.7rem); display: inline-block; border-bottom: 2px solid #fff; padding-bottom: .35rem; margin-bottom: 1.1rem; }
.saliou__text p { color: #fff; font-weight: 600; font-size: .86rem; line-height: 1.75; }
.saliou__chute { font-family: var(--title); font-weight: 700; font-size: .95rem; margin-bottom: 0 !important; }
@media (max-width: 820px) {
  .saliou__grid { grid-template-columns: 1fr; }
  .saliou__photo { margin: 0; }
  .saliou__photo img { max-height: 22rem; }
}

/* ---------- Bandes de couleur ---------- */

.stripe { height: 14px; }
.stripe--amber { background: var(--amber); }
.stripe--green { background: var(--green); }

/* ---------- En-tete de page interieure ---------- */

.pagehead { position: relative; display: grid; place-items: center; min-height: clamp(16rem, 34vw, 30rem); overflow: hidden; }
.pagehead img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pagehead__t { position: relative; font-family: var(--title); font-weight: 700; text-transform: uppercase; font-size: clamp(1.8rem, 4.5vw, 2.9rem); color: var(--head); letter-spacing: .01em; text-align: center; padding-inline: 1rem; margin: 0; }
.pagehead--dark .pagehead__t { color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,.45); }
.pagehead--dark::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.3); }
.pagehead__sub { position: relative; color: #fff; text-align: center; max-width: 48ch; padding-inline: 1rem; font-style: italic; margin: .4rem 0 0; text-shadow: 0 2px 10px rgba(0,0,0,.5); }

/* ---------- Liste « Nos tours » ---------- */

.tourlist { list-style: none; margin: 0; padding: 0; }
.tourlist > li + li { margin-top: 2.25rem; }
.trow { display: grid; grid-template-columns: 17.5rem minmax(0, 1fr); gap: 2rem; align-items: stretch; text-decoration: none; color: inherit; }
.trow__img { width: 100%; height: 100%; min-height: 14rem; object-fit: cover; }
.trow__body { display: flex; flex-direction: column; }
.trow__title { font-family: var(--title); font-weight: 700; font-size: clamp(1.15rem, 2.2vw, 1.55rem); color: var(--head); margin: 0 0 .5rem; line-height: 1.3; }
.trow:hover .trow__title { color: var(--green); }
.trow__quote { color: var(--muted); font-size: .84rem; font-style: italic; margin: 0 0 auto; }
.trow__price { border-top: 1px solid var(--line); padding-top: .85rem; margin-top: 1.5rem; font-family: var(--title); font-weight: 700; font-size: 1.05rem; }
.trow__was { color: var(--muted); text-decoration: line-through; font-weight: 400; font-size: .9rem; margin-right: .3rem; }
.trow__now { color: var(--green); }
.trow__per { color: var(--muted); font-weight: 400; font-size: .8rem; }
.trow__meta { background: var(--bg3); display: flex; flex-wrap: wrap; gap: 1.2rem; padding: .7rem 1rem; margin-top: .9rem; font-size: .78rem; color: var(--muted); }
.trow__meta span { display: inline-flex; align-items: center; gap: .4rem; }
.trow__meta svg { width: 13px; height: 13px; fill: currentColor; }
@media (max-width: 780px) {
  .trow { grid-template-columns: 1fr; gap: 1rem; }
  .trow__img { min-height: 13rem; max-height: 16rem; }
}

/* ---------- Page sejour ---------- */

.tour-body { display: grid; gap: clamp(1.75rem, 3.5vw, 3rem); grid-template-columns: minmax(0, 1fr) minmax(0, 18rem); align-items: start; }
@media (max-width: 940px) { .tour-body { grid-template-columns: 1fr; } }
.tour-body h2 { font-size: 1.25rem; text-transform: uppercase; letter-spacing: .03em; border-bottom: 2px solid var(--green); display: inline-block; padding-bottom: .4rem; margin-bottom: 1.1rem; }

.pricebar { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2.25rem; background: var(--bg); padding: 1.1rem 1.3rem; margin-bottom: 2rem; }
.pricebar__price { display: flex; align-items: baseline; gap: .5rem; font-family: var(--title); }
.pricebar__was { color: var(--muted); text-decoration: line-through; font-size: 1rem; }
.pricebar__now { font-weight: 700; font-size: 1.9rem; color: var(--green); line-height: 1; }
.pricebar__per { color: var(--muted); font-size: .8rem; }
.facts { display: flex; gap: 1.75rem; }
.fact__n { font-family: var(--title); font-weight: 700; font-size: 1.15rem; color: var(--head); display: block; line-height: 1.2; }
.fact__l { font-family: var(--title); font-size: .64rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }

.chute { font-family: var(--title); font-weight: 600; font-size: 1rem; color: var(--head); background: var(--bg); border-left: 3px solid var(--green); padding: .9rem 1.1rem; margin: 1.5rem 0 0; max-width: 50ch; }

.card { background: var(--paper); border: 1px solid var(--line); padding: 1.35rem; }
.card + .card { margin-top: 1rem; }
.card h3 { font-size: .76rem; text-transform: uppercase; letter-spacing: .11em; color: var(--head); margin-bottom: .9rem; padding-bottom: .55rem; border-bottom: 1px solid var(--line); }
.dl { margin: 0; font-size: .86rem; }
.dl div + div { margin-top: .8rem; }
.dl dt { font-family: var(--title); font-weight: 600; font-size: .68rem; text-transform: uppercase; letter-spacing: .09em; color: var(--muted); margin-bottom: .1rem; }
.dl dd { margin: 0; line-height: 1.6; }
.ticks { list-style: none; margin: 0; padding: 0; font-size: .86rem; }
.ticks li { position: relative; padding-left: 1.4rem; margin-bottom: .4rem; }
.ticks li::before { position: absolute; left: 0; top: 0; font-weight: 700; }
.ticks--in li::before  { content: "+"; color: var(--green); }
.ticks--out li::before { content: "\2013"; color: #c0392b; }
.tags { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; margin: 0; padding: 0; }
.tags li { font-family: var(--title); font-size: .66rem; text-transform: uppercase; letter-spacing: .08em; background: var(--bg3); padding: .3rem .65rem; color: var(--muted); }

.plan { list-style: none; margin: 1.25rem 0 0; padding: 0; counter-reset: day; }
.plan > li { position: relative; padding-left: 3.1rem; padding-bottom: 1.8rem; }
.plan > li::before { counter-increment: day; content: counter(day); position: absolute; left: 0; top: 0; width: 2.1rem; height: 2.1rem; display: grid; place-items: center; background: var(--green); color: #fff; border-radius: 50%; font-family: var(--title); font-weight: 700; font-size: .88rem; }
.plan > li::after { content: ""; position: absolute; left: 1.05rem; top: 2.1rem; bottom: 0; width: 1px; background: var(--line); }
.plan > li:last-child { padding-bottom: 0; }
.plan > li:last-child::after { display: none; }
.plan__day { font-family: var(--title); font-weight: 700; font-size: 1rem; color: var(--head); margin: .2rem 0 .05rem; }
.plan__dur { font-size: .78rem; color: var(--muted); margin-bottom: .55rem; }
.plan__steps { margin: 0; padding-left: 1.05rem; font-size: .88rem; }
.plan__steps li { margin-bottom: .4rem; }
.plan-empty { color: var(--muted); font-style: italic; margin-top: 1rem; }

.gallery { display: grid; gap: .45rem; grid-template-columns: repeat(auto-fill, minmax(min(100%, 11rem), 1fr)); list-style: none; margin: 1.25rem 0 0; padding: 0; }
.gallery button { padding: 0; border: 0; background: none; cursor: zoom-in; display: block; width: 100%; overflow: hidden; }
.gallery img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; transition: transform .3s ease; }
.gallery button:hover img { transform: scale(1.06); }
.lightbox { position: fixed; inset: 0; z-index: 300; display: none; background: rgba(20,20,20,.94); place-items: center; padding: 1.5rem; }
.lightbox[open] { display: grid; }
.lightbox img { max-width: min(100%, 58rem); max-height: 86vh; object-fit: contain; }
.lightbox__close { position: absolute; top: 1rem; right: 1rem; width: 44px; height: 44px; background: none; border: 1px solid rgba(255,255,255,.4); color: #fff; font-size: 1.5rem; cursor: pointer; line-height: 1; }

/* ---------- Bouton et bande de contact ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--title); font-weight: 600; font-size: .74rem; text-transform: uppercase;
  letter-spacing: .09em; padding: .85rem 1.5rem; border-radius: 2px; text-decoration: none;
  border: 2px solid transparent; cursor: pointer; transition: background-color .2s ease;
}
.btn--wa { background: var(--wa); color: #04331b; }
.btn--wa:hover { background: #1cb85a; }
.wa-mark { width: 16px; height: 16px; flex: none; fill: currentColor; }

.contact { background: var(--bg); }
.contact__inner { display: grid; gap: 1.5rem; grid-template-columns: minmax(0,1fr) auto; align-items: center; padding-block: 2.5rem; }
.contact h2 { margin-bottom: .3rem; font-size: 1.35rem; }
.contact p { margin: 0; color: var(--muted); font-size: .88rem; }
@media (max-width: 720px) { .contact__inner { grid-template-columns: 1fr; } }

/* ---------- Pied de page ---------- */

.site-footer { background: #2b2b2b; color: rgba(255,255,255,.62); font-size: .82rem; }
.site-footer__inner { display: grid; gap: 1.75rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); padding-block: 2.25rem 1.5rem; }
.site-footer h4 { color: #fff; font-size: .68rem; text-transform: uppercase; letter-spacing: .13em; margin-bottom: .8rem; }
.site-footer a { color: rgba(255,255,255,.75); text-decoration: none; }
.site-footer a:hover { color: var(--amber); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .4rem; }
.site-footer__base { border-top: 1px solid rgba(255,255,255,.1); padding-block: 1rem; font-size: .74rem; color: rgba(255,255,255,.4); }

/* ---------- Bouton WhatsApp flottant ---------- */

.wa-float { position: fixed; left: 20px; bottom: 20px; z-index: 200; width: 60px; height: 60px; border-radius: 50%; background: var(--wa); display: grid; place-items: center; box-shadow: 0 6px 8px 2px rgba(0,0,0,.15); }
.wa-float svg { width: 31px; height: 31px; fill: #fff; }
.wa-float span { position: absolute; left: 100%; margin-left: 10px; white-space: nowrap; background: #fff; color: #000; font-family: var(--title); font-size: .74rem; font-weight: 600; padding: .3rem .6rem; border-radius: 4px; box-shadow: 0 6px 8px 2px rgba(0,0,0,.15); }
@media (max-width: 560px) { .wa-float span { display: none; } }
