/* ==========================================================================
   Cypress Bush Explorers
   Palette from the logo (terracotta sun, cypress green) on warm paper.
   Type: Fraunces (display) + Instrument Sans (text). Bootstrap handles grid,
   offcanvas and dropdowns; everything visual is defined here.
   ========================================================================== */

:root {
  --paper: #fbf7ef;
  --paper-2: #f4ecdd;
  --paper-3: #eadfca;
  --white: #ffffff;
  --ink: #1f1c17;
  --ink-2: #3b362e;
  --muted: #6b6357;
  --line: #e3d7c1;
  --line-strong: #cfc0a5;
  --forest: #123524;
  --forest-2: #1b4a33;
  --forest-deep: #0d271a;
  --leaf: #0e6b3b;
  --clay: #a84f17;
  --clay-2: #8c4012;
  --ochre: #e8893a;
  --sun: #f3b36b;
  --wa: #1f9d55;
  --wa-2: #178246;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Instrument Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow-soft: 0 1px 2px rgba(31, 28, 23, 0.06), 0 8px 24px rgba(31, 28, 23, 0.06);
  --shadow-lift: 0 2px 4px rgba(31, 28, 23, 0.06), 0 18px 40px rgba(31, 28, 23, 0.12);
  --header-h: 76px;
  --section-y: clamp(3rem, 5.5vw, 4.75rem);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);

  /* Bootstrap overrides */
  --bs-body-font-family: var(--font-body);
  --bs-body-font-size: 1.0625rem;
  --bs-body-line-height: 1.65;
  --bs-body-color: var(--ink);
  --bs-body-bg: var(--paper);
  --bs-border-color: var(--line);
  --bs-link-color: var(--clay);
  --bs-link-color-rgb: 168, 79, 23;
  --bs-link-hover-color: var(--clay-2);
  --bs-link-hover-color-rgb: 140, 64, 18;
  --bs-emphasis-color: var(--ink);
  --bs-secondary-color: var(--muted);
  --bs-gutter-x: 1.75rem;
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01";
}

img { max-width: 100%; height: auto; }

h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-optical-sizing: auto;
}
h1 { line-height: 1.04; }
h2, h3 { line-height: 1.12; }
h5, h6 { font-family: var(--font-body); font-weight: 600; }

p { margin-bottom: 1.1em; }
a { text-underline-offset: 0.18em; text-decoration-thickness: 1px; }
::selection { background: var(--sun); color: var(--ink); }

:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; border-radius: 2px; }

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 2000;
  background: var(--ink); color: var(--paper); padding: 0.6rem 1rem; border-radius: var(--radius-sm);
  text-decoration: none; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

.container { max-width: 1240px; }
.container-narrow { max-width: 760px; margin-inline: auto; padding-inline: calc(var(--bs-gutter-x) * 0.5); }

