/* Fonts loaded via link tag in each HTML — no @import needed */
:root {
  --bg: #ffffff;
  --dark: #0f1a12;
  --green: #2d6a4f;
  --green-2: #1b5e3b;
  --green-light: #e8f5ee;
  --accent: #2d6a4f;
  --accent-light: #e8f5ee;
  --accent-hover: #1b5e3b;
  --white: #ffffff;
  --text: #1a2e1f;
  --muted: #5a7065;
  --card-shadow: 0 4px 24px rgba(0,0,0,0.07);
  --card-shadow-hover: 0 16px 48px rgba(0,0,0,0.13);
  --radius: 20px;
  --radius-sm: 12px;
  --max: 1140px;
  --font-display: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

.hidden {
  display: none !important;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), 92%); margin: 0 auto; }

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
.top-actions, .menu, .lang-switch { display: flex; align-items: center; gap: 16px; }
.menu a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color .2s ease;
  position: relative;
}
.menu a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width .25s ease;
}
.menu a:hover { color: var(--dark); }
.menu a:hover::after { width: 100%; }

.lang-switch { gap: 4px; }
.lang-switch a {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 5px 9px;
  border-radius: 8px;
  color: var(--muted);
  transition: all .2s ease;
}
.lang-switch a:hover, .lang-switch a.lang-active {
  background: var(--dark);
  color: white;
}

/* ── MOBILE NAV TOGGLE (hamburger) ── */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.mobile-nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-nav-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  background: var(--bg);
  border-top: 1px solid rgba(0,0,0,0.07);
  transition: max-height .3s ease;
}
.mobile-menu.open { max-height: 420px; }
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding: 6px 0 10px;
}
.mobile-menu a {
  padding: 15px 4px;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a.mobile-menu-active { color: var(--accent); font-weight: 700; }

@media (min-width: 761px) {
  .mobile-menu { display: none !important; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all .25s ease;
  border: none;
  letter-spacing: .01em;
}
.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 8px 24px rgba(232,93,26,0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(232,93,26,0.35); }
.btn-secondary {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.5);
  color: white;
  backdrop-filter: blur(4px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.25); }
.btn-outline {
  background: white;
  color: var(--dark);
  border: 1.5px solid rgba(0,0,0,0.14);
}
.btn-outline:hover { background: var(--accent-light); border-color: var(--accent); color: var(--accent); }

/* ── HERO ── */
.hero {
  min-height: 65vh;
  display: flex;
  align-items: center;
  color: white;
  background:
    linear-gradient(160deg, rgba(10,26,16,.60) 0%, rgba(10,26,16,.30) 100%),
    url('images/header/damien-dufour-WrjDH5mT1xM-unsplash.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg), transparent);
}
.hero-content { max-width: 820px; padding: 80px 0; position: relative; z-index: 1; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.12);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.0;
  margin-bottom: 20px;
  font-weight: 900;
  letter-spacing: -1px;
}
.hero p {
  max-width: 600px;
  color: rgba(255,255,255,.88);
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.6;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-metrics { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.metric-pill {
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  font-size: .88rem;
  font-weight: 500;
}

/* ── SECTIONS ── */
section { padding: 84px 0; }
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--dark);
  margin-bottom: 14px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.section-subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 42px;
  font-size: 1.02rem;
}

/* ── NOTICE ── */
.notice {
  background: #fff8ee;
  border: 1px solid #f5ddb8;
  color: #6b4c1e;
  padding: 16px 20px;
  border-radius: 14px;
  margin-bottom: 28px;
  font-size: .93rem;
}

/* ── EMPTY STATE (nice) ── */
.empty-state-nice {
  text-align: center;
  background: white;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: var(--card-shadow);
  border-radius: var(--radius);
  padding: 48px 32px;
  margin-bottom: 28px;
}
.empty-state-nice-icon { font-size: 2.4rem; display: block; margin-bottom: 14px; }
.empty-state-nice h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.empty-state-nice p {
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto 22px;
  line-height: 1.65;
}

/* ── GRIDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }

/* ── CARDS ── */
.card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid rgba(0,0,0,0.04);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--card-shadow-hover); }
.card-body { padding: 24px; }
.card img { width: 100%; height: 230px; object-fit: cover; }
.card.no-image .card-body { padding-top: 26px; }
.card.no-image .badge { margin-top: 2px; }

.badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: var(--dark);
  line-height: 1.25;
}
.meta { color: var(--muted); font-size: .9rem; margin-bottom: 10px; }
.price { color: var(--accent); font-weight: 700; font-size: 1.05rem; margin: 14px 0 18px; }
.card-body p { margin-bottom: 16px; }
.card-body .btn { margin-top: 6px; }

/* ── FEATURE BOXES ── */
.feature-box {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}
.feature-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--accent), var(--green));
  border-radius: 2px 0 0 2px;
}
.feature-box h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--dark);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

/* ── TESTIMONIALS ── */
.testimonial {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
}
.testimonial::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--green-light);
  position: absolute;
  top: 10px; left: 20px;
  line-height: 1;
}
.testimonial p {
  position: relative;
  z-index: 1;
  font-style: italic;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.7;
}
.testimonial strong { color: var(--green); font-size: .9rem; }
.stars { color: #f59e0b; margin-bottom: 12px; font-size: 1rem; }

/* ── FILTERS ── */
.filter-bar {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
  border: 1px solid rgba(0,0,0,0.04);
}
.filter-bar input, .filter-bar select {
  width: 100%;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: .95rem;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  transition: border-color .2s ease;
}
.filter-bar input:focus, .filter-bar select:focus {
  outline: none;
  border-color: var(--green);
}

/* ── CONTACT ── */
.contact-box {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 42px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  border: 1px solid rgba(0,0,0,0.04);
}
.contact-box h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 14px;
  color: var(--dark);
}
.contact-info p { margin-bottom: 10px; font-size: .97rem; }
.contact-info a { color: var(--green); font-weight: 500; }
.whatsapp-line {
  display: flex;
  align-items: center;
  gap: 6px;
}
.whatsapp-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: #25D366;
  flex-shrink: 0;
}
.whatsapp-inline svg { width: 16px; height: 16px; }

.footer-socials .social-icon.whatsapp-social:hover { background: #25D366; }
form { display: grid; gap: 14px; }
input, textarea, select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  font-size: .97rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  transition: border-color .2s ease;
}
input:focus, textarea:focus { outline: none; border-color: var(--green); background: white; }
textarea { min-height: 130px; resize: vertical; }

.enquiry-status {
  font-size: .9rem;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}
.enquiry-status.success { background: rgba(45,106,79,0.12); color: var(--green); }
.enquiry-status.error { background: rgba(220,53,69,0.12); color: #c0392b; }
button:disabled { opacity: .6; cursor: not-allowed; }

/* ── CONTACT FORM: fields, activity picker, dates, consent ── */
.contact-field { display: grid; gap: 6px; }
.contact-field > label { font-size: .85rem; font-weight: 700; color: var(--dark); }
.contact-hint { font-size: .8rem; color: var(--muted); margin-top: -2px; }

.activity-picker { position: relative; display: grid; gap: 8px; }
.activity-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.activity-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-light); color: var(--accent);
  border-radius: 999px; padding: 7px 10px 7px 14px;
  font-size: .85rem; font-weight: 700;
}
.activity-chip.locked { background: var(--accent); color: white; }
.activity-chip button {
  background: none; border: none; color: inherit; cursor: pointer;
  font-size: 1rem; line-height: 1; padding: 0 2px; opacity: .8;
}
.activity-chip button:hover { opacity: 1; }
.activity-search-wrap { position: relative; }
.activity-dropdown {
  position: absolute; z-index: 20; top: calc(100% + 6px); left: 0; right: 0;
  background: white; border-radius: var(--radius-sm); box-shadow: var(--card-shadow);
  max-height: 220px; overflow-y: auto; border: 1px solid rgba(0,0,0,0.08);
}
.activity-dropdown-item { padding: 10px 16px; font-size: .9rem; cursor: pointer; }
.activity-dropdown-item:hover { background: var(--accent-light); color: var(--accent); }
.activity-dropdown-empty { padding: 10px 16px; font-size: .85rem; color: var(--muted); }

.dates-row { display: flex; gap: 8px; flex-wrap: wrap; }
.dates-row input[type="date"] { flex: 1; min-width: 160px; }
.dates-row .btn { flex-shrink: 0; padding: 12px 18px; }
.date-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.date-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-light); color: var(--accent);
  border-radius: 999px; padding: 7px 10px 7px 14px; font-size: .85rem; font-weight: 700;
}
.date-chip button { background: none; border: none; color: inherit; cursor: pointer; font-size: 1rem; opacity: .8; }
.date-chip button:hover { opacity: 1; }

