/* ============================================================
   AZUL TREK — Public Website Stylesheet
   Mobile-First | Sahara-Inspired Design
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --brown:       #8C3D18;
  --orange:      #C96B2C;
  --gold:        #D89A52;
  --beige:       #F4EEE8;
  --dark-earth:  #5A2A12;
  --deep:        #2D1810;
  --green:       #5E6D3A;
  --sunset:      #E7D2BF;
  --white:       #FFFFFF;
  --gray-50:     #F9F7F5;
  --gray-100:    #F0EBE5;
  --gray-200:    #DDD4CA;
  --gray-400:    #A89080;
  --gray-600:    #6B5A50;
  --gray-800:    #3A2820;
  --text:        #2D1810;
  --text-muted:  #7A6858;
  --radius-sm:   0.375rem;
  --radius:      0.75rem;
  --radius-lg:   1.25rem;
  --radius-xl:   2rem;
  --shadow-sm:   0 1px 3px rgba(44,24,16,.08);
  --shadow:      0 4px 20px rgba(44,24,16,.10);
  --shadow-lg:   0 12px 40px rgba(44,24,16,.14);
  --transition:  0.25s ease;
  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;
  --font-serif:  'Playfair Display', Georgia, serif;
}

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

/* ── Typography ────────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--deep);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--gray-600); line-height: 1.75; }

/* ── Layout ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 1.25rem; }

/* ── Moroccan Ornament (SVG pattern border) ─────────────────── */
.ornament-divider {
  width: 100%;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='32'%3E%3Cpath d='M0 16 Q10 0 20 16 Q30 32 40 16 Q50 0 60 16 Q70 32 80 16' fill='none' stroke='%23D89A52' stroke-width='1.5' opacity='.4'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 80px 32px;
  opacity: 0.6;
}

/* ── Section Styles ────────────────────────────────────────── */
.section { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }
.section-lg { padding: 6rem 0; }
.section-beige { background: var(--beige); }
.section-dark { background: var(--deep); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.75); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header .subtitle {
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.section-header p { max-width: 580px; margin: 0 auto; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 3rem;
  font-size: 0.925rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--brown);
  border-color: var(--brown);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,107,44,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.65);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline-dark:hover {
  background: var(--orange);
  color: var(--white);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #20BA57;
  border-color: #20BA57;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.825rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--gray-100);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-img { position: relative; overflow: hidden; }
.card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 1.35rem; }
.card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 2rem;
}
.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 0.5rem;
  font-family: var(--font-serif);
}
.card-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--gray-400);
  padding-top: 0.85rem;
  border-top: 1px solid var(--gray-100);
  flex-wrap: wrap;
}
.card-meta span { display: flex; align-items: center; gap: 0.3rem; }
.card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
}
.card-price small { font-size: 0.72rem; font-weight: 400; color: var(--gray-400); }
.card-footer {
  padding: 0 1.35rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

/* ── Grids ─────────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ── Header / Navigation ───────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1rem 0;
}
.site-header.transparent {
  background: linear-gradient(to bottom, rgba(20,12,7,.55) 0%, rgba(20,12,7,.28) 70%, rgba(20,12,7,0) 100%);
}
.site-header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(44,24,16,.1);
  padding: 0.6rem 0;
}
.site-header.transparent .nav-logo-text,
.site-header.transparent .nav-link { color: var(--white); }
.site-header.scrolled .nav-logo-text { color: var(--deep); }
.site-header.scrolled .nav-link { color: var(--gray-600); }
.site-header.scrolled .nav-link:hover { color: var(--orange); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.nav-logo-icon {
  width: 2.25rem;
  height: 2.25rem;
  background: var(--orange);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.nav-logo-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,.65);
  font-weight: 400;
  letter-spacing: 0.05em;
  display: block;
  line-height: 1;
}
.site-header.scrolled .nav-logo-sub { color: var(--gray-400); }
.nav-logo-img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
  flex-shrink: 0;
}
.icon-inline {
  vertical-align: -3px;
  margin-right: 0.4rem;
  flex-shrink: 0;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link {
  padding: 0.4rem 0.65rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  border-radius: 0.4rem;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--gold); }
.site-header.scrolled .nav-link:hover { background: var(--gray-50); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.lang-switcher { position: relative; display: none; }
@media (min-width: 1024px) { .lang-switcher { display: block; } }
/* Invisible bridge over the gap to .lang-dropdown (see top: calc(100% + 6px)
   below) so the mouse never leaves the hoverable area while moving from the
   button down into the menu — without this, the dropdown closes mid-transit. */
.lang-switcher::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 6px;
}
.lang-btn {
  padding: 0.3rem 0.6rem;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.05em;
}
.site-header.scrolled .lang-btn { border-color: var(--gray-200); color: var(--gray-600); }
.lang-btn:hover { background: rgba(255,255,255,.15); }
.site-header.scrolled .lang-btn:hover { background: var(--gray-50); }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  min-width: 100px;
  display: none;
}
.lang-switcher:hover .lang-dropdown { display: block; }
.lang-option {
  display: block;
  padding: 0.5rem 0.9rem;
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: background var(--transition);
}
.lang-option:hover { background: var(--gray-50); color: var(--orange); }
.lang-option.active { color: var(--orange); font-weight: 700; }

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  padding: 0.3rem;
  background: none;
  border: none;
}
@media (min-width: 1024px) { .nav-hamburger { display: none; } }
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.site-header.scrolled .nav-hamburger span { background: var(--deep); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--deep);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.mobile-menu-close {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 1.25rem;
}
.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  font-size: 1.25rem;
  font-family: var(--font-serif);
  font-weight: 600;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-lang-switcher {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.mobile-lang-btn {
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  background: none;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: all var(--transition);
}
.mobile-lang-btn.active,
.mobile-lang-btn:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }

