/* JNE Tours — static styles (no framework) */
:root {
  --background: #FBF8F3;
  --surface: #F1E9DA;
  --card: #FFFFFF;
  --foreground: #1A140D;
  --muted-foreground: #4A4137;
  --border: #E2D5BC;
  --accent-orange: #B8862E;
  --accent-orange-deep: #8A6320;
  --accent-orange-soft: #F0E1B8;
  --ink-deep: #14110B;
  --whatsapp: #25D366;
  --shadow-soft: 0 1px 2px rgba(0, 0, 0, .05), 0 14px 36px -14px rgba(120, 90, 40, .18);
  --shadow-lift: 0 3px 6px rgba(0, 0, 0, .08), 0 32px 64px -20px rgba(120, 90, 40, .28);
  --font-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit
}

input,
select,
textarea {
  font: inherit;
  color: inherit
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.08;
  color: var(--ink-deep);
}

p {
  max-width: 70ch
}

strong,
b {
  font-weight: 600;
  color: var(--ink-deep)
}

/* Utility containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px
}

.flex {
  display: flex
}

.grid {
  display: grid
}

.hidden {
  display: none
}

/* Eyebrow */
.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11.5px;
  color: var(--accent-orange-deep);
  font-weight: 600;
}

.eyebrow-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start
}

.accent-italic {
  color: var(--accent-orange);
  font-style: italic;
  font-weight: 500;
  font-family: var(--font-serif)
}

.divider-gold {
  display: inline-block;
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-orange), transparent);
  opacity: .9;
  border-radius: 2px
}

/* Section bands */
.band-ivory {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(184, 134, 46, .06), transparent 70%), #FBF8F3
}

.band-cream {
  background:
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(184, 134, 46, .08), transparent 70%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(184, 134, 46, .06), transparent 70%),
    #F1E9DA;
}

.bg-zellige {
  position: relative;
  isolation: isolate
}

.bg-zellige::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 220' fill='none' stroke='%23B8862E' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'><path d='M40 160 L90 160 L120 110 Q140 90 175 88 L420 88 Q460 90 490 110 L560 130 Q600 138 600 160 L600 170 L40 170 Z'/><path d='M150 88 L180 60 Q200 50 230 50 L380 50 Q415 50 440 70 L470 88'/><line x1='280' y1='52' x2='280' y2='88'/><circle cx='175' cy='172' r='26'/><circle cx='175' cy='172' r='10'/><circle cx='495' cy='172' r='26'/><circle cx='495' cy='172' r='10'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: min(820px, 75%);
  opacity: .07;
}

.bg-zellige::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(184, 134, 46, .08), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(184, 134, 46, .06), transparent 40%);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 9999px;
  padding: 14px 28px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 600;
  transition: all .3s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-gold {
  background: var(--accent-orange);
  color: #fff
}

.btn-gold:hover {
  background: var(--accent-orange-deep)
}

.btn-outline {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  background: transparent
}

.btn-outline:hover {
  background: var(--accent-orange);
  color: #fff
}

.btn-wa {
  background: var(--whatsapp);
  color: #fff
}

.btn-wa:hover {
  opacity: .9;
  transform: translateY(-2px)
}

.btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor
}

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: var(--accent-orange)
}

/* Chip */
.chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 6px 14px;
  border-radius: 9999px;
  background: var(--card);
  border: 1px solid var(--border);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted-foreground);
}

/* Trust line */
.trust {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--accent-orange)
}

/* Micro bar */
.microbar {
  display: none;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--muted-foreground);
}

.microbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px
}

.microbar .left {
  display: flex;
  gap: 24px;
  align-items: center
}

.microbar .sep {
  color: var(--border)
}

.microbar .right {
  color: var(--accent-orange);
  letter-spacing: .3em;
  font-size: 10px
}

@media(min-width:768px) {
  .microbar {
    display: block
  }
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(251, 248, 243, .6);
  border-bottom: 1px solid transparent;
  transition: all .3s ease
}

.navbar.scrolled {
  background: rgba(251, 248, 243, .95);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-soft)
}

.navbar>.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px
}

.brand img {
  height: 56px;
  width: auto
}

.brand-text {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  letter-spacing: -.015em;
  line-height: 1
}

.nav-links {
  display: none;
  gap: 36px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: rgba(26, 20, 13, .8)
}

