/* ==========================================================================
   Itinéraire d'émotions — feuille de style
   Palette extraite du PDF logo :
   Navy #1D303E / Teal #648D8A / Sage #99B8AC / Terracotta #DF9877 / Moutarde #DF9877 / Crème #E6D9CA
   ========================================================================== */

/* Belle de Mai — police sous licence, auto-hébergée. Une seule graisse
   fournie (Heavy). Déclarée sur toute la plage 100–900 : tous les titres du
   site, quel que soit le poids demandé en CSS, utilisent donc ce même
   fichier sans gras synthétique. Si d'autres graisses arrivent un jour,
   scinder ce bloc en plusieurs @font-face avec des font-weight précis. */
@font-face {
  font-family: 'Belle De Mai';
  src: url('../fonts/BelleDeMai-Heavy.woff2') format('woff2'),
       url('../fonts/BelleDeMai-Heavy.otf') format('opentype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #1D303E;
  --navy-light: #1D303E;
  --teal: #648D8A;
  --sage: #99B8AC;
  --terracotta: #DF9877;
  --terracotta-light: #DF9877;
  --mustard: #DF9877;
  --cream: #E6D9CA;
  --cream-dark: #E6D9CA;
  --white: #FFFFFF;

  --font-display: 'Belle De Mai', Georgia, serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;

  --radius: 18px;
  --shadow: 0 20px 45px -20px rgba(26, 42, 56, 0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p { line-height: 1.7; margin: 0 0 1em; color: #3c4b57; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

section { padding: 90px 0; }

@media (max-width: 768px) {
  section { padding: 60px 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 12px 24px -10px rgba(219, 133, 104, 0.65);
}
.btn-primary:hover { background: var(--terracotta-light); transform: translateY(-2px); }

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

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn-outline-light:hover { background: var(--white); color: var(--navy); }

/* ---------- Header ---------- */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 28px 0;
}
.site-header.solid {
  position: sticky;
  background: var(--cream);
  padding: 18px 0;
  box-shadow: 0 2px 20px rgba(29,48,62,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-lockup img { width: 48px; height: auto; }
.logo-lockup .word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: 0.2px;
}
.logo-lockup .sub {
  font-family: var(--font-body);
  font-size: 8.5px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-top: 2px;
  opacity: 0.85;
}

.on-dark .logo-lockup .word,
.on-dark .logo-lockup .sub { color: var(--white); }
.on-light .logo-lockup .word { color: var(--navy); }
.on-light .logo-lockup .sub { color: var(--terracotta); }

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
nav.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.on-dark nav.main-nav a { color: var(--white); }
.on-light nav.main-nav a { color: var(--navy); }
nav.main-nav a.active::after,
nav.main-nav a:hover::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--terracotta);
}

.nav-cta { display: flex; align-items: center; gap: 24px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: currentColor; display:block; }
.on-dark .nav-toggle { color: var(--white); }
.on-light .nav-toggle { color: var(--navy); }

@media (max-width: 480px) {
  .logo-lockup .sub { display: none; }
  .logo-lockup .word { font-size: 16px; }
}

@media (max-width: 900px) {
  nav.main-nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-primary { display: none; }

  nav.main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy);
    padding: 24px 28px;
    gap: 18px;
    box-shadow: var(--shadow);
  }
  nav.main-nav.open a { color: var(--white) !important; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: radial-gradient(130% 130% at 10% 12%, var(--navy-light) 0%, var(--navy) 58%);
  overflow: hidden;
  isolation: isolate;
}
.hero-illustration {
  position: absolute;
  right: -50px;
  bottom: -40px;
  width: 380px;
  max-width: 40vw;
  opacity: 0.95;
  z-index: 0;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 90px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.hero h1 {
  font-size: clamp(30px, 4.4vw, 54px);
  font-weight: 500;
  font-style: italic;
  max-width: 620px;
  color: var(--white);
}
.hero h1 strong { font-style: normal; font-weight: 700; }
.hero .btn-primary { flex-shrink: 0; }

/* small hero for inner pages */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background: radial-gradient(120% 160% at 90% 0%, var(--navy-light) 0%, var(--navy) 62%);
  overflow: hidden;
  isolation: isolate;
  padding-top: 110px;
}
.page-hero-illustration {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 190px;
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--terracotta-light); }
.page-hero h1 { color: var(--white); font-size: clamp(30px, 4vw, 46px); }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 560px; }