.participants-block { display: grid; gap: 10px; background: var(--accent-light); border-radius: var(--radius-sm); padding: 16px; }
.participants-block-title { font-size: .85rem; font-weight: 700; color: var(--accent); }
.participant-row { display: grid; grid-template-columns: auto 1fr 1fr; gap: 8px; align-items: center; }
.participant-row span { font-size: .82rem; font-weight: 700; color: var(--accent); white-space: nowrap; }
.participant-row input { background: white; }
.participants-note { font-size: .78rem; color: var(--muted); }

.consent-box { background: var(--accent-light); border-radius: var(--radius-sm); padding: 16px; display: grid; gap: 12px; }
.consent-notice { font-size: .88rem; color: var(--text); line-height: 1.55; }
.consent-notice a { color: var(--accent); font-weight: 600; }
.consent-check { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; cursor: pointer; line-height: 1.4; }
.consent-check input { width: auto; margin: 3px 0 0; }
.consent-links { display: flex; gap: 18px; flex-wrap: wrap; font-size: .85rem; margin-top: -4px; }
.consent-links a { color: var(--accent); font-weight: 700; text-decoration: none; }
.consent-links a:hover { text-decoration: underline; }
.consent-links a::after { content: " →"; }
.consent-hint { font-size: .8rem; color: var(--muted); margin-top: -6px; }
.consent-hint.hidden { display: none; }
.consent-hint.consent-hint-warning { color: #c0392b; font-weight: 600; }

/* ── ACTIVITY DETAIL ── */
.activity-hero { padding: 54px 0 34px; }
.activity-layout { display: grid; grid-template-columns: 1.3fr .7fr; gap: 28px; align-items: start; }
.panel {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.04);
}
.panel h3 {
  font-family: var(--font-display);
  margin-bottom: 14px;
  color: var(--dark);
  font-size: 1.2rem;
}
.panel ul { padding-left: 18px; }
.panel p { margin-bottom: 10px; font-size: .97rem; }

.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 14px; margin-top: 20px; }
.gallery img { height: 140px; width: 100%; object-fit: cover; border-radius: 16px; cursor: pointer; transition: transform .2s, opacity .2s; }
.gallery img:hover { transform: scale(1.03); opacity: .92; }
.gallery-main:hover { opacity: .95; }

/* ── EQUIPMENT RENTAL PRICING ── */
.rental-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 26px;
}
.rental-card {
  background: var(--accent-light);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.rental-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.rental-card-emoji { font-size: 1.4rem; }
.rental-card-header h4 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--dark);
  line-height: 1.25;
}
.rental-kit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 16px;
}
.rental-kit span { font-size: .88rem; color: var(--muted); }
.rental-kit strong { font-family: var(--font-display); font-size: 1.15rem; color: var(--accent); }
.rental-items-label {
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
  margin-bottom: 8px;
}
.rental-items { display: grid; gap: 6px; }
.rental-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .88rem;
  color: var(--text);
  padding: 4px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
}
.rental-item-row:last-child { border-bottom: none; }
.rental-item-row span:last-child { color: var(--dark); font-weight: 600; }

.rental-agreement {
  margin-top: 26px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
}
.rental-agreement summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  list-style: none;
}
.rental-agreement summary::-webkit-details-marker { display: none; }
.rental-agreement summary::after { content: "+"; float: right; font-size: 1.2rem; color: var(--accent); }
.rental-agreement[open] summary::after { content: "–"; }
.rental-agreement-intro { margin-top: 14px; color: var(--muted); font-size: .92rem; }
.rental-agreement-list { margin: 12px 0 0; padding-left: 20px; display: grid; gap: 8px; }
.rental-agreement-list li { color: var(--text); font-size: .88rem; line-height: 1.6; }
.rental-agreement-contact { margin-top: 16px; font-size: .88rem; color: var(--muted); }
.rental-agreement-contact a { color: var(--accent); font-weight: 600; }

