*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body.loading { visibility: hidden; }

:root {
  /* ── NC Passeios brand tokens (dark-mode-first) ── */
  --obsidian:   #06070A;   /* primary page background */
  --surface:    #0E1014;   /* cards / panels, slightly lifted */
  --slate:      #3B4453;   /* borders, dividers, muted UI */
  --gold-deep:  #8C6F1E;   /* gradient shadow tone, hover */
  --gold:       #CDAD3E;   /* primary brand gold — the only accent */
  --gold-light: #FFE56E;   /* highlight gold — glow / emphasis only */
  --white:      #FFFFFF;   /* headings, high-emphasis text */
  --muted:      #969EAA;   /* secondary / body text on dark */

  /* ── Legacy aliases → remapped onto the dark palette ──
     (kept so pre-existing rules keep resolving; per-page rules
     are rewritten to the new tokens in later phases) */
  --green:      #06070A;   /* was dark-green → obsidian base */
  --green-mid:  #0E1014;   /* → elevated surface */
  --gold-legacy:#CDAD3E;
  --amber:      #8C6F1E;   /* → deep gold */
  --cream:      #0E1014;   /* was light section bg → surface */
  --cream-light:#06070A;   /* was lightest bg → obsidian */

  /* Text Colors */
  --text-dark:  #FFFFFF;   /* headings / high emphasis */
  --text-mid:   #969EAA;   /* body */
  --text-light: #969EAA;   /* muted meta */

  /* Border & UI */
  --border:     #3B4453;   /* slate hairline */

  /* State Colors — gold-forward, no competing hue */
  --error:      #E5484D;
  --success:    #CDAD3E;

  /* Shadows — layered, gold-tinted, low opacity on dark */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.40);
  --shadow-md:  0 10px 30px rgba(0,0,0,0.55);
  --shadow-lg:  0 24px 80px rgba(0,0,0,0.65), 0 0 0 1px rgba(205,173,62,0.06);
  --glow-gold:  0 8px 32px rgba(205,173,62,0.18);

  /* Typography */
  --font-display: 'Baloo 2', 'Trebuchet MS', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-accent:  'Poppins', var(--font-body);

  /* Type Scale */
  --fs-xs:   11px;   /* overlines, labels */
  --fs-sm:   12px;   /* meta, captions */
  --fs-base: 13px;   /* card body, small content */
  --fs-md:   14px;   /* default body */
  --fs-lg:   15px;   /* intro paragraphs */
  --fs-h4:   16px;   /* subheadings */
  --fs-h3:   22px;   /* section sub-titles */
  --fs-h2:   36px;   /* section titles */
  --fs-hero: 54px;   /* hero display */
}

html { scroll-behavior: smooth; }

/* Respect users who ask the OS to minimise motion (vestibular safety). */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--muted);
  background: var(--obsidian);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--white);
  letter-spacing: -0.01em;
}

/* Typography line-heights */
h1, h2, h3, h4, h5, h6,
.hero-title, .section-title, .tour-listing-title,
.contact-form-heading, .contact-info-heading,
.bk-heading, .bk-confirm-title, .bp-step,
.stat-number, .tour-modal-title, .tour-tag,
.team-name, .stat-label, .footer-col h5 {
  line-height: 1.2;
}

p, li, .hero-subtitle, .tour-card-desc,
.tour-listing-desc, .contact-form-subheading,
.contact-info-subheading, .value-card p,
.team-bio, .bp-step,
.bk-confirm-sub, .bk-next-steps li,
.itinerary-content .itinerary-activity {
  line-height: 1.65;
}

small, caption, .form-label, .tour-tag,
.tour-card-meta, .tour-listing-meta,
.tour-listing-price span, .bp-num, .bp-step,
.stat-label, .footer-slogan, .tour-modal-meta span {
  line-height: 1.5;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 56px;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

/* Solid navbar for pages without a hero image band */
.navbar--solid {
  position: relative;
  background: var(--obsidian);
  border-bottom: 1px solid var(--slate);
}
.navbar--solid + * { padding-top: 0; }

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.logo img {
  height: 100px;
  width: auto;
  display: block;
}

/* ===== BRAND WORDMARK ===== */
.ncp-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.ncp-logo__badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, #F1D97A 0%, #CDAD3E 45%, #8C6F1E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--obsidian);
  font-size: 17px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(205,173,62,0.28);
  overflow: hidden;
  position: relative;
}
.ncp-logo__badge img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ncp-logo__word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  white-space: nowrap;
}
.ncp-logo__word span { color: var(--gold); }
.ncp-logo--sm .ncp-logo__badge { width: 32px; height: 32px; font-size: 14px; }
.ncp-logo--sm .ncp-logo__word { font-size: 16px; }
.ncp-logo--lg .ncp-logo__badge { width: 46px; height: 46px; font-size: 20px; }
.ncp-logo--lg .ncp-logo__word { font-size: 23px; }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin-left: auto;
  margin-right: 32px;
}

.nav-links a {
  display: inline-block;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

.btn-book-now {
  background: var(--gold);
  color: var(--obsidian);
  padding: 10px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
  box-shadow: var(--glow-gold);
}

.btn-book-now:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(205,173,62,0.35);
}

/* Navbar right-side action group */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* ===== LANGUAGE SWITCH ===== */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.lang-switch__opt {
  color: var(--muted);
  text-decoration: none;
  padding: 4px 5px;
  border-radius: 5px;
  transition: color 0.15s ease, background-color 0.15s ease;
}
.lang-switch__opt:hover,
.lang-switch__opt:focus-visible {
  color: var(--gold);
  outline: none;
}
.lang-switch__opt:focus-visible {
  box-shadow: 0 0 0 2px rgba(205, 173, 62, 0.45);
}
.lang-switch__opt:active {
  transform: translateY(1px);
}
.lang-switch__opt--active {
  color: var(--gold);
}
.lang-switch__sep {
  color: var(--slate);
}

