/* ===================================================
   MARRAKECH DESERT QUAD — Global Stylesheet
   =================================================== */
/* ---- Self-hosted Fonts ---- */
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-display-v37-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-display-v37-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-display-v37-latin-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('fonts/dm-sans-v15-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('fonts/dm-sans-v15-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('fonts/dm-sans-v15-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/* ---- Custom Properties ---- */
:root {
  --color-navy:       #0D1B2A;
  --color-gold:       #C8902A;
  --color-beige:      #F5EDE0;
  --color-terracotta: #B84A20;
  --color-charcoal:   #2C2C3A;
  --color-wa-green:   #25D366;
  --color-white:      #FFFDF9;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 8px rgba(13,27,42,.12);
  --shadow-md: 0 6px 24px rgba(13,27,42,.18);
  --shadow-lg: 0 16px 48px rgba(13,27,42,.24);

  --transition: .25s cubic-bezier(.4,0,.2,1);
  --max-w: 1200px;
}


/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--color-navy);
  background: var(--color-white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: clamp(1rem, 2vw, 1.3rem); }
p  { font-size: 1rem; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: .75rem;
}
.section-title { margin-bottom: 1rem; }
.section-sub   { font-size: 1.1rem; color: #555; max-width: 640px; }
.text-center   { text-align: center; }
.text-center .section-sub { margin-inline: auto; }


/* ---- Layout helpers ---- */
.container { width: 90%; max-width: var(--max-w); margin-inline: auto; }
.section    { padding: 80px 0; }
.section--beige { background: var(--color-beige); }
.section--navy  { background: var(--color-navy); color: var(--color-white); }
.section--charcoal { background: var(--color-charcoal); color: var(--color-white); }
.grid-2 { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.flex   { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1  { gap: 1rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.8rem;
  border-radius: var(--radius-sm);
  font-weight: 700; font-size: .95rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--color-gold);
  color: var(--color-white);
}
.btn-gold:hover { background: #b07820; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-wa {
  background: var(--color-wa-green);
  color: var(--color-white);
}
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: var(--shadow-md); }

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

.btn-terracotta {
  background: var(--color-terracotta);
  color: var(--color-white);
}
.btn-terracotta:hover { background: #9c3c18; transform: translateY(-2px); }

.btn-sm { padding: .6rem 1.2rem; font-size: .85rem; }
.btn-lg { padding: 1.1rem 2.4rem; font-size: 1.05rem; }


/* ---- Header / Nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--color-navy);
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -.02em;
}
.logo span { color: var(--color-gold); }
.main-nav { display: flex; align-items: center; gap: 1.8rem; }
.main-nav a {
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,253,249,.75);
  transition: color var(--transition);
  letter-spacing: .02em;
}
.main-nav a:hover,
.main-nav a.active { color: var(--color-gold); }
.header-cta .btn { padding: .65rem 1.3rem; font-size: .85rem; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; z-index: 1001; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--color-white);
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--color-navy);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-white);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--color-gold); }

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


/* ---- Footer ---- */
.site-footer {
  background: var(--color-navy);
  color: rgba(255,253,249,.75);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo { font-size: 1.4rem; margin-bottom: .75rem; }
.footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-family: var(--font-display);
  color: var(--color-white);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { font-size: .88rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--color-gold); }
.footer-wa { background: rgba(255,255,255,.05); border-radius: var(--radius-md); padding: 1.25rem; }
.footer-wa p { font-size: .85rem; margin-bottom: .75rem; color: var(--color-white); }
.footer-bottom {
  border-top: 1px solid rgba(255,253,249,.1);
  padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .82rem; flex-wrap: wrap; gap: .5rem;
}
.footer-bottom a:hover { color: var(--color-gold); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---- Floating WhatsApp ---- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 800;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--color-wa-green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  animation: waPulse 2.5s infinite;
  transition: transform var(--transition);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
.wa-float .tooltip {
  position: absolute; right: 70px; top: 50%;
  transform: translateY(-50%);
  background: var(--color-navy);
  color: var(--color-white);
  font-size: .78rem; font-weight: 600;
  padding: .4rem .8rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.wa-float:hover .tooltip { opacity: 1; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,.8), 0 0 0 12px rgba(37,211,102,.15); }
}

/* Mobile sticky bar */
.sticky-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 700;
  background: var(--color-navy);
  padding: .85rem 1rem;
  align-items: center; justify-content: space-between;
  box-shadow: 0 -4px 20px rgba(13,27,42,.3);
}
.sticky-bar span { color: var(--color-white); font-size: .88rem; font-weight: 600; }
@media (max-width: 768px) {
  .sticky-bar { display: flex; }
  .wa-float { bottom: 80px; }
}


/* ---- Scroll Popup ---- */
.scroll-popup {
  position: fixed; bottom: 30px; left: 30px; z-index: 850;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  max-width: 320px; width: calc(100vw - 60px);
  transform: translateY(20px); opacity: 0; pointer-events: none;
  transition: opacity .4s, transform .4s;
}
.scroll-popup.show { opacity: 1; pointer-events: all; transform: translateY(0); }
.scroll-popup h4 { font-size: 1rem; margin-bottom: .5rem; }
.scroll-popup p { font-size: .85rem; color: #555; margin-bottom: 1rem; }
.popup-close {
  position: absolute; top: .75rem; right: .75rem;
  font-size: 1.2rem; color: #999; line-height: 1;
}
.popup-close:hover { color: var(--color-terracotta); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  background: var(--color-navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0D1B2A 0%, #1a2f45 40%, #2C2C3A 100%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  opacity: .4;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 780px;
}
.hero h1 { color: var(--color-white); margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--color-gold); }
.hero p  { font-size: 1.2rem; color: rgba(255,253,249,.8); margin-bottom: 2rem; max-width: 560px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-decoration {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  width: clamp(280px, 38vw, 500px); height: clamp(280px, 38vw, 500px);
  border-radius: 50%;
  border: 2px solid rgba(200,144,42,.2);
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.hero-decoration::before {
  content: '';
  width: 80%; height: 80%; border-radius: 50%;
  border: 1px solid rgba(200,144,42,.15);
}
@media (max-width: 768px) {
  .hero-decoration { display: none; }
  .hero { min-height: 80vh; }
}


/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--color-gold);
  padding: 1.1rem 0;
}
.trust-items {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 1rem 2.5rem;
}
.trust-item {
  display: flex; align-items: center; gap: .5rem;
  color: var(--color-white);
  font-weight: 700; font-size: .9rem;
}
.trust-item svg { width: 20px; height: 20px; fill: var(--color-white); opacity: .85; }

/* ---- Cards ---- */
.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.card-img {
  width: 100%; aspect-ratio: 16/10;
  background: var(--color-charcoal);
  position: relative; overflow: hidden;
}
.card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.card-body { padding: 1.25rem; }
.card-meta {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: .6rem; flex-wrap: wrap;
}
.badge {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .25rem .7rem;
  border-radius: 20px;
  font-size: .73rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase;
}
.badge-location { background: var(--color-beige); color: var(--color-terracotta); }
.badge-duration { background: rgba(200,144,42,.12); color: var(--color-gold); }
.badge-type     { background: var(--color-charcoal); color: var(--color-white); }

.card-title { font-size: 1.05rem; margin-bottom: .5rem; }
.card-highlights { font-size: .83rem; color: #666; margin-bottom: 1rem; }
.card-highlights li { display: flex; align-items: center; gap: .35rem; }
.card-highlights li::before { content: '✓'; color: var(--color-gold); font-weight: 700; }

/* Category cards */
.cat-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  display: flex; align-items: flex-end;
  background: var(--color-charcoal);
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition);
}
.cat-card:hover { transform: translateY(-4px); }
.cat-card-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,.85) 30%, transparent 70%);
}
.cat-card-body {
  position: relative; z-index: 2;
  padding: 1.5rem;
  color: var(--color-white);
}
.cat-card-body h3 { color: var(--color-white); margin-bottom: .25rem; }
.cat-card-body p  { font-size: .85rem; color: rgba(255,253,249,.75); }


