/* ═══════════════════════════════════════════════════════════
   LucerneChocolateTour.com — Master Stylesheet
   Palette: Chocolate #3B1A08 · Brown #6B3A2A · Cream #FDF6EC
            Gold #C8922A · Green #2E5C3F
   Fonts: Playfair Display (headings) · Lato (body)
═══════════════════════════════════════════════════════════ */

/* ── Variables ────────────────────────────────────────────── */
:root {
  --chocolate: #3B1A08;
  --brown:     #6B3A2A;
  --cream:     #FDF6EC;
  --gold:      #C8922A;
  --gold-light:#E8A830;
  --green:     #2E5C3F;
  --green-dark:#1E3D2A;
  --white:     #FFFFFF;
  --grey-50:   #F8F8F8;
  --grey-100:  #F0F0F0;
  --grey-200:  #E0E0E0;
  --grey-400:  #9E9E9E;
  --grey-600:  #666666;
  --grey-800:  #2D2D2D;
  --red:       #C0392B;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --radius:    6px;
  --radius-lg: 12px;
  --nav-h:     72px;
  --transition: 0.22s ease;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--white);
  color: var(--grey-800);
  font-size: 16px;
  line-height: 1.7;
  padding-top: var(--nav-h);
}
img { max-width: 100%; height: auto; display: block; }
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, h5 {
  font-family: 'Playfair Display', serif;
  color: var(--chocolate);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 120px 0; }