/* ===== HERO WRAPPER (contains navbar + hero) ===== */
.hero-wrapper {
  position: relative;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--obsidian);
}

.hero--short {
  min-height: 340px;
}

/* Obsidian hero with a warm gold "eclipse" glow on the upper-right (per design). */
.hero-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(34% 44% at 80% 36%, rgba(255,229,110,0.30) 0%, rgba(205,173,62,0.16) 32%, rgba(205,173,62,0) 60%),
    radial-gradient(80% 100% at 92% 18%, rgba(140,111,30,0.22) 0%, rgba(140,111,30,0) 62%),
    linear-gradient(to bottom, rgba(6,7,10,0) 55%, rgba(6,7,10,0.55) 100%);
  z-index: 1;
}

/* ===== HERO CONTENT ===== */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 56px 72px 56px;
}

.hero-tagline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  max-width: 15ch;
}

/* Gold emphasis span inside hero headline */
.hero-title .accent { color: var(--gold); }

.hero-subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  color: var(--gold-light);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 46ch;
}

.hero-buttons {
  display: flex;
  gap: 14px;
}

/* Primary Button (Gold pill - High Impact) */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--obsidian);
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: var(--fs-md);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
  letter-spacing: 0.3px;
  box-shadow: var(--glow-gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(205,173,62,0.32);
}

/* Secondary Button (Gold outline pill - Lower Prominence) */
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 12px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: var(--fs-md);
  font-weight: 600;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.15s;
  letter-spacing: 0.3px;
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--obsidian);
  transform: translateY(-2px);
}

/* ===== SECTION SHARED ===== */
.section-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 40px;
}

/* ===== POPULAR TOURS ===== */
.tours-section {
  padding: 72px 56px;
  background: var(--obsidian);
}

.tours-grid {
  display: flex;
  gap: 24px;
  position: relative;
  align-items: stretch;
  flex-wrap: wrap;
}

.tour-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--slate);
  border-radius: 18px;
  padding: 14px 14px 18px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.tour-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}

/* Featured Card for Handpicked Tours */
.tour-card.featured {
  position: relative;
  z-index: 10;
}

.tour-card.featured .tour-card-img {
  box-shadow: var(--shadow-md);
}

.tour-card.featured .tour-card-link::after {
  content: 'Featured';
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold);
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tour-card-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 14px;
  display: block;
  transition: transform 0.3s, box-shadow 0.3s;
}

.tour-card:hover .tour-card-img {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.tour-card-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
}

.tour-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.tour-card-meta .price {
  font-weight: 700;
  color: var(--gold);
  font-size: 14px;
}

.tour-card-desc {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 10px;
  line-height: 1.5;
}

.tour-card-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.tour-card-link:hover { text-decoration: underline; }

.tours-nav-arrow {
  position: absolute;
  right: -18px;
  top: 95px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  font-size: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.tours-nav-arrow:hover { background: var(--green-mid); }
.tours-nav-arrow:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ===== WHY CHOOSE ===== */
.why-section {
  padding: 72px 56px;
  background: var(--cream-light);
  border-bottom: 1px solid var(--border);
}

.why-grid {
  display: flex;
}

.why-card {
  text-align: center;
  flex: 1;
  padding: 0 32px;
  border-right: 1px solid var(--slate);
}

.why-card:first-child { padding-left: 0; }
.why-card:last-child  { padding-right: 0; border-right: none; }

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(205,173,62,0.10);
  border: 1px solid rgba(205,173,62,0.35);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  box-shadow: var(--glow-gold);
}

.why-card h4 {
  font-size: var(--fs-h4);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.why-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===== GALLERY ===== */
.gallery-section {
  display: flex;
  height: 400px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12), 0 16px 48px rgba(0,0,0,0.10);
}

.gallery-left {
  flex: 0 0 30%;
  background: var(--green);
  padding: 64px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}

.gallery-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.gallery-title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 18px;
}

.gallery-desc {
  font-size: 14px;
  line-height: 1.75;
  opacity: 0.82;
  margin-bottom: 32px;
}

.btn-outline {
  display: inline-block;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 12px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: background 0.25s, color 0.25s, transform 0.15s;
  width: fit-content;
  letter-spacing: 0.3px;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--obsidian);
  transform: translateY(-2px);
}

.gallery-right {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  background: var(--surface);
}

.gallery-cell {
  overflow: hidden;
}

.gallery-cell--large {
  grid-row: 1 / 3;
  border-left: 2px solid var(--obsidian);
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.gallery-cell img:hover {
  transform: scale(1.05);
}

/* ===== TESTIMONIALS ===== */
















/* ===== CTA ===== */
.cta-section {
  background: var(--surface);
  border-top: 1px solid var(--slate);
  padding: 56px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 22px;
}

.cta-icon {
  width: 56px;
  height: 56px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 22px;
  flex-shrink: 0;
}

.cta-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  margin-top: 2px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
}

.btn-cta-primary {
  background: var(--gold);
  color: var(--obsidian);
  padding: 15px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
  letter-spacing: 0.3px;
  box-shadow: var(--glow-gold);
}

.btn-cta-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(205,173,62,0.4);
}

.btn-cta-outline {
  background: transparent;
  color: var(--gold);
  padding: 13px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s, color 0.25s, transform 0.15s;
}

.btn-cta-outline:hover {
  background: var(--gold);
  color: var(--obsidian);
  transform: translateY(-2px);
}