/* ---------- Type helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.eyebrow--plain::before { display: none; }
.on-dark .eyebrow, .eyebrow--light { color: var(--sun); }

.display-xl { font-size: clamp(2.75rem, 6.4vw, 5.25rem); line-height: 1; letter-spacing: -0.025em; }
.display-lg { font-size: clamp(2.25rem, 4.6vw, 3.75rem); letter-spacing: -0.02em; }
.display-md { font-size: clamp(1.9rem, 3.4vw, 2.75rem); }
.display-sm { font-size: clamp(1.5rem, 2.4vw, 1.9rem); }
.lead-text { font-size: clamp(1.1rem, 1.5vw, 1.25rem); line-height: 1.6; color: var(--ink-2); }
.text-muted-2 { color: var(--muted) !important; }
.serif-italic { font-family: var(--font-display); font-style: italic; }
.small-caps { font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.measure { max-width: 62ch; }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.25rem, 4vw, 3.25rem); }
.section--sand { background: var(--paper-2); }
.section--forest { background: var(--forest); color: rgba(251, 247, 239, 0.86); }
.section--forest h1, .section--forest h2, .section--forest h3, .section--forest h4 { color: var(--paper); }
.section-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: clamp(1.5rem, 3vw, 2.25rem); }
.section-head > div { max-width: 640px; }
.section-head h2 { margin-bottom: 0.5rem; }
.section-head p { color: var(--muted); margin: 0; }

.rule { border: 0; border-top: 1px solid var(--line); opacity: 1; margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  --bs-btn-font-family: var(--font-body);
  --bs-btn-font-weight: 600;
  --bs-btn-font-size: 0.975rem;
  --bs-btn-padding-x: 1.35rem;
  --bs-btn-padding-y: 0.8rem;
  --bs-btn-border-radius: var(--radius-sm);
  --bs-btn-focus-box-shadow: 0 0 0 3px rgba(168, 79, 23, 0.3);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  letter-spacing: 0.005em;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn-sm { --bs-btn-padding-x: 0.95rem; --bs-btn-padding-y: 0.5rem; --bs-btn-font-size: 0.875rem; }
.btn-lg { --bs-btn-padding-x: 1.7rem; --bs-btn-padding-y: 0.95rem; --bs-btn-font-size: 1.025rem; }

.btn-clay {
  --bs-btn-color: #fff; --bs-btn-bg: var(--clay); --bs-btn-border-color: var(--clay);
  --bs-btn-hover-color: #fff; --bs-btn-hover-bg: var(--clay-2); --bs-btn-hover-border-color: var(--clay-2);
  --bs-btn-active-color: #fff; --bs-btn-active-bg: var(--clay-2); --bs-btn-active-border-color: var(--clay-2);
  --bs-btn-disabled-bg: var(--clay); --bs-btn-disabled-border-color: var(--clay); --bs-btn-disabled-color: #fff;
}
.btn-forest {
  --bs-btn-color: #fff; --bs-btn-bg: var(--forest); --bs-btn-border-color: var(--forest);
  --bs-btn-hover-color: #fff; --bs-btn-hover-bg: var(--forest-2); --bs-btn-hover-border-color: var(--forest-2);
  --bs-btn-active-color: #fff; --bs-btn-active-bg: var(--forest-deep); --bs-btn-active-border-color: var(--forest-deep);
}
.btn-outline-ink {
  --bs-btn-color: var(--ink); --bs-btn-bg: transparent; --bs-btn-border-color: var(--line-strong);
  --bs-btn-hover-color: var(--ink); --bs-btn-hover-bg: var(--paper-2); --bs-btn-hover-border-color: var(--ink);
  --bs-btn-active-color: var(--ink); --bs-btn-active-bg: var(--paper-3); --bs-btn-active-border-color: var(--ink);
}
.btn-outline-light-2 {
  --bs-btn-color: var(--paper); --bs-btn-bg: transparent; --bs-btn-border-color: rgba(251, 247, 239, 0.45);
  --bs-btn-hover-color: var(--ink); --bs-btn-hover-bg: var(--paper); --bs-btn-hover-border-color: var(--paper);
  --bs-btn-active-color: var(--ink); --bs-btn-active-bg: var(--paper-2); --bs-btn-active-border-color: var(--paper-2);
}
.btn-wa {
  --bs-btn-color: #fff; --bs-btn-bg: var(--wa); --bs-btn-border-color: var(--wa);
  --bs-btn-hover-color: #fff; --bs-btn-hover-bg: var(--wa-2); --bs-btn-hover-border-color: var(--wa-2);
  --bs-btn-active-color: #fff; --bs-btn-active-bg: var(--wa-2); --bs-btn-active-border-color: var(--wa-2);
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-weight: 600; color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--line-strong); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s, gap 0.2s var(--ease);
}
.link-arrow:hover { color: var(--clay); border-color: var(--clay); gap: 0.7rem; }
.on-dark .link-arrow { color: var(--paper); border-color: rgba(251, 247, 239, 0.35); }
.on-dark .link-arrow:hover { color: var(--sun); border-color: var(--sun); }

/* ---------- Announcement ---------- */
.announce { background: var(--forest); color: var(--paper); font-size: 0.875rem; text-align: center; padding: 0.55rem 1rem; }
.announce a { color: var(--sun); font-weight: 600; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1030;
  background: rgba(251, 247, 239, 0.97);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(31, 28, 23, 0.05); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { height: 46px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 0.25rem; margin: 0; padding: 0; list-style: none; }
.main-nav > li > a, .main-nav > li > button {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.95rem; font-weight: 500; color: var(--ink);
  text-decoration: none; padding: 0.55rem 0.8rem; border-radius: var(--radius-sm);
  background: none; border: 0; position: relative;
}
.main-nav > li > a:hover, .main-nav > li > button:hover, .main-nav .show > button { color: var(--clay); }
.main-nav > li > a.is-active::after, .main-nav > li > button.is-active::after {
  content: ""; position: absolute; left: 0.8rem; right: 0.8rem; bottom: 0.2rem; height: 2px; background: var(--clay);
}
.main-nav .bi-chevron-down { font-size: 0.7rem; transition: transform 0.2s; }
.main-nav .show > button .bi-chevron-down { transform: rotate(180deg); }

.nav-menu {
  --bs-dropdown-bg: var(--white);
  --bs-dropdown-border-color: var(--line);
  --bs-dropdown-border-radius: var(--radius);
  --bs-dropdown-link-color: var(--ink);
  --bs-dropdown-link-hover-bg: var(--paper-2);
  --bs-dropdown-link-hover-color: var(--ink);
  --bs-dropdown-link-active-bg: var(--paper-3);
  --bs-dropdown-link-active-color: var(--ink);
  --bs-dropdown-padding-y: 0.5rem;
  min-width: 300px; box-shadow: var(--shadow-lift); margin-top: 0.5rem !important;
}
.nav-menu .dropdown-item { padding: 0.6rem 1rem; border-radius: var(--radius-sm); margin: 0 0.4rem; width: auto; white-space: normal; }
.nav-menu .dropdown-item small { display: block; color: var(--muted); font-size: 0.8rem; }
.nav-menu .dropdown-item strong { font-weight: 600; }
.nav-menu .menu-all { color: var(--clay); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 1.25rem; }
.header-phone { display: flex; flex-direction: column; line-height: 1.2; text-decoration: none; color: var(--ink); text-align: right; }
.header-phone span { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.header-phone strong { font-size: 0.95rem; font-weight: 600; }
.header-phone:hover strong { color: var(--clay); }

.menu-toggle {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid var(--line-strong); background: transparent; color: var(--ink);
  font-weight: 600; font-size: 0.9rem; padding: 0.5rem 0.85rem; border-radius: var(--radius-sm);
}
.menu-toggle .bi { font-size: 1.25rem; line-height: 1; }

.mobile-menu { --bs-offcanvas-width: min(420px, 100vw); --bs-offcanvas-bg: var(--paper); }
.mobile-menu .offcanvas-header { border-bottom: 1px solid var(--line); min-height: var(--header-h); }
.mobile-menu .offcanvas-header img { height: 40px; width: auto; }
.mobile-nav { list-style: none; padding: 0; margin: 0 0 2rem; }
.mobile-nav > li { border-bottom: 1px solid var(--line); }
.mobile-nav a, .mobile-nav summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 0; font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); text-decoration: none; cursor: pointer; list-style: none;
}
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav details[open] summary .bi { transform: rotate(45deg); }
.mobile-nav summary .bi { font-size: 1.1rem; transition: transform 0.2s; }
.mobile-nav .sub { list-style: none; padding: 0 0 1rem; margin: 0; }
.mobile-nav .sub a { font-family: var(--font-body); font-size: 1rem; padding: 0.45rem 0; color: var(--ink-2); }
.mobile-nav a.is-active { color: var(--clay); }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: clamp(580px, 88vh, 860px);
  display: flex; align-items: flex-end;
  color: var(--paper);
  background: var(--forest-deep);
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 40%; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 20, 12, 0.78) 0%, rgba(13, 20, 12, 0.45) 45%, rgba(13, 20, 12, 0.05) 75%),
    linear-gradient(0deg, rgba(13, 20, 12, 0.75) 0%, rgba(13, 20, 12, 0) 45%);
}
.hero__content { padding-block: 6.5rem 7.5rem; max-width: 720px; }
.hero h1 { color: var(--paper); margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--sun); }
.hero .lead-text { color: rgba(251, 247, 239, 0.88); max-width: 34rem; margin-bottom: 2.25rem; }
.hero__caption {
  position: absolute; right: 1.5rem; bottom: 7rem; max-width: 240px;
  font-size: 0.78rem; line-height: 1.45; color: rgba(251, 247, 239, 0.75);
  border-left: 1px solid rgba(251, 247, 239, 0.4); padding-left: 0.75rem;
}

