/* size-adjust fallbacks to cut CLS on font swap 2026-08-25 */
@font-face{font-family:"Fraunces-fallback";src:local("Georgia");size-adjust:105%;ascent-override:95%;descent-override:24%;line-gap-override:0%;}
@font-face{font-family:"Inter-fallback";src:local("Segoe UI"),local("Arial");size-adjust:107%;ascent-override:90%;descent-override:22%;line-gap-override:0%;}
/* ============================================
   Nosy Be Adventure — Design System
   ============================================ */

:root {
  --teal-deep: #0b3d3f;
  --teal: #0f5e5a;
  --teal-mid: #14807a;
  --turquoise: #1eb8a6;
  --turquoise-light: #6fdcc9;
  --sand: #faf3e6;
  --sand-dark: #f0e2c8;
  --coral: #ff6b4a;
  --coral-dark: #e6532f;
  --sunset: #ffb347;
  --ink: #103330;
  --ink-soft: #3c5551;
  --white: #ffffff;

  --font-head: "Fraunces", "Fraunces-fallback", "Georgia", serif;
  --font-body: "Inter", "Inter-fallback", "Segoe UI", sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 4px 14px rgba(11, 61, 63, 0.08);
  --shadow-md: 0 12px 32px rgba(11, 61, 63, 0.14);
  --shadow-lg: 0 24px 60px rgba(11, 61, 63, 0.2);

  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  color: var(--teal-deep);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.3rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--coral-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--coral);
  display: inline-block;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; position: relative; }
@media (max-width: 720px) { section { padding: 64px 0; } }

.section-head {
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head p { color: var(--ink-soft); margin-top: 14px; font-size: 1.05rem; }
.section-head.left { margin: 0 0 48px; text-align: left; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(255, 107, 74, 0.35);
}
.btn-primary:hover { background: var(--coral-dark); }

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.15); }

.btn-teal {
  background: var(--teal-deep);
  color: var(--white);
}
.btn-teal:hover { background: var(--teal); }

.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 20px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.navbar.solid {
  background: rgba(250, 243, 230, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; }
.brand-logo { height: 46px; width: auto; border-radius: 10px; display: block; box-shadow: var(--shadow-sm); }
.footer-brand .brand-logo { height: 42px; box-shadow: none; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--turquoise), var(--teal-deep));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); flex-shrink: 0;
}
.navbar.solid .brand, .page-hero-nav .brand { color: var(--teal-deep); }
.navbar:not(.solid) .brand { color: var(--white); }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--coral);
  transition: width 0.25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.navbar:not(.solid) .nav-links a { color: var(--white); }
.navbar.solid .nav-links a { color: var(--ink); }

.nav-right { display: flex; align-items: center; gap: 18px; }

.lang-toggle {
  display: flex;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  overflow: hidden;
  font-size: 0.78rem;
  font-weight: 700;
}
.lang-toggle button,
.lang-toggle a {
  background: transparent;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  color: inherit;
  font-weight: 700;
  font-family: var(--font-body);
  text-decoration: none;
  display: inline-block;
}
.navbar:not(.solid) .lang-toggle { color: var(--white); }
.navbar.solid .lang-toggle { color: var(--teal-deep); }
.lang-toggle button.active,
.lang-toggle a.active { background: var(--coral); color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 2.5px;
  background: currentColor;
  border-radius: 2px;
}
.navbar:not(.solid) .nav-toggle { color: var(--white); }
.navbar.solid .nav-toggle { color: var(--ink); }

@media (max-width: 940px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--sand);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 26px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: var(--ink) !important; font-size: 1.1rem; }
  .nav-toggle { display: flex; }
  .nav-right .btn-primary { display: none; }
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 15% 20%, #146b64 0%, var(--teal-deep) 45%, #072524 100%);
  color: var(--white);
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.5;
}
.hero-blob.b1 { width: 480px; height: 480px; background: radial-gradient(circle, var(--turquoise) 0%, transparent 70%); top: -120px; right: -80px; }
.hero-blob.b2 { width: 360px; height: 360px; background: radial-gradient(circle, var(--sunset) 0%, transparent 70%); bottom: -100px; left: -60px; opacity: 0.35; }

.hero-scene { position: absolute; inset: 0; z-index: 0; opacity: 0.9; }