/* ---------- Feature strip (3 colonnes) ---------- */
.feature-strip {
  background: var(--white);
  border-radius: var(--radius);
  margin-top: -70px;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.feature-strip .feature {
  padding: 40px 36px;
  border-right: 1px solid #E6D9CA;
}
.feature-strip .feature:last-child { border-right: none; }
.feature-strip .stat {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 4px;
}
.feature-strip h3 { font-size: 16px; margin-bottom: 10px; }
.feature-strip p { font-size: 14.5px; margin: 0; color: #5b6773; }

@media (max-width: 768px) {
  .feature-strip { grid-template-columns: 1fr; margin-top: -40px; }
  .feature-strip .feature { border-right: none; border-bottom: 1px solid #E6D9CA; }
  .feature-strip .feature:last-child { border-bottom: none; }
}

/* ---------- CTA banners ---------- */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 70px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(219,133,104,0.25), transparent 55%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner .eyebrow { color: var(--sage); }
.cta-banner h2 { color: var(--white); max-width: 520px; margin-bottom: 0; font-size: clamp(24px,3vw,34px); }
.cta-banner p { color: rgba(255,255,255,0.75); max-width: 460px; }

/* ---------- Destinations ---------- */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.section-head h2 { max-width: 520px; font-size: clamp(26px, 3vw, 38px); }
.section-head .lead { max-width: 380px; color: #5b6773; margin: 0; }

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.destination-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  color: var(--white);
  box-shadow: var(--shadow);
}
.destination-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.destination-card:hover img { transform: scale(1.06); }
.destination-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(29,48,62,0) 35%, rgba(29,48,62,0.92) 100%);
}
.destination-card .card-body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px;
  z-index: 2;
}
.destination-card h3 { color: var(--white); margin-bottom: 8px; font-size: 22px; }
.destination-card p { color: rgba(255,255,255,0.85); font-size: 14px; margin: 0; }

.destinations-more {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.destinations-more .destination-card { aspect-ratio: 16/9; }

@media (max-width: 900px) {
  .destinations-grid { grid-template-columns: 1fr; }
  .destinations-more { grid-template-columns: 1fr; }
}

/* ---------- About / founder ---------- */
.about-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.about-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--terracotta);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 14px;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: 15.5px;
  white-space: nowrap;
  box-shadow: var(--shadow);
}
.about-content .kicker {
  color: var(--teal);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  margin: 0 0 10px;
}
.about-content h2 { font-size: clamp(26px, 3vw, 36px); }

@media (max-width: 860px) {
  .about-section { grid-template-columns: 1fr; }
  .about-badge { left: 20px; }
}