/* Trip finder overlapping the hero */
.finder-wrap { position: relative; z-index: 5; margin-top: -4.25rem; }
.finder {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lift); padding: 1.25rem;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr auto; gap: 0.75rem; align-items: end;
}
.finder .form-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--muted); margin-bottom: 0.35rem; }
.finder .btn { height: 52px; }

/* ---------- Forms ---------- */
.form-label { font-size: 0.9rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }
.form-label .optional { font-weight: 400; color: var(--muted); font-size: 0.82rem; }
.form-control, .form-select {
  border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  background-color: var(--white); color: var(--ink);
  padding: 0.75rem 0.9rem; font-size: 1rem; min-height: 52px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
textarea.form-control { min-height: 130px; }
.form-control:focus, .form-select:focus { border-color: var(--clay); box-shadow: 0 0 0 3px rgba(168, 79, 23, 0.15); }
.form-select { background-position: right 0.9rem center; }
.form-hint { font-size: 0.82rem; color: var(--muted); margin-top: 0.35rem; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.form-status { display: none; margin-top: 1rem; padding: 0.9rem 1rem; border-radius: var(--radius-sm); font-size: 0.95rem; }
.form-status.is-visible { display: block; }
.form-status.is-success { background: #e7f1e9; color: #14532d; border: 1px solid #b9d8c1; }
.form-status.is-error { background: #fbeae4; color: #8a2c0d; border: 1px solid #efc4b3; }
.notice { padding: 1rem 1.15rem; border-radius: var(--radius-sm); font-size: 0.975rem; display: flex; gap: 0.75rem; align-items: flex-start; }
.notice .bi { font-size: 1.15rem; line-height: 1.4; }
.notice--success { background: #e7f1e9; color: #14532d; border: 1px solid #b9d8c1; }
.notice--error { background: #fbeae4; color: #8a2c0d; border: 1px solid #efc4b3; }
.btn .spinner { width: 1rem; height: 1rem; border: 2px solid rgba(255, 255, 255, 0.45); border-top-color: #fff; border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Tour cards ---------- */
.tour-card { position: relative; display: flex; flex-direction: column; height: 100%; }
.tour-card__media { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4 / 3; background: var(--paper-3); }
.tour-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.tour-card:hover .tour-card__media img { transform: scale(1.04); }
.tour-card__days {
  position: absolute; left: 0.85rem; top: 0.85rem;
  background: var(--paper); color: var(--ink); border-radius: var(--radius-sm);
  font-size: 0.8rem; font-weight: 600; padding: 0.3rem 0.6rem;
}
.tour-card__body { padding-top: 1.1rem; display: flex; flex-direction: column; flex: 1; }
.tour-card__meta { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--clay); font-weight: 600; margin-bottom: 0.45rem; }
.tour-card__title { font-size: 1.55rem; margin-bottom: 0.4rem; }
.tour-card__title a { color: inherit; text-decoration: none; }
.tour-card__title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.tour-card:hover .tour-card__title a { text-decoration: underline; text-decoration-color: var(--line-strong); }
.tour-card__route { font-size: 0.925rem; color: var(--muted); margin-bottom: 1rem; }
.tour-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.price-from { line-height: 1.2; }
.price-from span { display: block; font-size: 0.75rem; color: var(--muted); }
.price-from strong { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; }
.price-from small { font-size: 0.8rem; color: var(--muted); }
.tour-card__wa {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px;
  border-radius: 50%; border: 1px solid var(--line-strong); color: var(--wa); text-decoration: none; font-size: 1.1rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.tour-card__wa:hover { background: var(--wa); border-color: var(--wa); color: #fff; }

.plan-card {
  height: 100%; border-radius: var(--radius); background: var(--forest); color: rgba(251, 247, 239, 0.85);
  padding: 1.5rem; display: flex; flex-direction: column; justify-content: space-between; min-height: 360px;
  position: relative; overflow: hidden;
}
.plan-card h3 { color: var(--paper); font-size: 1.85rem; }

/* ---------- Intro split ---------- */
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); width: 100%; object-fit: cover; }
.split-media figcaption, .photo-caption { font-size: 0.82rem; color: var(--muted); margin-top: 0.6rem; }

/* Two overlapping photos: a large square with a smaller inset at the corner */
.duo__frame { position: relative; padding-bottom: 12%; }
.duo__main { display: block; width: 84%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-lg); }
.duo__inset {
  position: absolute; right: 0; bottom: 0; width: 48%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius); border: 6px solid var(--paper); box-shadow: var(--shadow-soft);
}
.duo figcaption { font-size: 0.82rem; color: var(--muted); margin-top: 0.85rem; }
.duo figcaption a { color: var(--ink); font-weight: 600; }

.facts { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.facts > div { padding: 1.25rem 1.25rem 1.25rem 0; }
.facts > div + div { padding-left: 1.25rem; border-left: 1px solid var(--line); }
.facts strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: clamp(1.8rem, 3vw, 2.5rem); line-height: 1.1; margin-bottom: 0.35rem; }
.facts span { color: var(--muted); font-size: 0.925rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 3rem); counter-reset: step; }
.step { border-top: 1px solid var(--ink); padding-top: 1.25rem; }
.step__num { font-family: var(--font-display); font-size: 3rem; line-height: 1; color: var(--clay); display: block; margin-bottom: 1rem; }
.step h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.step p { color: var(--muted); margin: 0; }

/* ---------- Destination mosaic ---------- */
.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; gap: 1rem; }
.mosaic__tile { position: relative; overflow: hidden; border-radius: var(--radius); color: var(--paper); text-decoration: none; isolation: isolate; background: var(--forest); }
.mosaic__tile:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.mosaic__tile:nth-child(4) { grid-column: span 2; }
.mosaic__tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.8s var(--ease); }
.mosaic__tile::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(13, 20, 12, 0.78) 0%, rgba(13, 20, 12, 0) 55%); }
.mosaic__tile:hover img { transform: scale(1.05); }
.mosaic__text { position: absolute; left: 1.25rem; right: 1.25rem; bottom: 1.1rem; }
.mosaic__text h3 { color: var(--paper); font-size: 1.5rem; margin: 0 0 0.2rem; }
.mosaic__tile:nth-child(1) .mosaic__text h3 { font-size: 2.1rem; }
.mosaic__text p { font-size: 0.875rem; margin: 0; color: rgba(251, 247, 239, 0.8); }