/* ---- Why Us ---- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.why-item {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.why-item:hover { transform: translateY(-4px); }
.why-icon {
  width: 64px; height: 64px;
  background: rgba(200,144,42,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
}
.why-item h4 { margin-bottom: .4rem; }
.why-item p  { font-size: .85rem; color: #666; }

/* ---- How it works ---- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
.step {
  text-align: center; padding: 2rem 1.5rem;
  position: relative;
}
.step-num {
  width: 56px; height: 56px;
  background: var(--color-gold);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.step h3 { color: var(--color-white); margin-bottom: .5rem; }
.step p  { color: rgba(255,253,249,.75); font-size: .9rem; }

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.stars { color: var(--color-gold); font-size: 1.1rem; margin-bottom: .75rem; }
.testimonial-card p { font-style: italic; font-size: .95rem; margin-bottom: 1.25rem; color: #444; }
.reviewer { display: flex; align-items: center; gap: .75rem; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--color-beige);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.reviewer-name { font-weight: 700; font-size: .9rem; }
.reviewer-country { font-size: .8rem; color: #888; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-gold) 0%, #9f6e1a 100%);
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--color-white); margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,253,249,.85); margin-bottom: 2rem; font-size: 1.1rem; }
.cta-banner .btn-outline:hover { color: var(--color-gold); }

/* ---- Blog cards ---- */
.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-card-img {
  width: 100%; aspect-ratio: 16/9;
  background: var(--color-charcoal);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.blog-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { font-size: .78rem; color: #888; margin-bottom: .5rem; }
.blog-card-body h3 { font-size: 1rem; margin-bottom: .5rem; flex: 1; }
.blog-card-body .read-more { font-size: .85rem; color: var(--color-gold); font-weight: 700; margin-top: .75rem; }
.blog-card-body .read-more:hover { color: var(--color-terracotta); }


/* ---- Tour page hero ---- */
.tour-hero {
  background: var(--color-navy);
  padding: 60px 0 80px;
}
.tour-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.tour-hero-content h1 { color: var(--color-white); margin-bottom: 1rem; }
.tour-pills { display: flex; gap: .6rem; flex-wrap: wrap; margin: 1rem 0; }
.pill {
  padding: .35rem .85rem;
  border-radius: 20px; font-size: .8rem; font-weight: 600;
  background: rgba(200,144,42,.2); color: var(--color-gold);
  border: 1px solid rgba(200,144,42,.3);
}
.tour-badges { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.tour-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--color-charcoal);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 768px) {
  .tour-hero-inner { grid-template-columns: 1fr; }
  .tour-hero-img { order: -1; }
}

/* ---- Inclus/Non inclus ---- */
.inclus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.inclus-col h3 { margin-bottom: 1.25rem; }
.inclus-col ul { display: flex; flex-direction: column; gap: .65rem; }
.inclus-col li { display: flex; align-items: flex-start; gap: .6rem; font-size: .93rem; }
.check { color: #22b35e; font-size: 1.1rem; line-height: 1.4; }
.cross  { color: var(--color-terracotta); font-size: 1.1rem; line-height: 1.4; }
@media (max-width: 600px) { .inclus-grid { grid-template-columns: 1fr; } }

/* ---- Highlights icons ---- */
.highlight-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1.5rem; }
.highlight-item {
  text-align: center; padding: 1.75rem 1rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.highlight-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.highlight-item h4 { font-size: .95rem; margin-bottom: .3rem; }
.highlight-item p { font-size: .82rem; color: #666; }

/* ---- Programme ---- */
.programme { counter-reset: step; }
.programme-step {
  display: flex; gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(200,144,42,.15);
}
.programme-step:last-child { border-bottom: none; }
.step-counter {
  flex-shrink: 0;
  counter-increment: step;
  width: 44px; height: 44px;
  background: var(--color-gold); color: var(--color-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
}
.step-content h4 { margin-bottom: .3rem; }
.step-content p  { font-size: .9rem; color: #555; }

/* ---- Practical info ---- */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1.25rem; }
.info-item {
  padding: 1.25rem;
  background: var(--color-beige);
  border-radius: var(--radius-md);
  display: flex; gap: .75rem; align-items: flex-start;
}
.info-item .icon { font-size: 1.4rem; }
.info-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--color-gold); margin-bottom: .2rem; }
.info-value { font-size: .92rem; font-weight: 600; }

/* ---- Gallery ---- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 1rem;
}
.gallery-item {
  background: var(--color-charcoal);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  transition: transform var(--transition), filter var(--transition);
}
.gallery-item:hover { transform: scale(1.02); filter: brightness(1.1); }
.gallery-item:first-child { grid-row: 1 / 3; }
@media (max-width: 600px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-template-rows: unset; }
  .gallery-item:first-child { grid-row: auto; }
  .gallery-item { height: 160px; }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: #fff; font-size: 2rem; cursor: pointer;
}
.lightbox-content {
  max-width: 90vw; max-height: 85vh;
  background: var(--color-charcoal);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
  width: 800px; height: 500px;
}


/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 600; font-size: .95rem;
  background: none; border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--color-gold); }
.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(200,144,42,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-gold); font-size: 1.1rem; line-height: 1;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s;
  padding: 0 1.5rem;
  font-size: .9rem; color: #555;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 1.5rem 1.25rem; }

/* ---- Similar tours ---- */
.similar-tours { padding: 60px 0; }

/* ---- Breadcrumb ---- */
.breadcrumb {
  padding: .85rem 0;
  background: var(--color-beige);
}
.breadcrumb ol {
  display: flex; align-items: center; gap: .5rem;
  flex-wrap: wrap;
  list-style: none;
  font-size: .82rem;
}
.breadcrumb li + li::before { content: '/'; color: #aaa; }
.breadcrumb a { color: var(--color-gold); }
.breadcrumb span { color: #666; }

/* ---- Blog post layout ---- */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  padding: 60px 0;
}
.blog-article .featured-img {
  width: 100%; aspect-ratio: 16/9;
  background: var(--color-charcoal);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  margin-bottom: 2rem;
}
.blog-article h1 { margin-bottom: .75rem; }
.article-meta { display: flex; gap: 1rem; flex-wrap: wrap; font-size: .82rem; color: #888; margin-bottom: 2rem; }
.article-body h2 { font-size: 1.5rem; margin: 2rem 0 .75rem; }
.article-body p  { margin-bottom: 1.1rem; color: #444; line-height: 1.8; }
.article-body a  { color: var(--color-gold); text-decoration: underline; }

.author-card {
  display: flex; align-items: center; gap: 1rem;
  background: var(--color-beige);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 2.5rem;
}
.author-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--color-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff;
  flex-shrink: 0;
}
.author-info h4 { font-size: .95rem; margin-bottom: .2rem; }
.author-info p  { font-size: .82rem; color: #666; }

/* Sidebar */
.sidebar { }
.sidebar-widget {
  background: var(--color-beige);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-widget h4 { margin-bottom: 1rem; font-size: 1rem; }
.sidebar-tour-card { display: flex; gap: .75rem; align-items: flex-start; margin-bottom: .85rem; }
.sidebar-tour-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--color-charcoal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.sidebar-tour-info a { font-size: .88rem; font-weight: 600; color: var(--color-navy); }
.sidebar-tour-info a:hover { color: var(--color-gold); }
.sidebar-tour-info p { font-size: .78rem; color: #888; }

@media (max-width: 960px) {
  .blog-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
}

/* ---- Misc ---- */
.section-header { margin-bottom: 3rem; }
.divider { width: 60px; height: 3px; background: var(--color-gold); border-radius: 2px; margin: .75rem 0 1rem; }
.divider--center { margin-inline: auto; }
.tag { display: inline-block; background: rgba(200,144,42,.12); color: var(--color-gold); font-size: .75rem; font-weight: 700; padding: .2rem .65rem; border-radius: 20px; }
.text-gold { color: var(--color-gold); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }


/* ---- Tour card title link hover ---- */
.card-title a:hover { color: var(--color-gold); }
.card:hover .card-title a { color: var(--color-gold); }