/* ── Hero Section ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(45,24,16,.35) 0%,
    rgba(45,24,16,.55) 50%,
    rgba(45,24,16,.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 6rem 0 4rem;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5.5vw, 4rem);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-sub {
  color: rgba(255,255,255,.85);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
  color: var(--white);
}
.hero-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  font-family: var(--font-serif);
}
.hero-stat span { font-size: 0.8rem; color: rgba(255,255,255,.7); }
.hero-scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,.6);
  font-size: 0.75rem;
  animation: bounce 2s infinite;
  z-index: 2;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ── Dune Divider ──────────────────────────────────────────── */
.dune-divider {
  height: 60px;
  overflow: hidden;
  margin-top: -1px;
}
.dune-divider svg { width: 100%; height: 100%; display: block; }

/* ── Featured Tours ────────────────────────────────────────── */
.tour-card .card-img img { height: 240px; }

/* ── Destinations ──────────────────────────────────────────── */
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  cursor: pointer;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dest-card:hover img { transform: scale(1.06); }
.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,24,16,.85) 0%, rgba(45,24,16,.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.dest-card-overlay h3 { color: var(--white); margin-bottom: 0.3rem; }
.dest-card-overlay p { color: rgba(255,255,255,.8); font-size: 0.875rem; margin: 0; }

/* ── Why Choose Us ─────────────────────────────────────────── */
.why-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.why-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.why-icon svg { width: 1.6rem; height: 1.6rem; color: var(--white); }
.why-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.875rem; }