.dest-card { position: relative; display: block; text-decoration: none; color: var(--ink); height: 100%; }
.dest-card__media { overflow: hidden; border-radius: var(--radius); aspect-ratio: 3 / 2; background: var(--paper-3); }
.dest-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.dest-card:hover img { transform: scale(1.04); }
.dest-card h2, .dest-card h3 { font-size: 1.5rem; margin: 1rem 0 0.25rem; }
.dest-card:hover h2, .dest-card:hover h3 { color: var(--clay); }
.dest-card .region { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.dest-card p { color: var(--ink-2); font-size: 0.95rem; margin: 0.5rem 0 0; }

/* ---------- Reviews ---------- */
.review-feature { border-top: 1px solid var(--ink); padding-top: 2rem; }
.review-feature blockquote { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.25; letter-spacing: -0.01em; margin: 0 0 1.5rem; }
.review-feature blockquote::before { content: "“"; color: var(--clay); margin-right: 0.05em; }
.review-feature blockquote::after { content: "”"; color: var(--clay); }
.review-by { display: flex; flex-wrap: wrap; gap: 0.25rem 1rem; align-items: baseline; font-size: 0.95rem; }
.review-by strong { font-weight: 600; }
.review-by span { color: var(--muted); }
.review { border-top: 1px solid var(--line-strong); padding-top: 1.5rem; height: 100%; display: flex; flex-direction: column; }
.review h3 { font-size: 1.35rem; margin-bottom: 0.9rem; }
.review p { color: var(--ink-2); font-size: 0.99rem; }
.review .review-by { margin-top: auto; padding-top: 0.5rem; }
.review-full { padding-block: 1.75rem; border-top: 1px solid var(--line-strong); }
.review-full:last-child { border-bottom: 1px solid var(--line-strong); }
.review-full h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.review-full p { font-size: 1.05rem; color: var(--ink-2); }

/* ---------- Journal / blog ---------- */
.post-card { position: relative; display: flex; flex-direction: column; height: 100%; }
.post-card__media { overflow: hidden; border-radius: var(--radius); aspect-ratio: 16 / 10; background: var(--paper-3); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.post-card:hover img { transform: scale(1.04); }
.post-card__meta { font-size: 0.8rem; color: var(--muted); margin: 1rem 0 0.4rem; }
.post-card h2, .post-card h3 { font-size: 1.4rem; }
.post-card h2.display-sm { font-size: clamp(1.5rem, 2.4vw, 1.9rem); }
.post-card h2 a, .post-card h3 a { color: var(--ink); text-decoration: none; }
.post-card h2 a::after, .post-card h3 a::after { content: ""; position: absolute; inset: 0; }
.post-card:hover h2 a, .post-card:hover h3 a { color: var(--clay); }

.article-hero img { width: 100%; max-height: 560px; object-fit: cover; border-radius: var(--radius); }
.prose { font-size: 1.1rem; line-height: 1.75; color: var(--ink-2); }
.prose h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin: 2.5rem 0 1rem; color: var(--ink); }
.prose h3 { font-size: 1.4rem; margin: 2rem 0 0.75rem; color: var(--ink); }
.prose h4 { font-size: 1.15rem; margin: 1.5rem 0 0.5rem; font-family: var(--font-body); font-weight: 600; }
.prose ul, .prose ol { padding-left: 1.25rem; margin-bottom: 1.25rem; }
.prose li { margin-bottom: 0.45rem; }
.prose li::marker { color: var(--clay); }
.prose a { color: var(--clay); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose figure { margin: 2rem 0; }
.prose figure img { border-radius: var(--radius); width: 100%; height: auto; }
.prose blockquote { border-left: 3px solid var(--clay); padding-left: 1.25rem; font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); }
.prose > *:first-child { margin-top: 0; }

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--line-strong); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: 1.35rem 0; font-family: var(--font-display); font-size: clamp(1.15rem, 1.8vw, 1.4rem); color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .bi { flex-shrink: 0; font-size: 1.1rem; color: var(--clay); transition: transform 0.25s var(--ease); }
.faq-item[open] summary .bi { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--clay); }
.faq-item .faq-answer { padding: 0 3rem 1.5rem 0; color: var(--ink-2); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--forest); color: rgba(251, 247, 239, 0.86); isolation: isolate; }
.cta-band__media { position: absolute; inset: 0 0 0 50%; z-index: -1; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--forest) 0%, rgba(18, 53, 36, 0.2) 45%, rgba(18, 53, 36, 0) 100%); }
.cta-band h2 { color: var(--paper); }
.cta-band .container { padding-block: clamp(3rem, 6vw, 4.75rem); }