/* ===== PARTNERS ===== */
.partners-section {
  padding: 80px 56px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
}

.partners-section .section-title {
  margin-bottom: 6px;
}

.partners-section .section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 12px auto 0;
}

.partners-subtitle {
  font-size: var(--fs-md);
  color: var(--text-light);
  max-width: 520px;
  margin: 20px auto 52px;
}

.partners-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  min-width: 200px;
  flex: 1 1 200px;
  max-width: 260px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  text-decoration: none;
  color: inherit;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(6,7,10,0.12);
  border-color: var(--gold);
}

.partner-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}


.partner-name {
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* ===== FOOTER ===== */
.footer {
  padding: 64px 56px 36px;
  background: var(--obsidian);
  border-top: 1px solid var(--slate);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  max-width: 495px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-brand-left {
  display: flex;
  flex-direction: column;
}

.footer-brand-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  color: var(--muted);
  margin-top: -4px;
}

.footer-logo-img {
  height: 100px;
  width: auto;
  display: block;
}

.footer-slogan {
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 5px;
  font-weight: 500;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--slate);
  border-radius: 50%;
  color: var(--muted);
  font-size: 15px;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}

.footer-socials a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(205,173,62,0.08);
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--text-dark);
  letter-spacing: 0.3px;
}

.footer-col ul {
  list-style: none;
  line-height: 1.6;
}

.footer-col a {
  text-decoration: none;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-mid);
  transition: color 0.25s;
}

.footer-col a:hover { color: var(--gold); }

.footer-contact p {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-contact i {
  color: var(--gold);
  width: 14px;
}

.footer-payment {
  text-align: right;
}

.footer-payment-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.footer-payment-logos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 8px;
}

.payment-icon {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-mid);
}

.footer-bottom {
  padding-top: 22px;
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
}

/* ===== HAMBURGER MENU ===== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
  flex-shrink: 0;
  order: 1;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.2); }
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--surface);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav auth links — hidden on desktop */
.nav-mobile-auth { display: none; }
.nav-mobile-cta {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.75) !important;
  text-decoration: none;
}
.nav-mobile-book {
  display: inline-block;
  margin-top: 4px;
  background: var(--gold);
  color: var(--green) !important;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 32px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .navbar { padding: 12px 32px; }
  .logo img { height: 80px; }
  .nav-links { gap: 24px; }
  .hero-content { padding: 100px 32px 72px; }
  .hero-title { font-size: 42px; }
  .tours-section { padding: 56px 28px; }
  .tours-grid { flex-wrap: wrap; }
  .tour-card { flex: 0 0 calc(50% - 12px); }
  .why-section { padding: 56px 28px; }
  .why-grid { flex-wrap: wrap; }
  .why-card { flex: 0 0 calc(50% - 32px); border-right: none; border-bottom: 1px solid rgba(0,0,0,0.12); padding-bottom: 24px; margin-bottom: 8px; }
  .why-card:nth-child(odd) { border-right: 1px solid rgba(0,0,0,0.12); }
  .why-card:nth-last-child(-n+2) { border-bottom: none; }
  .gallery-section { flex-direction: column; }
  .gallery-left { flex: unset; padding: 52px 36px; }
  .gallery-right { grid-template-columns: 2fr 1fr; min-height: 320px; }
  .gallery-cell--large { grid-row: 1 / 3; }
  .partners-section { padding: 56px 28px; }
  .partners-grid { gap: 20px; }
  .cta-section { flex-direction: column; text-align: center; gap: 32px; padding: 56px 28px; }
  .footer { padding: 56px 28px 36px; }
  .footer-top { flex-wrap: wrap; }
}

@media (max-width: 900px) {
  /* Navbar — activate hamburger */
  .navbar { padding: 10px 20px; }
  .logo img { height: 60px; }
  .nav-hamburger { display: flex; }

  /* Hide topbar action links — shown inside mobile menu instead */
  .nav-actions > a { display: none; }

  /* Mobile full-screen nav */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #06070A;
    padding: 80px 32px 48px;
    gap: 8px;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    visibility: hidden;
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.38s;
    z-index: 90;
  }
  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
  }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a:not(.nav-mobile-book):not(.nav-mobile-cta),
  .nav-destinations-btn {
    color: rgba(255,255,255,0.85) !important;
    font-size: 20px !important;
    font-weight: 600;
    display: block;
    padding: 12px 0;
    letter-spacing: 0.02em;
  }
  .nav-links a:not(.nav-mobile-book):not(.nav-mobile-cta):hover,
  .nav-destinations-btn:hover { color: #CDAD3E !important; }
  .nav-links a.active { color: #CDAD3E !important; }
  .nav-mobile-auth { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-top: 16px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15); width: 100%; }
  .nav-mobile-book { display: inline-block; padding: 12px 40px; font-size: 15px !important; }
  .nav-mobile-cta { display: inline-block; padding: 10px 0; font-size: 15px !important; }
}

