@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@400;500;600;700&display=swap');

/* ─── RESET & BASE ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #ffffff;
  --black: #0a0a0a;
  --gray-50:  #f9f9f9;
  --gray-100: #f0f0f0;
  --gray-300: #c8c8c8;
  --gray-500: #8a8a8a;
  --gray-700: #4a4a4a;
  --accent:   #1a6b4a;
  --accent-hover: #145639;
  --danger:   #c0392b;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --max-w: 1100px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html { font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

/* ─── LAYOUT ────────────────────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
main { flex: 1; }

/* ─── NAV ───────────────────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--accent);
}

.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-links { display: flex; gap: 1.5rem; }
.nav-links a { font-size: 0.9rem; color: var(--gray-700); }
.nav-links a:hover { color: var(--black); }

/* ─── LANG SWITCHER ─────────────────────────────────────────────────────────── */
.lang-switcher { position: relative; }

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  padding: 0.3rem 0.65rem;
  font-size: 0.85rem;
  font-family: inherit;
  color: var(--gray-700);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s, color 0.15s;
}
.lang-btn:hover { border-color: var(--gray-700); color: var(--black); }
.lang-chevron { font-size: 0.65rem; opacity: 0.55; }

.lang-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  min-width: 148px;
  z-index: 200;
  overflow: hidden;
}
.lang-dropdown.open { display: block; }
.lang-dropdown button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  font-family: inherit;
  background: none;
  border: none;
  color: var(--gray-700);
  cursor: pointer;
}
.lang-dropdown button:hover { background: var(--gray-50); color: var(--black); }

/* ─── HERO ──────────────────────────────────────────────────────────────────── */
.hero {
  padding: 1.5rem 0;
  text-align: center;
  color: var(--white);
}

.hero-inner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  width: 100%;
  height: clamp(300px, 45vw, 460px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-carousel {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-color: var(--gray-300);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide:nth-child(1) { background-color: var(--gray-500); }
.hero-slide:nth-child(2) { background-color: var(--gray-700); }
.hero-slide:nth-child(3) { background-color: var(--black); }
.hero-slide:nth-child(4) { background-color: var(--accent); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.50) 50%,
    rgba(0,0,0,0.30) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 1.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.65);
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
}

.hero-subtitle {
  margin-top: 1rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray-100);
}

.hero-description {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: #bfeefd;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero-dots {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 1;
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.7);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.15s;
}

.hero-dot.active { background: var(--white); }

/* ─── SECTION TITLES ────────────────────────────────────────────────────────── */
.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  text-align: center;
}

/* ─── CATALOG ───────────────────────────────────────────────────────────────── */
.catalog { padding: 3.5rem 0; }

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 350px));
  gap: 1.5rem;
  justify-content: center;
}

.tour-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.15s, box-shadow 0.15s;
  background: var(--white);
}

.tour-card:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(0,0,0,0.1); }

.tour-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--gray-100);
}

.tour-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  font-size: 2.5rem;
}

.tour-card-body { padding: 1.25rem; }

.tour-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.tour-card-desc {
  font-size: 0.875rem;
  color: var(--gray-700);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: var(--gray-500);
}

.tour-card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--gray-100);
  color: var(--gray-700);
}

.badge-unavailable {
  background: #fef3cd;
  color: #856404;
}

/* ─── BUTTONS ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  transition: background 0.15s, opacity 0.15s;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-primary:disabled { opacity: 0.55; cursor: not-allowed; }

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--white); }

.btn-danger {
  background: var(--danger);
  color: var(--white);
}
.btn-danger:hover { opacity: 0.85; }

.btn-full { width: 100%; text-align: center; }

/* ─── TOUR DETAIL ───────────────────────────────────────────────────────────── */
.tour-detail { padding: 2.5rem 0 4rem; }

.tour-hero-img {
  width: 100%;
  height: clamp(240px, 45vw, 480px);
  object-fit: cover;
}

.tour-hero-placeholder {
  width: 100%;
  height: clamp(240px, 45vw, 480px);
  background: var(--gray-100);
}

.tour-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .tour-detail-grid { grid-template-columns: 1fr 380px; }
}

.tour-main h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--gray-700);
}

.tour-section { margin-bottom: 2rem; }
.tour-section h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; }
.tour-section p { color: var(--gray-700); font-size: 0.925rem; }

/* ─── GALLERY ───────────────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.6rem;
}

.gallery-thumb {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ─── BOOKING WIDGET ────────────────────────────────────────────────────────── */
.booking-widget {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: 80px;
}

.booking-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.booking-price span { font-size: 0.9rem; font-weight: 400; color: var(--gray-500); }

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group select,
.form-group input {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 0.925rem;
  background: var(--white);
  transition: border-color 0.15s;
}

.form-group select:focus,
.form-group input:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group select:disabled { background: var(--gray-50); color: var(--gray-500); }

.booking-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-top: 1px solid var(--gray-100);
  margin: 1rem 0;
  font-weight: 700;
  font-size: 1.05rem;
}