/* ── Reviews ───────────────────────────────────────────────── */
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--gray-100);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--orange);
  opacity: 0.3;
  line-height: 1;
}
.review-stars { color: #F59E0B; font-size: 1rem; margin-bottom: 0.75rem; }
.review-text { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  object-fit: cover;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--orange);
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 0.9rem; color: var(--deep); }
.review-country { font-size: 0.78rem; color: var(--gray-400); }
.review-source { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.review-source.google { color: #4285F4; }
.review-source.tripadvisor { color: #34E0A1; }
.review-source.direct { color: var(--orange); }

/* ── FAQ Accordion ─────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.75rem;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  background: var(--white);
  border: none;
  text-align: left;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--deep);
  cursor: pointer;
  transition: background var(--transition);
  font-family: inherit;
}
.faq-question:hover { background: var(--gray-50); }
.faq-question.open { background: var(--beige); color: var(--brown); }
.faq-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--orange);
  transition: transform var(--transition), background var(--transition);
}
.faq-question.open .faq-icon { transform: rotate(45deg); background: var(--orange); color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.35rem;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.75;
}
.faq-answer.open { max-height: 1000px; padding: 0 1.35rem 1.35rem; }

/* ── Blog Cards ────────────────────────────────────────────── */
.blog-card .card-img img { height: 200px; }
.blog-tag {
  display: inline-flex;
  background: var(--beige);
  color: var(--brown);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
  margin-bottom: 0.5rem;
}

/* ── Final CTA ─────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--dark-earth) 0%, var(--brown) 50%, var(--orange) 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(216,154,82,.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 520px; margin: 0 auto 2.25rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── WhatsApp Float ────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.wa-float-btn {
  width: 3.5rem;
  height: 3.5rem;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  animation: wa-pulse 3s infinite;
}
.wa-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,.55);
}
.wa-float-btn svg { width: 1.75rem; height: 1.75rem; }
.wa-float-label {
  background: var(--deep);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 2rem;
  white-space: nowrap;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--transition), transform var(--transition);
}
.wa-float:hover .wa-float-label { opacity: 1; transform: translateY(0); }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,.7); }
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer { background: var(--deep); color: rgba(255,255,255,.75); padding: 4rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand { max-width: 300px; }
.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 0.25rem;
}
.footer-logo-img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.75rem;
}
.footer-tagline { font-size: 0.8rem; color: var(--gold); font-weight: 500; letter-spacing: 0.05em; margin-bottom: 1rem; }
.footer-desc { font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  color: rgba(255,255,255,.7);
}
.footer-social a:hover { background: var(--orange); color: var(--white); }
.footer-social svg { width: 1rem; height: 1rem; }
.footer-col h4 { color: var(--white); font-size: 0.875rem; font-weight: 600; margin-bottom: 1.25rem; letter-spacing: 0.05em; text-transform: uppercase; font-family: var(--font-sans); }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 0.6rem; font-size: 0.875rem; margin-bottom: 0.75rem; color: rgba(255,255,255,.65); }
.footer-contact-item svg { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.2rem; color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ── Page Header (inner pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark-earth) 0%, var(--brown) 100%);
  padding: 7rem 0 3.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='none' stroke='rgba(255,255,255,.04)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 560px; margin: 0 auto 1.25rem; }
.page-hero-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* ── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb { padding: 0.875rem 0; }
.breadcrumb-list { display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }
.breadcrumb-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; }
.breadcrumb-item a { color: var(--gray-400); transition: color var(--transition); }
.breadcrumb-item a:hover { color: var(--orange); }
.breadcrumb-item.active span { color: var(--orange); font-weight: 500; }
.breadcrumb-item:not(:last-child)::after { content: '/'; color: var(--gray-200); }

/* ── Detail Page ───────────────────────────────────────────── */
.detail-cover {
  width: 100%;
  height: clamp(250px, 45vw, 500px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}
.detail-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 2rem;
}
.detail-meta-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--gray-600); }
.detail-meta-item svg { width: 1.1rem; height: 1.1rem; color: var(--orange); flex-shrink: 0; }
.detail-meta-item strong { color: var(--deep); }
.detail-price-box {
  background: var(--beige);
  border: 2px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  position: sticky;
  top: 5.5rem;
}
.detail-price-label { font-size: 0.78rem; color: var(--gray-400); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }
.detail-price-amount {
  font-size: 2.25rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--orange);
  line-height: 1.1;
  margin: 0.25rem 0 0.15rem;
}
.detail-price-note { font-size: 0.8rem; color: var(--gray-400); margin-bottom: 1.25rem; }