.nav-link {
  position: relative;
  font-weight: 500;
  transition: color .2s
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--accent-orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .26s;
  border-radius: 2px
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-orange)
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1)
}

@media(min-width:1024px) {
  .nav-links {
    display: flex
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px
}

.nav-cta {
  display: none
}

@media(min-width:640px) {
  .nav-cta {
    display: inline-flex
  }
}

.hamburger {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor
}

@media(min-width:1024px) {
  .hamburger {
    display: none
  }
}

.navbar.menu-open {
  background: #FBF8F3 !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}

#mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #FBF8F3;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  z-index: 9999;
}

#mobile-menu.open {
  display: block;
}

#mobile-menu .container {
  height: auto;
  padding-top: 10px;
  padding-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

#mobile-menu a {
  display: block;
  text-align: center;
  padding: 14px 20px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.2s ease;
  background: transparent;
}

#mobile-menu a:hover,
#mobile-menu a.active {
  color: var(--accent-orange);
}

/* Language switcher */
.lang-switch {
  position: relative
}

.lang-btn {
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted-foreground)
}

.lang-btn:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange)
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  min-width: 120px;
  display: none;
  overflow: hidden;
  z-index: 50
}

.lang-menu.open {
  display: block
}

.lang-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em
}

.lang-menu a:hover {
  background: var(--surface);
  color: var(--accent-orange)
}

.lang-menu a.active {
  color: var(--accent-orange)
}

/* Hero (home) */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border)
}

.hero-bg {
  position: absolute;
  inset: 0
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #FAF7F2, rgba(250, 247, 242, .92) 50%, rgba(250, 247, 242, .3))
}

.hero-overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #FAF7F2, transparent)
}

.hero-inner {
  position: relative;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px
}

.hero h1 {
  font-size: clamp(2.4rem, 7vw, 6.4rem);
  line-height: .98;
  letter-spacing: -.01em;
  margin-top: 32px
}

.hero-sub {
  margin-top: 32px;
  font-size: 1.1rem;
  color: var(--muted-foreground);
  max-width: 34rem;
  line-height: 1.7
}

.hero-actions {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px
}

.hero-stats {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 640px
}

.hero-stats .stat {
  padding: 0 16px
}

.hero-stats .stat+.stat {
  border-left: 1px solid rgba(184, 134, 46, .3)
}

.hero-stats .num {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  color: var(--accent-orange)
}

.hero-stats .lbl {
  margin-top: 12px;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--muted-foreground)
}

/* Page hero (other pages) */
.page-hero {
  border-bottom: 1px solid var(--border);
  position: relative
}

.page-hero .container {
  padding-top: 96px;
  padding-bottom: 64px
}

.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 1.02;
  margin-top: 32px;
  max-width: 60rem
}

.page-hero .sub {
  margin-top: 32px;
  font-size: 1rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  line-height: 1.7
}

.page-hero+.container:not(.section):not(.section-sm),
.page-hero+style+.container:not(.section):not(.section-sm) {
  padding-top: 40px;
}

/* Section heading */
.section-heading {
  max-width: 48rem
}

.section-heading.center {
  margin: 0 auto;
  text-align: center
}

.section-heading h2 {
  margin-top: 20px;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.02
}

/* Section */
.section {
  padding-top: 96px;
  padding-bottom: 96px
}

.section-sm {
  padding-top: 64px;
  padding-bottom: 64px
}

/* Grids */
.cols-2 {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr
}

.cols-3 {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr
}

.cols-4 {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr
}

@media(min-width:640px) {
  .cols-2 {
    grid-template-columns: repeat(2, 1fr)
  }

  .cols-3 {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:1024px) {
  .cols-3 {
    grid-template-columns: repeat(3, 1fr)
  }

  .cols-4 {
    grid-template-columns: repeat(4, 1fr)
  }
}

/* Services index */
.service-card {
  padding: 32px
}

.service-card .num {
  color: var(--accent-orange);
  font-family: var(--font-serif);
  font-size: 2.5rem
}

.service-card h3 {
  margin-top: 16px;
  font-size: 1.5rem
}

.service-card p {
  margin-top: 12px;
  font-size: .9rem;
  color: var(--muted-foreground);
  line-height: 1.7
}

/* Fleet/destination card image */
.img-wrap {
  aspect-ratio: 4/3;
  background: var(--surface);
  overflow: hidden
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s
}

.card:hover .img-wrap img {
  transform: scale(1.05)
}

.dest-title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  font-family: var(--font-serif);
  color: #fff;
  font-size: 1.8rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .4);
  z-index: 2 !important;
}

