:root {
  --pine: #0F3D39;
  --pine-2: #175750;
  --pine-3: #1F6B62;
  --berry: #A93A46;
  --berry-dark: #832B35;
  --gold: #C79A2E;
  --gold-soft: #E4C878;
  --cream: #F7F2E6;
  --mist: #E9F1EC;
  --white: #FFFFFF;
  --text: #20302C;
  --muted: #5C6E68;
  --border: #E0E3D8;
  --shadow: 0 14px 32px rgba(15, 61, 57, 0.14);
  --radius: 16px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: "Work Sans", "Segoe UI", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.66;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  color: var(--pine);
  line-height: 1.18;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2.05rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.1vw, 2.05rem); }
h3 { font-size: 1.12rem; }

p { margin: 0 0 1em; color: var(--text); }

a { color: var(--pine-3); }
a:hover { color: var(--berry); }

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--pine);
  color: var(--white);
  padding: 10px 16px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; top: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
  cursor: pointer;
  white-space: nowrap;
  font-size: .98rem;
  min-width: 230px;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--berry);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(169, 58, 70, 0.32);
}
.btn-primary:hover { background: var(--berry-dark); color: var(--white); }

.btn-light {
  background: var(--white);
  color: var(--pine);
  box-shadow: 0 10px 22px rgba(15, 61, 57, 0.18);
}
.btn-light:hover { background: var(--cream); color: var(--pine); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.55);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--pine); border-color: var(--white); }

.btn-outline-dark {
  background: transparent;
  border-color: var(--pine);
  color: var(--pine);
}
.btn-outline-dark:hover { background: var(--pine); color: var(--white); }

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }
.ext-ico { font-size: .85em; }

/* Header / inner-link nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--pine);
  box-shadow: 0 2px 16px rgba(0,0,0,.2);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 13px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark { width: 34px; height: 30px; flex-shrink: 0; }
.logo-text {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.08rem;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: .1px;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.nav-link {
  color: #D7E5E0;
  text-decoration: none;
  font-weight: 600;
  font-size: .93rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav-link:hover { color: var(--gold-soft); border-bottom-color: var(--gold-soft); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: transform .2s ease, opacity .2s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-close {
  display: none;
  position: absolute;
  top: 18px;
  right: 20px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.1);
  color: var(--white);
  cursor: pointer;
}
.nav-close svg { width: 18px; height: 18px; }
.nav-close:hover { background: rgba(255,255,255,.2); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 24, 22, .55);
  z-index: 98;
  opacity: 0;
  transition: opacity .25s ease;
}
.nav-overlay.is-visible { opacity: 1; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--pine) 0%, var(--pine-2) 100%);
  padding: 58px 0 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 46px;
  align-items: center;
  padding-bottom: 46px;
}
.eyebrow {
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: .8rem;
  margin: 0 0 12px;
}
.hero h1 { color: var(--white); margin-bottom: .32em; }
.hero-intro { color: #D7E5E0; font-size: 1.05rem; max-width: 54ch; margin-bottom: 1.5em; }
.hero-note { color: #A9C2BA; font-size: .88rem; margin-top: 16px; margin-bottom: 0; }

.trust-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #C9DCD5;
  font-size: .88rem;
  font-weight: 600;
}
.trust-item svg { width: 18px; height: 18px; color: var(--gold-soft); flex-shrink: 0; }

.panel-card {
  --pf-row-bg: rgba(255,255,255,.05);
  --pf-icon-bg: rgba(255,255,255,.16);
  --pf-icon-color: var(--gold-soft);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  padding: 30px;
  backdrop-filter: blur(2px);
}
.panel-card h2 { color: var(--white); font-size: 1.08rem; margin-bottom: 18px; }
.panel-facts { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.panel-facts li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: 10px;
  background: var(--pf-row-bg);
}
.pf-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pf-icon-bg);
  color: var(--pf-icon-color);
}
.pf-icon svg { width: 21px; height: 21px; }
.pf-text { display: flex; flex-direction: column; font-size: .91rem; color: #C9DCD5; }
.pf-text strong { color: var(--white); font-size: .97rem; margin-bottom: 2px; }

/* Sections */
.section { padding: 78px 0; }
.section-alt { background: var(--cream); }
.section-alt-2 { background: var(--mist); }
.section-heading-center { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.section-lede { color: var(--muted); font-size: 1.02rem; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--pine);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.gallery-trigger {
  display: block;
  border: none;
  padding: 0;
  margin: 0;
  background: none;
  cursor: default;
  width: 100%;
  height: 100%;
}
.gallery-zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(15, 61, 57, .82);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}
@media (min-width: 761px) {
  .gallery-trigger { cursor: zoom-in; }
  .gallery-item:hover img { transform: scale(1.06); }
  .gallery-item:hover .gallery-zoom { opacity: 1; }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(9, 20, 18, .93);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-figure { max-width: min(90vw, 980px); max-height: 86vh; margin: 0; }
.lightbox-figure img { max-height: 86vh; width: auto; margin: 0 auto; border-radius: 10px; }
.lightbox-close {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.12);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}
.lightbox-close:hover { background: rgba(255,255,255,.24); }