.hero .container { position: relative; z-index: 2; padding-top: 110px; }
.hero-content { max-width: 660px; }
.hero-content .eyebrow { color: var(--sunset); }
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content h1 .hl { color: var(--coral); }
.hero-content p { font-size: 1.15rem; color: rgba(255,255,255,0.85); max-width: 540px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-family: var(--font-head); font-size: 1.8rem; color: var(--white); }
.hero-stats div span { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

.scroll-cue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,10px); } }

.wave-divider { display: block; width: 100%; line-height: 0; position: relative; z-index: 1; margin-top: -6px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 170px 0 90px;
  background: radial-gradient(circle at 85% 20%, #146b64 0%, var(--teal-deep) 55%, #072524 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: var(--white); }
.page-hero p { max-width: 560px; margin: 16px auto 0; color: rgba(255,255,255,0.82); font-size: 1.05rem; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--white); }

/* ---------- Cards / Icons ---------- */
.icon-badge {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--turquoise), var(--teal));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  margin-bottom: 18px;
}

.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

/* ---------- Tour cards ---------- */
.tour-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tour-media {
  height: 190px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.tour-media svg { width: 64px; height: 64px; opacity: 0.9; }
.tour-price {
  position: absolute; top: 16px; right: 16px;
  background: var(--white); color: var(--teal-deep);
  font-weight: 800; font-size: 0.85rem;
  padding: 6px 14px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.tour-body { padding: 26px 24px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.tour-meta { display: flex; gap: 16px; font-size: 0.82rem; color: var(--ink-soft); font-weight: 600; }
.tour-meta span { display: inline-flex; align-items: center; gap: 6px; }
.tour-body p { color: var(--ink-soft); font-size: 0.95rem; flex: 1; }
.tour-body .btn { align-self: flex-start; margin-top: 6px; }

.tour-list-item {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
  align-items: stretch;
}
.tour-list-item .tour-media { height: 100%; border-radius: var(--radius-md); min-height: 220px; }
.tour-list-body { padding: 12px 12px 12px 0; display: flex; flex-direction: column; }
.tour-list-body h3 { margin-bottom: 8px; }
.tour-list-body .tour-meta { margin-bottom: 12px; }
.tour-list-body p { color: var(--ink-soft); margin-bottom: 18px; }
.tour-list-body p.tour-included { font-size: 0.9rem; color: var(--ink); background: var(--sand); border-left: 3px solid var(--coral); padding: 8px 12px; margin-top: -8px; margin-bottom: 18px; }
.tour-list-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.price-tag { font-family: var(--font-head); font-size: 1.5rem; color: var(--coral-dark); }
.price-tag small { font-family: var(--font-body); font-size: 0.8rem; color: var(--ink-soft); font-weight: 600; }
@media (max-width: 780px) { .tour-list-item { grid-template-columns: 1fr; } .tour-list-item .tour-media { min-height: 160px; } }

/* Photo-backed media (real photos instead of gradient/icon) */
.has-photo {
  background-size: cover;
  background-position: center;
}
.tour-media.has-photo, .gallery-item.has-photo {
  position: relative;
}
.tour-media.has-photo::before, .gallery-item.has-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11,61,63,0.05) 35%, rgba(11,61,63,0.65) 100%);
}
.tour-media.has-photo svg, .gallery-item.has-photo svg { display: none; }
.tour-media.has-photo .tour-price, .gallery-item.has-photo span.label { position: absolute; z-index: 2; }
.hero.has-photo {
  background-image: linear-gradient(180deg, rgba(7,37,36,0.35) 0%, rgba(7,37,36,0.75) 75%, rgba(7,37,36,0.92) 100%), var(--hero-photo);
}
.page-hero.has-photo {
  background-image: linear-gradient(180deg, rgba(7,37,36,0.55) 0%, rgba(7,37,36,0.85) 100%), var(--hero-photo);
  background-size: cover;
  background-position: center;
}