/* ---------- Page headers ---------- */
.page-head { padding-block: clamp(2.25rem, 4.5vw, 3.5rem) clamp(1.25rem, 3vw, 2rem); }
.page-head h1 { margin-bottom: 1rem; }
.page-head .lead-text { max-width: 44rem; }
.crumbs { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; }
.crumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.35rem; }
.crumbs li + li::before { content: "/"; margin-right: 0.35rem; color: var(--line-strong); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--clay); text-decoration: underline; }
.crumbs [aria-current] { color: var(--ink); }

.banner-head { position: relative; min-height: clamp(420px, 62vh, 620px); display: flex; align-items: flex-end; color: var(--paper); isolation: isolate; overflow: hidden; background: var(--forest-deep); }
.banner-head > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.banner-head::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(13, 20, 12, 0.82) 0%, rgba(13, 20, 12, 0.25) 55%, rgba(13, 20, 12, 0.15) 100%); }
.banner-head .container { padding-block: 3.5rem; }
.banner-head h1 { color: var(--paper); }
.banner-head .crumbs, .banner-head .crumbs a { color: rgba(251, 247, 239, 0.75); }
.banner-head .crumbs [aria-current] { color: var(--paper); }
.banner-head .crumbs li + li::before { color: rgba(251, 247, 239, 0.45); }

/* ---------- Tours listing ---------- */
.filter-bar { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem; display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 0.75rem; align-items: end; }
.filter-bar .form-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--muted); margin-bottom: 0.35rem; }
.filter-bar .filter-submit { grid-column: 1 / -1; justify-self: start; }
.js .filter-bar .filter-submit { display: none; }
.results-line { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem; margin: 1.5rem 0 2rem; color: var(--muted); font-size: 0.95rem; }
.results-line strong { color: var(--ink); }
.btn-reset { background: none; border: 0; padding: 0; color: var(--clay); font-weight: 600; text-decoration: underline; text-underline-offset: 0.2em; }
.empty-state { text-align: center; padding: 4rem 1rem; border: 1px dashed var(--line-strong); border-radius: var(--radius); }
.empty-state h2 { font-size: 1.8rem; }

/* ---------- Tour detail ---------- */
.tour-head { padding-block: clamp(1.75rem, 3.5vw, 2.75rem) 1.5rem; }
.tour-head h1 { font-size: clamp(2.6rem, 6vw, 4.75rem); letter-spacing: -0.025em; margin-bottom: 0.75rem; }
.tour-head .tagline { font-family: var(--font-display); font-style: italic; font-size: clamp(1.2rem, 2vw, 1.5rem); color: var(--ink-2); margin-bottom: 2rem; }
.key-facts { display: grid; grid-template-columns: repeat(4, auto); justify-content: start; gap: 0; margin: 0; border-top: 1px solid var(--line); padding-top: 1.25rem; }
.key-facts > div { padding-right: 2rem; margin-right: 2rem; border-right: 1px solid var(--line); }
.key-facts > div:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.key-facts dt { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 0.2rem; }
.key-facts dd { margin: 0; font-weight: 500; }

.gallery-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 0.75rem; }
.gallery-main { position: relative; display: block; width: 100%; border: 0; padding: 0; background: var(--paper-3); border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 8; cursor: zoom-in; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.25s var(--ease); }
.gallery-main.is-swapping img { opacity: 0.35; }
.gallery-main__zoom { position: absolute; right: 0.75rem; bottom: 0.75rem; background: rgba(251, 247, 239, 0.94); color: var(--ink); font-size: 0.8rem; font-weight: 600; padding: 0.35rem 0.65rem; border-radius: var(--radius-sm); display: inline-flex; align-items: center; gap: 0.35rem; pointer-events: none; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(var(--thumbs, 6), minmax(0, 1fr)); gap: 0.6rem; margin-top: 0.75rem; }
.gallery-thumb { border: 2px solid transparent; padding: 0; border-radius: 6px; overflow: hidden; height: clamp(64px, 8.5vw, 118px); background: var(--paper-3); cursor: pointer; opacity: 0.8; transition: opacity 0.2s, border-color 0.2s; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumb:hover { opacity: 1; }
.gallery-thumb.is-active { border-color: var(--clay); opacity: 1; }

.tour-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.tour-section { padding-block: 2rem; border-top: 1px solid var(--line); }
.tour-section:first-child { border-top: 0; padding-top: 0; }
.tour-section > h2 { font-size: clamp(1.7rem, 2.8vw, 2.25rem); margin-bottom: 1.25rem; }

.highlights { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 2rem; }
.highlights li { position: relative; padding-left: 1.5rem; color: var(--ink-2); }
.highlights li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 0.7rem; height: 1px; background: var(--clay); }