.cancel-policy-note {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
  text-align: center;
}

/* Stripe Elements */
#card-element {
  padding: 0.6rem 0.75rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.15s;
}

#card-element.StripeElement--focus { border-color: var(--accent); }
#card-element.StripeElement--invalid { border-color: var(--danger); }

#card-errors {
  color: var(--danger);
  font-size: 0.825rem;
  margin-top: 0.4rem;
  min-height: 1.2em;
}

/* ─── CONFIRMATION ──────────────────────────────────────────────────────────── */
.confirmation-page, .cancel-page {
  max-width: 600px;
  margin: 4rem auto;
  padding: 0 1.25rem;
  text-align: center;
}

.confirmation-page h1, .cancel-page h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.confirmation-box, .cancel-box {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin: 1.5rem 0;
  text-align: left;
  box-shadow: var(--shadow);
}

.confirmation-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
}

.confirmation-row:last-child { border-bottom: none; }
.confirmation-row .label { color: var(--gray-500); }
.confirmation-row .value { font-weight: 600; }

/* ─── FOOTER ────────────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--gray-100);
  padding: 2.5rem 0 2rem;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  opacity: 0.55;
  filter: brightness(0);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

footer a { color: var(--accent); }
footer a:hover { text-decoration: underline; }

.footer-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-icon-link {
  display: flex;
  align-items: center;
  color: var(--gray-500);
  transition: color 0.15s;
}
.footer-icon-link:hover { color: var(--black); text-decoration: none; }
.footer-terms { font-size: 0.85rem; color: var(--gray-500); }
.footer-terms:hover { color: var(--black); }

/* ─── ALERTS ────────────────────────────────────────────────────────────────── */
.alert {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin: 1rem 0;
}
.alert-success { background: #d4edda; color: #155724; }
.alert-error   { background: #f8d7da; color: #721c24; }
.alert-info    { background: #d1ecf1; color: #0c5460; }

/* ─── LOADING ───────────────────────────────────────────────────────────────── */
.spinner {
  width: 2rem; height: 2rem;
  border: 3px solid var(--gray-100);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 2rem auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

.loading { text-align: center; color: var(--gray-500); padding: 3rem 0; }

/* ─── HOME: NAV TRANSPARENT ─────────────────────────────────────────────────── */
.home-page nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease;
}
.home-page nav.scrolled {
  background: var(--white);
  border-bottom-color: var(--gray-100);
}
.nav-logo { transition: color 0.35s ease; }
.home-page nav:not(.scrolled) .nav-logo { color: var(--white); }
.home-page nav.scrolled .nav-logo { color: var(--black); }
.nav-logo-img { filter: brightness(0); }
.home-page nav:not(.scrolled) .nav-logo-img { filter: brightness(0) invert(1); }
.home-page nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.88); }
.home-page nav:not(.scrolled) .nav-links a:hover { color: var(--white); }
.home-page nav:not(.scrolled) .lang-btn {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.home-page nav:not(.scrolled) .lang-btn:hover {
  border-color: rgba(255,255,255,0.85);
  color: var(--white);
}
.home-page nav:not(.scrolled) .lang-chevron { opacity: 0.65; }

/* ─── HOME: HERO FULL BLEED ─────────────────────────────────────────────────── */
.home-page .hero { padding: 0; }

.home-page .hero .container {
  max-width: none;
  padding: 0;
}
.home-page .hero-inner {
  height: 100vh;
  min-height: 600px;
  border-radius: 0;
}
.home-page .hero-content {
  background: rgba(12, 8, 4, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 0.8rem 2.5rem;
  max-width: 620px;
  text-shadow: none;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo-img {
  height: 30px;
  width: auto;
  display: block;
  object-fit: contain;
}
.home-page .hero-subtitle {
  margin-top: 0.85rem;
  color: rgba(255, 249, 201, 0.97);
}
.home-page .hero-description {
  margin-top: 0.75rem;
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
}

.hero-divider {
  width: 52px;
  height: 2px;
  background: #c9a96e;
  margin: 0.9rem auto 0;
}

/* ─── HOME: CATALOG ─────────────────────────────────────────────────────────── */
.home-page .catalog {
  background: #f5f0e8;
  padding: 3.5rem 0 4.5rem;
}

.catalog-ornament {
  text-align: center;
  padding: 3.5rem 1.25rem 2.5rem;
}
.catalog-ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.ornament-line {
  display: block;
  width: 70px;
  height: 1px;
  background: #c9a96e;
}
.hero-logo {
  display: block;
  height: 216px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.hero-divider { margin-top: 0.2rem; }

.ornament-logo {
  height: 108px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
}
.catalog-ornament-text {
  font-size: 0.95rem;
  color: #6b5f53;
  font-style: italic;
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── HOME: ANCHOR SCROLL OFFSET (nav fixed) ────────────────────────────────── */
.home-page #catalog,
.home-page #faq { scroll-margin-top: 68px; }

/* ─── FAQ SECTION ────────────────────────────────────────────────────────────── */
.faq-section {
  padding: 4rem 0 6rem;
  background: var(--white);
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-item:first-child { border-top: 1px solid var(--gray-100); }
.faq-question-btn {
  display: flex;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.2rem 0;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: inherit;
  line-height: 1.4;
  transition: color 0.15s;
}
.faq-question-btn:hover { color: var(--accent); }
.faq-chevron-icon {
  font-size: 0.75rem;
  flex-shrink: 0;
  color: var(--gray-500);
  transition: transform 0.25s ease;
}
.faq-item.open .faq-chevron-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 0 1.25rem;
  font-size: 0.925rem;
  color: var(--gray-700);
  line-height: 1.75;
}

/* ─── HOME: TOUR CARDS REDESIGN ─────────────────────────────────────────────── */
.home-page .tour-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 18px rgba(0,0,0,0.07);
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.home-page .tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.tour-card-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}
.home-page .tour-card-img {
  height: 235px;
  border-radius: 0;
  transition: transform 0.4s ease;
}
.home-page .tour-card:hover .tour-card-img { transform: scale(1.04); }
.home-page .tour-card-img-placeholder { height: 235px; border-radius: 0; }
.home-page .tour-card-body {
  padding: 1.35rem 1.35rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.home-page .tour-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 0.45rem;
}
.home-page .tour-card-meta {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
}
.meta-sep { color: var(--gray-300); }
.home-page .tour-card-desc {
  font-size: 0.875rem;
  color: var(--gray-700);
  flex: 1;
  margin-bottom: 1.25rem;
}
.home-page .tour-card-price {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0;
}
.tour-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tour-card-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: background 0.2s;
}
.home-page .tour-card:hover .tour-card-arrow { background: var(--accent); }

/* ─── TOUR PAGE: NAV ────────────────────────────────────────────────────────── */
.tour-page .nav-logo { color: var(--black); }

/* ─── TOUR PAGE: PHOTO MOSAIC ───────────────────────────────────────────────── */
.tour-mosaic {
  display: grid;
  grid-template-columns: 3fr 2fr;
  height: 520px;
  gap: 3px;
}
.mosaic-single { grid-template-columns: 1fr; }

.mosaic-main {
  position: relative;
  overflow: hidden;
}
.mosaic-main img,
.mosaic-placeholder {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  background: var(--gray-100);
}
.mosaic-gradient {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, transparent 100%);
  pointer-events: none;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}
.mosaic-cell {
  overflow: hidden;
  position: relative;
  background: var(--gray-100);
}
.mosaic-cell img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.3s ease;
}
.mosaic-cell:hover img { transform: scale(1.04); }
.mosaic-empty { background: var(--gray-50); }

.mosaic-more .mosaic-img { filter: brightness(0.5); }
.mosaic-more-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: none; cursor: pointer;
  color: var(--white); font-family: inherit;
}
.mosaic-more-label {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ─── BOOKING CALENDAR ──────────────────────────────────────────────────────── */
.booking-cal {
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 0.6rem 0.5rem;
  user-select: none;
}
.bcal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding: 0 0.15rem;
}
.bcal-btn {
  background: none;
  border: 1px solid var(--gray-200);
  border-radius: 5px;
  width: 26px; height: 26px;
  font-size: 1rem;
  color: var(--gray-700);
  cursor: pointer;
  line-height: 1; padding: 0;
  transition: background 0.12s;
}
.bcal-btn:hover:not(:disabled) { background: var(--gray-100); }
.bcal-btn:disabled { opacity: 0.3; cursor: default; }
.bcal-month { font-size: 0.82rem; font-weight: 600; }
.bcal-grid-header,
.bcal-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.bcal-grid-header span {
  font-size: 0.67rem; color: var(--gray-400);
  font-weight: 600; text-align: center; padding: 3px 0;
}
.bcal-day {
  text-align: center; padding: 6px 1px;
  font-size: 0.8rem; border-radius: 5px; line-height: 1.3;
}
.bcal-available { cursor: pointer; font-weight: 600; }
.bcal-available:hover { background: var(--gray-100); }
.bcal-unavailable { color: var(--gray-300); }
.bcal-selected { background: var(--accent) !important; color: var(--white) !important; }

/* ─── MOBILE ────────────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .hero { padding: 1rem 0; }
  .catalog { padding: 2.5rem 0; }
  .tours-grid { grid-template-columns: 1fr; }
  .booking-widget { position: static; }
  .nav-links { gap: 1rem; }
  .home-page .hero-content {
    padding: 0.8rem 1.5rem;
    width: calc(100% - 2.5rem);
    max-width: none;
    border-radius: 12px;
  }
  .catalog-ornament { padding: 2.5rem 1.25rem 1.75rem; }
  .ornament-line { width: 40px; }
  .tour-mosaic {
    grid-template-columns: 1fr;
    height: auto;
  }
  .mosaic-main { height: 260px; }
  .mosaic-grid { height: 160px; grid-template-columns: repeat(4, 1fr); grid-template-rows: 1fr; }
}