.text-center { text-align: center; }
.text-cream  { color: var(--cream); }
.text-gold   { color: var(--gold); }
.text-green  { color: var(--green); }
.bg-cream    { background: var(--cream); }
.bg-chocolate{ background: var(--chocolate); }
.bg-green    { background: var(--green); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex   { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-book {
  background: var(--chocolate);
  color: var(--cream);
  box-shadow: 0 4px 14px rgba(59,26,8,0.35);
}
.btn-book:hover { background: var(--brown); box-shadow: 0 6px 20px rgba(59,26,8,0.45); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(200,146,42,0.4);
}
.btn-gold:hover { background: var(--gold-light); }

.btn-green {
  background: var(--green);
  color: var(--white);
}
.btn-green:hover { background: var(--green-dark); }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { background: #1DA851; }

.btn-outline {
  background: transparent;
  color: var(--chocolate);
  border: 2px solid var(--chocolate);
}
.btn-outline:hover { background: var(--chocolate); color: var(--cream); }

.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(253,246,236,0.6);
}
.btn-outline-cream:hover { background: var(--cream); color: var(--chocolate); }

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

/* ── Navigation ───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(253,246,236,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(59,26,8,0.10);
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(253,246,236,0.99);
  box-shadow: var(--shadow-md);
}
.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon { font-size: 1.5rem; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--chocolate);
  line-height: 1.2;
}
.logo-text em { font-style: normal; color: var(--gold); font-size: 0.8rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 6px 12px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--grey-800);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.02em;
}
.nav-link:hover, .nav-link.active { color: var(--chocolate); background: rgba(200,146,42,0.10); }
.nav-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  font-size: 1.1rem;
  margin-left: 4px;
  transition: background var(--transition), transform var(--transition);
}
.nav-whatsapp:hover { background: #1DA851; transform: scale(1.1); }
.btn-book-nav {
  background: var(--chocolate);
  color: var(--cream);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition), box-shadow var(--transition);
  box-shadow: 0 3px 10px rgba(59,26,8,0.3);
}
.btn-book-nav:hover { background: var(--brown); box-shadow: 0 5px 16px rgba(59,26,8,0.4); }
.btn-book-nav .star { color: var(--gold); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 12px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--chocolate);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}

/* ── WhatsApp Float ───────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 18px rgba(37,211,102,0.5);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.6); }

/* ── Cookie Banner ────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--chocolate);
  color: var(--cream);
  z-index: 1100;
  padding: 16px 24px;
  border-top: 3px solid var(--gold);
}
.cookie-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-inner p { margin: 0; font-size: 0.9rem; }
.cookie-inner a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--chocolate);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.42;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59,26,8,0.72) 0%, rgba(59,26,8,0.3) 60%, rgba(46,92,63,0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero-headline { color: var(--cream); }
.hero-headline h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-headline h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-headline p {
  color: rgba(253,246,236,0.88);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-price {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(253,246,236,0.2);
}
.hero-price .from { color: rgba(253,246,236,0.7); font-size: 0.85rem; }
.hero-price .price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-price .per-person { color: rgba(253,246,236,0.65); font-size: 0.85rem; }

/* Currency Widget */
.currency-widget {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(253,246,236,0.18);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--cream);
}
.currency-widget h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.currency-widget .subtitle {
  color: rgba(253,246,236,0.65);
  font-size: 0.8rem;
  margin-bottom: 20px;
}
.currency-input-group {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(253,246,236,0.25);
  border-radius: var(--radius);
  padding: 4px 4px 4px 16px;
  margin-bottom: 12px;
}
.currency-input-group span { color: var(--gold); font-weight: 700; font-size: 0.95rem; flex-shrink: 0; }
.currency-input-group input {
  background: none;
  border: none;
  outline: none;
  color: var(--cream);
  font-size: 1.4rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  width: 0;
  flex: 1;
  min-width: 0;
}
.currency-input-group input::placeholder { color: rgba(253,246,236,0.35); }
.currency-result {
  background: rgba(200,146,42,0.18);
  border: 1px solid rgba(200,146,42,0.3);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 12px;
}
.currency-result .converted { font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.currency-result .curr-code { font-size: 0.8rem; color: rgba(253,246,236,0.6); margin-top: 2px; }
.currency-select {
  width: 100%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(253,246,236,0.25);
  border-radius: var(--radius);
  color: var(--cream);
  padding: 10px 14px;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  cursor: pointer;
  margin-bottom: 10px;
}
.currency-select option { background: var(--chocolate); color: var(--cream); }
.currency-disclaimer {
  font-size: 0.72rem;
  color: rgba(253,246,236,0.45);
  text-align: center;
  line-height: 1.4;
}

/* ── Reviews Section ──────────────────────────────────────── */
.reviews-section { background: var(--white); padding: 64px 0; }
.reviews-header { text-align: center; margin-bottom: 40px; }
.reviews-aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}
.stars-big { color: #FFB800; font-size: 1.6rem; letter-spacing: 2px; }
.rating-score { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--chocolate); }
.rating-count { color: var(--grey-600); font-size: 0.9rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-stars { color: #FFB800; font-size: 1rem; margin-bottom: 12px; }
.review-text { font-size: 0.95rem; color: var(--grey-600); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.reviewer-info { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px; height: 40px;
  background: var(--cream);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--chocolate);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 0.9rem; color: var(--chocolate); }
.reviewer-meta { font-size: 0.78rem; color: var(--grey-400); }

/* ── Tour Highlights ──────────────────────────────────────── */
.highlights-section { background: var(--cream); }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.highlight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(59,26,8,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.highlight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.highlight-icon { font-size: 2.4rem; margin-bottom: 16px; }
.highlight-card h4 { margin-bottom: 8px; font-size: 1rem; }
.highlight-card p { font-size: 0.9rem; color: var(--grey-600); margin: 0; }

/* Schedule bar */
.schedule-bar {
  background: var(--chocolate);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.schedule-label { color: var(--cream); font-size: 0.85rem; opacity: 0.75; }
.schedule-times { display: flex; gap: 16px; flex-wrap: wrap; }
.schedule-time {
  background: rgba(253,246,236,0.12);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid rgba(200,146,42,0.3);
}
.schedule-group {
  color: var(--cream);
  font-size: 0.88rem;
}
.schedule-group strong { color: var(--gold); }

/* ── Pricing Table ────────────────────────────────────────── */
.pricing-section { background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.pricing-card {
  border: 2px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,146,42,0.10);
}
.pricing-card-head {
  background: var(--grey-50);
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--grey-200);
}
.pricing-card.featured .pricing-card-head { background: var(--chocolate); }
.pricing-badge {
  display: inline-block;
  background: var(--gold);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.pricing-card-head h3 { font-size: 1.3rem; margin-bottom: 4px; }
.pricing-card.featured .pricing-card-head h3 { color: var(--cream); }
.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.pricing-amount sup { font-size: 1.2rem; vertical-align: super; }
.pricing-per { font-size: 0.8rem; color: var(--grey-400); }
.pricing-card.featured .pricing-per { color: rgba(253,246,236,0.55); }
.pricing-card-body { padding: 24px 28px 28px; }
.pricing-features { margin-bottom: 24px; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--grey-600);
  border-bottom: 1px solid var(--grey-100);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li .check { color: var(--green); font-size: 0.9rem; flex-shrink: 0; margin-top: 3px; }
.pricing-features li .cross { color: var(--red); flex-shrink: 0; margin-top: 3px; }

/* ── Page Intro Banner ────────────────────────────────────── */
.page-banner {
  background: var(--chocolate);
  padding: 80px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/images/pattern.svg') repeat;
  opacity: 0.05;
}
.page-banner h1 { color: var(--white); position: relative; }
.page-banner p { color: rgba(253,246,236,0.75); font-size: 1.05rem; max-width: 560px; margin: 16px auto 0; position: relative; }

/* ── News Cards ───────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  background: var(--white);
}
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.news-card-img {
  height: 200px;
  background: var(--cream);
  overflow: hidden;
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.news-card:hover .news-card-img img { transform: scale(1.04); }
.news-card-body { padding: 24px; }
.news-date { font-size: 0.78rem; color: var(--grey-400); margin-bottom: 8px; }
.news-card-body h3 { font-size: 1.1rem; margin-bottom: 10px; }
.news-card-body p { font-size: 0.9rem; color: var(--grey-600); }
.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 12px;
  transition: gap var(--transition);
}
.news-read-more:hover { gap: 10px; }

/* ── FAQ Accordion ────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  color: var(--chocolate);
  font-size: 0.97rem;
  background: var(--white);
  transition: background var(--transition);
  user-select: none;
}
.faq-question:hover { background: var(--cream); }
.faq-question.open { background: var(--cream); color: var(--brown); }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
  font-size: 0.9rem;
}
.faq-question.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: white; }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--grey-600);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid var(--grey-100);
  background: var(--cream);
}

/* ── Forms ────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--chocolate);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-label .required { color: var(--red); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: 0.97rem;
  color: var(--grey-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,146,42,0.12);
}
.form-control.error { border-color: var(--red); }
.form-error { color: var(--red); font-size: 0.8rem; margin-top: 4px; display: none; }
.form-hint { color: var(--grey-400); font-size: 0.8rem; margin-top: 4px; }
select.form-control { cursor: pointer; }

/* Checkbox */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--grey-50);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--transition);
}
.form-check:hover { border-color: var(--gold); }
.form-check input[type="checkbox"] {
  width: 20px; height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}
.form-check-label { font-size: 0.9rem; color: var(--grey-800); line-height: 1.5; cursor: pointer; }
.form-check.waiver-check { background: #fff8e7; border-color: var(--gold); }
.form-check.waiver-check .form-check-label strong { color: var(--red); }

/* ── Booking Form Steps ────────────────────────────────────── */
.booking-wrapper {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 0 80px;
}
.booking-steps {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  gap: 0;
}
.booking-step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.booking-step-item::before {
  content: '';
  position: absolute;
  top: 19px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: var(--grey-200);
  z-index: 0;
}
.booking-step-item:last-child::before { display: none; }
.booking-step-item.done::before { background: var(--green); }
.booking-step-item.active::before { background: linear-gradient(90deg, var(--green), var(--grey-200)); }
.step-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--grey-200);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--grey-400);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}
.booking-step-item.done .step-circle { background: var(--green); border-color: var(--green); color: white; }
.booking-step-item.active .step-circle { background: var(--chocolate); border-color: var(--chocolate); color: white; box-shadow: 0 0 0 4px rgba(59,26,8,0.12); }
.step-label { font-size: 0.72rem; color: var(--grey-400); margin-top: 6px; text-align: center; font-weight: 700; letter-spacing: 0.03em; }
.booking-step-item.active .step-label { color: var(--chocolate); }
.booking-step-item.done .step-label { color: var(--green); }