.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 1.45rem; top: 0.5rem; bottom: 0.5rem; width: 1px; background: var(--line-strong); }
.timeline li { position: relative; padding-left: 4.25rem; padding-bottom: 2.25rem; }
.timeline li:last-child { padding-bottom: 0; }
.timeline__day {
  position: absolute; left: 0; top: 0; width: 2.9rem; height: 2.9rem; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--line-strong);
  display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1;
}
.timeline__day small { font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.timeline__day strong { font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; }
.timeline h3 { font-size: 1.35rem; margin: 0.35rem 0 0.6rem; }
.timeline p { color: var(--ink-2); margin-bottom: 0.9rem; }
.day-meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; font-size: 0.875rem; color: var(--muted); }
.day-meta .bi { color: var(--clay); margin-right: 0.35rem; }

.incl-list { list-style: none; padding: 0; margin: 0; }
.incl-list li { display: flex; gap: 0.75rem; padding: 0.6rem 0; border-bottom: 1px solid var(--line); color: var(--ink-2); font-size: 0.975rem; }
.incl-list li:last-child { border-bottom: 0; }
.incl-list .bi { flex-shrink: 0; font-size: 1.05rem; line-height: 1.5; }
.incl-list--yes .bi { color: var(--leaf); }
.incl-list--no .bi { color: #9a3412; }

.place-links { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.place-links a { display: inline-flex; align-items: center; gap: 0.4rem; border: 1px solid var(--line-strong); border-radius: 999px; padding: 0.4rem 0.9rem; font-size: 0.9rem; color: var(--ink); text-decoration: none; background: var(--white); }
.place-links a:hover { border-color: var(--clay); color: var(--clay); }

.book-card { position: sticky; top: calc(var(--header-h) + 1.25rem); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.35rem; box-shadow: var(--shadow-soft); }
.book-card .price { font-family: var(--font-display); font-size: 2.6rem; line-height: 1; font-weight: 400; letter-spacing: -0.02em; }
.book-card .price-note { color: var(--muted); font-size: 0.9rem; margin: 0.4rem 0 1.25rem; }
.book-card ul { list-style: none; padding: 0; margin: 0 0 1.5rem; font-size: 0.925rem; color: var(--ink-2); }
.book-card ul li { display: flex; gap: 0.6rem; padding: 0.35rem 0; }
.book-card ul .bi { color: var(--leaf); }
.book-card .call-line { font-size: 0.875rem; color: var(--muted); text-align: center; margin: 1rem 0 0; }
.book-card .call-line a { color: var(--ink); font-weight: 600; }

.enquire { background: var(--paper-2); border-radius: var(--radius-lg); padding: clamp(1.25rem, 3vw, 2.25rem); }
.enquire__aside ul { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.enquire__aside li { display: flex; gap: 0.75rem; padding: 0.55rem 0; color: var(--ink-2); }
.enquire__aside li .bi { color: var(--clay); }
.estimate { font-size: 0.9rem; color: var(--ink-2); background: var(--white); border: 1px dashed var(--line-strong); border-radius: var(--radius-sm); padding: 0.75rem 0.9rem; }
.estimate strong { font-family: var(--font-display); font-weight: 500; font-size: 1.1rem; }

.mobile-book-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 1020;
  background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(31, 28, 23, 0.08);
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  align-items: center; justify-content: space-between; gap: 0.75rem;
}
.mobile-book-bar .price-from strong { font-size: 1.3rem; }

/* Photo gallery: justified rows. Each item grows in proportion to its aspect ratio (--r),
   so every row fills the width and every photo keeps its original shape. */
.photo-grid { --row: 260px; display: flex; flex-wrap: wrap; align-items: flex-start; gap: 0.6rem; }
.photo-grid::after { content: ""; flex-grow: 999999; }
.photo-grid__item {
  position: relative; margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--paper-3);
  flex: var(--r) 1 calc(var(--r) * var(--row)); aspect-ratio: var(--r);
}
.photo-grid__btn { display: block; width: 100%; height: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; }
.photo-grid__btn img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s var(--ease), filter 0.3s; }
.photo-grid__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; pointer-events: none;
  padding: 2.25rem 0.9rem 0.75rem; font-size: 0.85rem; line-height: 1.35; color: var(--paper);
  background: linear-gradient(0deg, rgba(13, 20, 12, 0.78) 0%, rgba(13, 20, 12, 0) 100%);
  opacity: 0; transform: translateY(6px); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.photo-grid__item:hover img, .photo-grid__btn:focus-visible img { transform: scale(1.035); }
.photo-grid__item:hover figcaption, .photo-grid__item:focus-within figcaption { opacity: 1; transform: none; }
.photo-grid__btn:focus-visible { outline: 3px solid var(--clay); outline-offset: -3px; }
@media (hover: none) { .photo-grid__item figcaption { display: none; } }