/* ---------- Advantages icon row ---------- */
.advantages {
  background: var(--cream-dark);
  border-radius: var(--radius);
  padding: 60px 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.advantages::before {
  content: '';
  position: absolute;
  top: -70px;
  left: -70px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--terracotta-light);
  opacity: 0.55;
  z-index: 0;
}
.advantages-palm {
  position: absolute;
  right: -30px;
  bottom: -40px;
  width: 190px;
  height: auto;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
.advantage { text-align: center; position: relative; z-index: 1; }
.advantage .icon-circle {
  width: 66px; height: 66px;
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 10px 20px -10px rgba(29,48,62,0.2);
}
.advantage .icon-circle svg { width: 28px; height: 28px; }
.advantage h4 { font-size: 14.5px; letter-spacing: 0.3px; margin-bottom: 0; }

@media (max-width: 860px) {
  .advantages { grid-template-columns: repeat(2, 1fr); }
  .advantages-palm { width: 130px; opacity: 0.35; }
}

/* ---------- Why us (image + text alt) ---------- */
.why-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-us .img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.why-us .img-grid picture {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.why-us .img-grid img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
.why-us .img-grid .tall { grid-row: span 2; aspect-ratio: 0.62; }
.why-us .img-grid .short { aspect-ratio: 1.5; }

.checklist { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 16px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; }
.checklist .tick {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  margin-top: 2px;
}

@media (max-width: 860px) {
  .why-us { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .cta-banner { padding: 40px 26px; }
  .cta-banner .btn { white-space: normal; text-align: center; }
  .advantages { padding: 40px 26px; }
}

/* ---------- Testimonial cards (Avis) ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card .stars { color: var(--terracotta); letter-spacing: 3px; font-size: 15px; }
.testimonial-card p.quote { color: var(--navy); font-style: italic; font-size: 15.5px; margin: 0; flex-grow: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--sage); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600;
}
.testimonial-author .name { font-weight: 600; font-size: 14.5px; }
.testimonial-author .trip { font-size: 12.5px; color: #7a8590; }

@media (max-width: 860px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

.notice-box {
  background: var(--cream-dark);
  border: 1px dashed var(--terracotta);
  border-radius: 14px;
  padding: 18px 22px;
  font-size: 13.5px;
  color: #5b4a3d;
  margin-bottom: 40px;
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 46px;
  height: fit-content;
}
.contact-info-card h3 { color: var(--white); font-size: 20px; }
.contact-info-card p { color: rgba(255,255,255,0.75); }
.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.contact-row:first-of-type { border-top: none; margin-top: 18px; }
.contact-row .icon-circle {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(219,133,104,0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-row .icon-circle svg { width: 18px; height: 18px; }
.contact-row a, .contact-row span { font-size: 14.5px; }
.social-row { display: flex; gap: 12px; margin-top: 24px; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.social-row a:hover { background: var(--terracotta); }
.social-row svg { width: 17px; height: 17px; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 46px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid #E6D9CA;
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--navy);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}
.field textarea { resize: vertical; min-height: 120px; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 30px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-top p { max-width: 320px; color: rgba(255,255,255,0.6); font-size: 14px; }
.footer-cols { display: flex; gap: 70px; flex-wrap: wrap; }
.footer-col h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.footer-col a:hover { color: var(--terracotta-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 26px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }

@media (max-width: 768px) {
  .footer-top, .footer-cols { flex-direction: column; gap: 30px; }
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--white); text-decoration: underline; }
.breadcrumb .sep { opacity: 0.5; }

/* ---------- Destination detail page ---------- */
.dest-content {
  max-width: 740px;
  margin: 0 auto;
}
.dest-content h2 { font-size: clamp(22px, 2.6vw, 30px); margin-top: 48px; }
.dest-content ul.highlights { list-style: none; padding: 0; margin: 20px 0; display: grid; gap: 14px; }
.dest-content ul.highlights li { display: flex; gap: 14px; align-items: flex-start; }
.dest-content ul.highlights .tick {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 13px; margin-top: 2px;
}
.dest-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0 8px;
}
.dest-gallery picture { display: block; border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow); }
.dest-gallery img { width: 100%; height: 100%; object-fit: cover; }
.dest-infobox {
  background: var(--cream-dark);
  border-radius: var(--radius);
  padding: 30px 34px;
  margin: 36px 0;
}
.dest-infobox h3 { font-size: 16px; margin-bottom: 14px; }
.dest-infobox dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; margin: 0; }
.dest-infobox dt { font-weight: 600; font-size: 14px; color: var(--navy); }
.dest-infobox dd { margin: 0; font-size: 14px; color: #5b6773; }
.related-destinations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .dest-gallery { grid-template-columns: repeat(2, 1fr); }
  .related-destinations { grid-template-columns: 1fr; }
}
/* ---------- Carnet de voyage (fanned photo stack) ---------- */
.carnet-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.carnet-section::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--mustard);
  opacity: 0.35;
}
.carnet-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.carnet-stack {
  position: relative;
  height: 360px;
  justify-self: center;
  width: 100%;
  max-width: 420px;
}
.carnet-card {
  position: absolute;
  width: 210px;
  aspect-ratio: 3/4;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid var(--navy);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.carnet-card .cover-icon {
  width: 68%;
  height: auto;
  margin-top: 15%;
  filter: drop-shadow(0 6px 12px rgba(29,48,62,0.18));
}
.carnet-card--2 .cover-icon { filter: drop-shadow(0 6px 12px rgba(29,48,62,0.18)) hue-rotate(205deg) saturate(1.15); }
.carnet-card--3 .cover-icon { filter: drop-shadow(0 6px 12px rgba(29,48,62,0.18)) hue-rotate(-32deg) saturate(1.2); }
.carnet-card .cover-label {
  margin-top: auto;
  padding-bottom: 18px;
  text-align: center;
}
.carnet-card .eyebrow-sm {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 4px;
}
.carnet-card .cover-label strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  color: var(--navy);
}
.carnet-card--1 { left: 0; top: 30px; transform: rotate(-9deg); z-index: 1; }
.carnet-card--2 { left: 100px; top: 0; transform: rotate(5deg); z-index: 2; }
.carnet-card--3 { left: 195px; top: 40px; transform: rotate(-3deg); z-index: 3; }

@media (max-width: 860px) {
  .carnet-inner { grid-template-columns: 1fr; gap: 40px; }
  .carnet-stack { height: 300px; max-width: 320px; }
  .carnet-card { width: 170px; }
  .carnet-card--2 { left: 80px; }
  .carnet-card--3 { left: 155px; }
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