.inc-exc { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
@media (max-width: 640px) { .inc-exc { grid-template-columns: 1fr; } }
.inc-box h4 { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.inc-box.included h4 { color: #059669; }
.inc-box.excluded h4 { color: #DC2626; }
.inc-box ul li {
  font-size: 0.875rem;
  color: var(--gray-600);
  padding: 0.3rem 0;
  padding-left: 1.4rem;
  position: relative;
}
.inc-box ul li::before {
  position: absolute;
  left: 0;
  font-weight: 700;
}
.inc-box.included ul li::before { content: '✓'; color: #059669; }
.inc-box.excluded ul li::before { content: '✗'; color: #DC2626; }

/* Program day */
.program-day {
  border-left: 3px solid var(--orange);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  background: var(--gray-50);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.program-day-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.day-badge {
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
  white-space: nowrap;
}
.program-day h4 { font-size: 1rem; margin: 0; }
.program-day p { font-size: 0.875rem; color: var(--gray-600); margin-bottom: 0.5rem; }
.program-day-extras { display: flex; gap: 1.5rem; margin-top: 0.5rem; font-size: 0.8rem; color: var(--gray-400); flex-wrap: wrap; }
.program-day-extras span { display: flex; align-items: center; gap: 0.3rem; }

/* ── Forms ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--deep); margin-bottom: 0.45rem; }
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(201,107,44,.12);
}
.form-textarea { resize: vertical; min-height: 130px; }

/* ── Flash / Alert ─────────────────────────────────────────── */
.alert {
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.alert-success { background: #D1FAE5; color: #065F46; border: 1px solid #A7F3D0; }
.alert-error   { background: #FEE2E2; color: #991B1B; border: 1px solid #FCA5A5; }

/* ── Badges / Tags ─────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: 2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-orange { background: rgba(201,107,44,.12); color: var(--orange); }
.badge-green  { background: rgba(94,109,58,.12);  color: var(--green); }
.badge-beige  { background: var(--beige);          color: var(--brown); }

/* ── Pagination ────────────────────────────────────────────── */
.pagination {
  display: flex;
  gap: 0.35rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  transition: all var(--transition);
  text-decoration: none;
}
.page-link:hover { border-color: var(--orange); color: var(--orange); }
.page-link.active { background: var(--orange); color: var(--white); border-color: var(--orange); }
.page-link.disabled { opacity: 0.4; pointer-events: none; }

/* ── Utilities ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.hidden { display: none !important; }
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0; }
.content-body h2,
.content-body h3 { margin: 1.75rem 0 0.75rem; }
.content-body p { margin-bottom: 1rem; }
.content-body ul { padding-left: 1.5rem; list-style: disc; margin-bottom: 1rem; }
.content-body ul li { margin-bottom: 0.4rem; color: var(--gray-600); font-size: 0.925rem; }
.no-results {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--gray-400);
}
.no-results svg { width: 3rem; height: 3rem; margin: 0 auto 1rem; opacity: 0.4; }

/* ── Gallery ──────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.6rem 0.75rem;
  font-size: 0.78rem;
  color: var(--white);
  background: linear-gradient(to top, rgba(45,24,16,.85), rgba(45,24,16,0));
}

/* ── Section eyebrow ──────────────────────────────────────── */
.section-eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

/* ── Filter chips ─────────────────────────────────────────── */
.filter-chip {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  border: 1.5px solid var(--brown);
  color: var(--brown);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.filter-chip:hover, .filter-chip.active {
  background: var(--brown);
  color: #fff;
}

/* ── Card date ────────────────────────────────────────────── */
.card-date {
  display: block;
  font-size: 0.75rem;
  color: #aaa;
  margin-bottom: 0.4rem;
}

/* ── Post content ─────────────────────────────────────────── */
.post-content { max-width: 100%; }
.post-content p { margin-bottom: 1.2rem; line-height: 1.8; color: #444; }
.post-content h2, .post-content h3 { color: var(--dark-earth); margin: 2rem 0 0.75rem; font-family: 'Playfair Display', serif; }

/* ── Form label ───────────────────────────────────────────── */
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-earth);
  margin-bottom: 0.35rem;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background: #fff;
  color: #333;
  box-sizing: border-box;
}
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--orange); }
.form-textarea { resize: vertical; min-height: 140px; }

/* ── Responsive tweaks ─────────────────────────────────────── */
@media (min-width: 768px) {
  .section { padding: 5rem 0; }
  .detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    align-items: start;
  }
}
@media (min-width: 1024px) {
  .section { padding: 6rem 0; }
  .hero-content { padding: 7rem 0 5rem; }
}

/* ── Lazy load fade ────────────────────────────────────────── */
img[loading="lazy"] { opacity: 0; transition: opacity 0.4s ease; }
img[loading="lazy"].loaded { opacity: 1; }
