/* =========================================================
   NICOLE SAMUEL — PRIVATE TOUR GUIDE
   Design tokens: "logbook & stamps" system
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Work+Sans:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  /* Color */
  --limestone: #E8E1D3;
  --limestone-deep: #DCD3C0;
  --ink: #2B2A28;
  --ink-soft: #55524B;
  --olive: #6B7353;
  --olive-deep: #4E5540;
  --ochre: #B86B2A;
  --ochre-deep: #93551E;
  --indigo: #1F2D3D;
  --indigo-deep: #16212E;
  --paper: #FBF8F2;

  /* Type */
  --font-display: 'Fraunces', serif;
  --font-body: 'Work Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  /* Layout */
  --max-width: 1180px;
  --radius: 3px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  max-width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--limestone);
  color: var(--ink);
  line-height: 1.55;
  max-width: 100%;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0 0 0.4em 0;
  line-height: 1.1;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--ochre);
  outline-offset: 2px;
}

/* ---------- NAV ---------- */
.site-nav {
  background: var(--paper);
  border-bottom: 1px solid rgba(43,42,40,0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-top {
  background: var(--limestone-deep);
  border-bottom: 1px solid rgba(43,42,40,0.08);
}
@media (min-width: 821px) {
  .nav-top { display: none; }
}
.nav-top-inner {
  display: flex;
  justify-content: flex-end;
  padding-top: 5px;
  padding-bottom: 5px;
}
.nav-main {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.wordmark-group {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}
.ministry-logo {
  height: 30px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.wordmark {
  font-family: var(--font-display);
  font-size: 1.48rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.ta-nav-widget-mobile { display: none; }
.lang-flag {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  padding: 4px;
  border-radius: 6px;
}
.lang-flag img {
  display: block;
  width: 29px;
  height: 22px;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(43,42,40,0.12);
}
.lang-flag:hover {
  opacity: 0.75;
  transform: scale(1.08);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
  white-space: nowrap;
  flex-wrap: nowrap;
  flex-shrink: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav-links a:hover, .nav-links a:focus-visible {
  color: var(--ochre-deep);
  border-color: var(--ochre);}

/* Desktop: larger, bolder nav text for better legibility; the mobile-only
   "Close" bar at the bottom of the dropdown has no purpose here since the
   nav is always visible inline, not a toggled dropdown. */
@media (min-width: 821px) {
  .nav-links { font-size: 0.88rem; font-weight: 600; }
  .nav-close-item { display: none; }
}
.mobile-ministry-link { display: none; }
.mobile-nav-right { display: none; }
.mobile-single-flag { }
.hero-mobile-title { display: none; }
.hero-title-row { }
.hero-portrait { display: none; }

@media (max-width: 820px) {
  .nav-top-inner {
    display: flex;
    align-items: center;
    justify-content: initial;
  }
  .mobile-ministry-link {
    display: block;
    margin-left: -16px;
  }
  .mobile-ministry-logo { height: 30px; width: auto; display: block; }
  .lang-switch { display: none; }
  .ta-nav-widget-mobile {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    margin-left: auto;
    margin-right: 8px;
  }
  .mobile-nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .mobile-single-flag {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }
  .mobile-single-flag img {
    display: block;
    width: 29px;
    height: 22px;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(43,42,40,0.12);
  }
  .ta-nav-widget {
    display: none !important;
  }
  .nav-main {
    padding-top: 0;
    padding-bottom: 0;
  }
  .nav-main .wordmark-group { display: none; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid rgba(43,42,40,0.1);
    display: none;
  }
  .nav-links.open { display: flex; z-index: 51; }
  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 49;
  }
  .nav-links.open ~ .nav-backdrop {
    display: block;
  }
  .nav-links a { display: block; padding: 14px 28px; border-bottom: 1px solid rgba(43,42,40,0.06); }
  .nav-close-item { border-bottom: none; }
  .nav-close-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--limestone-deep);
    border: none;
    padding: 14px 28px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--ink-soft);
    cursor: pointer;
  }
  .hero-title-row {
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    position: relative;
  }
  .hero-mobile-title {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--paper);
    margin-bottom: 0;
  }
  .hero-portrait {
    display: block;
    width: 62%;
    max-width: 280px;
    height: auto;
    margin: 0 0 12px -28px;
  }
  .hero {
    min-height: 100vh;
    align-items: stretch;
  }
  .hero-content {
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .hero-actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin-top: auto;
    padding-bottom: 8px;
  }
  .hero-actions .btn {
    font-size: 0.78rem;
    padding: 10px 12px;
    gap: 5px;
    white-space: nowrap;
  }
}

/* ---------- NAV RIGHT (our own TripAdvisor badge + pulsing review count) ---------- */
.ta-nav-widget {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 4px;
  min-width: 0;
}
.ta-logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
}
.ta-logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #00AF87;
  flex-shrink: 0;
}
.ta-logo-img {
  height: 18px !important;
  width: 18px !important;
  max-width: 18px !important;
  display: block;
  flex-shrink: 0;
}
.ta-stars {
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 1px;
  color: #00AF87;
  flex-shrink: 0;
}
.ta-reviews-cta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--olive-deep);
  white-space: nowrap;
  animation: ta-pulse 1.8s ease-in-out infinite;
}
@keyframes ta-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
@media (prefers-reduced-motion: reduce) {
  .ta-reviews-cta { animation: none; }
}