.rental-note {
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  text-align: center;
  margin-bottom: 22px;
}
.rental-note-icon { font-size: 1.6rem; display: block; margin-bottom: 8px; }
.rental-note .detail-block-title { margin-bottom: 8px; }
.rental-note-text { color: var(--muted); font-size: .88rem; line-height: 1.6; margin: 0; }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(10, 20, 14, 0.92);
  display: flex; align-items: center; justify-content: center;
}
.lightbox.hidden { display: none; }
.lightbox-img {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: rgba(255,255,255,0.12); color: var(--white);
  border: none; border-radius: 50%; width: 44px; height: 44px;
  font-size: 1.2rem; cursor: pointer; transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }
.lightbox-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); color: var(--white);
  border: none; border-radius: 50%; width: 52px; height: 52px;
  font-size: 2rem; line-height: 1; cursor: pointer; transition: background .2s;
}
.lightbox-arrow:hover { background: rgba(255,255,255,0.22); }
.lightbox-arrow.hidden { display: none; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,0.12); color: var(--white);
  padding: 6px 16px; border-radius: 999px; font-size: .9rem; letter-spacing: .02em;
}
.lightbox-counter.hidden { display: none; }
@media (max-width: 640px) {
  .lightbox-arrow { width: 40px; height: 40px; font-size: 1.5rem; }
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
}

/* ── SPOTLIGHT ── */
.spotlight-wrap {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 28px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: stretch;
  border: 1px solid rgba(0,0,0,0.04);
}
.spotlight-visual {
  min-height: 440px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  color: white;
  background-size: cover;
  background-position: center;
  padding: 36px;
  display: flex;
  align-items: end;
  transition: background-image .4s ease;
}
.spotlight-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(10,26,16,.1), rgba(8,20,14,.72));
}
.spotlight-copy { position: relative; z-index: 2; max-width: 520px; }
.spotlight-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.05;
  margin-bottom: 12px;
  font-weight: 900;
}
.spotlight-copy p { color: rgba(255,255,255,.88); line-height: 1.6; }

.idea-panel {
  background: var(--bg);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
}
.idea-panel h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.idea-list { display: grid; gap: 10px; margin-top: 14px; }
.idea-item {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1.5px solid rgba(0,0,0,.08);
  background: white;
  cursor: pointer;
  transition: all .22s ease;
  font-size: .9rem;
}
.idea-item:hover { transform: translateX(4px); border-color: var(--green); }
.idea-item.active {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: white;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(37,77,61,0.3);
}
.idea-controls { display: flex; gap: 10px; margin-top: 18px; }
.arrow-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.1);
  background: white;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all .2s ease;
  display: flex; align-items: center; justify-content: center;
}
.arrow-btn:hover { background: var(--dark); color: white; border-color: var(--dark); }

/* ── CATEGORY BLOCKS ── */
.category-block { margin-bottom: 48px; }
.category-head { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.category-head h2 {
  font-family: var(--font-display);
  color: var(--dark);
  font-size: 1.6rem;
}
.category-head p { color: var(--muted); font-size: .9rem; }

/* ── DIFFICULTY ── */
.difficulty-wrap { display: flex; align-items: center; gap: 10px; margin: 10px 0 14px; }
.difficulty-bars { display: flex; gap: 5px; }
.difficulty-bars span {
  width: 22px; height: 7px;
  border-radius: 999px;
  background: #dde4df;
}
.difficulty-bars span.on { background: linear-gradient(90deg, var(--accent), #f5a06e); }
.difficulty-label { font-size: .85rem; font-weight: 700; color: var(--dark); }

/* ── ABOUT US PAGE ── */
.about-hero {
  background:
    linear-gradient(rgba(10,22,14,.6), rgba(10,22,14,.5)),
    url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: white;
  padding: 100px 0;
  text-align: center;
}
.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: -1px;
}
.about-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.88);
  max-width: 640px;
  margin: 0 auto;
}
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-story img {
  border-radius: var(--radius);
  height: 480px;
  object-fit: cover;
  box-shadow: var(--card-shadow-hover);
}
.about-story-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.1;
}
.about-story-text p { color: var(--muted); margin-bottom: 16px; font-size: 1.02rem; line-height: 1.75; }
.about-story-text p:last-child { margin-bottom: 0; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat-box {
  background: white;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0,0,0,.04);
}
.stat-box .stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-box .stat-label { font-size: .9rem; color: var(--muted); font-weight: 500; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.team-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0,0,0,.04);
  text-align: center;
}
.team-card img { width: 100%; height: 260px; object-fit: cover; }
.team-card-body { padding: 20px; }
.team-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.team-card-body p { color: var(--muted); font-size: .88rem; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: white;
  padding: 22px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
}
.value-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-item h4 {
  font-family: var(--font-display);
  margin-bottom: 6px;
  color: var(--dark);
}
.value-item p { font-size: .9rem; color: var(--muted); line-height: 1.6; }
.section-dark {
  background: var(--dark);
  color: white;
}
.section-dark .section-title { color: white; }
.section-dark .section-subtitle { color: rgba(255,255,255,.65); }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  text-align: center;
  padding: 32px 0;
  margin-top: 64px;
  font-size: .9rem;
}
footer strong { color: white; }