.dest-img-rel {
  position: relative
}

.dest-img-rel::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 33%;
  background: linear-gradient(to top, rgba(0, 0, 0, .5), transparent);
  z-index: 1;
}

.dest-img-rel h3 {
  color: #ffffff !important;
}

.dest-img-rel > div {
  z-index: 2 !important;
}

/* Filters / tabs */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px
}

.filter {
  padding: 10px 20px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  border-radius: 9999px;
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  background: transparent;
  transition: all .2s
}

.filter:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange)
}

.filter.active {
  background: var(--accent-orange);
  color: #fff;
  border-color: var(--accent-orange)
}

/* Why us */
.why-item {
  border-left: 1px solid var(--accent-orange);
  padding-left: 24px
}

.why-item h3 {
  font-size: 1.5rem
}

.why-item p {
  margin-top: 12px;
  font-size: .9rem;
  color: var(--muted-foreground);
  line-height: 1.7
}

/* Footer */
footer {
  background: var(--surface);
  margin-top: 128px
}

footer .top-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
  opacity: .7
}

.footer-grid {
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr
}

@media(min-width:768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

.footer-brand .desc {
  margin-top: 24px;
  font-size: .9rem;
  color: var(--muted-foreground);
  line-height: 1.7
}

.footer-socials {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  color: var(--muted-foreground)
}

.footer-socials a:hover {
  color: var(--accent-orange)
}

.footer-col h4 {
  margin-bottom: 12px
}

.footer-col ul {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: .9rem
}

.footer-col a {
  color: rgba(26, 20, 13, .8);
  transition: color .2s
}

.footer-col a:hover {
  color: var(--accent-orange)
}

.footer-pay {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--muted-foreground)
}

.footer-pay span {
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 9999px
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  text-align: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--muted-foreground)
}

/* Tarif row — price list item */
.tarif-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.tarif-row.tarif-row--highlight {
  background: rgba(240, 225, 184, .35);
  border-color: var(--accent-orange);
}

.tarif-row__label {
  font-weight: 600;
  font-size: .95rem;
  line-height: 1.4
}

.tarif-row__sub {
  font-size: .85rem;
  color: var(--muted-foreground);
  margin-top: 2px
}

.tarif-row__price {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--accent-orange);
  line-height: 1;
}

@media(min-width:560px) {
  .tarif-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px
  }

  .tarif-row__price {
    flex-shrink: 0;
    font-size: 1.5rem
  }
}


/* CTA Band */
.cta-band {
  padding: 96px 24px
}

.cta-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 80px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-orange), transparent)
}

.cta-band-inner h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.02;
  margin-top: 24px
}

.cta-band-inner .actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px
}

.cta-band-inner .chips {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px
}

/* Forms */
.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-top: 28px
}

@media(min-width:640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr
  }
}

.form-grid .full {
  grid-column: 1/-1
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.field-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted-foreground)
}

.input,
.select,
.textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: .9rem;
  transition: border-color .2s;
}

.input:focus,
.select:focus,
.textarea:focus {
  outline: none;
  border-color: var(--accent-orange)
}

.field-error {
  color: #c0392b;
  font-size: .8rem;
  margin-top: 4px;
  display: none
}

.field.invalid .input,
.field.invalid .select,
.field.invalid .textarea {
  border-color: #c0392b
}

.field.invalid .field-error {
  display: block
}

/* Accordion */
.faq {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.faq details {
  padding: 20px 0;
  border-top: 1px solid var(--border)
}

.faq details:first-child {
  border-top: none
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  list-style: none
}

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

.faq summary .plus {
  color: var(--accent-orange);
  transition: transform .2s;
  font-size: 1.4rem;
  line-height: 1
}

.faq details[open] summary .plus {
  transform: rotate(45deg)
}

.faq p {
  margin-top: 12px;
  font-size: .9rem;
  color: var(--muted-foreground);
  line-height: 1.7
}

/* WhatsApp float */
.wa-float {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lift);
  transition: transform .2s;
}

.wa-float:hover {
  transform: scale(1.05)
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor
}

@media(min-width:768px) {
  .wa-float {
    display: inline-flex
  }
}