.photo-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.photo-filter {
  display: inline-flex; align-items: center; gap: 0.45rem; background: var(--white); color: var(--ink);
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 0.5rem 1rem; font-size: 0.925rem; font-weight: 500;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.photo-filter span { font-size: 0.78rem; color: var(--muted); font-weight: 600; }
.photo-filter:hover { border-color: var(--ink); }
.photo-filter.is-active { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.photo-filter.is-active span { color: var(--sun); }

/* Lightbox */
.lightbox { border: 0; padding: 0; background: transparent; max-width: 100vw; max-height: 100vh; width: 100vw; height: 100vh; }
.lightbox::backdrop { background: rgba(13, 20, 12, 0.92); }
.lightbox__inner { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; padding: 4rem 1rem; }
.lightbox img { max-width: min(1400px, 100%); max-height: 100%; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox__caption { position: absolute; left: 0; right: 0; bottom: 1.25rem; text-align: center; color: rgba(251, 247, 239, 0.8); font-size: 0.9rem; padding: 0 4rem; }
.lightbox__btn { position: absolute; background: rgba(251, 247, 239, 0.12); color: var(--paper); border: 1px solid rgba(251, 247, 239, 0.25); width: 48px; height: 48px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.lightbox__btn:hover { background: rgba(251, 247, 239, 0.25); }
.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* ---------- About ---------- */
.about-intro .photo-pair { position: relative; padding-bottom: 18%; }
.about-intro .photo-pair .p1 { width: 72%; aspect-ratio: 2 / 3; object-fit: cover; border-radius: var(--radius); }
.about-intro .photo-pair .p2 { position: absolute; right: 0; bottom: 0; width: 50%; aspect-ratio: 3 / 4; object-fit: cover; object-position: 50% 30%; border-radius: var(--radius); border: 6px solid var(--paper); }
.signoff { font-family: var(--font-display); font-style: italic; font-size: clamp(1.35rem, 2.2vw, 1.7rem); color: var(--ink); line-height: 1.35; border-left: 2px solid var(--clay); padding-left: 1.25rem; margin: 2rem 0; }

.statement { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.35rem); line-height: 1.25; letter-spacing: -0.015em; color: var(--ink); margin-bottom: 0; }
.statement--second { margin-top: 1.25rem; color: var(--ink-2); }
.purpose-photo img { width: 100%; height: auto; border-radius: var(--radius-lg); display: block; }
.purpose-photo--wide img { aspect-ratio: 4 / 3; object-fit: cover; }
.policy-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--ink); }
.policy-list li { display: flex; gap: 1.5rem; align-items: baseline; padding: 1.5rem 0; border-bottom: 1px solid var(--line-strong); }
.policy-list__num { font-family: var(--font-display); font-size: 1.9rem; line-height: 1; color: var(--clay); min-width: 2.75rem; }
.policy-list p { font-family: var(--font-display); font-size: clamp(1.25rem, 2vw, 1.55rem); line-height: 1.3; margin: 0; color: var(--ink); }

.founders-media { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; align-items: start; }
.founders-media figure { margin: 0; }
.founders-media img { width: 100%; object-fit: cover; border-radius: var(--radius); }
.founders-media .f1 img { aspect-ratio: 3 / 4; }
.founders-media .f2 { margin-top: 3.5rem; }
.founders-media .f2 img { aspect-ratio: 3 / 4; object-position: 30% 50%; }
.founders-media figcaption { font-size: 0.8rem; color: var(--muted); margin-top: 0.5rem; }
.values { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; padding: 0; margin: 1.75rem 0 0; }
.values li { border: 1px solid var(--line-strong); border-radius: 999px; padding: 0.35rem 0.9rem; font-size: 0.9rem; background: var(--paper); }

.field-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.field-strip figure { margin: 0; }
.field-strip img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }
.field-strip figcaption { font-size: 0.85rem; color: var(--muted); margin-top: 0.6rem; }

.partner-list { list-style: none; padding: 0; margin: 0; }
.partner-list li { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(251, 247, 239, 0.15); }
.partner-list li:first-child { border-top: 1px solid rgba(251, 247, 239, 0.15); }
.partner-list .num { font-family: var(--font-display); color: var(--sun); min-width: 2rem; }

/* ---------- Contact ---------- */
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { padding: 1.25rem 0; border-bottom: 1px solid var(--line); display: flex; gap: 1rem; }
.contact-list li:first-child { border-top: 1px solid var(--line); }
.contact-list .bi { font-size: 1.2rem; color: var(--clay); line-height: 1.5; }
.contact-list span { display: block; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 0.15rem; }
.contact-list a { color: var(--ink); font-weight: 500; text-decoration: none; }
.contact-list a:hover { color: var(--clay); text-decoration: underline; }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4 / 3; background: var(--paper-3); }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.form-panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.25rem, 3vw, 2rem); }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-deep); color: rgba(251, 247, 239, 0.72); font-size: 0.95rem; }
.site-footer .container { padding-block: clamp(2.75rem, 5vw, 3.75rem) 1.5rem; }
.footer-brand { font-family: var(--font-display); font-size: 1.85rem; color: var(--paper); line-height: 1.1; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.75rem; }
.footer-brand img { width: auto; height: 38px; }
.site-footer h2 { font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sun); font-weight: 600; margin-bottom: 1.1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.55rem; }
.site-footer a { color: rgba(251, 247, 239, 0.88); text-decoration: none; }
.site-footer a:hover { color: var(--paper); text-decoration: underline; }
.footer-contact li { display: flex; gap: 0.7rem; }
.footer-contact .bi { color: var(--sun); }
.footer-social { display: flex; gap: 0.5rem; margin-top: 1.25rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(251, 247, 239, 0.25); display: inline-flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--paper); color: var(--forest-deep); text-decoration: none; }
.newsletter .form-control { background: rgba(251, 247, 239, 0.06); border-color: rgba(251, 247, 239, 0.25); color: var(--paper); }
.newsletter .form-control:focus { border-color: var(--sun); box-shadow: 0 0 0 3px rgba(243, 179, 107, 0.2); }
.newsletter .form-label { color: rgba(251, 247, 239, 0.72); font-weight: 500; }
.newsletter .input-row { display: flex; gap: 0.5rem; }
.newsletter .input-row .form-control { min-width: 0; }
.newsletter .input-row .btn { flex-shrink: 0; white-space: nowrap; }
.footer-bottom { border-top: 1px solid rgba(251, 247, 239, 0.14); margin-top: 2.25rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: 0.85rem; }
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-bottom li { margin: 0; }