/* ── FOOTER: PARTNER LOGOS + SOCIALS ── */
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-partners {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-partners a { display: inline-flex; }
.footer-partners img {
  height: 38px;
  width: auto;
  object-fit: contain;
  opacity: .82;
  filter: grayscale(10%);
  transition: opacity .2s ease, transform .2s ease;
}
.footer-partners a:hover img { opacity: 1; transform: translateY(-1px); }

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  transition: background .2s ease, transform .2s ease;
  flex-shrink: 0;
}
.social-icon:hover { background: var(--green); color: white; transform: translateY(-2px); }
.social-icon svg { width: 18px; height: 18px; }

@media (max-width: 600px) {
  .footer-top { flex-direction: column; justify-content: center; text-align: center; }
  .footer-partners { justify-content: center; }
  .footer-socials { justify-content: center; }
}

.hidden { display: none !important; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .contact-box, .activity-layout, .spotlight-wrap, .about-story { grid-template-columns: 1fr; }
  .about-story img { height: 320px; }
  .stat-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  /* Header: single row, hide nav menu, show hamburger */
  .nav { padding: 12px 0; gap: 12px; flex-wrap: nowrap; }
  .menu { display: none; }
  .mobile-nav-toggle { display: flex; }
  .mobile-menu-inner { width: min(var(--max), 92%); margin: 0 auto; }
  .top-actions { gap: 10px; }
  .lang-switch { gap: 2px; }
  .lang-switch a { font-size: .82rem; padding: 4px 6px; }
  .btn.btn-primary { padding: 10px 16px; font-size: .85rem; }
  .logo img { height: 38px; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-content { padding: 32px 0 40px; }
  .hero-tag { font-size: .72rem; padding: 6px 12px; margin-bottom: 14px; }
  .hero h1 { font-size: clamp(2rem, 9vw, 3rem); line-height: 1.1; margin-bottom: 14px; }
  .hero p { font-size: .95rem; margin-bottom: 22px; }
  .hero-buttons { flex-direction: column; gap: 10px; }
  .hero-buttons .btn { width: 100%; text-align: center; padding: 15px 20px; font-size: 1rem; border-radius: 999px; }
  .hero-metrics { gap: 8px; margin-top: 18px; flex-wrap: wrap; }
  .metric-pill { font-size: .78rem; padding: 6px 12px; }

  /* Spotlight */
  .spotlight-wrap { flex-direction: column; gap: 12px; border-radius: var(--radius); }
  .spotlight-visual { min-height: 260px; border-radius: var(--radius) var(--radius) 0 0; padding: 20px; }
  .spotlight-copy h3 { font-size: 1.4rem; }
  .spotlight-copy p { font-size: .88rem; }
  .idea-panel { border-radius: 0 0 var(--radius) var(--radius); padding: 16px; }
  .idea-panel h3 { font-size: 1rem; }
  .idea-item { padding: 10px 12px; font-size: .88rem; }
  .idea-controls { margin-top: 10px; }
  .arrow-btn { width: 36px; height: 36px; font-size: 1rem; }

  /* Sections */
  section { padding: 40px 0; }
  .section-title { font-size: clamp(1.4rem, 5vw, 2rem); }
  .container { padding: 0 16px; }

  /* Activity cards */
  .grid-3 { grid-template-columns: 1fr; gap: 16px; }
  .card img { height: 200px; }

  /* Category strip */
  .category-strip { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 4px 0 12px; gap: 6px; }
  .category-strip::-webkit-scrollbar { display: none; }
  .cat-pill { white-space: nowrap; flex-shrink: 0; font-size: .8rem; padding: 7px 12px; }

  /* Category showcase */
  .cat-showcase { flex-direction: column; border-radius: var(--radius); overflow: hidden; margin-bottom: 20px; }
  .cat-showcase-img-wrap { height: 160px; width: 100%; }
  .cat-showcase-body { padding: 16px; }
  .cat-showcase-title { font-size: 1.1rem; }
  .cat-showcase-desc { font-size: .85rem; }

  /* Filters */
  .filter-bar { flex-direction: column; gap: 10px; }
  .filter-bar input, .filter-bar select { width: 100%; }

  /* Activity detail */
  .activity-layout { grid-template-columns: 1fr; }
  .activity-hero h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .itin-day { grid-template-columns: 1fr; gap: 4px; }
  .activity-map { height: 200px; }
  .price-table td { font-size: .85rem; }

  /* About */
  .about-story { flex-direction: column; gap: 24px; }
  .about-story img { height: 220px; border-radius: var(--radius); }
  .single-person { grid-template-columns: 1fr; }
  .single-person img { height: 260px; }
  .single-person-body { padding: 20px; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .values-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Docs */
  .doc-card { padding: 20px; }

  /* Contact */
  .contact-box { padding: 20px; flex-direction: column; gap: 24px; }
  .participant-row { grid-template-columns: 1fr; gap: 4px; }
  .participant-row span { margin-top: 4px; }
  .dates-row { flex-direction: column; }
  .dates-row .btn { width: 100%; }

  /* Footer */
  footer { padding: 24px 0; font-size: .85rem; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 1.8rem; }
  .stat-row { grid-template-columns: 1fr; }
}

.single-person {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
}.single-person img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top;
  display: block;
}
.single-person-body {
  padding: 32px 32px 32px 0;
}
.single-person-body h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 6px;
}
.single-person-role {
  color: var(--accent);
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.single-person-body p[data-lang-content] {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

@media (max-width: 700px) {
  .single-person { grid-template-columns: 1fr; }
  .single-person img { height: 300px; }
  .single-person-body { padding: 24px; }
}

.credential-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  background: var(--green-light);
  border: 1.5px solid rgba(37,77,61,0.15);
  border-radius: 14px;
  padding: 14px 20px;
}
.credential-icon { font-size: 1.6rem; }
.credential-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
}
.credential-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
}
.single-person-bio {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
  margin-top: 16px;
}
/* ── CATEGORY STRIP ── */
.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(0,0,0,0.1);
  background: white;
  color: var(--text);
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
@media (hover: hover) and (pointer: fine) {
  .cat-pill:hover {
    border-color: var(--green);
    color: var(--green);
    background: var(--green-light);
  }
}
.cat-pill:active {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-light);
}
.cat-pill.active {
  background: var(--dark);
  border-color: var(--dark);
  color: white;
}
.cat-pill.active:active,
.cat-pill.active:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: white;
}