.booking-step-panel { display: none; }
.booking-step-panel.active { display: block; animation: fadeUp 0.3s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.booking-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.booking-card h2 { margin-bottom: 6px; font-size: 1.5rem; }
.booking-card .step-desc { color: var(--grey-600); font-size: 0.9rem; margin-bottom: 28px; }

/* Availability indicator */
.avail-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 12px;
}
.avail-indicator.available { background: #e8f5e9; color: var(--green); }
.avail-indicator.unavailable { background: #fdecea; color: var(--red); }
.avail-indicator .dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }

/* Participant rows */
.participant-row {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 12px;
}
.participant-row-header {
  font-weight: 700;
  color: var(--chocolate);
  font-size: 0.85rem;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.participant-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }

/* Order summary */
.order-summary {
  background: var(--cream);
  border: 1px solid rgba(59,26,8,0.10);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 28px;
}
.order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(59,26,8,0.07);
}
.order-row:last-child { border-bottom: none; }
.order-row.total {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--chocolate);
  margin-top: 8px;
  padding-top: 12px;
  border-top: 2px solid rgba(59,26,8,0.12);
}
.order-row.total .amount { color: var(--gold); font-size: 1.2rem; }

/* Payment method tabs */
.payment-tabs { display: flex; gap: 12px; margin-bottom: 24px; }
.payment-tab {
  flex: 1;
  padding: 16px;
  border: 2px solid var(--grey-200);
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--grey-600);
}
.payment-tab.selected { border-color: var(--gold); background: rgba(200,146,42,0.06); color: var(--chocolate); }
.payment-tab img { height: 28px; margin: 0 auto 6px; }