@media (max-width: 1080px) and (min-width: 821px) {
  .ministry-logo { display: none; }
}

@media (max-width: 640px) {
  .ta-logo-badge { width: 24px; height: 24px; }
  .ta-logo-img { height: 15px !important; width: 15px !important; max-width: 15px !important; }
  .ta-reviews-cta { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  background: var(--indigo);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.02);
}
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,45,61,0.15) 0%, rgba(31,45,61,0.75) 78%, rgba(31,45,61,0.92) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  color: var(--paper);
  padding: 60px 0 56px;
  max-width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D9CBA9;
  margin-bottom: 14px;
  display: inline-block;
}
.hero h1 {
  font-size: clamp(1.1rem, 4.6vw, 3.3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--paper);
  white-space: nowrap;
}
html[lang="fr"] .hero h1 {
  font-size: clamp(0.85rem, 3.6vw, 2.5rem);
}
.hero p {
  font-size: 1.1rem;
  color: #E7DFCE;
  max-width: 52ch;
  margin-top: 14px;
}
.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ochre); color: var(--paper); }
.btn-primary:hover { background: var(--ochre-deep); }
.btn-outline { background: transparent; color: var(--paper); border-color: rgba(251,248,242,0.5); }
.btn-outline:hover { background: rgba(251,248,242,0.12); }
/* ---------- SECTION HEADERS ---------- */
.section { padding: 64px 0; }
.section-indigo { background: var(--indigo); color: var(--paper); }
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}
.section-header h2 { font-size: 1.9rem; }
.section-indigo .section-header h2 { color: var(--paper); }

/* ---------- COLLAPSIBLE TOUR CHAPTERS (mobile) ---------- */
.tour-chapter { }
summary.section-header {
  cursor: default;
  list-style: none;
  align-items: center;
  gap: 16px;
}
summary.section-header::-webkit-details-marker { display: none; }
.chapter-thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  display: none;
}
.chapter-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.chapter-summary-text { flex: 1 1 auto; min-width: 0; }
.chapter-cta {
  display: none;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ochre-deep);
  background: rgba(184,107,42,0.12);
  padding: 7px 14px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.section-indigo .chapter-cta { color: var(--paper); background: rgba(251,248,242,0.16); }
.chapter-close-btn { display: none; }