/* ── CATEGORY SHOWCASE CARD ── */
.cat-showcase {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow-hover);
  margin-bottom: 28px;
  background: white;
  height: 300px;
  transition: opacity .2s ease;
}
.cat-showcase.fading { opacity: 0; }
.cat-showcase.no-image { grid-template-columns: 1fr; height: auto; }
.cat-showcase.no-image .cat-showcase-img-wrap { display: none; }
.cat-showcase.no-image .cat-showcase-body { padding: 40px 44px; }
.cat-showcase-img-wrap {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.cat-showcase-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s ease;
}
.cat-showcase:hover .cat-showcase-img-wrap img { transform: scale(1.04); }
.cat-showcase-body {
  padding: 36px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
  position: relative;
  overflow: hidden;
}
.cat-showcase-body::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 4px;
  background: linear-gradient(to bottom, var(--accent), var(--green));
  border-radius: 2px;
}
.cat-showcase-emoji {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
}
.cat-showcase-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.1;
}
.cat-showcase-desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 560px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
@media (max-width: 760px) {
  .cat-showcase { grid-template-columns: 1fr; height: auto; }
  .cat-showcase-img-wrap { height: 200px; }
  .cat-showcase-body { height: auto; padding: 24px; }
  .cat-showcase-desc { -webkit-line-clamp: 5; }
}