.wa-mobile-bar {
  display: block;
  position: fixed;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  left: 18px;
  right: 18px;
  z-index: 50;
  background: var(--whatsapp);
  color: #fff;
  text-align: center;
  padding: 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 500;
  box-shadow: var(--shadow-lift);
  border-radius: 9999px;
  transition: transform .2s;
}

.wa-mobile-bar:hover {
  transform: scale(1.02);
}

.wa-mobile-spacer {
  height: calc(72px + env(safe-area-inset-bottom, 0px));
}

.wa-mobile-spacer::before {
  content: '';
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: calc(72px + env(safe-area-inset-bottom, 0px));
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
  z-index: 49;
}

@media(min-width:768px) {

  .wa-mobile-bar,
  .wa-mobile-spacer {
    display: none
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s, transform .5s
}

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

/* Tarifs configurator */
.cfg-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  margin-top: 32px
}

@media(min-width:640px) {
  .cfg-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.cfg-tile {
  text-align: left;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  transition: all .2s;
  cursor: pointer
}

.cfg-tile:hover {
  border-color: var(--accent-orange)
}

.cfg-tile.active {
  border-color: var(--accent-orange);
  background: rgba(240, 225, 184, .3)
}

.cfg-tile .t {
  font-family: var(--font-serif);
  font-size: 1.25rem
}

.cfg-tile .d {
  font-size: .75rem;
  color: var(--muted-foreground);
  margin-top: 4px
}

.veh-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: .9rem;
  transition: all .2s;
  cursor: pointer;
  width: 100%;
  margin-bottom: 8px
}

.veh-row:hover {
  border-color: var(--accent-orange)
}

.veh-row.active {
  border-color: var(--accent-orange);
  background: rgba(240, 225, 184, .4)
}

.veh-row .sup {
  color: var(--muted-foreground)
}

.price-box {
  background: var(--surface);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  height: 100%
}

.price-box .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted-foreground)
}

.price-box .amount {
  margin-top: 8px;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--accent-orange)
}

.price-box .note {
  margin-top: 12px;
  font-size: .9rem;
  color: var(--muted-foreground)
}

.price-box .actions {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

/* City selector (excursion) */
.city-selector {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .45s cubic-bezier(.4, 0, .2, 1), opacity .35s ease, margin-top .35s ease;
  margin-top: 0;
}

.city-selector.open {
  max-height: 600px;
  opacity: 1;
  margin-top: 28px;
}

.city-selector-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 24px 20px;
}

.city-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 4px;
}

@media(min-width:640px) {
  .city-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

.city-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: all .22s ease;
}

.city-btn:hover {
  border-color: var(--accent-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.city-btn.active {
  border-color: var(--accent-orange);
  background: rgba(240, 225, 184, .35);
  box-shadow: 0 0 0 3px rgba(184, 134, 46, .12);
}

.city-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--accent-orange);
  line-height: 1;
  margin-bottom: 2px;
}

.city-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.city-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--ink-deep);
  line-height: 1.1;
}

.city-dist {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent-orange);
  font-weight: 600;
}


/* Tables */
.table {
  width: 100%;
  font-size: .9rem;
  border-collapse: collapse;
  background: #fff
}

.table th {
  padding: 16px;
  text-align: left;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted-foreground);
  background: var(--surface)
}

.table td {
  padding: 16px;
  border-top: 1px solid var(--border)
}

.table td:last-child {
  text-align: right;
  font-family: var(--font-serif);
  font-size: 1.05rem
}

/* Misc */
.text-center {
  text-align: center
}

.text-muted {
  color: var(--muted-foreground)
}

.text-accent {
  color: var(--accent-orange)
}

.font-serif {
  font-family: var(--font-serif)
}

.mt-3 {
  margin-top: 12px
}

.mt-5 {
  margin-top: 20px
}

.mt-6 {
  margin-top: 24px
}

.mt-8 {
  margin-top: 32px
}

/* Destination layout */
.dest-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr
}

@media(min-width:1024px) {
  .dest-grid {
    grid-template-columns: 7fr 5fr
  }
}

.dest-aside .card {
  padding: 28px;
  position: sticky;
  top: 112px
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
  list-style: none
}

.steps li {
  display: flex;
  gap: 20px
}

.steps .num {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--accent-orange);
  width: 48px;
  flex-shrink: 0;
  line-height: 1
}

.steps h3 {
  font-size: 1.4rem;
  font-family: var(--font-serif)
}

.steps p {
  font-size: .85rem;
  color: var(--muted-foreground);
  margin-top: 4px
}