/* Floating WhatsApp */
.wa-float {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 1025;
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--wa); color: #fff; text-decoration: none; font-weight: 600; font-size: 0.925rem;
  padding: 0.75rem 1.1rem 0.75rem 0.95rem; border-radius: 999px; box-shadow: 0 10px 30px rgba(20, 83, 45, 0.35);
  transition: background 0.2s, transform 0.2s var(--ease);
}
.wa-float .bi { font-size: 1.35rem; line-height: 1; }
.wa-float:hover { background: var(--wa-2); color: #fff; transform: translateY(-2px); }
.js .wa-float { opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.2s; }
.js .wa-float.is-shown { opacity: 1; transform: none; pointer-events: auto; }

/* Error pages */
.error-page { min-height: 62vh; display: flex; align-items: center; padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.error-search { max-width: 460px; }
.error-search .btn { min-width: 56px; }
.error-links ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.error-links a { display: inline-block; border: 1px solid var(--line-strong); border-radius: 999px; padding: 0.4rem 0.95rem; font-size: 0.925rem; color: var(--ink); text-decoration: none; background: var(--white); }
.error-links a:hover { border-color: var(--clay); color: var(--clay); }
.error-photo { position: relative; }
.error-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg); transform: rotate(1.5deg); box-shadow: var(--shadow-lift); }
.error-photo figcaption { font-family: var(--font-display); font-style: italic; color: var(--muted); margin-top: 1.25rem; font-size: 1.05rem; }

/* Reveal on scroll (only when JS is running) */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1199.98px) {
  .header-phone { display: none; }
  .tour-layout { grid-template-columns: minmax(0, 1fr) 320px; }
}

@media (max-width: 991.98px) {
  :root { --header-h: 68px; }
  .brand img { height: 40px; }
  .finder { grid-template-columns: 1fr 1fr; }
  .finder .finder-search { grid-column: 1 / -1; }
  .finder .btn { grid-column: 1 / -1; }
  .filter-bar { grid-template-columns: 1fr 1fr; }
  .filter-bar .filter-search { grid-column: 1 / -1; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .facts > div:nth-child(3) { padding-left: 0; border-left: 0; }
  .facts > div:nth-child(n+3) { border-top: 1px solid var(--line); }
  .steps { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .mosaic__tile:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .mosaic__tile:nth-child(4) { grid-column: span 1; }
  .tour-layout { grid-template-columns: 1fr; }
  .tour-aside { display: none; }
  .mobile-book-bar { display: flex; }
  body.has-book-bar { padding-bottom: 76px; }
  body.has-book-bar .wa-float { display: none; }
  .cta-band__media { inset: 0; opacity: 0.35; }
  .cta-band__media::after { background: linear-gradient(90deg, var(--forest) 10%, rgba(18, 53, 36, 0.6) 100%); }
  .hero__caption { display: none; }
  .photo-grid { --row: 190px; }
}

@media (max-width: 767.98px) {
  body { font-size: 1rem; }
  .hero { min-height: 620px; }
  .hero::before { background: linear-gradient(0deg, rgba(13, 20, 12, 0.88) 0%, rgba(13, 20, 12, 0.62) 55%, rgba(13, 20, 12, 0.4) 100%); }
  .hero__media img { object-position: 70% 30%; }
  .hero__content { padding-block: 6rem 7.5rem; }
  .finder { grid-template-columns: 1fr; padding: 1rem; }
  .filter-bar { grid-template-columns: 1fr; }
  .key-facts { grid-template-columns: 1fr 1fr; gap: 1rem 0; }
  .key-facts > div { border-right: 0; margin-right: 0; padding-right: 1rem; }
  .highlights { grid-template-columns: 1fr; }
  .gallery-main { aspect-ratio: 4 / 3; }
  .photo-grid { --row: 130px; gap: 0.4rem; }
  .gallery-thumbs { grid-template-columns: repeat(var(--thumbs, 6), minmax(72px, 1fr)); overflow-x: auto; scrollbar-width: none; }
  .mosaic { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .mosaic__tile:nth-child(1) { grid-column: auto; }
  .field-strip { grid-template-columns: 1fr 1fr; }
  .field-strip figure:last-child { grid-column: 1 / -1; }
  .field-strip figure:last-child img { aspect-ratio: 16 / 10; }
  .timeline::before { left: 1.2rem; }
  .timeline__day { width: 2.4rem; height: 2.4rem; }
  .timeline li { padding-left: 3.4rem; }
  .faq-item .faq-answer { padding-right: 0; }
  .wa-float span { display: none; }
  .wa-float { padding: 0.85rem; }
  .footer-bottom { flex-direction: column; }
}