@media (max-width: 820px) {
  summary.section-header { cursor: pointer; }
  summary.section-header.chapter-summary {
    flex-direction: column;
    align-items: flex-start;
  }
  .chapter-summary-text { order: 1; }
  .chapter-thumb {
    display: block;
    order: 2;
    width: 100%;
    height: 160px;
    margin: 10px 0;
  }
  .chapter-cta {
    display: inline-block;
    order: 3;
  }

  /* When a chapter is open, it becomes its own fixed full-screen panel
     directly below the nav — completely independent of the page's own
     scroll, so there's no gap or dead zone for scrolling to leak through
     into other chapters. Its title stays pinned at the top of that panel
     (sticky within it), with a small version of the photo alongside. */
  .tour-chapter[open] {
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: var(--limestone);
    margin: 0;
    padding: 0 28px 24px;
  }
  .section-indigo .tour-chapter[open] {
    background: var(--indigo);
  }
  .tour-chapter[open] > summary.chapter-summary {
    position: sticky;
    top: 0;
    z-index: 10;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    margin: 0 -28px;
    padding-left: 28px;
    padding-right: 28px;
    background: inherit;
  }
  .tour-chapter[open] > summary.chapter-summary .chapter-thumb {
    order: 0;
    width: 46px;
    height: 46px;
    margin: 0;
    border-radius: 8px;
    flex-shrink: 0;
  }
  .tour-chapter[open] > summary.chapter-summary .chapter-summary-text {
    order: 1;
  }
  .tour-chapter[open] > summary.chapter-summary .chapter-summary-text h2 {
    font-size: 1.3rem;
  }
  .tour-chapter[open] > summary.chapter-summary .chapter-cta {
    display: none;
  }
  .tour-chapter[open] > summary.chapter-summary .chapter-close-btn {
    display: flex;
    order: 2;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    margin-left: auto;
    border-radius: 50%;
    border: none;
    background: rgba(43,42,40,0.08);
    color: var(--ink);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
  }
  .section-indigo .tour-chapter[open] > summary.chapter-summary .chapter-close-btn {
    background: rgba(251,248,242,0.16);
    color: var(--paper);
  }
}