/* Gradient palette rotation helper */
.grad-1 { background: linear-gradient(135deg, #1eb8a6, #0b3d3f); }
.grad-2 { background: linear-gradient(135deg, #ffb347, #ff6b4a); }
.grad-3 { background: linear-gradient(135deg, #6fdcc9, #14807a); }
.grad-4 { background: linear-gradient(135deg, #ff8c69, #e6532f); }
.grad-5 { background: linear-gradient(135deg, #2fb5a1, #103330); }
.grad-6 { background: linear-gradient(135deg, #ffd580, #ff6b4a); }

/* ---------- Why us ---------- */
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-item .icon-badge { flex-shrink: 0; margin-bottom: 0; }
.why-item h3 { margin-bottom: 6px; font-size: 1.1rem; }
.why-item p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- About split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.split p { color: var(--ink-soft); margin-bottom: 16px; }
.split-media {
  border-radius: var(--radius-lg);
  min-height: 380px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
}
.split-media svg { width: 55%; }

/* ---------- Stats strip ---------- */
.stats-strip {
  background: var(--teal-deep);
  color: var(--white);
  padding: 56px 0;
}
.stats-strip .grid { text-align: center; }
.stats-strip strong { display: block; font-family: var(--font-head); font-size: 2.4rem; color: var(--sunset); }
.stats-strip span { font-size: 0.85rem; color: rgba(255,255,255,0.75); }

/* ---------- Testimonials ---------- */
.testimonial-track {
  display: flex;
  gap: 26px;
  overflow: hidden;
}
.testimonial-card {
  flex: 0 0 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.stars { color: var(--sunset); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 3px; }
.testimonial-card p { font-size: 1.1rem; color: var(--ink); margin-bottom: 20px; font-style: italic; }
.testimonial-author { font-weight: 700; color: var(--teal-deep); }
.testimonial-author span { display: block; font-weight: 500; font-size: 0.85rem; color: var(--ink-soft); }
.testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.testimonial-dots button {
  width: 24px; height: 24px; border-radius: 50%;
  border: none; padding: 7px; background: var(--sand-dark); background-clip: content-box; cursor: pointer;
}
.testimonial-dots button.active { background: var(--coral); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-item {
  border-radius: var(--radius-md);
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.gallery-item svg { width: 42%; opacity: 0.9; transition: transform 0.3s ease; }
.gallery-item:hover svg { transform: scale(1.12); }
.gallery-item span.label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  padding: 14px; font-size: 0.8rem; font-weight: 700;
  opacity: 0; transition: opacity 0.25s ease;
}
.gallery-item:hover span.label { opacity: 1; }
@media (max-width: 940px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.lightbox {
  position: fixed; inset: 0; z-index: 1200;
  background: rgba(7, 37, 36, 0.92);
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  width: min(720px, 100%);
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  position: relative;
}
.lightbox-inner svg { width: 35%; }
.lightbox-close {
  position: absolute; top: -50px; right: 0;
  background: none; border: none; color: var(--white);
  font-size: 2rem; cursor: pointer; line-height: 1;
}
.lightbox-caption { position: absolute; bottom: 20px; left: 24px; font-weight: 700; }

/* ---------- Video embeds ---------- */
.video-embed {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #000;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.video-embed:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-caption { text-align: center; font-size: 0.85rem; font-weight: 700; color: var(--teal-deep); margin-top: 12px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--coral), var(--sunset));
  border-radius: var(--radius-lg);
  padding: 60px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.9); }
.cta-banner .btn-outline { border-color: var(--white); color: var(--white); }
.cta-banner .btn-outline:hover { background: rgba(255,255,255,0.2); }
@media (max-width: 720px) { .cta-banner { padding: 40px 26px; text-align: center; justify-content: center; } }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-card {
  background: var(--teal-deep);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 22px; }
.contact-row { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.contact-row .icon-badge { background: rgba(255,255,255,0.14); margin-bottom: 0; }
.contact-row strong { display: block; margin-bottom: 3px; }
.contact-row span, .contact-row a { color: rgba(255,255,255,0.78); font-size: 0.95rem; }
.social-row { display: flex; gap: 12px; margin-top: 28px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.social-row a:hover { background: var(--coral); }

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 24px;
  box-shadow: var(--shadow-sm);
}
.map-embed iframe { width: 100%; height: 220px; border: 0; display: block; }

form.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field label { display: block; font-weight: 700; font-size: 0.85rem; margin-bottom: 8px; color: var(--teal-deep); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #e2d6ba;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--turquoise);
}
.field-check { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--ink-soft); }
.field-check input { width: auto; margin-top: 3px; }
.form-note { font-size: 0.85rem; color: var(--ink-soft); }
.form-success {
  display: none;
  background: #e6f7f1;
  border: 1.5px solid var(--turquoise);
  color: var(--teal-deep);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-bottom: 18px;
}
.form-success.show { display: block; }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
  overflow: hidden;
}

h2 + .faq-item,
h3 + .faq-item {
  margin-top: 38px;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-weight: 700;
  background: none;
  border: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1rem;
  color: var(--teal-deep);
}
.faq-q .plus { transition: transform 0.25s ease; font-size: 1.3rem; color: var(--coral); }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--ink-soft);
}
.faq-item.open .faq-a { max-height: 240px; padding: 0 24px 22px; }

/* ---------- Footer ---------- */
footer {
  background: var(--teal-deep);
  color: rgba(255,255,255,0.78);
  padding: 70px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h3, .footer-grid h4 { color: var(--white); font-size: 1rem; margin-bottom: 18px; font-family: var(--font-body); font-weight: 700; }
.footer-grid ul li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-grid ul li a:hover { color: var(--white); }
.footer-brand { display: flex; align-items: center; gap: 10px; color: var(--white); font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; margin-bottom: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.82rem;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.badge-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 20px; }
.pill {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
}

/* language visibility (toggled by JS via html[data-lang]) */
[data-lang-key] { display: none; }
html[data-lang="en"] [data-lang-key="en"] { display: block; }
html[data-lang="fr"] [data-lang-key="fr"] { display: block; }
html[data-lang="it"] [data-lang-key="it"] { display: block; }
span[data-lang-key], strong[data-lang-key] { display: none; }
html[data-lang="en"] span[data-lang-key="en"],
html[data-lang="en"] strong[data-lang-key="en"] { display: inline; }
html[data-lang="fr"] span[data-lang-key="fr"],
html[data-lang="fr"] strong[data-lang-key="fr"] { display: inline; }
html[data-lang="it"] span[data-lang-key="it"],
html[data-lang="it"] strong[data-lang-key="it"] { display: inline; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* --- Nav mid-width fix (2026): keep multi-word labels on one line and compress the desktop nav between the 940px mobile breakpoint and full width so it never wraps --- */
.nav-links a { white-space: nowrap; }
@media (min-width: 941px) and (max-width: 1300px) {
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 0.85rem; }
  .lang-toggle { font-size: 0.72rem; }
}


/* Header logo cleanup (Cowork 2026-08-01): removed the redundant text wordmark and the 60px overflow clamp that made the header look broken when the logo image loaded slowly. The logo PNG already contains the brand name. */
.navbar .brand::after{ content:none !important; }
.navbar .brand{ overflow:hidden; }
.navbar .brand-logo{ width:46px !important; height:46px !important; object-fit:contain; flex:0 0 auto; font-size:0; color:transparent; }


/* whats-included callout */
.tour-included{background:var(--sand);border-left:4px solid var(--coral);border-radius:10px;padding:14px 18px;margin:1rem 0 1.75rem;color:var(--ink);font-size:0.95rem;line-height:1.7;}

/* ===== Tour photo hover (matched to test site) ===== */
.tour-list-item{border-radius:22px;transition:transform .28s ease, box-shadow .28s ease}
.tour-list-item:hover{transform:translateY(-6px);box-shadow:0 26px 55px rgba(11,61,63,.18)}
.tour-list-item .tour-media-link,.tour-list-item .tour-media{overflow:hidden}
.tour-media{transition:transform .6s ease}
.tour-list-item:hover .tour-media{transform:scale(1.05)}
.tour-card{transition:transform .28s ease, box-shadow .28s ease}
.tour-card:hover{transform:translateY(-7px);box-shadow:0 26px 55px rgba(11,61,63,.20)}
.tour-card:hover .tour-media{transform:scale(1.06)}

/* ===== Real <img> photos (SEO + accessibility) ===== */
.tour-media img.media-photo, .gallery-item img.media-photo{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center;display:block}
/* NBA split-media mobile fix 2026-08-25 */
@media (max-width:768px){
  .split-media{min-height:0;}
  .split-media .media-photo{position:static;width:100%;height:auto;object-fit:contain;}
}