.tech-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-top: 20px
}

@media(min-width:640px) {
  .tech-grid {
    grid-template-columns: 1fr 1fr
  }
}

.tech-cell {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-soft)
}

.tech-cell .k {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted-foreground)
}

.tech-cell .v {
  margin-top: 4px;
  font-family: var(--font-serif);
  font-size: 1.2rem
}

/* Pills (other dests) */
.pill {
  padding: 8px 16px;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: .85rem;
  transition: all .2s;
  display: inline-block;
  margin: 4px 4px 4px 0
}

.pill:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange)
}

/* Testimonials home block */
.tst-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  align-items: start
}

@media(min-width:768px) {
  .tst-grid {
    grid-template-columns: 4fr 8fr
  }
}

.rating-num {
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 1;
  color: var(--accent-orange)
}

.stars {
  margin-top: 8px;
  color: var(--accent-orange);
  letter-spacing: .2em
}

/* Helper */
.gap-2 {
  gap: 8px
}

.gap-3 {
  gap: 12px
}

.gap-4 {
  gap: 16px
}

.flex-wrap {
  flex-wrap: wrap
}

.items-center {
  align-items: center
}

.justify-between {
  justify-content: space-between
}

/* ============================================================
   MOBILE OVERRIDES — max-width: 767px
   Covers every page section for clean mobile rendering
   ============================================================ */
@media(max-width:767px) {

  /* --- Base spacing --- */
  body {
    font-size: 15.5px
  }

  .container {
    padding-left: 18px;
    padding-right: 18px
  }

  /* --- Navbar --- */
  .navbar>.container {
    height: 72px
  }

  .brand img {
    height: 44px
  }

  .brand-text {
    font-size: 1.5rem
  }

  /* Remove backdrop blur on mobile — fixes menu panel transparency bug */
  .navbar {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #FBF8F3;
    z-index: 10000;
  }

  .navbar.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #FBF8F3;
  }

  .navbar.menu-open {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #FBF8F3;
    box-shadow: none;
  }

  /* Mobile menu: solid dropdown panel directly below header */
  #mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #FBF8F3;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0;
  }

  #mobile-menu .container {
    height: auto;
    padding-top: 10px;
    padding-bottom: 18px;
  }

  #mobile-menu a {
    padding: 14px 20px;
    font-size: 13px;
    letter-spacing: .18em;
  }

  /* --- Page Hero (inner pages) --- */
  .page-hero .container {
    padding-top: 56px;
    padding-bottom: 40px
  }

  .page-hero h1 {
    font-size: clamp(1.9rem, 8vw, 3rem);
    margin-top: 20px
  }

  .page-hero .sub {
    margin-top: 16px;
    font-size: .9rem
  }

  /* --- Home Hero --- */
  .hero {
    min-height: 70vh;
    align-items: center
  }

  .hero-overlay-1 {
    background: linear-gradient(to bottom, rgba(250, 247, 242, 0.4) 0%, rgba(250, 247, 242, 0.8) 70%, #FAF7F2 100%) !important;
  }

  .hero-inner {
    padding-top: 32px;
    padding-bottom: 56px
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3.5rem);
    margin-top: 16px
  }

  .hero-sub {
    font-size: .95rem;
    margin-top: 16px
  }



  .hero-stats .num {
    font-size: clamp(1.6rem, 7vw, 2.8rem)
  }

  .hero-stats .stat {
    padding: 0 8px
  }

  .hero-stats .lbl {
    margin-top: 6px;
    font-size: 9px
  }

  /* --- Generic section vertical spacing --- */
  /* Many sections use inline padding-bottom: override the most common values */
  .section {
    padding-top: 56px;
    padding-bottom: 56px
  }

  .section-sm {
    padding-top: 40px;
    padding-bottom: 40px
  }

  /* --- Section h2 inline font sizes --- */
  /* Since most h2s use inline style="font-size:1.9rem", override via element */
  main h2 {
    font-size: clamp(1.5rem, 6vw, 1.9rem) !important
  }

  /* --- Chips strip --- */
  .chip {
    font-size: 10px;
    padding: 5px 10px;
    letter-spacing: .12em
  }

  /* --- Tarifs configurator card --- */
  #tarifs-cfg {
    padding: 16px !important
  }

  .cfg-tile {
    padding: 14px
  }

  .cfg-tile .t {
    font-size: 1.05rem
  }

  .price-box {
    padding: 20px
  }

  .price-box .amount {
    font-size: 2.8rem
  }

  /* --- Veh row (tarifs page) --- */
  .veh-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px
  }

  .veh-row .sup {
    font-size: .8rem
  }

  /* --- Cards generic inner padding --- */
  /* Covers card sections with inline padding:32px that aren't the configurator */
  .card[style*="padding:32px"] {
    padding: 16px !important
  }

  .card[style*="padding:28px"] {
    padding: 16px !important
  }

  /* --- Cols inner items inline padding --- */
  /* Covers [style="padding:28px;border-radius:16px..."] step cards */
  [style*="padding:28px;border-radius"] {
    padding: 18px !important
  }

  [style*="padding:24px;border-radius"] {
    padding: 16px !important
  }

  /* --- FAQ --- */
  .faq summary {
    font-size: .95rem
  }

  /* --- CTA Band --- */
  .cta-band {
    padding: 48px 18px
  }

  .cta-band-inner {
    padding: 40px 20px;
    border-radius: 16px
  }

  .cta-band-inner h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-top: 16px
  }

  .cta-band-inner .actions {
    margin-top: 28px;
    gap: 10px
  }

  .cta-band-inner .chips {
    margin-top: 20px;
    gap: 8px
  }

  /* --- Buttons — full width on very small screens --- */
  .btn {
    white-space: normal
  }

  .hero-actions .btn,
  .cta-band-inner .actions .btn {
    width: 100%;
    justify-content: center
  }

  /* --- Footer --- */
  footer {
    margin-top: 64px
  }

  .footer-grid {
    padding-top: 48px;
    padding-bottom: 48px;
    gap: 32px
  }

  .footer-bottom {
    padding-left: 18px;
    padding-right: 18px
  }

  .footer-brand .desc {
    font-size: .85rem
  }

  .rating-num {
    font-size: 4rem
  }

  /* --- Testimonials grid --- */
  .tst-grid {
    gap: 24px
  }

  /* --- Destination detail page --- */
  .dest-aside .card {
    position: static;
    padding: 20px
  }

  .steps .num {
    font-size: 1.75rem;
    width: 36px
  }

  .steps h3 {
    font-size: 1.15rem
  }

  /* --- Table --- */
  .table {
    font-size: .8rem
  }

  .table th,
  .table td {
    padding: 10px 8px
  }

  /* --- Why items --- */
  .why-item {
    padding-left: 16px
  }

  .why-item h3 {
    font-size: 1.05rem
  }
}

