/* impeccable-disable overused-font -- the two faces are fixed and self-hosted;
   see the note at the top of assets/fonts/fonts.css, which this sheet imports. */
/* ==========================================================================
   Shery Tour — modern design system
   White canvas, photography leads, warm-orange action, deep-pine brand accent.
   Manrope (display) + Inter (body), self-hosted. Vanilla CSS, no build step.
   ========================================================================== */

@import url("../fonts/fonts.css");

:root {
  /* Colour ---------------------------------------------------------------- */
  --ink:      #1b1e1a;   /* body text */
  --ink-soft: #444a43;   /* secondary text */
  --muted:    #7b807a;   /* captions, meta */

  --paper:    #ffffff;   /* page background */
  --paper-2:  #f7f5f1;   /* warm off-white alt band */
  --paper-3:  #efece5;   /* hairline-ish fill */

  --pine-900: #142519;   /* footer ground */
  --pine-700: #1f3a2a;   /* brand green */
  --pine-500: #2f6a49;   /* green interactive */

  --orange:    #e2711d;  /* primary action */
  --orange-dk: #c65d10;
  --orange-sf: #fff2e6;  /* orange wash */

  --line:     #e6e2da;   /* hairlines */
  --line-2:   #d9d4ca;

  /* Type ------------------------------------------------------------------ */
  --display: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  /* Space ----------------------------------------------------------------- */
  --wrap: 1180px;
  --section-y: clamp(3.5rem, 8vw, 7rem);
  --radius: 14px;
  --radius-sm: 9px;

  --shadow-sm: 0 2px 10px -4px rgba(20, 37, 25, .18);
  --shadow:    0 22px 48px -28px rgba(20, 37, 25, .40);
  --header-h: 74px;
}

/* Reset-ish --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
/* Layout rules below set display on list items and grid children, which would
   otherwise beat the browser default for [hidden]. Optional slots (see
   tour-meta.js) rely on this staying authoritative. */
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
  font-size: clamp(1rem, .3vw + .95rem, 1.06rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--display); font-weight: 800; line-height: 1.06;
  margin: 0; letter-spacing: -.02em;
}
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }

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

/* Layout helpers ---------------------------------------------------------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-wide { width: min(100% - 2rem, 1320px); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section--paper2 { background: var(--paper-2); }
.section--pine { background: var(--pine-700); color: #eef2ec; }
.stack > * + * { margin-top: 1rem; }

.eyebrow {
  font-family: var(--body);
  font-size: .76rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange-dk);
  margin: 0 0 .9rem; display: inline-block;
}
.section--pine .eyebrow { color: #f0a86a; }
.lead { font-size: clamp(1.08rem, 1.2vw, 1.25rem); color: var(--ink-soft); max-width: 60ch; }
.section--pine .lead { color: #cfd8cd; }

h2.title { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.28rem; font-weight: 700; }
.muted { color: var(--muted); }

/* Buttons ----------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: .96rem;
  padding: .85em 1.6em;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .12s ease, box-shadow .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 10px 22px -12px rgba(226,113,29,.75); }
.btn--primary:hover { background: var(--orange-dk); }
.btn--ghost { border-color: var(--line-2); color: var(--ink); background: #fff; }
.btn--ghost:hover { border-color: var(--pine-700); color: var(--pine-700); }
.btn--onphoto { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(4px); }
.btn--onphoto:hover { background: #fff; color: var(--pine-900); border-color: #fff; }

.textlink {
  display: inline-flex; align-items: center; gap: .35em;
  font-family: var(--display); font-weight: 700; font-size: .95rem; color: var(--pine-500);
  transition: color .2s ease;
}
.textlink:hover { color: var(--orange-dk); }

:focus-visible { outline: 2.5px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

/* Header ------------------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: transparent;
  transition: background-color .3s ease, box-shadow .3s ease;
}
.site-header.is-solid {
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.1) blur(10px);
  box-shadow: 0 1px 0 var(--line);
}
.nav { display: flex; align-items: center; gap: 1.5rem; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: .6rem; margin-right: auto; }
.brand img { width: 40px; height: 40px; border-radius: 50%; }
.brand b { font-family: var(--display); font-weight: 800; font-size: 1.2rem; color: var(--pine-700); }
/* On a photo hero the header sits over the image → light text until solid */
.hero-header .brand b, .hero-header .nav-links a, .hero-header .nav-tel { color: #fff; }
.hero-header.is-solid .brand b { color: var(--pine-700); }
.hero-header.is-solid .nav-links a, .hero-header.is-solid .nav-tel { color: var(--ink); }

.nav-links { display: flex; align-items: center; gap: 1.4rem; list-style: none; }
.nav-links a {
  font-family: var(--display); font-size: .96rem; font-weight: 600; color: var(--ink);
  padding-bottom: 2px; border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--orange); border-color: var(--orange); }