/* ── Footer ───────────────────────────────────────────────── */
.footer-cta {
  background: var(--green);
  padding: 48px 0;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.footer-cta h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 6px; }
.footer-cta p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.site-footer { background: var(--chocolate); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(253,246,236,0.10);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 14px;
}
.footer-brand p { color: rgba(253,246,236,0.6); font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(253,246,236,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 0.95rem;
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--gold); }
.footer-col h4 { color: var(--gold); font-family: 'Lato', sans-serif; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(253,246,236,0.65); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-insurance { color: rgba(253,246,236,0.5); font-size: 0.8rem; margin-top: 20px; line-height: 1.5; }
.footer-insurance i { color: var(--gold); margin-right: 4px; }
.departure-list li { color: rgba(253,246,236,0.7); font-size: 0.88rem; margin-bottom: 6px; }
.departure-list li i { color: var(--gold); margin-right: 6px; font-size: 0.8rem; }
.from-price { color: var(--gold); font-weight: 700; margin-top: 14px; font-size: 0.95rem; }
.footer-bottom { padding: 20px 0; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { color: rgba(253,246,236,0.45); font-size: 0.78rem; }
.footer-bottom a { color: rgba(253,246,236,0.55); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ── Admin ────────────────────────────────────────────────── */
.admin-body { background: #F4F6F8; font-family: 'Lato', sans-serif; }
.admin-sidebar {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 240px;
  background: var(--chocolate);
  z-index: 900;
  display: flex;
  flex-direction: column;
}
.admin-sidebar-logo {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(253,246,236,0.10);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--cream);
  font-weight: 700;
}
.admin-sidebar-logo span { color: var(--gold); }
.admin-nav { flex: 1; padding: 16px 0; overflow-y: auto; }
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  color: rgba(253,246,236,0.7);
  font-size: 0.88rem;
  font-weight: 700;
  transition: background var(--transition), color var(--transition);
  letter-spacing: 0.02em;
}
.admin-nav a:hover, .admin-nav a.active {
  background: rgba(200,146,42,0.15);
  color: var(--gold);
}
.admin-nav a i { width: 18px; text-align: center; font-size: 0.9rem; }
.admin-nav .nav-section {
  padding: 16px 20px 6px;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253,246,236,0.3);
}
.admin-sidebar-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(253,246,236,0.10);
}
.admin-sidebar-footer a {
  color: rgba(253,246,236,0.5);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}