/* ============================================================
   SMALL MOBILE — max-width: 400px (very narrow phones)
   ============================================================ */
@media(max-width:400px) {
  .brand-text {
    font-size: 1.3rem
  }

  .btn {
    padding: 12px 18px;
    font-size: 10px
  }

  .page-hero h1 {
    font-size: 1.8rem
  }

  .hero h1 {
    font-size: 2rem
  }

  .cfg-tile .t {
    font-size: .95rem
  }

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

  .hero-stats .lbl {
    letter-spacing: .1em;
    font-size: 8px
  }
}

/* ============================================================
     CHIPS / TRUST STRIPS
     ============================================================ */
.chip {
  font-size: 10px;
  padding: 5px 10px;
  letter-spacing: .1em
}

.trust {
  font-size: 10px
}

/* ============================================================
     TARIFS PAGE — configurator
     ============================================================ */
#tarifs-cfg,
.card[style*="padding:clamp"] {
  padding: 16px !important
}

.cfg-grid {
  gap: 8px
}

.cfg-tile {
  padding: 14px 12px
}

.cfg-tile .t {
  font-size: 1rem
}

.cfg-tile .d {
  font-size: .7rem
}

/* Vehicle selector rows */
.veh-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px
}

/* Price box */
.price-box {
  padding: 18px
}

.price-box .amount {
  font-size: 2.5rem
}

.price-box .actions {
  gap: 8px
}

.price-box .actions .btn {
  width: 100%;
  justify-content: center
}

/* cfg-pair two-column layout — already 1fr on mobile but inner padding matters */
[style*="margin-top:24px"]>.veh-row {
  margin-bottom: 6px
}

/* ============================================================
     TARIF ROW (airport / group pages)
     ============================================================ */
.tarif-row {
  padding: 16px
}

.tarif-row__label {
  font-size: .9rem
}