/* Comparison table */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); box-shadow: var(--shadow); }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: var(--white);
}
.compare-table caption { caption-side: top; text-align: left; padding: 16px 20px 0; font-size: .84rem; color: var(--muted); }
.compare-table th, .compare-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: .93rem;
  vertical-align: top;
}
.compare-table thead th {
  background: var(--pine);
  color: var(--white);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.02rem;
  position: sticky;
  top: 0;
}
.compare-table tbody th[scope="row"] {
  font-weight: 700;
  color: var(--pine);
  background: var(--cream);
  white-space: nowrap;
}
.compare-table tbody tr:last-child td, .compare-table tbody tr:last-child th { border-bottom: none; }
.table-yes { color: var(--pine-3); font-weight: 600; }
.table-no { color: var(--berry); font-weight: 600; }
.table-partial { color: var(--gold); font-weight: 600; }
.price-tag { font-weight: 700; color: var(--gold); letter-spacing: 1px; }
.buy-row td { background: var(--mist); text-align: center; }
.btn-table { width: 100%; }
.scroll-hint { text-align: center; color: var(--muted); font-size: .84rem; margin: 14px 0 0; }
.table-footnote { color: var(--muted); font-size: .84rem; margin-top: 18px; }

/* Tour sections */
.tour-section { padding: 78px 0; }
.tour-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.tour-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.tour-illustration {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: linear-gradient(160deg, var(--mist) 0%, var(--cream) 100%);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.tour-illustration svg { width: 100%; height: 100%; display: block; }
.badge {
  display: inline-block;
  background: var(--mist);
  color: var(--pine-3);
  font-weight: 700;
  font-size: .82rem;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.lead { font-size: 1.03rem; color: var(--text); }
.tour-highlights { list-style: none; margin: 22px 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.tour-highlights li { display: flex; align-items: flex-start; gap: 12px; font-size: .96rem; }
.tour-highlights svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; color: var(--pine-3); }
.fine-print { color: var(--muted); font-size: .84rem; margin: 4px 0 22px; }

.tour-details { margin-top: 56px; }
.includes-grid, .prepare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 26px;
  align-items: start;
}
.includes-card, .prepare-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.check-list, .yes-list, .no-list, .dot-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li, .yes-list li { padding-left: 28px; position: relative; font-size: .93rem; }
.check-list li::before, .yes-list li::before {
  content: "✓"; position: absolute; left: 0; color: var(--pine-3); font-weight: 700;
}
.no-list li { padding-left: 28px; position: relative; color: var(--muted); font-size: .93rem; }
.no-list li::before { content: "✕"; position: absolute; left: 0; color: var(--berry); font-weight: 700; }
.dot-list li { padding-left: 20px; position: relative; font-size: .93rem; }
.dot-list li::before { content: "•"; position: absolute; left: 0; color: var(--pine-3); font-weight: 700; }

/* CTA banners */
.cta-banner {
  background: linear-gradient(120deg, var(--pine) 0%, var(--pine-2) 100%);
  padding: 60px 0;
  text-align: center;
}
.cta-banner h2, .cta-banner p { color: var(--white); }
.cta-banner p { color: #C9DCD5; max-width: 60ch; margin-left: auto; margin-right: auto; }
.cta-banner .btn-row { justify-content: center; }

.cta-banner-alt { background: var(--mist); padding: 56px 0; text-align: center; }
.cta-banner-alt p { color: var(--muted); max-width: 60ch; margin-left: auto; margin-right: auto; }
.cta-banner-alt .btn-row { justify-content: center; }

/* Reviews */
.reviews-intro { text-align: center; color: var(--muted); max-width: 640px; margin: -20px auto 40px; }
.reviews-grid { columns: 3; column-gap: 22px; }
.review-card {
  break-inside: avoid;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 22px;
  box-shadow: var(--shadow);
}
.review-stars { color: var(--gold); letter-spacing: 2px; font-size: 1.02rem; margin-bottom: 8px; }
.review-name { font-weight: 700; color: var(--pine); margin-bottom: 8px; }
.review-loc { display: block; font-weight: 400; color: var(--muted); font-size: .84rem; margin-top: 2px; }
.review-text { color: var(--text); font-size: .94rem; margin-bottom: 0; }
.review-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--pine-3);
  font-size: .78rem;
  font-weight: 700;
}