@media (max-width: 640px) {
  /* Navbar — tighter on small phones */
  .navbar { padding: 10px 16px; }
  .logo img { height: 52px; }

  /* Hero */
  .hero-content { padding: 88px 20px 52px; }
  .hero-title { font-size: 28px; line-height: 1.25; }
  .hero-subtitle { font-size: 13px; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary { width: 100%; max-width: 280px; text-align: center; justify-content: center; }

  /* Tour cards */
  .tour-card { flex: 0 0 100%; }

  /* Why grid */
  .why-grid { flex-direction: column; }
  .why-card { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.12); padding: 0 0 20px; }
  .why-card:last-child { border-bottom: none; }

  /* Gallery */
  .gallery-section { height: auto !important; min-height: unset; }
  .gallery-left { padding: 36px 20px; }
  .gallery-right { grid-template-columns: 1fr 1fr; min-height: 220px; }
  .gallery-cell--large { grid-row: unset; }
  .gallery-cell { height: 140px; }

  /* Testimonials */
  /* Let the middle card shrink so the fixed-width arrows never spill past the
     viewport (min-width:auto floors a flex item at its content width). */

  /* Partners */
  .partners-grid .partner-card { min-width: 140px; }

  /* CTA */
  .cta-section { padding: 48px 20px; }
  .cta-buttons { flex-direction: column; width: 100%; }
  .btn-cta-primary, .btn-cta-outline { width: 100%; text-align: center; justify-content: center; }

  /* Footer */
  .footer { padding: 48px 20px 28px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-brand { flex-direction: column; gap: 12px; }
  .footer-logo-img { height: 72px; }
  .footer-brand-left { align-items: center; text-align: center; }
  .footer-slogan { text-align: center; }
  .footer-socials { justify-content: center; }
  .footer-col { align-items: center; text-align: center; }
  .footer-col ul { align-items: center; }
  .footer-contact { align-items: center; text-align: center; }
  .footer-contact p { justify-content: center; }
  .footer-payment { align-items: center; text-align: center; }
  .footer-payment-logos { justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 8px; }

  /* Filter bar */
  .filter-bar { gap: 8px; }
  .filter-btn { padding: 10px 16px; font-size: 12px; }

  /* Tours listing */
  .page-main { padding: 40px 16px; }

  /* Section titles */
  .section-title { font-size: 28px; }
}

/* ===== PAGE SECTIONS (inner pages) ===== */
.page-main {
  padding: 72px 56px;
  background: var(--surface);
}

.page-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.page-intro .section-title { margin-bottom: 12px; }

.page-intro p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ===== TOURS PAGE ===== */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 44px;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: 30px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-mid);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

/* Chips render as links where the filter is server-side. */
a.filter-btn {
  display: inline-block;
  text-decoration: none;
  line-height: 1.2;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--obsidian);
}

.filter-btn:active { transform: translateY(1px); }

.tours-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Tour Listing Card */
.tour-listing-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s, box-shadow 0.28s;
}

.tour-listing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.tour-listing-card.hidden { display: none; }

/* Focus States for Accessibility */
.tour-listing-card:focus-within,
.filter-btn:focus-visible,
.tours-nav-arrow:focus-visible,
.btn-book-tour:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-cta-primary:focus-visible,
.btn-cta-outline:focus-visible,
.btn-whatsapp:focus-visible,
.btn-submit:focus-visible,
.btn-book-now:focus-visible,
.nav-links a:focus-visible,
.gallery-masonry-item:focus-visible,
.lightbox-nav:focus-visible,
.lightbox-close:focus-visible,
.tour-modal-close:focus-visible,
#tour-modal:focus {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}


.tour-listing-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.tour-listing-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
  background: var(--surface);
  padding: 4px 10px;
  border-radius: 30px;
}

.tour-listing-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
  line-height: 1.3;
}

.tour-listing-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.tour-listing-meta span { display: flex; align-items: center; gap: 5px; }

.tour-listing-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}

.tour-listing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.tour-listing-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
}

.tour-listing-price span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-light);
  display: block;
}

.btn-book-tour {
  background: var(--green);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.22s, transform 0.15s;
}

.btn-book-tour:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

/* ===== GALLERY PAGE ===== */
.gallery-page-section {
  padding: 72px 56px;
  background: var(--cream-light);
}

.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}

.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

/* Click hint for gallery items */
.gallery-masonry-item::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gallery-masonry-item:hover img { transform: scale(1.04); }

/* Show hint on hover/focus */
.gallery-masonry-item:hover::after,
.gallery-masonry-item:focus-within::after {
  background: rgba(6,7,10,0.45);
  color: var(--white);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 0.6; }
}

.gallery-masonry-item::after {
  content: '\f065';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  background: rgba(6,7,10,0);
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.gallery-masonry-item:hover::after {
  background: rgba(6,7,10,0.35);
  color: var(--white);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 88vw;
  max-height: 88vh;
  border-radius: 4px;
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 32px;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.2s;
}

.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ===== ABOUT PAGE ===== */
.about-story {
  padding: 72px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  background: var(--surface);
}

.about-story-text .section-label { text-align: left; }
.about-story-text .section-title { text-align: left; margin-bottom: 20px; }

.about-story-text p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-story-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 12px;
}

.stats-section {
  background: var(--green);
  padding: 72px 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.75;
}

.values-section {
  padding: 72px 56px;
  background: var(--cream-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}

.value-card {
  background: var(--surface);
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid var(--border);
}

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.value-card h4 {
  font-size: var(--fs-h4);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.value-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}

.team-section {
  padding: 72px 56px;
  background: var(--surface);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}

.team-card {
  text-align: center;
}

.team-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  display: block;
  border: 3px solid var(--border);
}

.team-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.team-bio {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 72px 56px;
  background: var(--surface);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-form-heading {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.contact-form-subheading {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 32px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 7px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-family: var(--font-body);
  font-size: var(--fs-md);
  color: var(--text-dark);
  background: var(--surface);
  transition: border-color 0.22s, box-shadow 0.22s;
  outline: none;
}

.form-control:focus,
.form-control:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(205,173,62,0.18);
  outline: none;
}

.form-control::placeholder { color: var(--text-light); }

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

select.form-control { cursor: pointer; }

/* Form control error states */
.form-control.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(230,57,70,0.12);
}