.tarif-row__price {
  font-size: 1.4rem
}

/* ============================================================
     STEP CARDS (transfert / groupe pages)
     ============================================================ */
[style*="padding:28px;border-radius:16px"] {
  padding: 18px !important
}

[style*="padding:24px;border-radius:16px"] {
  padding: 16px !important
}

/* ============================================================
     FAQ PAGE
     ============================================================ */
.faq summary {
  font-size: .92rem;
  gap: 12px
}

.faq p {
  font-size: .85rem
}

/* ============================================================
     FORMS (contact/devis/reserver)
     ============================================================ */
.form-grid {
  gap: 12px
}

.input,
.select,
.textarea {
  padding: 11px 14px;
  font-size: .85rem
}

/* ============================================================
     DESTINATION DETAIL PAGES
     ============================================================ */
.dest-grid {
  gap: 24px
}

.dest-aside .card {
  position: static !important;
  padding: 18px
}

.steps .num {
  font-size: 1.6rem;
  width: 32px
}

.steps h3 {
  font-size: 1.1rem
}

.steps p {
  font-size: .82rem
}

.steps li {
  gap: 14px
}

.tech-grid {
  gap: 12px
}

.tech-cell {
  padding: 16px
}

.tech-cell .v {
  font-size: 1rem
}

.pill {
  font-size: .8rem;
  padding: 6px 12px
}

/* ============================================================
     TABLES (tarifs)
     ============================================================ */
.table {
  font-size: .78rem
}

.table th,
.table td {
  padding: 8px 6px
}

/* ============================================================
     CITY SELECTOR (excursion)
     ============================================================ */
.city-selector-inner {
  padding: 16px
}

.city-btn {
  padding: 10px 12px
}

.city-name {
  font-size: .9rem
}

.city-dist {
  font-size: .65rem
}

/* ============================================================
     FOOTER
     ============================================================ */
footer {
  margin-top: 56px
}

.footer-grid {
  padding-top: 40px;
  padding-bottom: 40px;
  gap: 28px
}

.footer-brand .desc {
  font-size: .85rem
}

.footer-socials {
  gap: 16px;
  margin-top: 16px
}

.footer-col h4 {
  font-size: .75rem
}

.footer-col ul {
  gap: 8px;
  margin-top: 12px
}

.footer-col a,
.footer-col li {
  font-size: .85rem
}

.footer-bottom {
  font-size: 10px;
  padding: 18px 18px
}
}

/* ============================================================
   SMALL MOBILE — max-width: 400px
   ============================================================ */
@media(max-width:400px) {
  .container {
    padding-left: 18px;
    padding-right: 18px
  }

  .brand-text {
    font-size: 1.25rem
  }

  .brand img {
    height: 38px
  }

  .btn {
    padding: 12px 16px;
    font-size: 10px
  }

  .page-hero h1,
  .hero h1 {
    font-size: clamp(1.7rem, 9vw, 2.4rem)
  }

  .hero-stats .num {
    font-size: 1.4rem
  }

  .hero-stats .lbl {
    font-size: 8px;
    letter-spacing: .08em
  }

  .cfg-tile .t {
    font-size: .9rem
  }

  .rating-num {
    font-size: 3.2rem
  }
}
/* WordPress menu output: wp_nav_menu() renders .site-nav > ul > li > a. */
.site-nav {
  display: none;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0 20px;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.5vw, 28px);
}

.site-nav li {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 0;
  font-size: 10.5px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 500;
  color: rgba(26, 20, 13, .8);
  white-space: nowrap;
  transition: color .2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--accent-orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .26s ease;
}

.site-nav a:hover,
.site-nav .current-menu-item > a,
.site-nav .current_page_item > a {
  color: var(--accent-orange);
}

.site-nav a:hover::after,
.site-nav .current-menu-item > a::after,
.site-nav .current_page_item > a::after {
  transform: scaleX(1);
}

.navbar > .container {
  gap: 20px;
}

.navbar .brand,
.nav-actions {
  flex: 0 0 auto;
}

@media(min-width:1180px) {
  .site-nav {
    display: block;
  }
}

@media(max-width:1179px) {
  .site-nav {
    display: none;
  }
}
/* Keep navigation available in the tablet range where desktop menu is hidden. */
@media(max-width:1179px) {
  .hamburger {
    display: flex;
  }
}

@media(min-width:1180px) {
  .hamburger {
    display: none;
  }
}