/* ── DIFF BADGES (K level, grades) ── */
.diff-badge { display:inline-block; padding:3px 10px; border-radius:6px; font-size:.78rem; font-weight:700; margin-left:8px; vertical-align:middle; letter-spacing:.04em; }
.diff-badge-k { background:var(--accent-light); color:var(--accent); border:1px solid rgba(45,106,79,0.15); }
.diff-badge-grade { background:var(--green-light); color:var(--green); border:1px solid rgba(37,77,61,0.15); }
.diff-badge-detail { background:var(--bg); color:var(--muted); border:1px solid var(--border); font-weight:500; }

/* ── K LEVEL + GRADE PILLS ── */
.klevel-badge { display:inline-block; background:var(--accent); color:white; font-size:.82rem; font-weight:700; padding:4px 12px; border-radius:6px; margin-bottom:10px; letter-spacing:.05em; }
.grade-pills { display:flex; flex-wrap:wrap; gap:8px; margin-top:12px; }
.grade-pill { padding:6px 14px; border-radius:8px; background:var(--green-light); color:var(--green); font-size:.85rem; font-weight:700; border:1px solid rgba(37,77,61,0.15); }
.grade-pill-detail { background:var(--bg); color:var(--muted); border-color:var(--border); font-weight:500; }

/* ── ACTIVITY DETAIL SIDEBAR ── */
.detail-block { margin-bottom:22px; padding-bottom:22px; border-bottom:1px solid var(--border); }
.detail-block:last-of-type { border-bottom:none; }
.detail-block-title { font-family:var(--font-display); font-size:1rem; font-weight:700; color:var(--dark); margin-bottom:14px; }
.detail-row { display:flex; gap:12px; align-items:flex-start; margin-bottom:12px; }
.detail-icon { font-size:1.1rem; width:24px; flex-shrink:0; margin-top:1px; }
.detail-label { display:block; font-size:.75rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:var(--muted); margin-bottom:2px; }
.detail-value { display:block; font-size:.95rem; color:var(--text); }

/* ── SUITABLE FOR PILLS ── */
.suitable-pills { display:flex; flex-wrap:wrap; gap:6px; margin-top:4px; }
.suitable-pill { padding:4px 10px; background:var(--green-light); color:var(--green); border-radius:999px; font-size:.78rem; font-weight:600; }

/* ── PRICE TABLE ── */
.price-table { width:100%; border-collapse:collapse; font-size:.93rem; margin-top:4px; }
.price-table tr { border-bottom:1px solid rgba(0,0,0,0.06); }
.price-table tr:last-child { border-bottom:none; }
.price-table td { padding:8px 4px; color:var(--text); }
.price-table .price-cell { text-align:right; font-weight:700; color:var(--accent); white-space:nowrap; }
.price-single { font-size:1.1rem; font-weight:700; color:var(--accent); margin-top:4px; }

/* ── INCLUDED LIST ── */
.included-list { list-style:none; padding:0; margin-top:4px; }
.included-list li { padding:6px 0; font-size:.93rem; color:var(--text); border-bottom:1px solid rgba(0,0,0,0.04); display:flex; gap:8px; }
.included-list li:last-child { border-bottom:none; }