.form-control.error:focus,
.form-control.error:focus-visible {
  outline-color: var(--error);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 7px;
  font-family: var(--font-body);
  font-size: var(--fs-md);
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.22s, transform 0.15s;
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
}

.contact-info-heading {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-info-subheading {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 36px;
  line-height: 1.6;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(205,173,62,0.10);
  border: 1px solid rgba(205,173,62,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.contact-detail-text span {
  font-size: 13px;
  color: var(--text-mid);
}

.contact-hours {
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  margin-top: 32px;
}

.contact-hours h4 {
  font-size: var(--fs-h4);
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-mid);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.hours-row:last-child { border-bottom: none; }
.hours-row span:last-child { font-weight: 600; color: var(--text-dark); }

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--obsidian);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  margin-top: 20px;
  transition: background 0.22s, transform 0.15s;
}

.btn-whatsapp:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ===== RESPONSIVE: INNER PAGES ===== */
@media (max-width: 1024px) {
  .tours-listing-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story { grid-template-columns: 1fr; gap: 36px; padding: 56px 28px; }
  .about-story-img { height: 300px; }
  .stats-section { grid-template-columns: repeat(2, 1fr); padding: 56px 28px; gap: 28px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 28px; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-section { grid-template-columns: 1fr; gap: 48px; padding: 56px 28px; }
  .gallery-masonry { columns: 2; }
  .gallery-page-section { padding: 56px 28px; }
  .page-main { padding: 56px 28px; }
}

@media (max-width: 640px) {
  .tours-listing-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .stats-section { grid-template-columns: 1fr; }
  .stat-item { border-right: none; }
}

/* ===== MORE DETAILS BUTTON (shared across pages) ===== */
.btn-more-details {
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-more-details:hover { color: var(--amber); }
.btn-more-details:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ===== TOUR MODAL (shared across pages) ===== */
.tour-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    backdrop-filter: blur(3px);
}
.tour-modal-overlay.open { display: flex; }
.tour-modal-inner {
    background: var(--surface);
    border-radius: 16px;
    width: 100%;
    max-width: 720px;
    max-height: 88vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}
.tour-modal-header {
    padding: 28px 32px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    position: sticky;
    top: 0;
    background: var(--surface);
    z-index: 1;
    border-radius: 16px 16px 0 0;
}
.tour-modal-header-left { flex: 1; }
.tour-modal-type-row { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.tour-modal-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--white); line-height: 1.3; margin-bottom: 6px; }
.tour-modal-meta { font-size: 13px; color: var(--text-light); display: flex; gap: 16px; }
.tour-modal-meta span { display: flex; align-items: center; gap: 5px; }
.tour-modal-close {
    background: var(--cream-light);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
    line-height: 1;
}
.tour-modal-close:hover { background: var(--cream); }
.tour-modal-body { padding: 28px 32px; display: flex; flex-direction: column; gap: 28px; }
.tour-modal-desc { font-size: 14px; color: var(--text-mid); line-height: 1.75; }
.tour-modal-section h4 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--gold); display: inline-block; }
.tour-itinerary { display: flex; flex-direction: column; gap: 0; }
.itinerary-item { display: flex; gap: 16px; position: relative; padding-bottom: 16px; }
.itinerary-item:last-child { padding-bottom: 0; }
.itinerary-time-col { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 80px; }
.itinerary-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--amber); flex-shrink: 0; margin-top: 3px; }
.itinerary-line { width: 2px; flex: 1; background: var(--border); margin-top: 4px; min-height: 24px; }
.itinerary-item:last-child .itinerary-line { display: none; }
.itinerary-time { font-size: 11px; font-weight: 700; color: var(--amber); letter-spacing: 0.04em; text-align: right; line-height: 1.2; padding-right: 12px; margin-top: 0; white-space: nowrap; }
.itinerary-content { flex: 1; padding-bottom: 4px; }
.itinerary-activity { font-size: 13px; color: var(--text-dark); font-weight: 500; line-height: 1.5; }
.itinerary-note { font-size: 12px; color: var(--text-light); margin-top: 2px; }
.tour-modal-incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 540px) { .tour-modal-incl-grid { grid-template-columns: 1fr; } }
.tour-incl-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.tour-incl-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-mid); line-height: 1.5; }
.tour-incl-list li .incl-icon { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 9px; flex-shrink: 0; margin-top: 1px; }
.incl-icon.yes { background: rgba(205,173,62,0.12); color: var(--gold); }
.incl-icon.no  { background: rgba(150,158,170,0.12); color: var(--muted); }
.tour-modal-footer-bar { padding: 20px 32px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 16px; background: var(--cream-light); border-radius: 0 0 16px 16px; }
.tour-modal-price { font-family: var(--font-display); font-size: 26px; color: var(--gold); font-weight: 700; }
.tour-modal-price span { font-family: var(--font-body); font-size: 12px; color: var(--text-light); font-weight: 400; display: block; line-height: 1.2; }

/* ===== ENHANCED ABOUT PAGE STYLES ===== */
/* Vision section - bold, impactful single card */
.values-section[data-variant="vision"] {
    background: linear-gradient(135deg, #0E1014 0%, #06070A 50%, #0E1014 100%);
    position: relative;
}
.values-section[data-variant="vision"]::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--amber) 100%);
}
.values-section[data-variant="vision"] .page-intro { max-width: 640px; }
.values-section[data-variant="vision"] .section-label {
    color: var(--amber);
    letter-spacing: 4px;
    font-weight: 700;
}
.values-section[data-variant="vision"] .value-card {
    background: linear-gradient(135deg, #0E1014 0%, #06070A 100%);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 56px 40px;
    position: relative;
    overflow: hidden;
}
.values-section[data-variant="vision"] .value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 8px; height: 8px;
    border-top: 3px solid var(--gold);
    border-left: 3px solid var(--gold);
}
.values-section[data-variant="vision"] .value-card::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0; width: 8px; height: 8px;
    border-bottom: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
}
.values-section[data-variant="vision"] .value-icon {
    width: 72px; height: 72px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
    color: var(--white);
    font-size: 32px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}