/* Prefooter */
.prefooter-cta { background: linear-gradient(120deg, var(--pine) 0%, var(--pine-3) 100%); padding: 58px 0; }
.prefooter-grid { display: grid; grid-template-columns: .55fr 1.45fr; gap: 34px; align-items: center; }
.prefooter-action { display: flex; flex-direction: column; gap: 14px; align-items: center; justify-content: center; }
.prefooter-action .btn { box-shadow: 0 8px 20px rgba(0,0,0,.22); }
.prefooter-text h2, .prefooter-text p { color: var(--white); }
.prefooter-text p { max-width: 60ch; opacity: .96; margin: 0; }

/* Articles teaser (pre-footer) */
.articles-teaser { background: var(--mist); padding: 76px 0; }
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 24px 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article-card h3 { font-size: 1.05rem; margin: 0; }
.article-card p { font-size: .9rem; color: var(--muted); flex-grow: 1; margin: 0; }
.article-card-link { font-size: .89rem; font-weight: 700; color: var(--pine-3); text-decoration: none; }
.article-card-link:hover { color: var(--berry); text-decoration: underline; }

/* Article pages (articles/*.html) */
.article-hero {
  background: linear-gradient(135deg, var(--pine) 0%, var(--pine-2) 100%);
  padding: 66px 0 50px;
  text-align: center;
}
.article-hero-inner { max-width: 760px; margin: 0 auto; }
.article-hero h1 { color: var(--white); font-size: clamp(1.85rem, 4.3vw, 2.6rem); margin: .3em 0 .45em; }
.article-lede { color: #D7E5E0; font-size: 1.05rem; max-width: 62ch; margin: 0 auto; }

.article-body { max-width: 760px; margin: 0 auto; padding: clamp(2rem, 5vw, 3rem) 24px clamp(2.5rem, 6vw, 4rem); }
.article-body h2 { font-size: clamp(1.3rem, 2.6vw, 1.6rem); margin: 2.1rem 0 .9rem; }
.article-body h3 { font-size: 1.08rem; margin: 1.5rem 0 .6rem; color: var(--pine-3); }
.article-body p { margin-bottom: 1.05rem; }
.article-body ul, .article-body ol { margin: 0 0 1.3rem 1.3rem; display: grid; gap: .5rem; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { padding-left: .2rem; }
.article-body a:not(.btn) { color: var(--pine-3); text-decoration: underline; text-decoration-color: var(--border); text-underline-offset: 3px; }
.article-body a:not(.btn):hover { text-decoration-color: currentColor; color: var(--berry); }
.article-body figure { margin: 1.6rem 0; }
.article-body img { border-radius: var(--radius); box-shadow: var(--shadow); }
.article-body figcaption { font-size: .85rem; color: var(--muted); margin-top: .6rem; text-align: center; }

.article-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 0 1.5rem; border-radius: var(--radius); border: 1px solid var(--border); }
.article-table { width: 100%; border-collapse: collapse; min-width: 480px; }
.article-table th, .article-table td { padding: .8rem 1rem; text-align: left; border-bottom: 1px solid var(--border); font-size: .94rem; }
.article-table thead th { background: var(--cream); font-weight: 700; color: var(--pine); }
.article-table tbody tr:last-child td { border-bottom: none; }

.article-callout {
  background: var(--mist);
  border-left: 4px solid var(--pine-3);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.3rem;
  margin: 0 0 1.5rem;
  font-size: .95rem;
}
.article-callout strong { color: var(--pine); }

.article-cta { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem; margin: 1.6rem 0; }
.article-cta p { margin: 0 0 .9rem; font-weight: 700; color: var(--pine); }
.article-cta .btn-row { justify-content: flex-start; }

.article-backlink { font-size: .95rem; color: var(--muted); border-top: 1px solid var(--border); padding-top: 1.4rem; margin-top: 2rem; }

/* Footer */
.site-footer { background: var(--pine); color: #C9DCD5; padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { color: #9FB6AD; margin-top: 14px; }
.footer-nav h3, .footer-contact h3 { color: var(--white); font-family: "Fraunces", Georgia, serif; margin-bottom: 16px; }
.footer-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: #C9DCD5; text-decoration: none; }
.footer-nav a:hover { color: var(--gold-soft); }
.footer-contact p { margin-bottom: 6px; }
.footer-contact a { color: var(--gold-soft); text-decoration: none; }
address { font-style: normal; color: #C9DCD5; margin-bottom: 20px; line-height: 1.55; }
.footer-contact .btn { margin-top: 8px; }
.footer-contact a.btn-primary { color: var(--white); }
.footer-contact a.btn-primary:hover { color: var(--white); }

.disclaimer {
  max-width: var(--max-width);
  margin: 30px auto 0;
  padding: 0 24px 34px;
  color: #8FA69D;
  font-size: .8rem;
  line-height: 1.6;
}
.footer-bottom {
  padding: 20px 24px;
  text-align: center;
  font-size: .84rem;
  color: #8FA69D;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom span + span::before { content: "·"; margin: 0 10px; }

/* Back to top */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--pine);
  color: var(--gold-soft);
  border: 1px solid rgba(199, 154, 46, .4);
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(15, 61, 57, .38);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease, background .15s ease;
  z-index: 90;
}
.back-to-top svg { width: 20px; height: 20px; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--pine-2); }

/* Responsive */
@media (max-width: 980px) {
  .hero-grid, .prefooter-grid { grid-template-columns: 1fr; }
  .tour-grid { grid-template-columns: 1fr; }
  .tour-media-right .tour-media { order: -1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .includes-grid, .prepare-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { columns: 2; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .hero { padding-top: 38px; text-align: center; }
  .hero-grid { gap: 32px; }
  .eyebrow, .hero-intro, .hero-note { margin-left: auto; margin-right: auto; }
  .hero-intro { max-width: 52ch; }
  .btn-row { justify-content: center; }
  .trust-row { justify-content: center; }

  .hamburger { display: flex; }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(84vw, 340px);
    background: var(--pine);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 88px 28px 40px;
    gap: 30px;
    transform: translateX(100%);
    transition: transform .25s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,.3);
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 20px; }
  .nav-link { font-size: 1.05rem; display: block; }
  .nav-close { display: flex; }

  .gallery-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-zoom { display: none; }

  .table-footnote, .scroll-hint { padding: 0 4px; }

  .includes-grid, .prepare-grid { grid-template-columns: 1fr; }
  .reviews-grid { columns: 1; }
  .articles-grid { grid-template-columns: 1fr; }
  .article-cta .btn-row { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-nav ul, .panel-facts, .footer-contact { align-items: center; }
  .footer-nav ul { align-items: center; }

  .section, .tour-section { padding: 52px 0; }

  .btn {
    width: min(86vw, 340px);
    padding: 15px 20px;
  }
  .prefooter-action .btn, .footer-contact .btn { width: min(86vw, 340px); }

  .panel-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .panel-facts li { flex-direction: column; text-align: center; gap: 8px; padding: 16px 10px; }
  .pf-text { align-items: center; }
}