.section-kicker {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ochre-deep);
}
.section-indigo .section-kicker { color: #E3A46B; }

/* ---------- TOUR CARDS (logbook / stamp) ---------- */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 26px;
}
@media (max-width: 820px) {
  .tour-grid { gap: 12px; }
  .tour-chapter[open] > .tour-grid {
    display: flex;
    flex-direction: column;
  }
  .tour-chapter[open] > .tour-grid .tour-card {
    flex-shrink: 0;
  }
}
.tour-card {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 2px 10px rgba(43,42,40,0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: flex;
  flex-direction: column;
}
.tour-card:hover, .tour-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(43,42,40,0.16);
}
.tour-card .photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.tour-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.tour-card-more {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(43,42,40,0.72);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.tour-card .body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.tour-card h3 { font-size: 1.12rem; margin-bottom: 6px; }
.tour-card .caption { font-size: 0.92rem; color: var(--ink-soft); flex: 1; }

/* ---------- TESTIMONIALS (scrapbook) ---------- */
.scrapbook {
  columns: 4 220px;
  column-gap: 18px;
}
.scrapbook figure {
  margin: 0 0 18px;
  break-inside: avoid;
  background: var(--paper);
  padding: 10px 10px 14px;
  border-radius: var(--radius);
  box-shadow: 0 3px 10px rgba(43,42,40,0.1);
  transform: rotate(-1.4deg);
}
.scrapbook figure:nth-child(3n) { transform: rotate(1.6deg); }
.scrapbook figure:nth-child(4n) { transform: rotate(-0.6deg); }
.scrapbook figure img {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
}
.scrapbook figcaption {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 8px;
}

/* ---------- CONTACT DESK ---------- */
.contact-desk {
  background: var(--indigo);
  color: var(--paper);
  scroll-margin-top: 100px;
  padding-top: 36px;
}
.contact-desk .section-header { margin-bottom: 20px; }
.contact-desk .container { position: relative; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
  .scrapbook { columns: 2 160px; }
}
@media (max-width: 640px) {
  .contact-method {
    flex-wrap: wrap;
    row-gap: 2px;
    font-size: 0.85rem;
  }
  .contact-method a { word-break: normal; overflow-wrap: normal; }
  .tripadvisor-badge {
    font-size: 0.8rem;
    padding: 12px 16px;
    gap: 8px;
  }
}
.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}
.contact-methods { display: flex; flex-direction: column; gap: 26px; }
.contact-method {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono); font-size: 1rem;
}
.contact-method a { text-decoration: none; border-bottom: 1px dotted rgba(251,248,242,0.5); }
.contact-method-emails { align-items: flex-start; }
.contact-emails {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: none !important;
}
.whatsapp-icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}
.whatsapp-cta span { border-bottom: 1px dotted rgba(251,248,242,0.5); }
.tripadvisor-badge {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  background: rgba(251,248,242,0.08);
  border: 1px solid rgba(251,248,242,0.25);
  padding: 16px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--paper);
  font-size: 0.92rem;
}
.tripadvisor-badge:hover { background: rgba(251,248,242,0.16); }
.tripadvisor-badge .ta-mark { color: #34E0A1; font-weight: 700; font-family: var(--font-display); }
.tripadvisor-badge .ta-badge-text { white-space: nowrap; }

.contact-form { background: var(--paper); color: var(--ink); border-radius: var(--radius); padding: 0 20px 20px; min-width: 0; width: 100%; }
.contact-form label { display: block; font-size: 0.82rem; margin: 14px 0 6px; color: var(--ink-soft); }
.contact-form label:first-of-type { margin-top: 0; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; min-width: 0; padding: 10px; border: 1px solid rgba(43,42,40,0.2); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.95rem; background: #fff;
}
.contact-form textarea { min-height: 76px; }
.contact-form button { margin-top: 14px; width: 100%; justify-content: center; }
.form-note { font-size: 0.78rem; color: var(--ink-soft); margin-top: 8px; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--indigo-deep);
  color: rgba(251,248,242,0.7);
  font-size: 0.88rem;
}
.site-footer .container { padding: 30px 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.site-footer a { text-decoration: none; color: rgba(251,248,242,0.85); }
.site-footer a:hover { text-decoration: underline; }

/* ---------- TOUR DETAIL PAGE ---------- */
.tour-header {
  background: var(--indigo);
  color: var(--paper);
  padding: 46px 0 40px;
}
.tour-header .container { position: relative; }
.tour-header .section-kicker { color: #E3A46B; }
.tour-header h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }

/* Used on About / Prices / Testimonials — same background as the rest of the
   page (no separate dark bar), and the title sits close to the content below
   rather than being visually cut off from it. */
.tour-header-plain {
  background: var(--limestone);
  color: var(--ink);
  padding: 40px 0 4px;
}
.tour-header-plain .section-kicker { color: var(--ochre-deep); }
.tour-header-plain h1 { color: var(--ink); }
.tour-header-plain + .section { padding-top: 8px; }
.tour-header-plain .page-menu-toggle,
.tour-header-plain .page-home-icon {
  color: var(--ink);
}
.about-welcome {
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-align: center;
  color: var(--ochre-deep);
  margin-bottom: 24px;
}
.tour-itinerary {
  max-width: 68ch;
  font-size: 1.03rem;
  line-height: 1.75;
  color: var(--ink);
}
.tour-itinerary strong { color: var(--ochre-deep); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(43,42,40,0.08);
}
.gallery-item img { aspect-ratio: 4/3; object-fit: cover; }
.gallery-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(31,45,61,0.88), rgba(31,45,61,0));
  color: var(--paper);
  padding: 26px 14px 12px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

/* ---------- FLOATING FLASH VIDEO (desktop only) ---------- */
.hero-container {
  position: relative;
}
.flash-video {
  position: absolute;
  top: 50%;
  right: 90px;
  transform: translateY(-50%);
  z-index: 20;
  width: 260px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.32);
  background: #000;
  animation: flash-video-in 0.5s ease-out;
}
.flash-video video {
  display: block;
  width: 100%;
  height: auto;
}
.flash-video-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flash-video-close:hover { background: rgba(0,0,0,0.8); }

@keyframes flash-video-in {
  from { transform: translateY(-50%) translateX(24px); opacity: 0; }
  to { transform: translateY(-50%) translateX(0); opacity: 1; }
}