.values-section[data-variant="vision"] h4 {
    font-family: var(--font-display);
    font-size: 24px; font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}
.values-section[data-variant="vision"] p {
    font-size: 15px; color: var(--text-mid); line-height: 1.85;
}

/* Who We Are section - enhanced container */
.page-main[data-variant="who-we-are"] {
    background: linear-gradient(180deg, transparent 0%, #0E1014 10px, #0E1014 calc(100% - 10px), transparent 100%);
    padding-top: 80px; padding-bottom: 80px;
}
.page-main[data-variant="who-we-are"] .value-card {
    background: linear-gradient(180deg, #0E1014 0%, #0E1014 100%);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 64px 48px;
    position: relative;
    border-radius: 16px;
}
.page-main[data-variant="who-we-are"] .value-card::before {
    content: '';
    position: absolute; top: 24px; left: 24px; right: 24px; bottom: 24px;
    border: 1px solid var(--gold);
    border-radius: 12px;
    opacity: 0.15;
    pointer-events: none;
}
.page-main[data-variant="who-we-are"] .section-title {
    text-align: center; margin-bottom: 16px;
}
.page-main[data-variant="who-we-are"] .section-title span {
    color: var(--amber); display: block; font-weight: 500; margin-top: 12px;
}

/* Team section - enhanced with gold accents */
.team-section .team-card {
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.team-section .team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.team-section .team-card::before {
    content: '';
    position: absolute;
    top: 50%; left: -16px; right: -16px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--border) 30%, var(--border) 70%, transparent);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.team-section .team-card:hover::before { opacity: 1; }
.team-section .team-img {
    width: 120px; height: 120px; border-radius: 50%;
    object-fit: cover; margin: 0 auto 20px; display: block;
    border: 4px solid var(--cream);
    transition: transform 0.3s, border-color 0.3s;
}
.team-section .team-card:hover .team-img {
    border-color: var(--gold);
    transform: scale(1.05);
}
.team-section .team-img-placeholder {
    width: 120px; height: 120px; border-radius: 50%;
    background: linear-gradient(135deg, #0E1014 0%, #06070A 100%);
    display: flex; align-items: center; justify-content: center;
    color: var(--amber);
    font-family: var(--font-display);
    font-size: 42px; font-weight: 700;
    margin: 0 auto 20px; box-shadow: var(--shadow-sm);
    border: 3px solid var(--gold);
    transition: transform 0.3s;
}
.team-section .team-card:hover .team-img-placeholder {
    transform: scale(1.05);
}
.team-section .team-name {
    font-family: var(--font-display);
    font-size: 18px; font-weight: 700; margin-bottom: 4px;
    color: var(--text-dark);
}
.team-section .team-role {
    font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--amber); margin-bottom: 14px;
}
.team-section .team-bio {
    font-size: 13px; color: var(--text-mid); line-height: 1.65; margin-bottom: 18px;
}
.team-section .team-card::after {
    content: '';
    display: block; width: 32px; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold) 50%, transparent);
    margin: 16px auto 0; border-radius: 2px;
}
.team-section .team-no-guides {
    grid-column: 1/-1; text-align: center; padding: 56px 24px;
}
.team-section .team-no-guides .icon-container {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--cream-light); margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
}
.team-section .team-no-guides i {
    font-size: 32px; color: var(--text-light); opacity: 0.4;
}

/* =====================================================================
   NC PASSEIOS — DESIGN-MATCHED COMPONENTS (packages, hero stats,
   breadcrumb, tour detail, contact, about numbered grid)
   ===================================================================== */

/* ---- Hero stats row ---- */
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 8px;
}
.hero-stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  color: var(--white);
  line-height: 1;
}
.hero-stat__num .star { color: var(--gold); }
.hero-stat__label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* ---- Section header row (title + action, e.g. "Ver todos") ---- */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.section-head__intro { max-width: 560px; }
.section-head .section-label,
.section-head .section-title { text-align: left; margin-bottom: 4px; }
.section-head .section-title::after { display: none; }
.section-head p { font-size: 14px; color: var(--muted); }

/* ---- Package card (shared: homepage featured + packages grid) ---- */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pkg-card {
  background: var(--surface);
  border: 1px solid var(--slate);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.pkg-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.pkg-card__media {
  position: relative;
  height: 150px;
  overflow: hidden;
}
.pkg-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pkg-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(6,7,10,0.15) 0%, rgba(6,7,10,0.75) 100%);
}
.pkg-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(6,7,10,0.6);
  border: 1px solid rgba(205,173,62,0.4);
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.pkg-card__save {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--slate);
  background: rgba(6,7,10,0.55);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.pkg-card__save:hover { background: rgba(205,173,62,0.2); border-color: var(--gold); }