/* ── ITINERARY TIMELINE ── */
.itinerary {
  margin-top: 32px;
  border-top: 2px solid var(--green-light);
  padding-top: 28px;
}
.itin-intro {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--green-light);
}
.itinerary-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.itin-list {
  position: relative;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
/* vertical spine */
.itin-list::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-light), transparent);
}
.itin-day {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 6px 0 20px;
  align-items: start;
  position: relative;
}
.itin-day:last-child { padding-bottom: 0; }
.itin-day-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(45,106,79,0.25);
  z-index: 1;
  line-height: 1.1;
  text-align: center;
}
.itin-day-content {
  background: var(--green-light);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-top: 4px;
}
.itin-day-num {
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.itin-day-desc {
  font-size: .93rem;
  color: var(--text);
  line-height: 1.75;
}
/* parsed-from-text days (no structured itinerary) */
.itin-parsed .itin-day-content {
  background: #f6fbf8;
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ── MAPS ── */
.activity-map { margin-top:24px; border-radius:var(--radius); overflow:hidden; height:260px; box-shadow:var(--card-shadow); }
.activity-map iframe { width:100%; height:100%; border:none; display:block; }
.maps-btn { display:inline-flex; align-items:center; gap:8px; margin-top:16px; }

@media (max-width:760px) {
  .itin-list::before { left: 15px; }
  .itin-day { grid-template-columns: 32px 1fr; gap: 12px; }
  .itin-day-badge { width: 32px; height: 32px; font-size: .7rem; }
}

/* ── GREEN THEME EXTRAS ── */
/* Subtle section tint for visual rhythm */
.section-tint { background: #f6fbf8; }

/* Green-tinted card shadows on white */
.card, .activity-card, .panel, .form-card, .doc-card {
  box-shadow: 0 2px 16px rgba(45,106,79,0.07), 0 1px 3px rgba(0,0,0,0.04);
}
.card:hover, .activity-card:hover {
  box-shadow: 0 8px 32px rgba(45,106,79,0.14), 0 2px 6px rgba(0,0,0,0.06);
}

/* Price highlight in green */
.price, .price-single { color: var(--accent); }

/* Active nav link underline in green */
.menu a.active::after, .menu a:hover::after { background: var(--accent); }

/* Difficulty bars in green */
.difficulty-bars span.on { background: var(--accent); }

/* Stat numbers in green */
.stat-num { color: var(--accent); }

/* Section label accent */
.section-label { color: var(--accent); }

/* Gradient CTA section */
.cta-green {
  background: linear-gradient(135deg, var(--dark) 0%, #1a3d28 100%);
}

/* Testimonial border */
.testimonial { border-left: 3px solid var(--accent); }

/* ── DOCS PAGE ── */
.section-subtitle { color: var(--muted); font-size: 1.02rem; margin-top: -8px; margin-bottom: 36px; }
.docs-grid { margin-top: 8px; }
.docs-category { margin-bottom: 44px; }
.docs-category:last-child { margin-bottom: 0; }
.docs-cat-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent-light);
}
.docs-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.doc-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.05);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.doc-card:hover { transform: translateY(-3px); }
.doc-card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 14px;
}
.doc-card-body { flex: 1; }
.doc-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 6px;
}
.doc-card-size { font-size: .82rem; color: var(--muted); }
.doc-download-btn { width: 100%; justify-content: center; text-align: center; }
.doc-card-other-langs { font-size: .8rem; color: var(--muted); margin-top: -4px; }
.doc-card-other-langs a { color: var(--accent); font-weight: 600; }
.doc-card-other-langs a:not(:last-child)::after { content: " · "; color: var(--muted); font-weight: 400; }
.docs-empty { color: var(--muted); text-align: center; padding: 40px 0; }

/* Written cancellation/booking policy */
.policy-block {
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 56px;
}
.policy-lang h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 18px;
}
.policy-lang h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--accent);
  margin: 28px 0 10px;
}
.policy-lang h3:first-of-type { margin-top: 22px; }
.policy-lang p { color: var(--text); line-height: 1.7; margin-bottom: 12px; }
.policy-lang ul { margin: 4px 0 12px; padding-left: 22px; }
.policy-lang li { color: var(--text); line-height: 1.7; margin-bottom: 8px; }
.docs-pdf-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 24px;
}
@media (max-width: 760px) {
  .policy-block { padding: 24px 20px; }
  .policy-lang h2 { font-size: 1.4rem; }
}
/* Cookie consent banner */
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: var(--white);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.14);
  border-top: 1px solid var(--accent-light);
}
.cookie-banner-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  font-family: var(--font-body);
}
.cookie-banner-message {
  flex: 1 1 320px;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.cookie-banner-actions .btn,
.cookie-banner-actions .btn-outline {
  font-size: 0.88rem;
  padding: 10px 18px;
  white-space: nowrap;
}
.cookie-prefs-panel {
  width: 100%;
  border-top: 1px solid var(--accent-light);
  margin-top: 4px;
  padding-top: 16px;
}
.cookie-prefs-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}
.cookie-prefs-row + .cookie-prefs-row {
  border-top: 1px solid var(--accent-light);
}
.cookie-prefs-row strong {
  color: var(--text);
  font-size: 0.92rem;
}
.cookie-prefs-row p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
  margin: 4px 0 0;
}
.cookie-prefs-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: var(--accent);
  margin-top: 2px;
}
#cookie-settings-link {
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
}
@media (max-width: 640px) {
  .cookie-banner-inner { padding: 16px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn,
  .cookie-banner-actions .btn-outline { flex: 1 1 auto; }
}