/* Desktop only, per request — hidden on smaller/touch screens */
@media (max-width: 900px) {
  .flash-video { display: none; }
}

/* ---------- ANNOUNCEMENT SPLASH ---------- */
/* Small floating card, NOT a full-screen takeover — positioned low enough
   that the header and top of the hero stay visible around it, inviting
   the visitor to explore rather than blocking the page. No dark backdrop. */
.announcement-splash {
  position: fixed;
  top: 48vh;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;
  max-width: 380px;
  max-height: 38vh;
  overflow-y: auto;
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(0,0,0,0.28);
  padding: 22px 24px 20px;
  z-index: 60;
  animation: announcement-in 0.35s ease-out;
}
.announcement-splash-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 4px 8px;
}
.announcement-splash-close:hover { color: var(--ink); }
.announcement-splash-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ochre-deep);
  font-weight: 700;
  margin-bottom: 8px;
}
.announcement-splash p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  padding-right: 14px;
}

@keyframes announcement-in {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@media (max-width: 480px) {
  .announcement-splash { top: 44vh; max-width: 92%; padding: 18px 20px 16px; }
}

/* ---------- PRICES PAGE ---------- */
.prices-page-table {
  width: 100%;
  border-collapse: collapse;
}
.prices-page-table tr { border-bottom: 1px solid rgba(43,42,40,0.1); }
.prices-page-table tr:last-child { border-bottom: none; }
.prices-page-table td { padding: 14px 8px; font-size: 0.98rem; }
.prices-page-table .price-label { font-weight: 600; }
.prices-page-table .price-amount {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--ochre-deep);
  white-space: nowrap;
}
.prices-page-table .price-unit { color: var(--ink-soft); font-size: 0.88rem; }

/* ---------- PAGE-LEVEL MENU/HOME BUTTONS (mobile only, top-right of each page's own main section) ---------- */
.page-menu-toggle { display: none; }
.page-home-icon { display: none; }
.page-back-button { display: none; }
@media (min-width: 821px) {
  .page-back-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: absolute;
    top: -32px;
    left: 0;
    color: var(--paper);
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
  }
  .page-back-button::before { content: "\2190"; font-size: 1.1rem; }
  .tour-header-plain .page-back-button { color: var(--ink); }
}
@media (max-width: 820px) {
  .page-menu-toggle {
    display: inline-block;
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    padding: 0;
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--paper);
    cursor: pointer;
    z-index: 2;
  }
  .page-back-button {
    display: inline-block;
    position: fixed;
    top: 52px;
    right: 24px;
    background: none;
    border: none;
    padding: 0;
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--paper);
    text-decoration: none;
    cursor: pointer;
    z-index: 45;
  }
  .page-home-icon {
    display: inline-flex;
    align-items: center;
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--paper);
    z-index: 2;
  }
  .page-home-icon svg { width: 22px; height: 22px; }
}

/* ---------- LAST-MINUTE CARD DESCRIPTION + ASK LINK ---------- */
.lastminute-desc {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 10px 0 14px;
  line-height: 1.5;
}
.lastminute-ask-link {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ochre-deep);
  text-decoration: none;
  border-bottom: 1px dotted var(--ochre);
}
.lastminute-ask-link:hover { color: var(--ochre); }

/* ---------- SOCIAL ICONS TOGGLE + REVEAL PANEL (mobile) ---------- */
.social-toggle-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  line-height: 0;
  z-index: 3;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  overflow: visible;
}
.social-toggle-btn img {
  height: 35px;
  width: 35px;
  display: block;
  border-radius: 0;
}
.social-panel {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transform: translateX(45px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
  pointer-events: none;
}
.social-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: auto;
}
.social-panel-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-top: 4px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--ochre);
  font-size: 3.2rem;
  line-height: 1;
  cursor: pointer;
}
.social-panel-icon {
  display: block;
  width: 35px;
  height: 35px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
}
.social-panel-icon img { width: 100%; height: 100%; display: block; object-fit: cover; }

@media (min-width: 821px) {
  .social-toggle-btn { display: none; }
  .social-panel { display: none !important; }
}