.pkg-card__body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pkg-card__eyebrow {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.pkg-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}
.pkg-card__desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}
.pkg-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--slate);
  gap: 12px;
}
.pkg-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--gold);
}
.pkg-card__price small {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  color: var(--muted);
}
.pkg-card__link {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.pkg-card__link:hover { color: var(--gold); }

@media (max-width: 900px) {
  .pkg-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 28px; }
}
@media (max-width: 620px) {
  .pkg-grid { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
}

/* ---- Packages page header + sort ---- */
.pkg-page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.pkg-page-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 8px;
}
.pkg-page-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  color: var(--muted);
}
.filter-bar.pkg-filter {
  display: flex;
  align-items: center;
  /* Left-aligned: the removed sort control's margin-left:auto used to do this,
     otherwise .filter-bar's centring takes over. */
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
/* ---- Dark pagination ---- */
.ncp-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.ncp-page {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--slate);
  background: var(--surface);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.ncp-page:hover { border-color: var(--gold); color: var(--white); }
.ncp-page--active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--obsidian);
}
.ncp-page--disabled { opacity: 0.35; pointer-events: none; }
.ncp-page--dots { border: none; background: none; }

/* =====================================================================
   TOUR DETAIL PAGE (design 03)
   ===================================================================== */
.td-hero {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: var(--surface);
}
.td-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.td-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,7,10,0.35) 0%, rgba(6,7,10,0.55) 60%, var(--obsidian) 100%);
}
.td-main { padding-top: 40px; }
.td-head { margin-bottom: 40px; }
.td-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(205,173,62,0.10);
  border: 1px solid rgba(205,173,62,0.4);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.td-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
}

.td-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.td-section { margin-bottom: 40px; }
.td-section__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}
.td-section p.td-lead { font-size: 14.5px; color: var(--muted); line-height: 1.8; }

/* Itinerary timeline */
.td-timeline { display: flex; flex-direction: column; }
.td-tl-item { display: flex; gap: 18px; padding-bottom: 26px; position: relative; }
.td-tl-item:last-child { padding-bottom: 0; }
.td-tl-marker { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.td-tl-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold);
  margin-top: 4px;
  box-shadow: 0 0 0 4px rgba(205,173,62,0.15);
}
.td-tl-line { width: 2px; flex: 1; background: var(--slate); margin-top: 6px; }
.td-tl-item:last-child .td-tl-line { display: none; }
.td-tl-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 4px;
}
.td-tl-activity { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.td-tl-note { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* Inclusions */

/* Booking card */
.td-book {
  position: sticky;
  top: 24px;
  background: var(--surface);
  border: 1px solid var(--slate);
  border-radius: 18px;
  padding: 26px 24px;
}
.td-book__from { font-size: 12px; color: var(--muted); margin-bottom: 2px; }
.td-book__price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.td-book__price small { font-family: var(--font-body); font-size: 12px; font-weight: 400; color: var(--muted); }
.td-book__rating { font-size: 12.5px; color: var(--muted); margin: 10px 0 20px; }
.td-book__rating .stars { color: var(--gold); }
.td-book label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.td-book .td-field { margin-bottom: 16px; }
.td-book input, .td-book select {
  width: 100%;
  background: var(--obsidian);
  border: 1px solid var(--slate);
  border-radius: 8px;
  padding: 11px 13px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13.5px;
  outline: none;
  transition: border-color 0.2s;
}
.td-book input:focus, .td-book select:focus { border-color: var(--gold); }
.td-book__submit {
  width: 100%;
  background: var(--gold);
  color: var(--obsidian);
  border: none;
  border-radius: 999px;
  padding: 14px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.td-book__submit:hover { background: var(--gold-light); transform: translateY(-2px); }

@media (max-width: 900px) {
  .td-grid { grid-template-columns: 1fr; }
  .td-book { position: static; }
  .td-title { font-size: 34px; }
}

/* =====================================================================
   ABOUT PAGE (design 04)
   ===================================================================== */
.abt-intro { padding-top: 48px; }
.abt-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}
.abt-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.abt-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 22px;
}
.abt-title .accent { color: var(--gold); }
.abt-text {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.abt-founder {
  position: relative;
  height: 300px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--slate);
  background: linear-gradient(135deg, #14161c 0%, #0b0d11 100%);
}
.abt-founder__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 12%; opacity: 0.95; }
/* Founder portrait: anchored to the right, resized to fill the card height. */
.abt-founder__portrait {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom right;
  z-index: 2;
}
.abt-founder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,7,10,0) 40%, rgba(6,7,10,0.85) 100%);
  z-index: 1;
}
.abt-founder__cap {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 3;
}
.abt-founder__cap strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
}
.abt-founder__cap span { font-size: 12px; color: var(--gold); }

/* Value cards */
.abt-vcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}
.abt-vcard {
  background: var(--surface);
  border: 1px solid var(--slate);
  border-top: 2px solid var(--gold);
  border-radius: 14px;
  padding: 28px 26px;
}
.abt-vcard__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(205,173,62,0.12);
  border: 1px solid rgba(205,173,62,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 20px;
}
.abt-vcard h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.abt-vcard h3 span { color: var(--gold); }
.abt-vcard p { font-size: 13.5px; color: var(--muted); line-height: 1.75; }

/* What defines us */
.abt-define-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 32px;
}
.abt-define-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--slate);
  border: 1px solid var(--slate);
  border-radius: 14px;
  overflow: hidden;
}
.abt-define-item {
  background: var(--obsidian);
  padding: 26px 28px;
  display: flex;
  gap: 18px;
}
.abt-define-item__num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
}
.abt-define-item h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.abt-define-item p { font-size: 13px; color: var(--muted); line-height: 1.65; }
/* Icon variant of the numeral slot — same optical width so rows stay aligned. */
.abt-define-item__num i { font-size: 17px; line-height: 1.4; }
.abt-define-item__num { min-width: 30px; }
/* Odd trailing value spans the full grid width rather than leaving a gap. */
.abt-define-item--wide { grid-column: 1 / -1; }