.admin-sidebar-footer a:hover { color: var(--red); }
.admin-main { margin-left: 240px; min-height: 100vh; }
.admin-topbar {
  background: var(--white);
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--grey-200);
  position: sticky;
  top: 0;
  z-index: 100;
}
.admin-topbar h1 { font-size: 1.2rem; color: var(--chocolate); }
.admin-content { padding: 32px; }
.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-sm);
}
.stat-card .stat-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey-400); margin-bottom: 8px; }
.stat-card .stat-value { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--chocolate); }
.stat-card .stat-sub { font-size: 0.8rem; color: var(--grey-400); margin-top: 4px; }
.stat-card .stat-icon { font-size: 1.8rem; opacity: 0.15; float: right; margin-top: -4px; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.admin-table th {
  padding: 10px 16px;
  background: var(--chocolate);
  color: var(--cream);
  text-align: left;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.admin-table td { padding: 12px 16px; border-bottom: 1px solid var(--grey-100); color: var(--grey-800); vertical-align: middle; }
.admin-table tr:hover td { background: var(--grey-50); }
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-paid { background: #e8f5e9; color: #2e7d32; }
.badge-pending { background: #fff3e0; color: #e65100; }
.badge-refunded { background: #e3f2fd; color: #1565c0; }
.badge-failed { background: #fdecea; color: var(--red); }
.badge-private { background: rgba(59,26,8,0.10); color: var(--chocolate); }
.admin-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.admin-card-head {
  padding: 16px 24px;
  border-bottom: 1px solid var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-card-head h3 { font-size: 1rem; color: var(--chocolate); }
.admin-card-body { padding: 24px; }

/* Calendar admin */
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; margin-top: 20px; }
.cal-day {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 10px 8px;
  min-height: 90px;
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}
.cal-day:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.cal-day.closed { background: var(--grey-50); opacity: 0.55; }
.cal-day.has-bookings { border-color: var(--green); }
.cal-day.private { border-color: var(--gold); }
.cal-day-num { font-weight: 700; font-size: 0.9rem; color: var(--chocolate); margin-bottom: 4px; }
.cal-day.today .cal-day-num { background: var(--gold); color: white; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.cal-slots { font-size: 0.7rem; }
.cal-slot-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; margin: 1px; }
.cal-slot-dot.booked { background: var(--green); }
.cal-slot-dot.full { background: var(--red); }
.cal-slot-dot.closed { background: var(--grey-400); }
.cal-weekday { text-align: center; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--grey-400); padding: 8px 0; }

/* Alert / Notice */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.alert-error   { background: #fdecea; color: var(--red); border: 1px solid #f5c6c6; }
.alert-info    { background: #e3f2fd; color: #1565c0; border: 1px solid #bbdefb; }
.alert-warning { background: #fff8e1; color: #e65100; border: 1px solid #ffe082; }

/* ── Confirmation Page ────────────────────────────────────── */
.confirm-wrapper {
  max-width: 640px;
  margin: 0 auto;
  padding: 60px 24px 100px;
  text-align: center;
}
.confirm-icon { font-size: 5rem; margin-bottom: 24px; }
.confirm-ref {
  background: var(--cream);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  margin: 28px 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 700;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .currency-widget { max-width: 440px; }
  .admin-sidebar { width: 200px; }
  .admin-main { margin-left: 200px; }
}
@media (max-width: 768px) {
  body { padding-top: var(--nav-h); }
  .nav-links { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 20px; border-bottom: 2px solid var(--gold); z-index: 1000; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .mobile-nav-overlay.open { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .highlights-grid, .pricing-grid, .reviews-grid, .news-grid { grid-template-columns: 1fr; }
  .hero-content { padding-top: 60px; padding-bottom: 60px; }
  .hero { min-height: 100vh; align-items: flex-start; }
  .schedule-bar { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-cta-inner { flex-direction: column; text-align: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .admin-sidebar { transform: translateX(-100%); transition: transform 0.3s ease; }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .participant-grid { grid-template-columns: 1fr; }
  .booking-card { padding: 24px 20px; }
  .payment-tabs { flex-direction: column; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .btn-lg { padding: 14px 24px; font-size: 1rem; }
  .pricing-amount { font-size: 2rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}