.nav-side { display: flex; align-items: center; gap: 1rem; }
.nav-tel { font-family: var(--display); font-weight: 700; font-size: .95rem; white-space: nowrap; }
.lang {
  display: inline-flex; font-family: var(--display); font-size: .8rem; font-weight: 700; letter-spacing: .03em;
  border: 1.5px solid var(--line-2); border-radius: 100px; overflow: hidden;
}
.lang a { padding: .3em .72em; color: var(--muted); }
.lang a[aria-current="true"] { background: var(--pine-700); color: #fff; }
.hero-header .lang { border-color: rgba(255,255,255,.5); }
.hero-header .lang a { color: rgba(255,255,255,.85); }
.hero-header .lang a[aria-current="true"] { background: #fff; color: var(--pine-900); }
.hero-header.is-solid .lang { border-color: var(--line-2); }
.hero-header.is-solid .lang a { color: var(--muted); }
.hero-header.is-solid .lang a[aria-current="true"] { background: var(--pine-700); color: #fff; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; color: var(--ink); }
.hero-header .nav-toggle { color: #fff; }
.hero-header.is-solid .nav-toggle { color: var(--ink); }
.nav-toggle span { display: block; width: 24px; height: 2px; background: currentColor; margin: 5px 0; transition: transform .25s ease, opacity .2s ease; }

/* Hero (full-bleed photo) ------------------------------------------------- */
.hero {
  position: relative;
  margin-top: calc(-1 * var(--header-h));
  min-height: min(92vh, 780px);
  display: flex; align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,26,18,.55) 0%, rgba(15,26,18,0) 26%),
    linear-gradient(0deg, rgba(12,22,15,.82) 4%, rgba(12,22,15,.30) 42%, rgba(12,22,15,.12) 70%);
}
.hero-inner {
  position: relative; z-index: 1;
  width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto;
  padding-block: clamp(2.2rem, 5vw, 3.6rem);
  padding-top: calc(var(--header-h) + 2rem);
}
.hero-copy { max-width: 44rem; }
.hero .eyebrow { color: #ffd9b0; }
.hero h1 { font-size: clamp(2.4rem, 5.8vw, 4.3rem); letter-spacing: -.03em; text-wrap: balance; }
.hero h1 em { font-style: normal; color: #ffc78a; }
.hero .lead { color: rgba(255,255,255,.92); margin-top: 1.2rem; font-size: clamp(1.08rem, 1.5vw, 1.3rem); max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }

/* Honest filter bar (real links, no fake search) -------------------------- */
.hero-filter {
  position: relative; z-index: 2;
  width: min(100% - 2.5rem, var(--wrap)); margin: -2.1rem auto 0;
}
.filter-bar {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: .55rem .6rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: .35rem;
}
.filter-bar > span.filter-label {
  font-family: var(--display); font-weight: 700; font-size: .82rem;
  color: var(--muted); padding: .3rem .7rem; letter-spacing: .02em;
}
.filter-bar a {
  font-family: var(--display); font-weight: 600; font-size: .93rem; color: var(--ink);
  padding: .55rem .95rem; border-radius: 100px;
  transition: background-color .18s ease, color .18s ease;
}
.filter-bar a:hover { background: var(--orange-sf); color: var(--orange-dk); }
.filter-bar .filter-all { margin-left: auto; color: var(--pine-500); }

/* Intro ------------------------------------------------------------------- */
.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: start; }
.intro-grid p { font-size: clamp(1.05rem, 1.2vw, 1.18rem); color: var(--ink-soft); }

/* Section heading block --------------------------------------------------- */
.sec-head { max-width: 60ch; margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.sec-head--between { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; max-width: none; flex-wrap: wrap; }

/* Category sub-nav (Турове) ----------------------------------------------- */
.cat-nav-wrap { position: sticky; top: calc(var(--header-h) - 1px); z-index: 40; background: rgba(255,255,255,.92); backdrop-filter: saturate(1.1) blur(10px); border-bottom: 1px solid var(--line); }
.cat-nav { display: flex; gap: .4rem; overflow-x: auto; padding-block: .6rem; scrollbar-width: none; }
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav a {
  flex: 0 0 auto; font-family: var(--display); font-weight: 600; font-size: .92rem; color: var(--ink);
  padding: .5rem 1rem; border-radius: 100px; transition: background-color .18s ease, color .18s ease;
}
.cat-nav a:hover { background: var(--orange-sf); color: var(--orange-dk); }

/* Trip cards -------------------------------------------------------------- */
.trip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: clamp(1.3rem, 2.5vw, 1.9rem); }
.trip {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.trip:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-2); }
.trip-media { display: block; position: relative; aspect-ratio: 41 / 27; overflow: hidden; }
.trip-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.trip:hover .trip-media img { transform: scale(1.05); }
.trip-region {
  position: absolute; top: .85rem; left: .85rem;
  background: rgba(255,255,255,.94); color: var(--pine-700);
  font-family: var(--display); font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  padding: .4em .8em; border-radius: 100px;
}
.trip-body { padding: 1.15rem 1.3rem 1.35rem; display: flex; flex-direction: column; flex: 1; }
.trip-body h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.trip-body h3 a { transition: color .18s ease; }
.trip-body h3 a:hover { color: var(--orange-dk); }
.trip-body p { color: var(--ink-soft); font-size: .95rem; }
.trip-facts { display: flex; flex-wrap: wrap; gap: .35rem .9rem; margin: .1rem 0 1rem; list-style: none;
  font-size: .82rem; color: var(--muted); font-weight: 500; }
.trip-facts li { display: inline-flex; align-items: center; gap: .35em; }
.trip-facts li + li::before { content: "·"; color: var(--line-2); margin-right: .55em; }
.trip-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: .4rem; }
.trip-price { font-family: var(--display); font-weight: 800; font-size: 1.14rem; color: var(--pine-700); }
.trip-price span { font-weight: 600; font-size: .74rem; color: var(--muted); }

/* Feature row (villages story) -------------------------------------------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 5vw, 4rem); align-items: center; }
.feature + .feature { margin-top: clamp(3rem, 7vw, 5.5rem); }
.feature:nth-child(even) .feature-media { order: 2; }
.feature-media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.feature-copy h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: .8rem; }
.feature-copy .eyebrow { display: block; margin-bottom: .5rem; }
.lodging-contact { margin-top: 1.1rem; font-size: .92rem; color: var(--ink-soft); }
.cta-fineprint { margin-top: 1.4rem; font-size: .88rem; color: #cfd8cd; }
.cta-fineprint a { color: #fff; text-decoration: underline; }

/* Experiences list -------------------------------------------------------- */
.exp-list { list-style: none; border-top: 1px solid rgba(255,255,255,.16); }
.exp-list li { border-bottom: 1px solid rgba(255,255,255,.16); }
.exp-list a {
  display: flex; align-items: baseline; gap: 1.2rem;
  padding: 1.2rem .4rem;
  /* The row indents on hover, which is the whole gesture: a transform would drag
     the right-aligned blurb out with it. Ten rows, one hovered at a time. */
  transition: padding .2s ease, color .2s ease; /* impeccable-disable-line layout-transition */
}
.exp-list a:hover { padding-left: 1.1rem; color: #ffc78a; }
.exp-num { font-family: var(--display); font-weight: 800; font-size: 1rem; color: #f0a86a; width: 2ch; flex-shrink: 0; }
.exp-name { font-family: var(--display); font-weight: 700; font-size: clamp(1.3rem, 2.4vw, 1.9rem); }
.exp-desc { margin-left: auto; color: #b9c6ba; font-size: .9rem; max-width: 34ch; text-align: right; }

/* Reviews ----------------------------------------------------------------- */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(1.2rem, 3vw, 1.8rem); }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.6rem; margin: 0;
}
.review p { font-size: 1.04rem; line-height: 1.55; color: var(--ink); }
.review p::before { content: "\201C"; color: var(--orange); font-family: var(--display); font-weight: 800; }
.review cite { display: block; margin-top: .9rem; font-style: normal; font-family: var(--display); font-weight: 700; font-size: .88rem; color: var(--pine-700); }
.review cite span { color: var(--muted); font-weight: 500; }
.review-note { margin-top: 2rem; color: var(--muted); font-size: .92rem; }
.review-wall { columns: 3 260px; column-gap: clamp(1.2rem, 3vw, 1.8rem); }
.review-wall .review { break-inside: avoid; margin-bottom: clamp(1.2rem, 3vw, 1.8rem); }

/* Google rating badge (verified external rating, links to the listing) */
.g-rating {
  display: inline-flex; align-items: center; gap: .55rem;
  margin-bottom: 2rem; padding: .55rem .95rem;
  border: 1px solid var(--line); border-radius: 999px;
  text-decoration: none; color: var(--ink); background: #fff;
  transition: box-shadow .18s ease, border-color .18s ease;
}
.g-rating:hover { border-color: #d9b25a; box-shadow: 0 4px 14px rgba(0,0,0,.07); }
.g-rating__score { font-family: var(--display); font-weight: 800; font-size: 1.05rem; color: var(--pine-700); }
.g-rating__stars { color: #f5b301; letter-spacing: .04em; font-size: 1rem; }
.g-rating__meta { color: var(--muted); font-size: .9rem; font-weight: 600; }

/* CTA band ---------------------------------------------------------------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); max-width: 18ch; margin-inline: auto; }
.cta-band .lead { margin: 1.1rem auto 2rem; text-align: center; }
.cta-band .hero-cta { justify-content: center; }

/* Footer ------------------------------------------------------------------ */
.site-footer { background: var(--pine-900); color: #c3cbc0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: clamp(1.8rem, 4vw, 3rem);
  padding-block: clamp(2.8rem, 6vw, 4rem);
}
.footer-grid h4 { color: #eef2ec; font-family: var(--display); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 800; }
.footer-brand b { font-family: var(--display); font-weight: 800; font-size: 1.45rem; color: #eef2ec; display: block; margin-bottom: .7rem; }
.footer-brand p { max-width: 34ch; font-size: .95rem; }
.footer-list { list-style: none; }
.footer-list li { margin-bottom: .6rem; }
.footer-list a, .footer-contact a { color: #c3cbc0; transition: color .2s ease; }
.footer-list a:hover, .footer-contact a:hover { color: #f0a86a; }
.footer-contact { font-size: .95rem; line-height: 1.9; }
.socials { display: flex; gap: 1.1rem; margin-top: 1.1rem; }
.socials a { color: #9aa397; font-family: var(--display); font-weight: 700; font-size: .85rem; transition: color .2s ease; }
.socials a:hover { color: #f0a86a; }
.footer-legal { max-width: 40ch; font-size: .82rem; color: #8a927f; margin-top: 1.2rem; }
.footer-bar {
  border-top: 1px solid rgba(238,242,236,.12);
  padding-block: 1.3rem; font-size: .84rem; color: #868e7d;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.footer-iban { font-variant-numeric: tabular-nums; }

/* Reveal on scroll (progressive enhancement) ------------------------------ */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }

/* Page hero (inner pages) ------------------------------------------------- */
.page-hero { position: relative; background: var(--pine-700); color: #eef2ec; margin-top: calc(-1 * var(--header-h)); overflow: hidden; }
.page-hero.page-hero--photo { color: #fff; }
.page-hero .hero-bg::after { background: linear-gradient(0deg, rgba(12,22,15,.78), rgba(12,22,15,.35)); }
.page-hero .wrap { position: relative; z-index: 1; padding-block: clamp(3.5rem, 8vw, 5.5rem); padding-top: calc(var(--header-h) + 2rem); }
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
.page-hero p { color: rgba(255,255,255,.9); max-width: 58ch; margin-top: 1rem; }
.page-hero--pine p { color: #cfd8cd; }
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.75); margin-bottom: 1rem; font-weight: 600; }
.breadcrumb a:hover { color: #ffc78a; }

/* Prose / info blocks ----------------------------------------------------- */
.prose { max-width: 68ch; }
.prose h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin: 2.2rem 0 .8rem; }
.prose h3 { margin: 1.6rem 0 .5rem; color: var(--pine-700); }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul.ticks { list-style: none; }
.prose ul.ticks li { position: relative; padding-left: 1.7rem; margin-bottom: .5rem; }
.prose ul.ticks li::before { content: ""; position: absolute; left: 0; top: .5em; width: 9px; height: 9px; background: var(--orange); border-radius: 3px; transform: rotate(45deg); }
.prose .lead-in { font-size: 1.12rem; color: var(--ink); }
.prose .post-meta {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: .9rem;
}
.prose blockquote { margin: 2rem 0; padding: 0; position: relative; }
.prose blockquote::before { content: "\201C"; display: block; font-family: var(--display); font-weight: 800; font-size: 3rem; line-height: .6; color: var(--orange); margin-bottom: .3rem; }
.prose blockquote p { font-family: var(--display); font-size: 1.24rem; font-weight: 600; color: var(--ink); font-style: italic; margin: 0; }
.prose blockquote cite { display: block; margin-top: .7rem; font-style: normal; font-size: .9rem; font-weight: 600; color: var(--muted); }

/* Article lead date / meta line (blog) */
.article-meta { color: var(--muted); font-size: .9rem; margin: 0 0 1.6rem; }

/* Photo gallery (blog articles) — masonry, keeps native aspect ratios */
.gallery { columns: 3 220px; column-gap: .85rem; margin: 1.8rem 0 .4rem; }
.gallery img { width: 100%; margin-bottom: .85rem; border-radius: var(--radius); break-inside: avoid; display: block; }
figure.gallery-figure { margin: 1.8rem 0; }
figure.gallery-figure img { width: 100%; border-radius: var(--radius); display: block; box-shadow: var(--shadow); }
figure.gallery-figure figcaption { margin-top: .6rem; font-size: .85rem; color: var(--muted); text-align: center; }

/* Related tour / next-read card */
.related { display: flex; gap: 1.3rem; align-items: center; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; margin-top: 2.6rem; }
.related-media { flex: 0 0 40%; align-self: stretch; min-height: 170px; }
.related-media img { width: 100%; height: 100%; object-fit: cover; }
.related-body { padding: 1.3rem 1.5rem 1.3rem 0; }
.related-body .eyebrow { color: var(--orange-dk); }
.related-body h3 { font-size: 1.35rem; margin: .35rem 0 .6rem; }
.related-body p { color: var(--ink-soft); font-size: .95rem; margin: 0 0 .9rem; }
@media (max-width: 620px) {
  .related { flex-direction: column; align-items: stretch; }
  .related-media { flex-basis: auto; aspect-ratio: 16 / 9; }
  .related-body { padding: 0 1.4rem 1.4rem; }
}

.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(1.2rem, 3vw, 1.8rem); }
.info-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .info-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .info-grid--3 { grid-template-columns: 1fr; } }
.sec-head--center { margin-inline: auto; text-align: center; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.5rem; }
.info-card h3 { font-size: 1.22rem; margin-bottom: .5rem; color: var(--pine-700); }
.info-card p { font-size: .96rem; color: var(--ink-soft); margin: 0; }
.info-card p.card-more { margin-top: .8rem; }

/* Steps (booking process) ------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(1.5rem, 4vw, 2.8rem); }
.step { padding-top: 1rem; border-top: 2px solid var(--line); }
.step-n { font-family: var(--display); font-weight: 800; font-size: 1.5rem; color: var(--orange); }
.step h3 { margin: .6rem 0 .5rem; font-size: 1.22rem; }
.step p { color: var(--ink-soft); font-size: .97rem; margin: 0; }

/* Tour detail ------------------------------------------------------------- */
.tour-layout { display: grid; grid-template-columns: 1fr 340px; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.tour-facts { display: flex; flex-wrap: wrap; gap: .5rem 2rem; margin: 1.4rem 0 0; list-style: none; }
.tour-facts li { display: flex; flex-direction: column; }
.tour-facts .k { font-family: var(--display); font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.72); }
.tour-facts .v { font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: #fff; }
.book-card {
  position: sticky; top: calc(var(--header-h) + 1rem);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 1.5rem 1.6rem;
}
.book-card .price { font-family: var(--display); font-weight: 800; font-size: 2rem; color: var(--pine-700); line-height: 1; }
.book-card .price small { font-family: var(--body); font-weight: 500; font-size: .95rem; color: var(--muted); display: block; margin-top: .4rem; }
.book-card-title { font-family: var(--display); font-weight: 800; font-size: 1.15rem; color: var(--pine-700); display: block; }
.book-card dl { margin: 1.3rem 0; display: grid; grid-template-columns: auto 1fr; gap: .55rem 1rem; font-size: .93rem; }
.book-card dt { color: var(--muted); }
.book-card dd { margin: 0; font-weight: 600; text-align: right; }
.book-card .btn { width: 100%; margin-top: .3rem; }
.book-card .book-note { font-size: .82rem; color: var(--muted); margin: 1rem 0 0; }
.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 2.5rem); margin-top: 1rem; }
.incl h3 { font-size: 1.15rem; margin-bottom: .7rem; color: var(--pine-700); }
.incl ul { list-style: none; }
.incl li { position: relative; padding-left: 1.7rem; margin-bottom: .55rem; color: var(--ink-soft); font-size: .96rem; }
.incl--yes li::before { content: ""; position: absolute; left: 0; top: .5em; width: 9px; height: 9px; background: var(--pine-500); border-radius: 3px; transform: rotate(45deg); }
.incl--no li::before { content: "×"; position: absolute; left: .1rem; top: -.05em; color: var(--muted); font-size: 1.15rem; font-weight: 700; }

/* Itinerary --------------------------------------------------------------- */
.itinerary { list-style: none; counter-reset: day; }
.itinerary li { position: relative; padding: 0 0 1.6rem 3.2rem; border-left: 2px solid var(--line); margin-left: 1rem; }
.itinerary li:last-child { border-color: transparent; padding-bottom: 0; }
.itinerary li::before {
  counter-increment: day; content: counter(day);
  position: absolute; left: -1.05rem; top: -.2rem;
  width: 2.1rem; height: 2.1rem; border-radius: 50%;
  background: var(--pine-700); color: #fff;
  display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 1rem;
}
.itinerary h4 { font-size: 1.1rem; margin-bottom: .2rem; }
.itinerary p { font-size: .95rem; color: var(--ink-soft); margin: 0; }

/* Contact form ------------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--display); font-size: .85rem; font-weight: 700; margin-bottom: .35rem; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--body); font-size: 1rem; color: var(--ink);
  padding: .75em .85em; background: #fff;
  border: 1.5px solid var(--line-2); border-radius: var(--radius-sm);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange); outline: none; box-shadow: 0 0 0 3px var(--orange-sf); }
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }

/* Contact aside ----------------------------------------------------------- */
.contact-block + .contact-block { margin-top: 1.8rem; padding-top: 1.8rem; border-top: 1px solid var(--line); }
.contact-block h3 { font-size: 1.15rem; margin-bottom: .8rem; color: var(--pine-700); }
.contact-list { list-style: none; }
.contact-list li { display: grid; grid-template-columns: 7rem 1fr; gap: .5rem; padding: .35rem 0; font-size: .96rem; align-items: baseline; }
.contact-list .k { color: var(--muted); font-size: .82rem; font-family: var(--display); font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }
.contact-list a { color: var(--pine-500); font-weight: 600; }
.contact-list a:hover { color: var(--orange-dk); }
.socials--dark a { color: var(--pine-500); }
.socials--dark a:hover { color: var(--orange-dk); }

/* Past events list --------------------------------------------------------- */
.events { list-style: none; margin-top: 2.4rem; }
.event { display: grid; grid-template-columns: 5.5rem 1fr; gap: clamp(1rem, 3vw, 2rem); padding: 1.6rem 0; border-top: 1px solid var(--line); align-items: start; }
.event:last-child { border-bottom: 1px solid var(--line); }
.event-date { text-align: center; line-height: 1; padding-top: .2rem; }
.event-date .d { display: block; font-family: var(--display); font-weight: 800; font-size: 1.9rem; color: var(--pine-700); }
.event-date .m { display: block; font-family: var(--display); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--orange-dk); margin-top: .15rem; }
.event-date .y { display: block; font-size: .78rem; color: var(--muted); margin-top: .1rem; }
.event-body h3 { font-size: 1.28rem; margin-bottom: .3rem; }
.event-place { font-family: var(--display); font-weight: 600; font-size: .88rem; color: var(--muted); margin: 0 0 .5rem; }
.event-body p { color: var(--ink-soft); font-size: .97rem; margin: 0; }
.event-body .textlink { margin-top: .6rem; }
@media (max-width: 520px) {
  .event { grid-template-columns: 3.6rem 1fr; gap: 1rem; }
  .event-date .d { font-size: 1.5rem; }
}

/* Past-event banner ------------------------------------------------------- */
.past-banner {
  background: var(--orange-sf); border: 1px solid #e6a765;
  border-radius: var(--radius); padding: 1.35rem 1.6rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  box-shadow: 0 6px 20px rgba(226,113,29,.14);
}
.past-banner p { margin: 0; color: #7a4410; font-weight: 700; font-size: 1.08rem; }

/* Responsive -------------------------------------------------------------- */
@media (max-width: 860px) {
  .hero { min-height: 88vh; }
  .intro-grid, .feature, .contact-grid, .tour-layout { grid-template-columns: 1fr; }
  .book-card { position: static; }
  .incl-grid { grid-template-columns: 1fr; }
  .feature:nth-child(even) .feature-media { order: 0; }
  .exp-desc { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .filter-bar .filter-all { margin-left: 0; }

  .nav-links, .nav-side .nav-tel { display: none; }
  .nav-toggle { display: block; }
  .site-header.is-open { background: rgba(255,255,255,.98); backdrop-filter: blur(10px); }
  .site-header.is-open .nav-links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: #fff; padding: .5rem 1.25rem 1.25rem;
    box-shadow: var(--shadow);
  }
  .site-header.is-open .nav-links a { width: 100%; padding: .85rem 0; border-bottom: 1px solid var(--line); color: var(--ink); }
  .hero-header.is-open .brand b, .hero-header.is-open .nav-toggle { color: var(--ink); }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero-cta .btn, .cta-band .btn { width: auto; }
  .filter-bar { justify-content: flex-start; }
}

/* Partners / logo wall -------------------------------------------------------- */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.partner {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 1rem; padding: 1.7rem 1.3rem;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); color: inherit; text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.partner:hover, .partner:focus-visible {
  transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--line-2);
}
.partner-logo {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 96px;
}
.partner-logo img { max-width: 140px; max-height: 96px; width: auto; height: auto; object-fit: contain; }
.partner b { font-size: .98rem; color: var(--ink); }
.partner span { font-size: .82rem; color: var(--muted); }

/* Spacing helpers ---------------------------------------------------------- */
/* Every page used to carry a handful of style attributes for one-off spacing.
   A Content-Security-Policy strict enough to be worth setting blocks inline
   styles, so the eleven distinct tweaks the templates actually needed live
   here instead. The scale is the one the rest of the sheet already uses. */
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 2.5rem; }
.mt-xl { margin-top: 3rem; }
.mb-xs { margin-bottom: .4rem; }
.mb-sm { margin-bottom: 1.2rem; }

/* A lead sits in a centred section head, where its 60ch measure needs
   centring too. */
.lead--center { margin-inline: auto; }