/* Photo credits table */
.credits-table-wrap {
  margin-top: 40px;
  overflow-x: auto;
  border: 1px solid var(--slate);
  border-radius: 14px;
}
.credits-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 13.5px;
}
.credits-table th {
  text-align: left;
  padding: 16px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--surface);
  border-bottom: 1px solid var(--slate);
  white-space: nowrap;
}
.credits-table td {
  padding: 15px 20px;
  color: var(--muted);
  border-bottom: 1px solid rgba(59,68,83,0.45);
  vertical-align: top;
}
.credits-table tbody tr:last-child td { border-bottom: none; }
.credits-table td:first-child { color: var(--white); font-weight: 600; }
.credits-table a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.credits-table a:hover,
.credits-table a:focus-visible { border-bottom-color: var(--gold); color: var(--gold-light); }

/* Company-profile blocks (who we are → commitment) */
.abt-block { margin-top: 72px; }
.abt-block > .abt-vcards { margin-bottom: 0; }
.abt-prose { max-width: 780px; }
.abt-prose .abt-text:last-child { margin-bottom: 0; }

/* Where we are */
.abt-bases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.abt-base {
  background: var(--surface);
  border: 1px solid var(--slate);
  border-left: 2px solid var(--gold);
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
}
.abt-base__flag { font-size: 26px; line-height: 1; display: block; margin-bottom: 14px; }
.abt-base h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.abt-base p { font-size: 13.5px; color: var(--muted); line-height: 1.75; }

/* What we do */
.abt-services {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
}
.abt-services li {
  position: relative;
  padding-left: 26px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
}
.abt-services li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

/* Our commitment */
.abt-commit {
  background: linear-gradient(135deg, #14161c 0%, #0b0d11 100%);
  border: 1px solid var(--slate);
  border-radius: 18px;
  padding: 44px 42px;
  box-shadow: var(--shadow-lg);
}
.abt-commit__lead {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 20px;
  max-width: 900px;
}
.abt-commit .abt-text { max-width: 780px; }
.abt-commit__cta { display: inline-block; margin-top: 12px; }

@media (max-width: 900px) {
  .abt-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .abt-vcards { grid-template-columns: 1fr; }
  .abt-define-grid { grid-template-columns: 1fr; }
  .abt-bases { grid-template-columns: 1fr; }
  .abt-services { grid-template-columns: 1fr; }
  .abt-block { margin-top: 56px; }
  .abt-commit { padding: 32px 24px; }
  .abt-commit__lead { font-size: 20px; }
}

/* =====================================================================
   CONTACT PAGE (design 05)
   ===================================================================== */
.ct-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 40px;
}
.ct-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}
.ct-card {
  background: var(--surface);
  border: 1px solid var(--slate);
  border-radius: 16px;
  padding: 30px 30px 34px;
}
.ct-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.ct-card__sub { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.ct-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ct-field { margin-bottom: 16px; }
.ct-field label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.ct-field input, .ct-field select, .ct-field textarea {
  width: 100%;
  background: var(--obsidian);
  border: 1px solid var(--slate);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13.5px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ct-field textarea { min-height: 110px; resize: vertical; line-height: 1.5; }
.ct-field input:focus, .ct-field select:focus, .ct-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(205,173,62,0.15);
}
.ct-submit {
  width: 100%;
  background: var(--gold);
  color: var(--obsidian);
  border: none;
  border-radius: 999px;
  padding: 14px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s, transform 0.15s;
}
.ct-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

.ct-info__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.ct-info__tag {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 26px;
}
.ct-item { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.ct-item__icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(205,173,62,0.10);
  border: 1px solid rgba(205,173,62,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}
.ct-item strong { display: block; font-size: 14px; color: var(--white); margin-bottom: 3px; }
.ct-item span { font-size: 13px; color: var(--muted); line-height: 1.5; }
.ct-map {
  margin-top: 8px;
  height: 150px;
  border-radius: 14px;
  border: 1px solid var(--slate);
  background: linear-gradient(135deg, #12161c 0%, #0b0d11 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
}
/* Inline field validation, mirroring the booking form's treatment. */
.ct-field input.error, .ct-field textarea.error {
  border-color: var(--error);
}
.ct-field input.error:focus, .ct-field textarea.error:focus {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(229,72,77,0.18);
}
.ct-error-msg {
  display: block;
  font-size: 11px;
  color: var(--error);
  margin-top: 4px;
  line-height: 1.4;
  min-height: 0;
}
.ct-error-msg:empty { display: none; }

.ct-form-error {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(229,72,77,0.10);
  border: 1px solid rgba(229,72,77,0.35);
  border-radius: 8px;
  color: var(--error);
  font-size: 13.5px;
  font-weight: 600;
}

.ct-success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(205,173,62,0.12);
  border: 1px solid rgba(205,173,62,0.35);
  border-radius: 8px;
  color: var(--gold);
  font-size: 13.5px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .ct-grid { grid-template-columns: 1fr; }
  .ct-row { grid-template-columns: 1fr; }
}

/* ── Marketing consent opt-in ──────────────────────────────────────────
   Shared by the contact, booking and registration forms so the wording and
   affordance are identical wherever consent is collected. */

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 4px;
  padding: 14px 16px;
  background: rgba(205,173,62,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.consent:hover {
  border-color: rgba(205,173,62,0.45);
  background: rgba(205,173,62,0.07);
}

.consent:has(.consent__box:focus-visible) {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(205,173,62,0.18);
}

.consent:has(.consent__box:checked) {
  border-color: rgba(205,173,62,0.55);
  background: rgba(205,173,62,0.09);
}

.consent__box {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}

.consent__box:active {
  transform: scale(0.92);
}

.consent__text {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-mid);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

.consent__note {
  display: block;
  margin-top: 4px;
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--text-light);
  opacity: 0.85;
}
